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


PHP XGPCore::__construct方法代码示例

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


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

示例1: __construct

 /**
  * __construct()
  */
 public function __construct()
 {
     parent::__construct();
     // check if session is active
     parent::$users->check_session();
     // Check module access
     Functions_Lib::module_message(Functions_Lib::is_module_accesible(self::MODULE_ID));
     $this->_current_user = parent::$users->get_user_data();
     $this->_current_planet = parent::$users->get_planet_data();
     $this->_current_page = isset($_GET['page']) ? $_GET['page'] : NULL;
     $this->_lang = parent::$lang;
     $this->_objects = parent::$objects;
     if ($this->_current_page != 'resources' && $this->_current_page != 'station') {
         $this->_current_page = 'resources';
     }
     // check the current page and the allowed elements
     // resources page
     if ($this->_current_page == 'resources') {
         $this->_allowed['1'] = array(1, 2, 3, 4, 12, 22, 23, 24);
         $this->_allowed['3'] = array(12, 22, 23, 24);
     }
     // station page
     if ($this->_current_page == 'station') {
         $this->_allowed['1'] = array(14, 15, 21, 31, 33, 34, 44);
         $this->_allowed['3'] = array(14, 21, 41, 42, 43);
     }
     // build the page
     $this->build_page();
 }
开发者ID:Gritch69,项目名称:XG-Project,代码行数:32,代码来源:buildings.php

示例2: __construct

 /**
  * __construct()
  */
 public function __construct()
 {
     parent::__construct();
     $this->_lang = parent::$lang;
     $this->_resource = parent::$objects->get_objects();
     $this->_pricelist = parent::$objects->get_price();
     $this->_combat_caps = parent::$objects->get_combat_specs();
 }
开发者ID:Gritch69,项目名称:XG-Project,代码行数:11,代码来源:missions.php

示例3: __construct

 /**
  * __construct()
  */
 public function __construct()
 {
     parent::__construct();
     // check if session is active
     parent::$users->check_session();
     // Check module access
     Functions_Lib::module_message(Functions_Lib::is_module_accesible(self::MODULE_ID));
     $this->build_page();
 }
开发者ID:rampmaster,项目名称:XG-Proyect-v3.x.x,代码行数:12,代码来源:forum.php

示例4: __construct

 /**
  * __construct()
  */
 public function __construct()
 {
     parent::__construct();
     // WE'RE GOING TO HANDLE A DIFFERENT DB OBJECT FOR THE SESSIONS
     $this->_dbc = clone parent::$db;
     session_set_save_handler(array(&$this, 'open'), array(&$this, 'close'), array(&$this, 'read'), array(&$this, 'write'), array(&$this, 'delete'), array(&$this, 'clean'));
     if (session_id() == '') {
         session_start();
     }
 }
开发者ID:Gritch69,项目名称:XG-Project,代码行数:13,代码来源:Sessions.php

示例5: __construct

 /**
  * __construct()
  */
 public function __construct()
 {
     parent::__construct();
     // Other stuff
     $this->clean_up();
     $this->create_backup();
     // Updates
     $this->update_fleets();
     $this->update_statistics();
 }
开发者ID:Gritch69,项目名称:XG-Project,代码行数:13,代码来源:Update_Lib.php

示例6: __construct

 /**
  * __construct
  *
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     // Other stuff
     $this->cleanUp();
     $this->createBackup();
     // Updates
     $this->updateFleets();
     $this->updateStatistics();
 }
开发者ID:saiikup,项目名称:XG-Proyect-v3.x.x,代码行数:15,代码来源:UpdateLib.php

示例7: __construct

 /**
  * __construct()
  */
 public function __construct()
 {
     parent::__construct();
     $this->_lang = parent::$lang;
     if ($this->server_requirementes()) {
         $this->build_page();
     } else {
         die(Functions_Lib::message($this->_lang['ins_no_server_requirements']));
     }
 }
开发者ID:Gritch69,项目名称:XG-Project,代码行数:13,代码来源:update.php

示例8: __construct

 /**
  * __construct()
  */
 public function __construct()
 {
     parent::__construct();
     $this->langs = parent::$lang;
     $this->_planet = Functions_Lib::load_library('PlanetLib');
     if ($this->serverRequirementes()) {
         $this->buildPage();
     } else {
         die(Functions_Lib::message($this->langs['ins_no_server_requirements']));
     }
 }
