public function actionAll()
 {
     $newList = array();
     $newList = Career::getAllCareer();
     require_once ROOT . '/templates/index.php';
     return true;
 }
Ejemplo n.º 2
0
 public function actionLogout()
 {
     Session::destroy(USER_LOGIN);
     $newList = array();
     $newList = Career::getAllCareer();
     require_once ROOT . '/templates/index.php';
     return true;
 }