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


PHP Feed::get_parsed方法代码示例

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


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

示例1: display

 public function display()
 {
     return Feed::get_parsed($this->module_id, $this->name, $this->category, self::get_template($this->get_title(), $this->get_block(), $this->hidden_with_small_screens), $this->number, $this->begin_at);
 }
开发者ID:AroundPBT,项目名称:PHPBoost,代码行数:4,代码来源:FeedMenu.class.php

示例2: display

 function display()
 {
     return Feed::get_parsed($this->module_id, $this->name, $this->category, FeedMenu::get_template($this->get_title(), $this->get_block()), $this->number, $this->begin_at);
 }
开发者ID:janus57,项目名称:PHPBoost_v3c,代码行数:4,代码来源:feed_menu.class.php

示例3: inject_feed

 private static function inject_feed(array $matches)
 {
     $module = $matches[2];
     $args = self::parse_feed_tag_args($matches[1]);
     $name = !empty($args['name']) ? $args['name'] : Feed::DEFAULT_FEED_NAME;
     $cat = !empty($args['cat']) ? $args['cat'] : 0;
     $tpl = false;
     $number = !empty($args['number']) ? $args['number'] : 10;
     $result = '';
     try {
         $result = Feed::get_parsed($module, $name, $cat, $tpl, $number);
     } catch (Exception $e) {
     }
     if (!empty($result)) {
         return $result;
     } else {
         $error = StringVars::replace_vars(LangLoader::get_message('feed_tag_error', 'editor-common'), array('module' => $module));
         return '<div class="error">' . $error . '</div>';
     }
 }
开发者ID:AroundPBT,项目名称:PHPBoost,代码行数:20,代码来源:ContentSecondParser.class.php


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