1 | <?php |
||
24 | final class UserInputCodeTwigExtension extends AbstractCodeTwigExtension { |
||
25 | |||
26 | /** |
||
27 | * Service name. |
||
28 | * |
||
29 | * @var string |
||
30 | */ |
||
31 | const SERVICE_NAME = "webeweb.bundle.bootstrapbundle.twig.extension.code.userinput"; |
||
32 | |||
33 | /** |
||
34 | * Constructor. |
||
35 | */ |
||
36 | public function __construct() { |
||
39 | |||
40 | /** |
||
41 | * Displays a Bootstrap user input. |
||
42 | * |
||
43 | * @param array $args The arguments. |
||
44 | * @return string Returns the Bootstrap user input. |
||
45 | */ |
||
46 | public function bootstrapUserInputFunction(array $args = []) { |
||
49 | |||
50 | /** |
||
51 | * Get the Twig functions. |
||
52 | * |
||
53 | * @return array Returns the Twig functions. |
||
54 | */ |
||
55 | public function getFunctions() { |
||
60 | |||
61 | } |
||
62 |