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


PHP Comment::className方法代码示例

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


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

示例1: getComments

 /**
  * @return \yii\db\ActiveQuery
  */
 public function getComments()
 {
     return $this->hasMany(Comment::className(), ['section_id' => 'id']);
 }
开发者ID:xingcuntian,项目名称:advanced_study,代码行数:7,代码来源:Section.php

示例2: getParent

 public function getParent()
 {
     return $this->hasOne(Comment::className(), ['id' => 'parent_id']);
 }
开发者ID:whystic,项目名称:yii2-whystic-blog,代码行数:4,代码来源:Comment.php

示例3: getComments

 /**
  * 关联关系,获取评论信息,按时间倒序排列
  * @return ActiveQuery
  */
 public function getComments()
 {
     return $this->hasMany(Comment::className(), ['post_id' => 'id'])->orderBy(Comment::tableName() . '.created_at DESC');
 }
开发者ID:abwxwx,项目名称:yiistudy,代码行数:8,代码来源:Post.php

示例4: getSons

 /**
  * 获取所有子评论
  * @return \yii\db\ActiveQuery
  */
 public function getSons()
 {
     return $this->hasMany(Comment::className(), ['parent_id' => 'id']);
 }
开发者ID:zhangsong,项目名称:yii,代码行数:8,代码来源:Comment.php

示例5: getComment

 public function getComment()
 {
     return $this->hasOne(Comment::className(), ['id' => 'commentID']);
 }
开发者ID:BoBRoID,项目名称:new.k-z,代码行数:4,代码来源:CommentsVote.php

示例6: getComments

 /**
  * @return \yii\db\ActiveQuery
  */
 public function getComments()
 {
     return $this->hasMany(Comment::className(), ['post_id' => 'id'])->where('status = ' . Comment::STATUS_ACTIVE)->orderBy('id');
 }
开发者ID:whystic,项目名称:yii2-whystic-blog,代码行数:7,代码来源:Post.php

示例7: getCommentsPassedBad

 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCommentsPassedBad()
 {
     return $this->hasMany(Comment::className(), ['product_id' => 'id'])->where(['status' => Status::STATUS_ACTIVE, 'star' => 1])->orderBy(['created_at' => SORT_DESC]);
 }
开发者ID:liangdabiao,项目名称:funshop,代码行数:7,代码来源:Product.php

示例8: getChildComments

 /**
  * @return \yii\db\ActiveQuery
  */
 public function getChildComments()
 {
     return $this->hasMany(Comment::className(), ['parent' => 'id']);
 }
开发者ID:tqsq2005,项目名称:digpage,代码行数:7,代码来源:Comment.php


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