X-Git-Url: https://git.wh0rd.org/?a=blobdiff_plain;f=classes%2Fpluginhost.php;h=1ad7afd60f1081201e13381a705a48b020ed05e2;hb=7eb87b80d533d0bdd538938b69064352a8587204;hp=a1bd1b36400a195c341e3399be5c7ba5fe8907fd;hpb=891e36f57e2e3955a4f13019e8fdc58fce826434;p=tt-rss.git diff --git a/classes/pluginhost.php b/classes/pluginhost.php index a1bd1b36..1ad7afd6 100644 --- a/classes/pluginhost.php +++ b/classes/pluginhost.php @@ -38,6 +38,11 @@ class PluginHost { const HOOK_PREFS_SAVE_FEED = 21; const HOOK_FETCH_FEED = 22; const HOOK_QUERY_HEADLINES = 23; + const HOOK_HOUSE_KEEPING = 24; + const HOOK_SEARCH = 25; + const HOOK_FORMAT_ENCLOSURES = 26; + const HOOK_SUBSCRIBE_FEED = 27; + const HOOK_HEADLINES_BEFORE = 28; const KIND_ALL = 1; const KIND_SYSTEM = 2; @@ -74,6 +79,16 @@ class PluginHost { return $this->dbh; } + function get_plugin_names() { + $names = array(); + + foreach ($this->plugins as $p) { + array_push($names, get_class($p)); + } + + return $names; + } + function get_plugins() { return $this->plugins; } @@ -98,7 +113,7 @@ class PluginHost { function del_hook($type, $sender) { if (is_array($this->hooks[$type])) { - $key = array_Search($this->hooks[$type], $sender); + $key = array_Search($sender, $this->hooks[$type]); if ($key !== FALSE) { unset($this->hooks[$type][$key]); }