Exemplo n.º 1
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model('funcionarios/usuariosModel');
     $this->load->model('funcionarios/funcionariosModel');
     $this->load->model('configuracoes/niveis_acesso/niveisAcessoModel');
 }
Exemplo n.º 2
0
 function __construct()
 {
     parent::__construct();
     $this->setMainTable(DB::TABLE_USER);
 }
Exemplo n.º 3
0
 public function __construct()
 {
     parent::__construct();
 }
Exemplo n.º 4
0
 public function __construct($ambiente = 0, array $tokens)
 {
     parent::__construct();
     $this->setAmbiente($ambiente, $tokens);
 }
Exemplo n.º 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;
 }
Exemplo n.º 6
0
 /**
  *
  * @param Doctrine\ORM\EntityManager $entityManager        	
  */
 public function __construct($entityManager)
 {
     parent::__construct($entityManager);
 }
Exemplo n.º 7
0
 function __construct()
 {
     parent::__construct();
     $this->setMainTable(DB::TABLE_CATEGORY);
     $this->table_sc = Query::getDBSchema()->getTable(DB::TABLE_SUB_CATEGORY);
 }
Exemplo n.º 8
0
 public function __construct()
 {
     parent::__construct();
     $this->TABLE = 'bill';
 }
 public function __construct()
 {
     parent::__construct();
     $this->mTableName = "function_info";
 }
Exemplo n.º 10
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model('configuracoes/configModel');
     $this->config = new configModel();
 }
Exemplo n.º 11
0
 /**
  * @param HttpDataSource $fileDataSource The fileDataSource is used to create the requests.
  */
 public function __construct($fileDataSource)
 {
     parent::__construct();
     $this->fileDataSource = $fileDataSource;
 }
Exemplo n.º 12
0
 function __construct()
 {
     parent::__construct();
     $this->setMainTable(DB::TABLE_CONTEST);
     $this->table_cs = Query::getDBSchema()->getTable(DB::TABLE_CONTEST_SUBSCRIBER);
 }
Exemplo n.º 13
0
 function __construct()
 {
     parent::__construct();
     $this->setMainTable(DB::TABLE_CONTACT);
     $this->table_ct = Query::getDBSchema()->getTable(DB::TABLE_CONTACT_TYPE);
 }
Exemplo n.º 14
0
 function __construct()
 {
     parent::__construct();
     $this->setMainTable(DB::TABLE_RESOURCE);
 }
Exemplo n.º 15
0
 public function __construct($className, $tableName, array $isolationParams = array())
 {
     /*{{{*/
     parent::__construct($className, $tableName, $isolationParams);
 }