Category.php 952 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<?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
{
18 19
    public static function tableName()
    {
20
        return 'category';
21
    }
22

23 24 25 26
    public function getItems()
    {
        return $this->hasMany(Item::className(), ['category_id' => 'id']);
    }
27 28 29 30 31 32

    public function getLimitedItems()
    {
        return $this->hasMany(Item::className(), ['category_id' => 'id'])
            ->onCondition(['item.id' => [1, 2, 3]]);
    }
Carsten Brandt committed
33 34 35 36 37 38 39 40 41 42

    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');
    }
43
}