开发者ID:saiikup,项目名称:XG-Proyect-v3.x.x,代码行数:14,代码来源:installation.php

示例9: __construct

 /**
  * __construct()
  */
 public function __construct()
 {
     parent::__construct();
     $this->_lang = parent::$lang;
     if (Functions_Lib::read_config('reg_enable') == 1) {
         $this->_creator = Functions_Lib::load_library('Creator_Lib');
         $this->build_page();
     } else {
         die(Functions_Lib::message($this->_lang['re_disabled'], 'index.php', '5', FALSE, FALSE));
     }
 }
开发者ID:Gritch69,项目名称:XG-Project,代码行数:14,代码来源:register.php

示例10: __construct

 /**
  * __construct()
  */
 public function __construct()
 {
     parent::__construct();
     // check if session is active
     parent::$users->check_session();
     // Check module access
     Functions_Lib::module_message(Functions_Lib::is_module_accesible(self::MODULE_ID));
     $this->langs = parent::$lang;
     $this->current_user = parent::$users->get_user_data();
     $this->buildPage();
 }
开发者ID:saiikup,项目名称:XG-Proyect-v3.x.x,代码行数:14,代码来源:combatreport.php

示例11: __construct

 /**
  * __construct()
  */
 public function __construct($user, $planet, $galaxy, $system)
 {
     parent::__construct();
     $this->_lang = parent::$lang;
     $this->_current_user = $user;
     $this->_current_planet = $planet;
     $this->_galaxy = $galaxy;
     $this->_system = $system;
     $this->_resource = parent::$objects->get_objects();
     $this->_pricelist = parent::$objects->get_price();
     $this->_formula = Functions_Lib::load_library('Formula_Lib');
     $this->_noob = Functions_Lib::load_library('NoobsProtection_Lib');
 }
开发者ID:Gritch69,项目名称:XG-Project,代码行数:16,代码来源:Galaxy_Lib.php

示例12: __construct

 /**
  * __construct()
  */
 public function __construct()
 {
     parent::__construct();
     // check if session is active
     parent::$users->check_session();
     // Check module access
     Functions_Lib::module_message(Functions_Lib::is_module_accesible(self::MODULE_ID));
     $this->_lang = parent::$lang;
     $this->_current_user = parent::$users->get_user_data();
     $this->_current_planet = parent::$users->get_planet_data();
     $this->_formula = Functions_Lib::load_library('Formula_Lib');
     $this->build_page();
 }
开发者ID:rampmaster,项目名称:XG-Proyect-v3.x.x,代码行数:16,代码来源:phalanx.php

示例13: __construct

 /**
  * __construct()
  */
 public function __construct()
 {
     parent::__construct();
     // check if session is active
     parent::$users->check_session();
     // Check module access
     Functions_Lib::module_message(Functions_Lib::is_module_accesible(self::MODULE_ID));
     $this->_lang = parent::$lang;
     $this->_current_user = parent::$users->get_user_data();
     $this->_have_premium = Officiers_Lib::is_officier_active($this->_current_user['premium_officier_commander']);
     // build the page
     $this->build_page();
 }
开发者ID:rampmaster,项目名称:XG-Proyect-v3.x.x,代码行数:16,代码来源:messages.php

示例14: __construct

 /**
  * __construct()
  */
 public function __construct()
 {
     parent::__construct();
     // check if session is active
     parent::$users->check_session();
     $this->_lang = parent::$lang;
     $this->_current_user = parent::$users->get_user_data();
     // Check if the user is allowed to access
     if (!Administration_Lib::have_access($this->_current_user['user_authlevel'])) {
         die(Functions_Lib::message($this->_lang['ge_no_permissions']));
     } else {
         $this->build_page();
     }
 }
开发者ID:Gritch69,项目名称:XG-Project,代码行数:17,代码来源:home.php

示例15: __construct

 /**
  * __construct()
  */
 public function __construct()
 {
     parent::__construct();
     // check if session is active
     parent::$users->check_session();
     // Check module access
     Functions_Lib::module_message(Functions_Lib::is_module_accesible(self::MODULE_ID));
     $this->_current_user = parent::$users->get_user_data();
     if (!Officiers_Lib::is_officier_active($this->_current_user['premium_officier_commander'])) {
         Functions_Lib::redirect('game.php?page=officier');
     } else {
         $this->build_page();
     }
 }
开发者ID:rampmaster,项目名称:XG-Proyect-v3.x.x,代码行数:17,代码来源:fleetshortcuts.php


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