本文整理汇总了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 */