| 1 | <?php |
||
| 23 | class StrikethroughTypographyTwigExtension extends AbstractTypographyTwigExtension { |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Service name. |
||
| 27 | * |
||
| 28 | * @var string |
||
| 29 | */ |
||
| 30 | const SERVICE_NAME = "webeweb.bundle.bootstrapbundle.twig.extension.typography.strikethrough"; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Constructor. |
||
| 34 | */ |
||
| 35 | public function __construct() { |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Displays a Bootstrap strike through text. |
||
| 41 | * |
||
| 42 | * @param array $args The arguments. |
||
| 43 | * @return string Returns the Bootstrap strike through text. |
||
| 44 | */ |
||
| 45 | public function bootstrapStrikeThroughFunction(array $args = []) { |
||
| 48 | |||
| 49 | /** |
||
| 50 | * Get the Twig functions. |
||
| 51 | * |
||
| 52 | * @return array Returns the Twig functions. |
||
| 53 | */ |
||
| 54 | public function getFunctions() { |
||
| 59 | |||
| 60 | } |
||
| 61 |