Пример #1
0
 public function __construct($pathinfo, $controller)
 {
     parent::__construct($pathinfo, $controller);
     if ($this->userid != 2 && $this->userid != 46 && $this->userid != 20949) {
         header('HTTP/1.1 301 Moved Permanently');
         header('location: /home/');
     }
 }
Пример #2
0
 /**
  * Constructeur
  */
 public function __construct()
 {
     parent::__construct();
     $this->view = 'Utilisateurs/user';
     if (isset($this->_session->user)) {
         $this->_session->user->refresh();
     }
 }
Пример #3
0
 /**
  * Contructeur
  */
 public function __construct()
 {
     parent::__construct();
     $this->view = 'login';
     if ($this->_session->is_logged()) {
         Router::redirect("/Users", "refresh");
     }
 }
Пример #4
0
 public function __construct(array $extra = null)
 {
     parent::__construct($extra);
     $eventId = val($_GET, 'eventId');
     $id = val($_GET, 'id');
     if (!empty($eventId) && !empty($id)) {
         $_SESSION['material'][$id] = $eventId;
     }
     if (!empty($_SESSION['material'][$id])) {
         env('event', entry_sql('SELECT * FROM event WHERE eventId=:eventId', array('eventId' => $_SESSION['material'][$id])));
     }
 }
Пример #5
0
 public function __construct($registry)
 {
     parent::__construct($registry);
     if ($_SESSION['user']) {
         $this->user = $_SESSION['user'];
         $this->registry->template->assign("logged", TRUE);
         $this->registry->template->assign("username", $_SESSION['user']['name']);
     } else {
         $this->registry->template->assign("logged", FALSE);
     }
     $this->registry->template->assign("base_url", $this->registry->config['Site']['url']);
 }
Пример #6
0
 public function __construct($registry)
 {
     parent::__construct($registry);
     if (!isset($_POST['uni'])) {
         $_POST['uni	'] = '';
     }
     if (!isset($_POST['fullName'])) {
         $_POST['fullName'] = '';
     }
     if (!isset($_POST['securityLevel'])) {
         $_POST['securityLevel'] = '';
     }
     if (!isset($_POST['departmentCode'])) {
         $_POST['departmentCode'] = '';
     }
     $this->fullName = $_POST['fullName'];
     $this->secuityLevel = $_POST['securityLevel'];
     $this->departmentCode = $_POST['departmentCode'];
 }
Пример #7
0
 /**
  * Constructeur
  */
 public function __construct()
 {
     parent::__construct();
     $this->view = 'Utilisateurs/admin';
     $this->authorization();
 }
Пример #8
0
 public function __construct($pathinfo, $controller)
 {
     parent::__construct($pathinfo, $controller);
     $this->_view->assign("active", "search");
 }
Пример #9
0
 public function __construct()
 {
     parent::__construct('web');
     $this->init();
 }
Пример #10
0
 function __construct($params)
 {
     // 这个需要考虑view,model-----依照最简单的去写
     parent::__construct($params);
     $this->model = new dataModel();
 }
Пример #11
0
 public function __construct()
 {
     parent::__construct();
     $this->user = new Usuarios();
 }
Пример #12
0
 public function __construct()
 {
     parent::__construct();
 }
Пример #13
0
 function __construct($params)
 {
     // 这个需要考虑view,model-----依照最简单的去写
     parent::__construct($params);
 }
Пример #14
0
 public function __construct()
 {
     parent::__construct();
     Session::init();
 }
Пример #15
0
 /**
  * Constructeur
  */
 public function __construct()
 {
     parent::__construct();
     $this->view = 'test';
     $this->message = array();
 }
Пример #16
0
 public function __construct($pathinfo, $controller)
 {
     parent::__construct($pathinfo, $controller);
     $this->size = 4500;
 }
Пример #17
0
 public function __construct()
 {
     parent::__construct();
     $this->oauthDataStore = new PartuzaOAuthDataStore();
 }
Пример #18
0
 function __construct()
 {
     parent::__construct();
     $this->user = new sevenUserModel();
     $this->list = new sevenListModel();
 }
Пример #19
0
 public function __construct($registry)
 {
     parent::__construct($registry);
 }
Пример #20
0
 public function __construct()
 {
     parent::__construct();
     $this->openid = $this->model('openid');
 }
 public function __construct()
 {
     parent::__construct();
     $this->user = $this->load->model('user');
 }
Пример #22
0
 function __construct()
 {
     parent::__construct();
     $this->model = new adminModel();
 }