當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Functions_Lib::load_library方法代碼示例

本文整理匯總了PHP中Functions_Lib::load_library方法的典型用法代碼示例。如果您正苦於以下問題:PHP Functions_Lib::load_library方法的具體用法?PHP Functions_Lib::load_library怎麽用?PHP Functions_Lib::load_library使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Functions_Lib的用法示例。


在下文中一共展示了Functions_Lib::load_library方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: __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

示例2: __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

示例3: __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

示例4: __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

示例5: __construct

 /**
  * __construct()
  */
 public function __construct()
 {
     parent::__construct();
     // check if session is active
     parent::$users->check_session();
     $this->_lang = parent::$lang;
     $this->_creator = Functions_Lib::load_library('Creator_Lib');
     $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']) && Administration_Lib::authorization($this->_current_user['user_authlevel'], 'edit_users') == 1) {
         $this->build_page();
     } else {
         die(Functions_Lib::message($this->_lang['ge_no_permissions']));
     }
 }
開發者ID:saiikup,項目名稱:XG-Proyect-v3.x.x,代碼行數:18,代碼來源:maker.php

示例6: __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->_lang = parent::$lang;
     $this->_resource = parent::$objects->get_objects();
     $this->_pricelist = parent::$objects->get_price();
     $this->_reslist = parent::$objects->get_objects_list();
     $this->_formula = Functions_Lib::load_library('Formula_Lib');
     $this->_noob = Functions_Lib::load_library('NoobsProtection_Lib');
     $this->_galaxyLib = Functions_Lib::load_library('Galaxy_Lib');
     $this->build_page();
 }
開發者ID:rampmaster,項目名稱:XG-Proyect-v3.x.x,代碼行數:21,代碼來源:galaxy.php

示例7: __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));
     // DEFAULT VALUES
     $this->_current_user = parent::$users->get_user_data();
     $this->_lang = parent::$lang;
     $this->_bbcode = Functions_Lib::load_library('BBCode_Lib');
     $this->_ally = '';
     $this->_permissions = array();
     // SOME REQUIRED PATHS
     $this->_lang['dpath'] = DPATH;
     $this->_lang['img_path'] = XGP_ROOT . IMG_PATH;
     $this->_lang['js_path'] = XGP_ROOT . JS_PATH;
     // SET THE PERMISSIONS
     $this->set_permissions();
     // BUILD THE ALLIANCE PAGE
     $this->build_page();
 }
開發者ID:Gritch69,項目名稱:XG-Project,代碼行數:25,代碼來源:alliance.php

示例8: update_moon

 /**
  * method update_moon
  * param $fleet_row
  * param $report
  * param $moonName
  * param $target_userId
  * param $target_planet
  * return the attack result
  */
 private function update_moon($fleet_row, $report, $moonName, $target_userId, $target_planet)
 {
     $moon = $report->tryMoon();
     if ($moon === FALSE) {
         return;
     }
     $galaxy = $fleet_row['fleet_end_galaxy'];
     $system = $fleet_row['fleet_end_system'];
     $planet = $fleet_row['fleet_end_planet'];
     $moon_exists = parent::$db->query_fetch("SELECT `planet_id`\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tFROM `" . PLANETS . "`\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tWHERE `planet_galaxy` = '" . $galaxy . "'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tAND `planet_system` = '" . $system . "'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tAND `planet_planet` = '" . $planet . "'\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tAND `planet_type` = '3';");
     if ($moon_exists['planet_id'] != 0) {
         return;
     }
     extract($moon);
     //$size and $fields
     $_creator = Functions_Lib::load_library('Creator_Lib');
     $_creator->create_moon($galaxy, $system, $planet, $TargetUserID, '', '', $size);
 }
開發者ID:rampmaster,項目名稱:XG-Proyect-v3.x.x,代碼行數:27,代碼來源:attack.php

示例9: array

$lang = array();
// set time zone
date_default_timezone_set(Functions_Lib::read_config('date_time_zone'));
// default skin path
define('DPATH', DEFAULT_SKINPATH);
// For debugging
if (Functions_Lib::read_config('debug') == 1) {
    // Show all errors
    ini_set('display_errors', 1);
    error_reporting(E_ALL);
} else {
    // Only for Betas, it's going to be changed
    ini_set('display_errors', 1);
    error_reporting(E_ALL);
}
$debug = Functions_Lib::load_library('Debug_Lib');
$db = new Database();
$installed = Functions_Lib::read_config('game_installed');
$game_version = Functions_Lib::read_config('version');
$game_lang = Functions_Lib::read_config('lang');
$current_page = isset($_GET['page']) ? $_GET['page'] : '';
// check if is installed
if ($installed == 0 && !defined('IN_INSTALL')) {
    Functions_Lib::redirect(XGP_ROOT . 'install/');
}
// define game version
if ($installed != 0) {
    define('VERSION', $game_version == '' ? '' : 'v' . $game_version);
}
// define game language
define('DEFAULT_LANG', $game_lang == '' ? 'spanish' : $game_lang);
開發者ID:Gritch69,項目名稱:XG-Project,代碼行數:31,代碼來源:common.php


注:本文中的Functions_Lib::load_library方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。