mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 07:05:56 +00:00
experimental new plugin system
This commit is contained in:
@@ -126,6 +126,10 @@
|
||||
if ($handler->before($method)) {
|
||||
if ($method && method_exists($handler, $method)) {
|
||||
$handler->$method();
|
||||
} else {
|
||||
if (method_exists($handler, "catchall")) {
|
||||
$handler->catchall($method);
|
||||
}
|
||||
}
|
||||
$handler->after();
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user