當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。