1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?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 integer $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');
}
}