1 | <?php |
||
24 | abstract class AbstractPluginTwigExtension extends AbstractBootstrapTwigExtension { |
||
25 | |||
26 | /** |
||
27 | * Constructor. |
||
28 | */ |
||
29 | protected function __construct() { |
||
32 | |||
33 | /** |
||
34 | * Displays a Bootstrap input mask. |
||
35 | * |
||
36 | * @param string $selector The input mask selector. |
||
37 | * @param string $mask The input mask. |
||
38 | * @param boolean $scriptTag Script tag ? |
||
39 | * @param array $options The input mask options. |
||
40 | * @return string Returns the Bootstrap input mask. |
||
41 | */ |
||
42 | protected function bootstrapInputMask($selector, $mask, $scriptTag, array $options) { |
||
54 | |||
55 | } |
||
56 |