1 | <?php |
||
27 | class OrganizationListWidget extends Widget |
||
28 | { |
||
29 | /** |
||
30 | * @var ActiveDataProvider |
||
31 | */ |
||
32 | public $dataProvider; |
||
33 | |||
34 | const ACTION_COLUMN_DEFAULT = 'default'; |
||
35 | /** |
||
36 | * @var array|null|string ActionColumn class configuration. Null if you do not need it. |
||
37 | * 'default' if you want to use the OrganizationListActionColumn. |
||
38 | * Note: If you want to use your own ActionColumn class configuration, please do not |
||
39 | * forget to attach the 'class' key. |
||
40 | */ |
||
41 | public $actionColumn; |
||
42 | |||
43 | /** |
||
44 | * @var array|null Additional columns' configuration arrays. |
||
45 | * It will be appended after the existed columns. |
||
46 | * If you do not need additional columns, please set null. |
||
47 | */ |
||
48 | public $additionalColumns; |
||
49 | |||
50 | public $orgOnly = false; |
||
51 | public $showGUID = false; |
||
52 | |||
53 | public function init() |
||
64 | |||
65 | public function run() |
||
76 | } |
||
77 |