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


PHP RSSFeed::showListForCentral方法代码示例

本文整理汇总了PHP中RSSFeed::showListForCentral方法的典型用法代码示例。如果您正苦于以下问题:PHP RSSFeed::showListForCentral方法的具体用法?PHP RSSFeed::showListForCentral怎么用?PHP RSSFeed::showListForCentral使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在RSSFeed的用法示例。


在下文中一共展示了RSSFeed::showListForCentral方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1:

 if (Session::haveRight('ticket', CREATE)) {
     echo "<tr class='noHover'><td class='top'>";
     Ticket::showCentralCount(true);
     echo "</td></tr>";
     echo "<tr class='noHover'><td class='top'>";
     Ticket::showCentralList(0, "survey", false);
     echo "</td></tr>";
 }
 if (Session::haveRight("reminder_public", READ)) {
     echo "<tr class='noHover'><td class='top'>";
     Reminder::showListForCentral(false);
     echo "</td></tr>";
 }
 if (Session::haveRight("rssfeed_public", READ)) {
     echo "<tr class='noHover'><td class='top'>";
     RSSFeed::showListForCentral(false);
     echo "</td></tr>";
 }
 echo "</table></td>";
 echo "<td class='top' width='50%'><br>";
 echo "<table class='central'>";
 // Show KB items
 if (Session::haveRight('knowbase', KnowbaseItem::READFAQ)) {
     echo "<tr class='noHover'><td class='top'>";
     KnowbaseItem::showRecentPopular("popular");
     echo "</td></tr>";
     echo "<tr class='noHover'><td class='top'><br>";
     KnowbaseItem::showRecentPopular("recent");
     echo "</td></tr>";
     echo "<tr class='noHover'><td class='top'><br>";
     KnowbaseItem::showRecentPopular("lastupdate");
开发者ID:btry,项目名称:glpi,代码行数:31,代码来源:helpdesk.public.php

示例2: showRSSView

 /**
  * Show the central RSS view
  *
  * @since version 0.84
  **/
 static function showRSSView()
 {
     echo "<table class='tab_cadre_central'>";
     echo "<tr class='noHover'><td class='top' width='50%' style='vertical-align:top !important;'>";
     RSSFeed::showListForCentral();
     echo "</td><td class='top' width='50%' style='vertical-align:top !important;'>";
     if (RSSFeed::canView()) {
         RSSFeed::showListForCentral(false);
     } else {
         echo "&nbsp;";
     }
     echo "</td></tr>";
     echo "</table>";
 }
开发者ID:paisdelconocimiento,项目名称:glpi-smartcities,代码行数:19,代码来源:central.class.php

示例3: showRSSView

 /**
  * Show the central RSS view
  *
  * @since version 0.84
  **/
 static function showRSSView()
 {
     echo "<table class='tab_cadre_central'>";
     echo "<tr><td class='top' width='50%'>";
     RSSFeed::showListForCentral();
     echo "</td><td class='top' width='50%'>";
     if (RSSFeed::canView()) {
         RSSFeed::showListForCentral(false);
     } else {
         echo "&nbsp;";
     }
     echo "</td></tr>";
     echo "</table>";
 }
开发者ID:geldarr,项目名称:hack-space,代码行数:19,代码来源:central.class.php

示例4: showRSSView

 /**
  * Show the central RSS view
  *
  * @since version 0.84
  **/
 static function showRSSView()
 {
     echo "<table class='tab_cadre_central'>";
     echo "<tr><td class='top' width='50%'>";
     RSSFeed::showListForCentral();
     echo "</td><td class='top' width='50%'>";
     if (Session::haveRight("rssfeed_public", "r")) {
         RSSFeed::showListForCentral(false);
     } else {
         echo "&nbsp;";
     }
     echo "</td></tr>";
     echo "</table>";
 }
开发者ID:gaforeror,项目名称:glpi,代码行数:19,代码来源:central.class.php


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