Habari\Term::__call PHP Метод

__call() публичный Метод

Handle calls to this Term object that are implemented by plugins
public __call ( string $name, array $args ) : mixed
$name string The name of the function called
$args array Arguments passed to the function call
Результат mixed The value returned from any plugin filters, null if no value is returned
    public function __call($name, $args)
    {
        array_unshift($args, 'term_call_' . $name, null, $this);
        return call_user_func_array(Method::create('\\Habari\\Plugins', 'filter'), $args);
    }