Пример #1
0
 /**
  * Return all Items by Category
  * @return Items
  */
 public function getArticleItems()
 {
     return $this->hasMany(Items::className(), ['catid' => 'id']);
 }
Пример #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getItem()
 {
     return $this->hasOne(Items::className(), ['id' => 'itemid']);
 }