mirror of
https://github.com/yiisoft/yii2.git
synced 2026-03-15 03:38:01 +01:00
45 lines
927 B
PHP
45 lines
927 B
PHP
<?php
|
|
|
|
/**
|
|
* @link https://www.yiiframework.com/
|
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
|
* @license https://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::class, ['category_id' => 'id']);
|
|
}
|
|
|
|
public function getLimitedItems()
|
|
{
|
|
return $this->hasMany(Item::class, ['category_id' => 'id'])
|
|
->onCondition(['item.id' => [1, 2, 3]]);
|
|
}
|
|
|
|
public function getOrderItems()
|
|
{
|
|
return $this->hasMany(OrderItem::class, ['item_id' => 'id'])->via('items');
|
|
}
|
|
|
|
public function getOrders()
|
|
{
|
|
return $this->hasMany(Order::class, ['id' => 'order_id'])->via('orderItems');
|
|
}
|
|
}
|