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