1 | <?php |
||
27 | abstract class AbstractJQueryInputMaskTwigExtension extends AbstractTwigExtension { |
||
28 | |||
29 | use RendererTwigExtensionTrait; |
||
30 | |||
31 | /** |
||
32 | * Constructor. |
||
33 | * |
||
34 | * @param Twig_Environment $twigEnvironment The twig environment. |
||
35 | * @param RendererTwigExtension $rendererTwigExtension The renderer Twig extension. |
||
36 | */ |
||
37 | protected function __construct(Twig_Environment $twigEnvironment, RendererTwigExtension $rendererTwigExtension) { |
||
41 | |||
42 | /** |
||
43 | * Displays a jQuery input mask. |
||
44 | * |
||
45 | * @param string $selector The selector. |
||
46 | * @param string $mask The mask. |
||
47 | * @param array $options The options. |
||
48 | * @param bool $scriptTag Script tag ? |
||
49 | * @return string Returns the jQuery input mask. |
||
50 | */ |
||
51 | protected function jQueryInputMask($selector, $mask, array $options, $scriptTag) { |
||
65 | |||
66 | } |
||
67 |