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


PHP Post::getShortContent方法代码示例

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


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

示例1: actionSocialRss

 /**
  * Url: /yandex|vk|tw|fb/rss.xml
  * @param $kind
  * @return string
  * @throws NotFoundHttpException
  */
 public function actionSocialRss($kind)
 {
     $kind = 'is_' . $kind . '_rss';
     $post = new Post();
     if (!$post->hasAttribute($kind)) {
         throw new NotFoundHttpException('Страница не найдена.');
     }
     Yii::$app->response->format = Response::FORMAT_RAW;
     $headers = Yii::$app->response->headers;
     $headers->add('Content-Type', 'text/xml; charset=utf-8');
     $posts = Post::find()->where(['is_public' => 1, $kind => 1])->orderBy(['created_at' => SORT_DESC])->limit(50)->all();
     $items = [];
     foreach ($posts as $post) {
         $content = $post->getShortContent(500, 700);
         $fulltext = strip_tags($post->content, '<p><a><br>');
         $authorName = isset($post->user) ? $post->user->getDisplayName() : false;
         $image = $post->getAsset(Asset::THUMBNAIL_CONTENT);
         $enclosureUrl = file_exists($image->getFilePath()) ? $image->getFileUrl() : false;
         $enclosureType = $enclosureUrl ? image_type_to_mime_type(exif_imagetype($image->getFilePath())) : false;
         $item = ['title' => htmlspecialchars($post->title), 'link' => $post->url, 'description' => htmlspecialchars($content), 'fulltext' => htmlspecialchars($fulltext), 'pubDate' => date('r', strtotime($post->created_at)), 'authorName' => $authorName, 'enclosureUrl' => $enclosureUrl, 'enclosureType' => $enclosureType];
         $items[] = (object) $item;
     }
     $title = 'Динамомания: Новости';
     $description = 'Лента последних новостей';
     if ($kind == 'is_yandex_rss') {
         $view = '@frontend/views/site/yandex_rss';
     } else {
         $view = '@frontend/views/site/rss';
     }
     return $this->renderPartial($view, compact('title', 'description', 'items'));
 }
开发者ID:alexsynytskiy,项目名称:Dynamomania,代码行数:37,代码来源:SiteController.php


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