for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Item option item
*
* @author Alexey Krupskiy <[email protected]>
* @link http://inji.ru/
* @copyright 2015 Alexey Krupskiy
* @license https://github.com/injitools/cms-Inji/blob/master/LICENSE
*/
namespace Ecommerce\Item\Option;
class Item extends \Model
{
public static $objectName = 'Элемент коллекции опции';
public static $cols = [
//Основные параметры
'item_option_id' => ['type' => 'select', 'source' => 'relation', 'relation' => 'option'],
'value' => ['type' => 'text'],
//Системные
'weight' => ['type' => 'number'],
'date_create' => ['type' => 'dateTime']
];
public static $labels = [
'value' => 'Значение'
public static function relations()
return [
'option' => [
'model' => 'Ecommerce\Item\Option',
'col' => 'item_option_id'
]
}