1 | <?php |
||
27 | class RefCombo extends StaticCombo |
||
28 | { |
||
29 | /** |
||
30 | * @var string |
||
31 | */ |
||
32 | public $gtype; |
||
33 | |||
34 | /** |
||
35 | * @var array additional find options that will be passed to [[Ref]] model |
||
36 | */ |
||
37 | public $findOptions = []; |
||
38 | |||
39 | /** |
||
40 | * @var string Dictionary name for i18n module to translate refs |
||
41 | */ |
||
42 | public $i18nDictionary; |
||
43 | |||
44 | public $_hasId = true; |
||
45 | |||
46 | public function init() |
||
52 | |||
53 | public function prepareData() |
||
58 | } |
||
59 |