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


PHP NewsStory::countPublishedByTopic方法代碼示例

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


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

示例1: unset

            $story['title'] = $thisstory->textlink() . ' : ' . $story['title'];
            $story['topic_title'] = $thisstory->textlink();
            $story['topic_color'] = '#' . $myts->displayTarea($thisstory->topic_color);
            if ($firsttitle == '') {
                $firsttitle = $myts->htmlSpecialChars($thisstory->topic_title()) . ' - ' . $myts->htmlSpecialChars($thisstory->title());
            }
            $columns[$k][] = $story;
            $k++;
            if ($k == $column_count) {
                $k = 0;
            }
        }
    }
    $xoopsTpl->assign('columns', $columns);
    unset($story);
    $totalcount = NewsStory::countPublishedByTopic($xoopsOption['storytopic'], $xoopsModuleConfig['restrictindex']);
    if ($totalcount > $scount) {
        include_once XOOPS_ROOT_PATH . '/class/pagenav.php';
        $pagenav = new XoopsPageNav($totalcount, $xoopsOption['storynum'], $start, 'start', 'storytopic=' . $xoopsOption['storytopic']);
        $pagenav = new XoopsPageNav($totalcount, $xoopsOption['storynum'], $start, 'start', 'storytopic=' . $xoopsOption['storytopic']);
        if (news_isbot()) {
            // A bot is reading the news, we are going to show it all the links so that he can read everything
            $xoopsTpl->assign('pagenav', $pagenav->renderNav($totalcount));
        } else {
            $xoopsTpl->assign('pagenav', $pagenav->renderNav());
        }
    } else {
        $xoopsTpl->assign('pagenav', '');
    }
} else {
    $xoopsOption['template_main'] = 'news_by_topic.html';
開發者ID:BackupTheBerlios,項目名稱:soopa,代碼行數:31,代碼來源:index.php

示例2: sprintf

    }
    $story['mail_link'] = 'mailto:?subject=' . sprintf(_NW_INTARTICLE, $xoopsConfig['sitename']) . '&body=' . sprintf(_NW_INTARTFOUND, $xoopsConfig['sitename']) . ':  ' . XOOPS_URL . '/modules/news/article.php?storyid=' . $sarray[$i]->storyid();
    $story['imglink'] = '';
    $story['align'] = '';
    if ($sarray[$i]->topicdisplay()) {
        $story['imglink'] = $sarray[$i]->imglink();
        $story['align'] = $sarray[$i]->topicalign();
    }
    $story['title'] = $sarray[$i]->textlink() . '&nbsp;:&nbsp;' . "<a href='" . XOOPS_URL . "/modules/news/article.php?storyid=" . $sarray[$i]->storyid() . "'>" . $sarray[$i]->title() . "</a>";
    $story['hits'] = $sarray[$i]->counter();
    // The line below can be used to display a Permanent Link image
    // $story['title'] .= "&nbsp;&nbsp;<a href='".XOOPS_URL."/modules/news/article.php?storyid=".$sarray[$i]->storyid()."'><img src='".XOOPS_URL."/modules/news/images/x.gif' alt='Permanent Link' /></a>";
    $xoopsTpl->append('stories', $story);
    unset($story);
}
$totalcount = NewsStory::countPublishedByTopic($xoopsOption['storytopic']);
if ($totalcount > $scount) {
    include_once XOOPS_ROOT_PATH . '/class/pagenav.php';
    $pagenav = new XoopsPageNav($totalcount, $xoopsOption['storynum'], $start, 'start', 'storytopic=' . $xoopsOption['storytopic']);
    $xoopsTpl->assign('pagenav', $pagenav->renderNav());
    //$xoopsTpl->assign('pagenav', $pagenav->renderImageNav());
} else {
    $xoopsTpl->assign('pagenav', '');
}
$xoopsTpl->assign('lang_go', _GO);
$xoopsTpl->assign('lang_on', _ON);
$xoopsTpl->assign('lang_printerpage', _NW_PRINTERFRIENDLY);
$xoopsTpl->assign('lang_sendstory', _NW_SENDSTORY);
$xoopsTpl->assign('lang_postedby', _POSTEDBY);
$xoopsTpl->assign('lang_reads', _READS);
include_once XOOPS_ROOT_PATH . '/footer.php';
開發者ID:amjadtbssm,項目名稱:website,代碼行數:31,代碼來源:index.php


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