Yii2 framework backup
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

43 lines
948 B

<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace yiiunit\data\ar;
/**
* Class Category.
*
* @property int $id
* @property string $name
*/
class Category extends ActiveRecord
{
public static function tableName()
{
return 'category';
}
public function getItems()
{
return $this->hasMany(Item::className(), ['category_id' => 'id']);
}
public function getLimitedItems()
{
return $this->hasMany(Item::className(), ['category_id' => 'id'])
->onCondition(['item.id' => [1, 2, 3]]);
}
public function getOrderItems()
{
return $this->hasMany(OrderItem::className(), ['item_id' => 'id'])->via('items');
}
public function getOrders()
{
return $this->hasMany(Order::className(), ['id' => 'order_id'])->via('orderItems');
}
}