當前位置: 首頁>>代碼示例>>PHP>>正文


PHP XoopsTpl::load_filter方法代碼示例

本文整理匯總了PHP中XoopsTpl::load_filter方法的典型用法代碼示例。如果您正苦於以下問題:PHP XoopsTpl::load_filter方法的具體用法?PHP XoopsTpl::load_filter怎麽用?PHP XoopsTpl::load_filter使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在XoopsTpl的用法示例。


在下文中一共展示了XoopsTpl::load_filter方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: elseif

} elseif ($category > 0) {
    $crit_top = new CriteriaCompo(new Criteria("cat_id", $category));
    $crit_top->add(new Criteria("forum_id", "(" . implode(", ", $valid_forums) . ")", "IN"));
    $forums_top = $forum_handler->getIds($crit_top);
    $valid_forums = array_intersect($forums_top, $valid_forums);
}
if (count($valid_forums) == 0) {
    newbb_trackback_response(1, _NOPERM);
}
$charset = 'UTF-8';
header('Content-Type:text/xml; charset=' . $charset);
$tpl = new XoopsTpl();
$tpl->caching = 2;
$tpl->cache_lifetime = $xoopsModuleConfig['rss_cachetime'] * 60;
if (!empty($xoopsConfig['rewrite'])) {
    $tpl->load_filter('output', 'xoRewriteModule');
}
mod_loadFunctions("cache");
$xoopsCachedTemplateId = md5(mod_generateCacheId_byGroup() . str_replace(XOOPS_URL, '', $_SERVER['REQUEST_URI']));
$compile_id = NULL;
if (!$tpl->is_cached('db:newbb_rss.html', $xoopsCachedTemplateId, $compile_id)) {
    mod_loadFunctions("time", "newbb");
    $xmlrss_handler =& xoops_getmodulehandler('xmlrss', 'newbb');
    $rss = $xmlrss_handler->create();
    $rss->setVarRss('channel_title', $xoopsConfig['sitename'] . ' :: ' . _MD_FORUM);
    $rss->channel_link = XOOPS_URL . '/';
    $rss->setVarRss('channel_desc', $xoopsConfig['slogan'] . ' :: ' . $xoopsModule->getInfo('description'));
    // There is a "bug" with xoops function formatTimestamp(time(), 'rss')
    // We have to make a customized function
    //$rss->channel_lastbuild = formatTimestamp(time(), 'rss');
    $rss->setVarRss('channel_lastbuild', newbb_formatTimestamp(time(), 'rss'));
開發者ID:BackupTheBerlios,項目名稱:haxoo-svn,代碼行數:31,代碼來源:rss.php


注:本文中的XoopsTpl::load_filter方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。