Habari\Controller::dispatch_request PHP Метод

dispatch_request() публичный статический Метод

Handle the requested action by firing off the matched handler action(s)
public static dispatch_request ( )
    public static function dispatch_request()
    {
        /* OK, set the wheels in motion... */
        Plugins::act('handler_' . Controller::instance()->action, Controller::get_handler_vars());
        if (method_exists(Controller::instance()->handler, 'act')) {
            Controller::instance()->handler->act(Controller::instance()->action);
        }
    }