/var/www/myprog.com.ua/admin/controllers
Edit: /var/www/myprog.com.ua/admin/controllers/class.index.php (1009B)
view->perm['menu_driver'])||!isset($this->view->perm['menu_control'])){
// $this->view->css[0]= 'smoothness/jquery-ui-1.8.16.custom.css';
// $this->view->jsOut[0]= URL.'public/js/index.js';
// }
$this->view->index = true;
$this->view->title="Главная";
if(isset($this->view->perm['dashboard'])){
//$this->view->systems = $this->model->getAllSystems();
$this->view->render('index/index');
}
}
// Проверка статуса
public function status(){
if(!ajax::check_ajax_request()) {
return;
}
if(!isset($this->view->perm['god'])){
return;
}
$form = form::getInstance();
if ($form->isPost()){
$this->model->status();
return;
}
}
// <--
}