本文整理汇总了PHP中T3::fixJALink方法的典型用法代码示例。如果您正苦于以下问题:PHP T3::fixJALink方法的具体用法?PHP T3::fixJALink怎么用?PHP T3::fixJALink使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类T3
的用法示例。
在下文中一共展示了T3::fixJALink方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: onRenderModule
/**
* Implement event onRenderModule to include the module chrome provide by T3
* This event is fired by overriding ModuleHelper class
* Return false for continueing render module
*
* @param object &$module A module object.
* @param array $attribs An array of attributes for the module (probably from the XML).
*
* @return bool
*/
function onRenderModule(&$module, $attribs)
{
static $chromed = false;
// Detect layout path in T3 themes
if (defined('T3_PLUGIN') && T3::detect()) {
// fix JA Backlink
if ($module->module == 'mod_footer') {
$module->content = T3::fixJALink($module->content);
}
// Chrome for module
if (!$chromed) {
$chromed = true;
// We don't need chrome multi times
$chromePath = T3Path::getPath('html/modules.php');
if (file_exists($chromePath)) {
include_once $chromePath;
}
}
}
return false;
}