Beispiel #1
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model('funcionarios/usuariosModel');
     $this->load->model('funcionarios/funcionariosModel');
     $this->load->model('configuracoes/niveis_acesso/niveisAcessoModel');
 }
Beispiel #2
0
 function __construct()
 {
     parent::__construct();
     $this->setMainTable(DB::TABLE_USER);
 }
Beispiel #3
0
 public function __construct()
 {
     parent::__construct();
 }
 public function __construct($ambiente = 0, array $tokens)
 {
     parent::__construct();
     $this->setAmbiente($ambiente, $tokens);
 }
Beispiel #5
0
 /**
  * @param Database $db
  * @param string $resourceName You should specify this as an attribute when writing a Dao implementation
  * @param array $attributes You should specify this as an attribute when writing a Dao implementation
  * @param array $nullAttributes You should specify this as an attribute when writing a Dao implementation
  * @param array $defaultValueAttributes You should specify this as an attribute when writing a Dao implementation
  */
 public function __construct($db)
 {
     parent::__construct();
     $this->db = $db;
 }
 /**
  *
  * @param Doctrine\ORM\EntityManager $entityManager        	
  */
 public function __construct($entityManager)
 {
     parent::__construct($entityManager);
 }
Beispiel #7
0
 function __construct()
 {
     parent::__construct();
     $this->setMainTable(DB::TABLE_CATEGORY);
     $this->table_sc = Query::getDBSchema()->getTable(DB::TABLE_SUB_CATEGORY);
 }
Beispiel #8
0
 public function __construct()
 {
     parent::__construct();
     $this->TABLE = 'bill';
 }
 public function __construct()
 {
     parent::__construct();
     $this->mTableName = "function_info";
 }
Beispiel #10
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model('configuracoes/configModel');
     $this->config = new configModel();
 }
Beispiel #11
0
 /**
  * @param HttpDataSource $fileDataSource The fileDataSource is used to create the requests.
  */
 public function __construct($fileDataSource)
 {
     parent::__construct();
     $this->fileDataSource = $fileDataSource;
 }
Beispiel #12
0
 function __construct()
 {
     parent::__construct();
     $this->setMainTable(DB::TABLE_CONTEST);
     $this->table_cs = Query::getDBSchema()->getTable(DB::TABLE_CONTEST_SUBSCRIBER);
 }
Beispiel #13
0
 function __construct()
 {
     parent::__construct();
     $this->setMainTable(DB::TABLE_CONTACT);
     $this->table_ct = Query::getDBSchema()->getTable(DB::TABLE_CONTACT_TYPE);
 }
Beispiel #14
0
 function __construct()
 {
     parent::__construct();
     $this->setMainTable(DB::TABLE_RESOURCE);
 }
Beispiel #15
0
 public function __construct($className, $tableName, array $isolationParams = array())
 {
     /*{{{*/
     parent::__construct($className, $tableName, $isolationParams);
 }