当前位置: 首页>>代码示例>>PHP>>正文


PHP TikiLib::custom_template方法代码示例

本文整理汇总了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");
开发者ID:linuxwhy,项目名称:tiki-1,代码行数:31,代码来源:articles.php

示例2: smarty_function_custom_template

function smarty_function_custom_template($params, $smarty)
{
    return TikiLib::custom_template($params['basetpl'], $params['modifiers']);
}
开发者ID:linuxwhy,项目名称:tiki-1,代码行数:4,代码来源:function.custom_template.php


注:本文中的TikiLib::custom_template方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。