コード例 #1
0
ファイル: Category.php プロジェクト: yeesoft/yii2-yee-media
 /**
  * @inheritdoc
  */
 public function init()
 {
     parent::init();
     if ($this->className() == Category::className()) {
         $this->visible = 1;
     }
 }
コード例 #2
0
ファイル: Album.php プロジェクト: yeesoft/yii2-yee-media
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCategory()
 {
     return $this->hasOne(Category::className(), ['id' => 'category_id']);
 }