コード例 #1
0
ファイル: star.php プロジェクト: zydj333/cailaidian.cn
 public function __construct()
 {
     parent::__construct();
     $this->load->model('star_model');
     $this->load->model('center_product_model');
     $this->load->library('pagenation');
 }
コード例 #2
0
ファイル: launch.php プロジェクト: zydj333/cailaidian.cn
 public function __construct()
 {
     parent::__construct();
     $this->load->model('launch_model');
     $this->load->library('pagenation');
     $this->common->checkMemberLogin();
 }
コード例 #3
0
ファイル: email.php プロジェクト: zydj333/cailaidian.cn
 public function __construct()
 {
     parent::__construct();
     $this->load->model('center_model');
     $this->load->model('center_account_model');
     $this->member = json_decode($this->common->get_session('member'));
 }
コード例 #4
0
ファイル: mysetting.php プロジェクト: zydj333/cailaidian.cn
 public function __construct()
 {
     parent::__construct();
     $this->load->model('mysetting_model');
     $this->common->checkMemberLogin();
     $this->userinfo = $this->userinfo();
 }
コード例 #5
0
ファイル: download.php プロジェクト: zydj333/cailaidian.cn
 public function __construct()
 {
     parent::__construct();
     $this->load->model('product_model');
     //$this->load->helper('download');
     $this->common->checkMemberLogin();
 }
コード例 #6
0
ファイル: notificacao.php プロジェクト: 00victor00/WeLearn
 public function __construct()
 {
     parent::__construct();
     $this->_notificacaoDao = WeLearn_DAO_DAOFactory::create('NotificacaoDAO');
     $this->_usuarioAtual = $this->autenticacao->getUsuarioAutenticado();
     $this->template->appendJSImport('notificacao.js');
 }
コード例 #7
0
 /**
  * Index Page for this controller.
  *
  * Maps to the following URL
  * 		http://example.com/index.php/welcome
  *	- or -
  * 		http://example.com/index.php/welcome/index
  *	- or -
  * Since this controller is set as the default controller in
  * config/routes.php, it's displayed at http://example.com/
  *
  * So any other public methods not prefixed with an underscore will
  * map to /index.php/welcome/<method_name>
  * @see http://codeigniter.com/user_guide/general/urls.html
  */
 function __construct()
 {
     parent::__construct();
     $this->load->model('Mdl_Dashboard', '', TRUE);
     $this->load->model('Mdl_Users');
     $this->load->model('Mdl_Requests');
     $this->load->model('Mdl_Prays');
 }
コード例 #8
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model('center_model');
     $this->load->model('center_account_model');
     $this->load->model('center_point_model');
     $this->load->model('mysetting_model');
     $this->load->library('pagenation');
     $this->common->checkMemberLogin();
 }
コード例 #9
0
 function __construct()
 {
     parent::__construct();
     $data = array();
     $this->load->library('template');
     $this->template->set_template('backend');
     $this->template->add_doctype();
     $this->template->parse_view('header', 'backend/dashboard/header', $data);
     $this->template->parse_view('content', 'backend/dashboard/content', $data);
     $this->template->parse_view('siderbar', 'backend/dashboard/siderbar', $data);
     $this->template->parse_view('footer', 'backend/dashboard/footer', $data);
 }
コード例 #10
0
ファイル: configuracao.php プロジェクト: 00victor00/WeLearn
 function __construct()
 {
     parent::__construct();
     $this->template->appendJSImport('configuracao_usuario.js');
 }
コード例 #11
0
 /**
  * Index Page for this controller.
  *
  * Maps to the following URL
  * 		http://example.com/index.php/welcome
  *	- or -
  * 		http://example.com/index.php/welcome/index
  *	- or -
  * Since this controller is set as the default controller in
  * config/routes.php, it's displayed at http://example.com/
  *
  * So any other public methods not prefixed with an underscore will
  * map to /index.php/welcome/<method_name>
  * @see http://codeigniter.com/user_guide/general/urls.html
  */
 function __construct()
 {
     parent::__construct();
     $this->load->model('Mdl_AdminUsers', '', TRUE);
     $this->load->helper('form');
 }
コード例 #12
0
ファイル: quickstart.php プロジェクト: 00victor00/WeLearn
 /**
  * Construtor carrega configurações da classes base CI_Controller
  * (Resolve bug ao utilizar this->load)
  */
 function __construct()
 {
     parent::__construct();
     $this->template->appendJSImport('quickstart.js')->appendJSImport('dados_pessoais.js')->appendJSImport('dados_profissionais.js')->appendJSImport('imagem_usuario.js');
 }
コード例 #13
0
ファイル: busca.php プロジェクト: 00victor00/WeLearn
 function __construct()
 {
     parent::__construct();
     $this->template->appendJSImport('busca.js');
 }
コード例 #14
0
ファイル: area.php プロジェクト: 00victor00/WeLearn
 /**
  * Construtor carrega configurações da classes base CI_Controller
  * (Resolve bug ao utilizar this->load)
  */
 function __construct()
 {
     parent::__construct();
     $this->_areaDAO = WeLearn_DAO_DAOFactory::create('AreaDAO');
     $this->template->appendJSImport('area.js');
 }
コード例 #15
0
ファイル: contact.php プロジェクト: nladuo/mycode-backup
 function __construct()
 {
     parent::__construct();
     header('Content-type:text/html; charset=utf-8');
 }
コード例 #16
0
ファイル: mensagem.php プロジェクト: 00victor00/WeLearn
 function __construct()
 {
     parent::__construct();
     $this->template->appendJSImport('home.js')->appendJSImport('mensagem.js');
 }
コード例 #17
0
ファイル: index.php プロジェクト: zydj333/cailaidian.cn
 public function __construct()
 {
     parent::__construct();
     $this->load->model('index_model');
 }
コード例 #18
0
ファイル: blog.php プロジェクト: nladuo/mycode-backup
 function __construct()
 {
     parent::__construct();
     header('Content-type:text/html; charset=utf-8');
     $this->load->helper("markdown");
 }
コード例 #19
0
ファイル: administracao.php プロジェクト: 00victor00/WeLearn
 function __construct()
 {
     parent::__construct();
 }
コード例 #20
0
ファイル: home.php プロジェクト: 00victor00/WeLearn
 /**
  * Construtor carrega configurações da classes base CI_Controller
  * (Resolve bug ao utilizar this->load)
  */
 function __construct()
 {
     parent::__construct();
     $this->template->appendJSImport('home.js')->appendJSImport('feed.js');
     $this->_feedDao = WeLearn_DAO_DAOFactory::create('FeedDAO');
 }
コード例 #21
0
ファイル: convite.php プロジェクト: 00victor00/WeLearn
 public function __construct()
 {
     parent::__construct();
     $this->template->appendJSImport('home.js')->appendJSImport('convite.js');
 }
コード例 #22
0
ファイル: Api_Unit.php プロジェクト: WangYinXing/ipray_server
 public function __construct()
 {
     parent::__construct();
     //
     $this->load->library('Resphelper');
 }
コード例 #23
0
ファイル: sugestao.php プロジェクト: 00victor00/WeLearn
 /**
  * Construtor carrega configurações da classes base CI_Controller
  * (Resolve bug ao utilizar this->load)
  */
 function __construct()
 {
     parent::__construct();
     $this->template->appendJSImport('curso.js')->appendJSImport('sugestao_curso.js');
 }
コード例 #24
0
 public function __construct()
 {
     parent::__construct();
     $this->load->model('center_model');
     $this->common->checkMemberLogin();
 }