本文整理汇总了PHP中TikiLib::custom_template方法的典型用法代码示例。如果您正苦于以下问题:PHP TikiLib::custom_template方法的具体用法?PHP TikiLib::custom_template怎么用?PHP TikiLib::custom_template使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TikiLib
的用法示例。
在下文中一共展示了TikiLib::custom_template方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
$type = $_REQUEST["type"];
} else {
$type = '';
}
if (isset($_REQUEST["topic"])) {
$topic = $_REQUEST["topic"];
} else {
$topic = '';
}
if (isset($_REQUEST['topicName'])) {
$topicName = $_REQUEST['topicName'];
} else {
$topicName = '';
}
if (isset($_REQUEST["categId"])) {
$categId = $_REQUEST["categId"];
} else {
$categId = '';
}
$smarty->assign_by_ref('categId', $categId);
if (!isset($_REQUEST['lang'])) {
$_REQUEST['lang'] = '';
}
$topics = $artlib->list_topics();
$smarty->assign_by_ref('topics', $topics);
$smarty->assign_by_ref('type', $type);
$smarty->assign('maxArticles', $prefs['maxArticles']);
include_once 'tiki-section_options.php';
// Display the template
$smarty->assign('mid', TikiLib::custom_template('lists/articles.tpl', $type));
$smarty->display("tiki.tpl");
示例2: smarty_function_custom_template
function smarty_function_custom_template($params, $smarty)
{
return TikiLib::custom_template($params['basetpl'], $params['modifiers']);
}