summaryrefslogtreecommitdiff
path: root/classes/PluginHost.php
diff options
context:
space:
mode:
authorAndrew Dolgov <fox@fakecake.org>2025-05-02 21:27:50 +0300
committerAndrew Dolgov <fox@fakecake.org>2025-05-02 21:27:50 +0300
commitb30f8c93a00ce1ae2c582ca4c7f1d5d8425220ee (patch)
tree59b05d952497b3fe832f17cee31c03c4b45ed0c4 /classes/PluginHost.php
parentdc6ea08ca490c889f4e85bd697e6bdffb95a22f4 (diff)
rename article mark/publish hooks
Diffstat (limited to 'classes/PluginHost.php')
-rw-r--r--classes/PluginHost.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/classes/PluginHost.php b/classes/PluginHost.php
index 8bde8df3f..5cff4afcb 100644
--- a/classes/PluginHost.php
+++ b/classes/PluginHost.php
@@ -202,11 +202,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;