Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | public function default_model() |
||
18 | { |
||
19 | return array( |
||
20 | 'name' => '', |
||
21 | 'id' => null, |
||
22 | 'disabled' => false, |
||
23 | 'readonly' => false, |
||
24 | 'default' => null, |
||
25 | 'language' => null, |
||
26 | 'theme' => 'github', |
||
27 | 'max_lines' => 'Infinity', // Or a positive integer |
||
28 | 'filter' => null, |
||
29 | 'validation' => null, |
||
30 | 'show' => null |
||
31 | ); |
||
32 | } |
||
33 | |||
49 | } |