diff options
| author | 2024-10-14 09:35:41 +0200 | |
|---|---|---|
| committer | 2024-10-14 09:35:41 +0200 | |
| commit | df763eb8b34b9823511d93ec078d4644d3e6ff64 (patch) | |
| tree | 0dcdf0aa45e8f3a1b3ebe154277bac2c7fa960f0 /lib | |
| parent | 256dcc21bb222184d5e917ea57cec334b74b96f4 (diff) | |
Add hook entries_favorite (#6880)
Called when entries are starred or unstarred
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/Minz/ExtensionManager.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Minz/ExtensionManager.php b/lib/Minz/ExtensionManager.php index 2d7c92d6b..b3756372e 100644 --- a/lib/Minz/ExtensionManager.php +++ b/lib/Minz/ExtensionManager.php @@ -26,6 +26,10 @@ final class Minz_ExtensionManager { 'list' => array(), 'signature' => 'OneToOne', ), + 'entries_favorite' => [ // function(array $ids, bool $is_favorite): void + 'list' => [], + 'signature' => 'PassArguments', + ], 'entry_auto_read' => array( // function(FreshRSS_Entry $entry, string $why): void 'list' => array(), 'signature' => 'PassArguments', |
