本文整理汇总了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();
}
示例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();
}
}
示例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();
}
}
示例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();
}
}
示例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());
}
示例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();
}
示例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();
}
示例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();
}
//
}
示例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;
//
*/
}
示例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());
}
示例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();
}
示例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;
}
示例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();
}
示例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();
}
示例15: __construct
public function __construct()
{
/* assign the application instance */
self::$APP = CI_Controller::ci_get_instance();
}