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


PHP Post::getPostBySlug方法代码示例

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


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

示例1: actionCreate

 /**
  * Creates a new Post model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new Post();
     $currentUser = \Yii::$app->user->identity;
     if (!$currentUser->isAuthor()) {
         //不是 作者 无权操作
         return $this->goHome();
     }
     if ($model->load(Yii::$app->request->post())) {
         if (isset($model->user_id) || $currentUser->id != $model->user_id && !$currentUser->isAdmin()) {
             $model->user_id = $currentUser->id;
         }
         $model->user_id = $currentUser->id;
         //处理slug
         $title = mb_strlen($model->title, 'utf8') > 6 ? mb_substr($model->title, 0, 5) : $model->title;
         $model->slug = \app\helpers\Pinyin::encode($title, 'all');
         while (Post::getPostBySlug($model->slug)) {
             $model->slug .= '-1';
         }
         if ($model->save()) {
             $this->flash('发布成功!', 'info');
             return $this->redirect(['update', 'id' => $model->id]);
         }
     }
     $model->comment_status = Post::COMMENT_STATUS_OK;
     $model->user_id = $currentUser->id;
     return $this->render('create', ['model' => $model, 'isAdmin' => $currentUser->isAdmin()]);
 }
开发者ID:sunjie20081001,项目名称:gudaotu-yii2,代码行数:33,代码来源:PostController.php

示例2: actionView

 /**
  * 文章页面
  * @param $slug
  * @return string
  */
 public function actionView($slug)
 {
     $model = Post::getPostBySlug($slug);
     $commentSearch = new CommentSearch();
     if (!$model) {
     }
     $dataProvider = $commentSearch->search(['post_id' => $model->id]);
     return $this->render('view', ['model' => $model, 'dataProvider' => $dataProvider]);
 }
开发者ID:sunjie20081001,项目名称:gudaotu-yii2,代码行数:14,代码来源:SiteController.php


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