1 | <?php |
||
24 | final class InsertedTypographyTwigExtension extends AbstractTypographyTwigExtension { |
||
25 | |||
26 | /** |
||
27 | * Service name. |
||
28 | * |
||
29 | * @var string |
||
30 | */ |
||
31 | const SERVICE_NAME = "webeweb.bundle.bootstrapbundle.twig.extension.typography.inserted"; |
||
32 | |||
33 | /** |
||
34 | * Displays a Bootstrap inserted text. |
||
35 | * |
||
36 | * @param array $args The arguments. |
||
37 | * @return string Returns the Bootstrap inserted text. |
||
38 | */ |
||
39 | public function bootstrapInsertedFunction(array $args = []) { |
||
42 | |||
43 | /** |
||
44 | * Get the Twig functions. |
||
45 | * |
||
46 | * @return array Returns the Twig functions. |
||
47 | */ |
||
48 | public function getFunctions() { |
||
53 | |||
54 | } |
||
55 |