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