| 1 | <?php |
||
| 12 | class Configurator extends ConfiguratorBase |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * {@inheritdoc} |
||
| 16 | */ |
||
| 17 | protected $quickMatch = '\\'; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var string Regexp that matches one backslash followed by the escape character |
||
| 21 | */ |
||
| 22 | protected $regexp; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var string Name of the tag used by this plugin |
||
| 26 | */ |
||
| 27 | protected $tagName = 'ESC'; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Set whether any Unicode character should be escapable, or limit to some ASCII symbols |
||
| 31 | * |
||
| 32 | * @param bool $bool Whether any Unicode character should be escapable |
||
| 33 | * @return void |
||
| 34 | */ |
||
| 35 | public function escapeAll($bool = true) |
||
| 39 | |||
| 40 | /** |
||
| 41 | * {@inheritdoc} |
||
| 42 | */ |
||
| 43 | protected function setUp() |
||
| 55 | } |