Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
37 | public function getTcaConfiguration($fieldName, $overWriteLabel = false) |
||
38 | { |
||
39 | $baseConfig = [ |
||
40 | 'type' => 'user', |
||
41 | 'userFunc' => 'HDNET\\Autoloader\\UserFunctions\\Tca->objectStorageInfoField', |
||
42 | ]; |
||
43 | |||
44 | return [ |
||
45 | 'exclude' => 1, |
||
46 | 'label' => $overWriteLabel ? $overWriteLabel : $fieldName, |
||
47 | 'config' => $baseConfig, |
||
48 | ]; |
||
49 | } |
||
50 | |||
61 |