当前位置: 首页>>代码示例>>PHP>>正文


PHP CI::APP方法代码示例

本文整理汇总了PHP中CI::APP方法的典型用法代码示例。如果您正苦于以下问题:PHP CI::APP方法的具体用法?PHP CI::APP怎么用?PHP CI::APP使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在CI的用法示例。


在下文中一共展示了CI::APP方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

	public function __construct() {

		/* assign the application instance */
		self::$APP = $this;

		/* re-assign language and config for modules */
		if ( ! is_a($this->lang, 'MX_Lang')) $this->lang = new MX_Lang;
		if ( ! is_a($this->config, 'MX_Config')) $this->config = new MX_Config;

		parent::__construct();
	}
开发者ID:JamieLomas,项目名称:pyrocms,代码行数:11,代码来源:Base.php

示例2: __construct

 public function __construct()
 {
     self::$APP = CI_Base::get_instance();
     /* assign the core loader */
     self::$APP->load = new MX_Loader();
     /* re-assign language and config for modules */
     if (!is_a(self::$APP->lang, 'MX_Lang')) {
         self::$APP->lang = new MX_Lang();
     }
     if (!is_a(self::$APP->config, 'MX_Config')) {
         self::$APP->config = new MX_Config();
     }
 }
开发者ID:hqye,项目名称:stblog,代码行数:13,代码来源:Ci.php

示例3: __construct

 public function __construct()
 {
     /* assign the application instance */
     self::$APP = CI_Controller::get_instance();
     global $LANG, $CFG;
     /* re-assign language and config for modules */
     if (!$LANG instanceof HMVC_Lang) {
         $LANG = new HMVC_Lang();
     }
     if (!$CFG instanceof HMVC_Config) {
         $CFG = new HMVC_Config();
     }
 }
开发者ID:adamos42,项目名称:ionize,代码行数:13,代码来源:Ci.php

示例4: __construct

 public function __construct()
 {
     /* assign the application instance */
     self::$APP = CI_Controller::get_instance();
     global $LANG, $CFG;
     /* re-assign language and config for modules */
     if (!is_a($LANG, 'MX_Lang')) {
         $LANG = new MX_Lang();
     }
     if (!is_a($CFG, 'MX_Config')) {
         $CFG = new MX_Config();
     }
 }
开发者ID:darkwebside,项目名称:Sprint,代码行数:13,代码来源:Ci.php

示例5: __construct

	public function __construct() {
		
		self::$APP = CI_Controller::get_instance();

		/* assign the core loader */
		self::$APP->load = new MX_Loader;

		/* re-assign language and config for modules */
		if ( ! is_a(self::$APP->lang, 'MX_Lang')) self::$APP->lang = new MX_Lang;
		if ( ! is_a(self::$APP->config, 'MX_Config')) self::$APP->config = new MX_Config;

		/* autoload module items */
		self::$APP->load->_autoloader(array());
	}
开发者ID:reith2004,项目名称:pyrocms,代码行数:14,代码来源:Ci.php

示例6: __construct

 public function __construct()
 {
     /* assign the application instance */
     self::$APP = $this;
     global $LANG, $CFG;
     /* re-assign language and config for modules */
     if (!$LANG instanceof HMVC_Lang) {
         $LANG = new HMVC_Lang();
     }
     if (!$CFG instanceof HMVC_Config) {
         $CFG = new HMVC_Config();
     }
     parent::__construct();
 }
开发者ID:adamos42,项目名称:ionize,代码行数:14,代码来源:Base.php

示例7: __construct

 public function __construct()
 {
     parent::__construct();
     /* assign the application instance */
     self::$APP = $this;
     /* assign the core loader */
     $this->load = new CI_Loader();
     /* the core classes */
     $classes = array('config' => 'Config', 'input' => 'Input', 'benchmark' => 'Benchmark', 'uri' => 'URI', 'output' => 'Output', 'lang' => 'Language', 'router' => 'Router');
     /* assign the core classes */
     foreach ($classes as $key => $class) {
         $this->{$key} = load_class($class);
     }
     /* autoload application items */
     $this->load->_ci_autoloader();
 }
开发者ID:arunoda-susiripala,项目名称:Code51,代码行数:16,代码来源:Controller.php

示例8: __construct

 public function __construct()
 {
     /* assign the application instance */
     self::$APP = MY_Controller::get_instance();
     global $LANG, $CFG;
     /* re-assign language and config for modules */
     // Modified by Ivan Tcholakov, 28-SEP-2012.
     //if ( ! is_a($LANG, 'MX_Lang')) $LANG = new MX_Lang;
     //if ( ! is_a($CFG, 'MX_Config')) $CFG = new MX_Config;
     if (@(!is_a($LANG, 'MX_Lang'))) {
         $LANG = new MX_Lang();
     }
     if (@(!is_a($CFG, 'MX_Config'))) {
         $CFG = new MX_Config();
     }
     //
 }
开发者ID:heruprambadi,项目名称:sim_penyuratan,代码行数:17,代码来源:Ci.php

