diff --git a/classes/pluginhost.php b/classes/pluginhost.php index 673053b9e53f1ff5b807d35a098d26fb967e4a0e..af3cfcc9b139de52be7c46b874798cb841fec7f8 100755 --- a/classes/pluginhost.php +++ b/classes/pluginhost.php @@ -204,6 +204,15 @@ class PluginHost { function add_hook($type, $sender, $priority = 50) { $priority = (int) $priority; + if (!method_exists($sender, strtolower($type))) { + user_error( + sprintf("Plugin %s tried to register a hook without implementation: %s", + get_class($sender), $type), + E_USER_WARNING + ); + return; + } + if (empty($this->hooks[$type])) { $this->hooks[$type] = []; }