diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2025-05-02 21:27:50 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2025-05-02 21:28:37 +0300 |
| commit | 3098dc0a163b4b70105da2eae1237057ae97ccb1 (patch) | |
| tree | 1433d63b437b719bca1f11f9b6a605352aac3677 /classes/PluginHost.php | |
| parent | 0520ca2226f095046eaf57aa8125e88f69ccf376 (diff) | |
rename article mark/publish hooks
Diffstat (limited to 'classes/PluginHost.php')
| -rw-r--r-- | classes/PluginHost.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/classes/PluginHost.php b/classes/PluginHost.php index bfc02318b..1ab9c0301 100644 --- a/classes/PluginHost.php +++ b/classes/PluginHost.php @@ -199,11 +199,11 @@ class PluginHost { /** @see Plugin::hook_validate_session() */ const HOOK_VALIDATE_SESSION = "hook_validate_session"; - /** @see Plugin::hook_articles_marked() */ - const HOOK_ARTICLES_MARKED = "hook_articles_marked"; + /** @see Plugin::hook_articles_mark_toggled() */ + const HOOK_ARTICLES_MARK_TOGGLED = "hook_articles_mark_toggled"; - /** @see Plugin::hook_articles_published() */ - const HOOK_ARTICLES_PUBLISHED = "hook_articles_published"; + /** @see Plugin::hook_articles_publish_toggled() */ + const HOOK_ARTICLES_PUBLISH_TOGGLED = "hook_articles_publish_toggled"; const KIND_ALL = 1; const KIND_SYSTEM = 2; |