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


PHP Post::beforeSave方法代码示例

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


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

示例1: beforeSave

 public function beforeSave($insert)
 {
     if ($this->show == 1 && isset($this->oldAttributes['show'])) {
         $this->posted = date('Y-m-d H:i:s');
     }
     return parent::beforeSave($insert);
 }
开发者ID:BoBRoID,项目名称:plochadka,代码行数:7,代码来源:Post.php

示例2: beforeSave

 public function beforeSave($insert)
 {
     if (!parent::beforeSave($insert)) {
         return false;
     }
     $this->content = PostService::contentTweet($this->content, $this);
     return true;
 }
开发者ID:iiyii,项目名称:getyii,代码行数:8,代码来源:Tweet.php

示例3: beforeSave

 public function beforeSave($insert)
 {
     $this->author = isset(\Yii::$app->user->identity['id']) ? \Yii::$app->user->identity['id'] : 0;
     return parent::beforeSave($insert);
 }
开发者ID:BoBRoID,项目名称:plochadka,代码行数:5,代码来源:Post.php

示例4: beforeSave

 public function beforeSave($insert)
 {
     if (parent::beforeSave($insert)) {
         if ($insert) {
             $this->last_comment_time = $this->created_at;
         }
         return true;
     } else {
         return false;
     }
 }
开发者ID:tqsq2005,项目名称:getyii,代码行数:11,代码来源:Topic.php

示例5: beforeSave

 public function beforeSave($insert)
 {
     if (parent::beforeSave($insert)) {
         if ($this->tags) {
             $this->addTags(explode(',', $this->tags));
         }
         $this->content = TopicService::contentTopic($this->content, $this) . ($this->cc ? t('app', 'cc {username}', ['username' => Yii::$app->user->identity->username]) : '');
         if ($insert) {
             $this->user_id = $this->user_id ?: Yii::$app->user->id;
             $this->type = self::TYPE;
             $this->last_comment_time = $this->created_at;
         }
         return true;
     } else {
         return false;
     }
 }
开发者ID:iiyii,项目名称:getyii,代码行数:17,代码来源:Topic.php


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