Ejemplo n.º 1
0
 public function __construct()
 {
     parent::__construct();
     $this->configs = new stdClass();
     $this->load->config('agendas_professores');
     $this->configs->diaEnvio = $this->config->item('dia_envio');
     $this->configs->status = (bool) $this->config->item('status');
     $this->configs->emailTeste = $this->config->item('email_teste');
     $this->configs->efetuarTeste = (bool) $this->config->item('enviar_email_teste');
     $this->configs->destinatariosEspecificos = $this->config->item('prof_especifico');
 }
Ejemplo n.º 2
0
 public function __construct()
 {
     parent::__construct();
     $this->load->helper('formatar_numero');
     $this->professor = new Kernel_Models_Professor();
 }
Ejemplo n.º 3
0
 /**
  * Construtor.
  */
 public function __construct()
 {
     parent::__construct();
     $this->sqlCandidato = new SqlCandidato();
 }
Ejemplo n.º 4
0
 public function __construct()
 {
     parent::__construct();
     $this->centralDeNotificacoes = new Kernel_Models_Notificacoes();
     $this->debug();
 }
Ejemplo n.º 5
0
 public function __construct()
 {
     parent::__construct();
     $this->filtros = new Filtros();
     $this->debug();
 }
Ejemplo n.º 6
0
 public function __construct()
 {
     parent::__construct();
     $this->load->config('usuarios_auth');
     $this->tempoEspera = $this->config->item('tempo_redirect');
 }