Conditions | 1 |
Paths | 1 |
Total Lines | 18 |
Code Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | public function default_model() |
||
18 | { |
||
19 | return array( |
||
20 | 'name' => '', |
||
21 | 'id' => '', |
||
22 | 'disabled' => false, |
||
23 | 'size' => null, |
||
24 | 'min' => null, |
||
25 | 'max' => null, |
||
26 | 'step' => null, |
||
27 | 'required' => false, |
||
28 | 'readonly' => false, |
||
29 | 'default' => null, |
||
30 | 'filter' => array( $this, 'filter' ), |
||
31 | 'validation' => array( $this, 'validation' ), |
||
32 | 'show' => null |
||
33 | ); |
||
34 | } |
||
35 | |||
68 | } |