Esempio n. 1
0
 function __construct($name, kmSmarty &$smarty, kdb_query &$query, mcollect &$mcoll, Log &$log)
 {
     parent::__construct($name, &$smarty);
     $this->query =& $query;
     $this->mcoll =& $mcoll;
     $this->log =& $log;
 }
Esempio n. 2
0
 function __construct(&$cpass)
 {
     parent::__construct("change_pass", &$cpass->smarty);
     $this->cpass =& $cpass;
     $this->query =& get_kdb_connection();
     $this->log =& get_logger();
 }
 function __construct(&$smarty)
 {
     parent::__construct("dis_user", &$smarty);
     $this->query = get_kdb_connection();
     $this->log =& get_logger();
 }
Esempio n. 4
0
 function __construct(&$smarty, &$admin)
 {
     parent::__construct("new_user", &$smarty);
     $this->admin =& $admin;
     $this->query =& get_kdb_connection();
 }
 function __construct(&$smarty)
 {
     parent::__construct("change_group", &$smarty);
     $this->query = get_kdb_connection();
     $this->log =& get_logger();
 }
Esempio n. 6
0
 function __construct(&$auth, &$smarty)
 {
     parent::__construct("login", $smarty);
     $this->auth =& $auth;
 }
Esempio n. 7
0
 function __construct(&$smarty, &$admin)
 {
     parent::__construct("list_group", &$smarty);
     $this->admin =& $admin;
 }
Esempio n. 8
0
 function __construct($name, kmSmarty &$smarty)
 {
     parent::__construct($name, &$smarty);
 }