示例9: __construct

 public function __construct()
 {
     /* assign the application instance */
     self::$APP = CI_Controller::get_instance();
     // Removed by Deepak Patil <deepak.patil@relesol.com>, 19-NOV-2013.
     /*
     global $LANG, $CFG;
     
     // Re-assign language and config for modules.
     // Modified by Deepak Patil <deepak.patil@relesol.com>, 21-OCT-2013.
     //if ( ! is_a($LANG, 'MX_Lang')) $LANG = new MX_Lang;
     //if ( ! is_a($CFG, 'MX_Config')) $CFG = new MX_Config;
     if ( @ ! is_a($LANG, 'MX_Lang')) $LANG = new MX_Lang;
     if ( @ ! is_a($CFG, 'Core_Config')) $CFG = new Core_Config;
     //
     */
 }
开发者ID:patilstar,项目名称:HMVC-WITH-CI,代码行数:17,代码来源:Ci.php

示例10: __construct

 public function __construct()
 {
     /* assign the application instance */
     self::$APP = CI_Controller::get_instance();
     global $LANG, $CFG;
     /* re-assign language and config for modules */
     if (!is_a($LANG, 'MX_Lang')) {
         $LANG = new MX_Lang();
     }
     if (!is_a($CFG, 'MX_Config')) {
         $CFG = new MX_Config();
     }
     /* assign the core loader */
     self::$APP->load = new MX_Loader();
     /* autoload module items */
     self::$APP->load->_autoloader(array());
 }
开发者ID:thomasgroch,项目名称:quiz,代码行数:17,代码来源:Ci.php

示例11: __construct

 public function __construct()
 {
     /* assign the application instance */
     self::$APP = $this;
     // Removed by Ivan Tcholakov, 19-NOV-2013.
     /*
     global $LANG, $CFG;
     
     // Re-assign language and config for modules.
     // Modified by Ivan Tcholakov, 21-OCT-2013.
     //if ( ! is_a($LANG, 'MX_Lang')) $LANG = new MX_Lang;
     //if ( ! is_a($CFG, 'MX_Config')) $CFG = new MX_Config;
     if ( @ ! is_a($LANG, 'MX_Lang')) $LANG = new MX_Lang;
     if ( @ ! is_a($CFG, 'Core_Config')) $CFG = new Core_Config;
     //
     */
     parent::__construct();
 }
开发者ID:Qnatz,项目名称:starter-public-edition-4,代码行数:18,代码来源:Base.php

示例12: __construct

 public function __construct()
 {
     parent::__construct();
     /* assign the application instance */
     self::$APP = CI_Base::get_instance();
     /* assign the core classes */
     $classes = CI_VERSION < 2 ? array('config' => 'Config', 'input' => 'Input', 'benchmark' => 'Benchmark', 'uri' => 'URI', 'output' => 'Output', 'lang' => 'Language', 'router' => 'Router') : is_loaded();
     foreach ($classes as $key => $class) {
         $this->{$key} = load_class($class);
     }
     /* assign the core loader */
     $this->load = load_class('Loader', 'core');
     /* autoload application items */
     $this->load->_ci_autoloader();
     /* re-assign language and config for modules */
     if (!is_a($this->lang, 'MX_Lang')) {
         $this->lang = new MX_Lang();
     }
     // if ( ! is_a($this->config, 'MX_Config')) $this->config = new MX_Config;
 }
开发者ID:unisexx,项目名称:adf16,代码行数:20,代码来源:Base.php

示例13: __construct

 public function __construct()
 {
     parent::__construct();
     /* assign the application instance */
     self::$APP = CI_Base::get_instance();
     /* assign the core loader */
     $this->load = new CI_Loader();
     /* use modular config and language */
     $this->config = new MX_Config();
     $this->lang = new MX_Language();
     /* the core classes */
     $classes = array('input' => 'Input', 'benchmark' => 'Benchmark', 'uri' => 'URI', 'output' => 'Output', 'router' => 'Router');
     /* assign the core classes */
     foreach ($classes as $key => $class) {
         $this->{$key} = load_class($class);
     }
     /* autoload application items */
     $this->load->_ci_autoloader();
     /* re-assign the core loader to use modules */
     $this->load = class_exists('MX_Loader', FALSE) ? new MX_Loader() : new Loader();
 }
开发者ID:RoverWire,项目名称:eventos-nacionales,代码行数:21,代码来源:Controller.php

示例14: __construct

 public function __construct()
 {
     parent::__construct();
     /* assign the application instance */
     self::$APP = CI_Base::get_instance();
     /* assign the core classes */
     $classes = is_loaded();
     foreach ($classes as $key => $class) {
         $this->{$key} = load_class($class);
     }
     /* assign the core loader */
     $this->load = load_class('Loader', 'core');
     /* re-assign language and config for modules */
     if (!is_a($this->lang, 'MX_Lang')) {
         $this->lang = new MX_Lang();
     }
     if (!is_a($this->config, 'MX_Config')) {
         $this->config = new MX_Config();
     }
     /* autoload application items */
     $this->load->_ci_autoloader();
 }
开发者ID:hqye,项目名称:stblog,代码行数:22,代码来源:Base.php

示例15: __construct

 public function __construct()
 {
     /* assign the application instance */
     self::$APP = CI_Controller::ci_get_instance();
 }
开发者ID:RCMmedia,项目名称:rubicon,代码行数:5,代码来源:Ci.php


注:本文中的CI::APP方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。