diff options
| author | 2025-06-22 00:36:32 +0200 | |
|---|---|---|
| committer | 2025-06-22 00:36:32 +0200 | |
| commit | 51298cd6bc100b1cc6508abb602a59c01a9e2c04 (patch) | |
| tree | dc3ac061d48242ddb1dd4aaada009f531e2e08a7 /app/Models/View.php | |
| parent | bea9ca12adf58896a95959c4a1fbb48f4bbc144b (diff) | |
Exposed the reading modes for extensions through Minz (#7668)
* + Exposed the reading modes for extensions through Minz. Now extensions can add a custom view mode. Graceful fallback to normal view in case the extension was disabled without resetting the view_mode through the uninstall method. In that case the user will be informed via Minz_Request::setBadNotification that the view has been reset to normal.
+ Added translation strings for de, en and en-us for the notification
* + Added missing, generated translations
* Simplify indexAction, performance
* Minor settings htmlspecialchars
* i18n: fr
* Minor wording
* Doc
* Fix i18n
---------
Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
Diffstat (limited to 'app/Models/View.php')
| -rw-r--r-- | app/Models/View.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/Models/View.php b/app/Models/View.php index dd616b888..11ca3a105 100644 --- a/app/Models/View.php +++ b/app/Models/View.php @@ -132,4 +132,8 @@ class FreshRSS_View extends Minz_View { public string $errorMessage; /** @var array<string,string> */ public array $message; + + // View modes + /** @var array<FreshRSS_ViewMode> */ + public array $viewModes; } |
