本文整理汇总了PHP中T3::init方法的典型用法代码示例。如果您正苦于以下问题:PHP T3::init方法的具体用法?PHP T3::init怎么用?PHP T3::init使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类T3
的用法示例。
在下文中一共展示了T3::init方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: onAfterRoute
function onAfterRoute()
{
if (defined('T3_PLUGIN')) {
T3Bot::preload();
$template = T3::detect();
if ($template) {
// load the language
$this->loadLanguage();
T3Bot::beforeInit();
T3::init($template);
T3Bot::afterInit();
//load T3 plugins
JPluginHelper::importPlugin('t3');
if (is_file(T3_TEMPLATE_PATH . '/templateHook.php')) {
include_once T3_TEMPLATE_PATH . '/templateHook.php';
}
$tplHookCls = preg_replace('/(^[^A-Z_]+|[^A-Z0-9_])/i', '', T3_TEMPLATE . 'Hook');
$dispatcher = JDispatcher::getInstance();
if (class_exists($tplHookCls)) {
new $tplHookCls($dispatcher, array());
}
$dispatcher->trigger('onT3Init');
//check and execute the t3action
T3::checkAction();
//check and change template for ajax
T3::checkAjax();
}
}
}
示例2: onAfterRoute
function onAfterRoute()
{
include_once dirname(__FILE__) . '/includes/core/defines.php';
include_once dirname(__FILE__) . '/includes/core/t3.php';
include_once dirname(__FILE__) . '/includes/core/bot.php';
T3Bot::preload();
$template = T3::detect();
if ($template) {
T3Bot::beforeInit();
T3::init($template);
T3Bot::afterInit();
//check and execute the t3action
T3::checkAction();
//check and change template for ajax
T3::checkAjax();
}
}