| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- declare(strict_types=1);
- final class UserCSSExtension extends Minz_Extension {
- public string $css_rules = '';
- private const FILENAME = 'style.css';
- #[\Override]
- public function init(): void {
- parent::init();
- $this->registerTranslates();
- if ($this->hasFile(self::FILENAME)) {
- Minz_View::appendStyle($this->getFileUrl(self::FILENAME, isStatic: false));
- }
- }
- #[\Override]
- public function handleConfigureAction(): void {
- parent::init();
- $this->registerTranslates();
- if (Minz_Request::isPost()) {
- $css_rules = Minz_Request::paramString('css-rules', plaintext: true);
- $this->saveFile(self::FILENAME, $css_rules);
- FreshRSS_UserDAO::touch();
- // Redirect (Post/Redirect/Get) so the next page is built after the save,
- // with a fresh cache-busting URL for the updated stylesheet
- Minz_Request::good(_t('feedback.conf.updated'), [
- 'c' => 'extension', 'a' => 'configure', 'params' => ['e' => $this->getName()],
- ]);
- }
- $this->css_rules = '';
- if ($this->hasFile(self::FILENAME)) {
- $this->css_rules = htmlspecialchars($this->getFile(self::FILENAME) ?? '', ENT_NOQUOTES, 'UTF-8');
- }
- }
- }
|