1 | <?php |
||
16 | class Badge extends \Model { |
||
17 | |||
18 | public static $cols = [ |
||
19 | 'name' => ['type' => 'text'], |
||
20 | 'image_file_id' => ['type' => 'image'], |
||
21 | ]; |
||
22 | public static $forms = [ |
||
23 | 'manager' => [ |
||
24 | 'map' => [ |
||
25 | ['name', 'image_file_id'] |
||
26 | ] |
||
27 | ] |
||
28 | ]; |
||
29 | public static $labels = [ |
||
30 | 'name' => 'Название', |
||
31 | 'image_file_id' => 'Изображение бейджа' |
||
32 | ]; |
||
33 | public static $dataManagers = [ |
||
34 | 'manager' => [ |
||
35 | 'cols' => ['name', 'image_file_id'] |
||
36 | ] |
||
37 | ]; |
||
38 | |||
39 | public static function relations() { |
||
47 | } |