| 1 | <?php |
||
| 12 | class Configurator extends ConfiguratorBase |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var string Name of the attribute used by this plugin |
||
| 16 | */ |
||
| 17 | protected $attrName = 'content'; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * {@inheritdoc} |
||
| 21 | */ |
||
| 22 | protected $quickMatch = '<!--'; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var string Regexp that matches comments |
||
| 26 | */ |
||
| 27 | protected $regexp = '/<!--(?!\\[if).*?-->/is'; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @var string Name of the tag used by this plugin |
||
| 31 | */ |
||
| 32 | protected $tagName = 'HC'; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * {@inheritdoc} |
||
| 36 | */ |
||
| 37 | protected function setUp() |
||
| 44 | } |