Файл: al_loader.php
Строк: 32
<?php
define('DIR', dirname(__FILE__));
include_once(DIR.'/core/Base.php');
class Al_loader extends Base
{
protected function _before() {
parent::_before();
$this->noInit = true;
}
protected function act_index() {
$this->act_nav();
}
protected function act_nav() {
Request::js();
$this->out = $this->view('loader/v_loader_nav.php',array(
'navMap' => json_encode(Loader::$navMap),
'stVersions' => json_encode(Loader::$stVersions),
'stTypes' => json_encode(Loader::$stTypes),
'navMap1' => Loader::$navMap,
));
}
} Loader::init(__FILE__);