_etsis_appl_router ()

Application (APPL) router function.

Includes application router filter (appl_router).

Source file: app/functions/hook-function.php

View source


Used by

Uses


Source

function _etsis_appl_router()
{
    $app = \Liten\Liten::getInstance();

    $router = $app->config('routers_dir') . 'appl.router.php';
    if (!$app->hook->has_filter('appl_router')) {
        require($router);
    }
    return $app->hook->apply_filter('appl_router', $router);
}


Changelog

  • Since: eduTrac SIS 6.2.7

User Contributed Notes

You must log in before being able to contribute a note.