Total Complexity | 1 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | class ConfigProfileCombo extends Combo |
||
17 | { |
||
18 | /** {@inheritdoc} */ |
||
19 | public $name = 'profiles'; |
||
20 | |||
21 | /** {@inheritdoc} */ |
||
22 | public $type = 'config/profile'; |
||
23 | |||
24 | /** {@inheritdoc} */ |
||
25 | public $url = '/server/config-profile/search'; |
||
26 | |||
27 | /** {@inheritdoc} */ |
||
28 | public $_return = ['id', 'name', 'type']; |
||
29 | |||
30 | /** {@inheritdoc} */ |
||
31 | public $primaryFilter = 'name_like'; |
||
32 | |||
33 | /** {@inheritdoc} */ |
||
34 | public $_rename = ['text' => 'name']; |
||
35 | |||
36 | /** {@inheritdoc} */ |
||
37 | public function getFilter() |
||
45 |