diff options
| author | Laria Carolin Chabowski <laria@laria.me> | 2020-09-25 21:18:18 +0200 | 
|---|---|---|
| committer | Laria Carolin Chabowski <laria@laria.me> | 2020-09-25 21:28:55 +0200 | 
| commit | 378881378aab5454c84cb1fecbbcc675f64dc27f (patch) | |
| tree | f8bbe239c2a87cc61bec05b987099e4401dd2693 /ratatoeskr/sys/textprocessors/HtmlProcessor.php | |
| parent | 78c0350b3b7fc025ba565e19bfa195b68e95bb88 (diff) | |
| download | ratatoeskr-cms-378881378aab5454c84cb1fecbbcc675f64dc27f.tar.gz ratatoeskr-cms-378881378aab5454c84cb1fecbbcc675f64dc27f.tar.bz2 ratatoeskr-cms-378881378aab5454c84cb1fecbbcc675f64dc27f.zip | |
Refactor textprocessors
They are now managed by TextprocessorRepository and are instances of
Textprocessor. This replaces the global $textprocessors variable.
Diffstat (limited to 'ratatoeskr/sys/textprocessors/HtmlProcessor.php')
| -rw-r--r-- | ratatoeskr/sys/textprocessors/HtmlProcessor.php | 20 | 
1 files changed, 20 insertions, 0 deletions
| diff --git a/ratatoeskr/sys/textprocessors/HtmlProcessor.php b/ratatoeskr/sys/textprocessors/HtmlProcessor.php new file mode 100644 index 0000000..c3f691b --- /dev/null +++ b/ratatoeskr/sys/textprocessors/HtmlProcessor.php @@ -0,0 +1,20 @@ +<?php + + +namespace r7r\cms\sys\textprocessors; + +/** + * A simple textprocessor that assumes the input already is HTML. + */ +class HtmlProcessor implements Textprocessor +{ +    public function apply(string $input): string +    { +        return $input; +    } + +    public function showInBackend(): bool +    { +        return true; +    } +} | 
