當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Tag::className方法代碼示例

本文整理匯總了PHP中app\models\Tag::className方法的典型用法代碼示例。如果您正苦於以下問題:PHP Tag::className方法的具體用法?PHP Tag::className怎麽用?PHP Tag::className使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在app\models\Tag的用法示例。


在下文中一共展示了Tag::className方法的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getTag

 public function getTag()
 {
     return $this->hasOne(Tag::className(), ['tid' => 'id']);
 }
開發者ID:hackvijay,項目名稱:yii-qa,代碼行數:4,代碼來源:TagItem.php

示例2: getTag

 public function getTag()
 {
     return $this->hasOne(Tag::className(), ['id' => 'tag_id'])->select(['id', 'name']);
 }
開發者ID:feijilei,項目名稱:simpleforum,代碼行數:4,代碼來源:TagTopic.php

示例3: getTags

 public function getTags()
 {
     return $this->hasMany(Tag::className(), ['id' => 'tag_id'])->viaTable(TagTopic::tableName(), ['topic_id' => 'id']);
 }
開發者ID:feijilei,項目名稱:simpleforum,代碼行數:4,代碼來源:Topic.php

示例4: getPersonalTags

 public function getPersonalTags()
 {
     return $this->hasMany(Tag::className(), ['id' => 'tag_id'])->personalTags()->viaTable('partner_tag', ['partner_id' => 'id']);
 }
開發者ID:vsguts,項目名稱:crm,代碼行數:4,代碼來源:Partner.php

示例5: getTags

 /**
  * @return \yii\db\ActiveQuery
  */
 public function getTags()
 {
     return $this->hasMany(Tag::className(), ['id' => 'tag_id'])->viaTable('artist_tag', ['artist_id' => 'id']);
 }
開發者ID:shkrad,項目名稱:my_music_storage,代碼行數:7,代碼來源:Artist.php

示例6: getTags

 public function getTags()
 {
     return $this->hasMany(Tag::className(), ['id' => 'tagId'])->viaTable('image_tag', ['imageId' => 'id']);
 }
開發者ID:tomjamescn,項目名稱:photo_gallery,代碼行數:4,代碼來源:Image.php

示例7: getBookTags

 /**
  * @return \yii\db\ActiveQuery
  */
 public function getBookTags()
 {
     return $this->hasMany(Tag::className(), ['id' => 'tagId'])->viaTable('book_tag', ['bookId' => 'id']);
 }
開發者ID:CrystalEller,項目名稱:yii2ebooks,代碼行數:7,代碼來源:Book.php

示例8: getTags

 /**
  * @return \yii\db\ActiveQuery
  */
 public function getTags()
 {
     return $this->hasMany(Tag::className(), ['user_id' => 'id']);
 }
開發者ID:shkrad,項目名稱:my_music_storage,代碼行數:7,代碼來源:User.php

示例9: getTag0

 /**
  * @return \yii\db\ActiveQuery
  */
 public function getTag0()
 {
     return $this->hasOne(Tag::className(), ['tag_id' => 'tag']);
 }
開發者ID:KosovMax,項目名稱:mysite,代碼行數:7,代碼來源:Description.php

示例10: getTags

 /**
  * 獲取帖子標簽(關聯tag_item表)
  * @return mixed
  */
 public function getTags()
 {
     return $this->hasMany(Tag::className(), ['id' => 'tid'])->viaTable(TagItem::tableName(), ['target_id' => 'id'], function ($model) {
         $model->andWhere(['target_type' => static::TYPE]);
     });
 }
開發者ID:hackvijay,項目名稱:yii-qa,代碼行數:10,代碼來源:Topic.php


注:本文中的app\models\Tag::className方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。