| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 39 | public function getTcaConfiguration($fieldName, $overWriteLabel = false) |
||
| 40 | { |
||
| 41 | return [ |
||
| 42 | 'exclude' => 1, |
||
| 43 | 'label' => $overWriteLabel ? $overWriteLabel : $fieldName, |
||
| 44 | 'config' => [ |
||
| 45 | 'type' => 'input', |
||
| 46 | 'renderType' => 'inputDateTime', |
||
| 47 | 'eval' => 'datetime', |
||
| 48 | 'size' => 8, |
||
| 49 | ], |
||
| 50 | ]; |
||
| 51 | } |
||
| 52 | |||
| 63 |