本文整理匯總了PHP中Hooks::call_hook方法的典型用法代碼示例。如果您正苦於以下問題:PHP Hooks::call_hook方法的具體用法?PHP Hooks::call_hook怎麽用?PHP Hooks::call_hook使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Hooks
的用法示例。
在下文中一共展示了Hooks::call_hook方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: define
// define game version
if ($installed != 0) {
define('VERSION', $game_version == '' ? '' : 'v' . $game_version);
}
// define game language
define('DEFAULT_LANG', $game_lang == '' ? 'spanish' : $game_lang);
if (!defined('IN_INSTALL')) {
require_once XGP_ROOT . 'application/core/Sessions.php';
require_once XGP_ROOT . 'application/core/Hooks.php';
require_once XGP_ROOT . 'application/libraries/Statistics_Lib.php';
require_once XGP_ROOT . 'application/libraries/UpdateResources_Lib.php';
require_once XGP_ROOT . 'application/libraries/Update_Lib.php';
// Sessions
$session = new Sessions();
// Hooks
$hooks = new Hooks();
// Before load stuff
$hooks->call_hook('before_loads');
if (!isset($InLogin) or $InLogin != TRUE) {
require_once XGP_ROOT . 'application/libraries/SecurePage_Lib.php';
$exclude = array('editor');
if (!in_array($current_page, $exclude)) {
SecurePage_Lib::run();
}
}
if (!defined('IN_ADMIN')) {
// SEVERAL UPDATES
new Update_Lib();
}
}
/* end of common.php */