| 1 | <?php |
||
| 14 | class Event extends \Model |
||
| 15 | { |
||
| 16 | public static $cols = [ |
||
| 17 | //Основные параметры |
||
| 18 | 'user_id' => ['type' => 'select', 'source' => 'relation', 'relation' => 'user'], |
||
| 19 | 'cart_id' => ['type' => 'select', 'source' => 'relation', 'relation' => 'cart'], |
||
| 20 | 'cart_event_type_id' => ['type' => 'select', 'source' => 'relation', 'relation' => 'type'], |
||
| 21 | 'info' => ['type' => 'text'], |
||
| 22 | //Системные |
||
| 23 | 'date_create' => ['type' => 'dateTime'], |
||
| 24 | ]; |
||
| 25 | |||
| 26 | public static function indexes() |
||
| 43 | |||
| 44 | public static function relations() |
||
| 61 | |||
| 62 | public function afterSave() |
||
| 67 | |||
| 68 | } |
||
| 69 |