Total Complexity | 4 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
3 | class Nip_Form_Element_MultiSelect extends Nip_Form_Element_Select |
||
4 | { |
||
5 | protected $_type = 'multiSelect'; |
||
6 | |||
7 | |||
8 | /** |
||
9 | * @param $request |
||
10 | * @return string |
||
11 | */ |
||
12 | protected function sanitizeDataFromRequest($request) |
||
13 | { |
||
14 | return $request; |
||
15 | } |
||
16 | |||
17 | /** |
||
18 | * @inheritDoc |
||
19 | */ |
||
20 | public function setValue($value) |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * @return bool |
||
35 | */ |
||
36 | public function isGroup() |
||
39 | } |
||
40 | } |
||
41 |