@@ -28,8 +28,7 @@ discard block |
||
| 28 | 28 | * @subpackage dlf |
| 29 | 29 | * @access public |
| 30 | 30 | */ |
| 31 | -class ItemsProcFunc implements LoggerAwareInterface |
|
| 32 | -{ |
|
| 31 | +class ItemsProcFunc implements LoggerAwareInterface { |
|
| 33 | 32 | use LoggerAwareTrait; |
| 34 | 33 | |
| 35 | 34 | /** |
@@ -46,8 +45,7 @@ discard block |
||
| 46 | 45 | * |
| 47 | 46 | * @return void |
| 48 | 47 | */ |
| 49 | - public function toolList(&$params) |
|
| 50 | - { |
|
| 48 | + public function toolList(&$params) { |
|
| 51 | 49 | foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['dlf/Classes/Plugin/Toolbox.php']['tools'] as $class => $label) { |
| 52 | 50 | $params['items'][] = [Helper::getLanguageService()->sL($label), $class]; |
| 53 | 51 | } |
@@ -97,8 +95,7 @@ discard block |
||
| 97 | 95 | * |
| 98 | 96 | * @return void |
| 99 | 97 | */ |
| 100 | - public function extendedSearchList(&$params) |
|
| 101 | - { |
|
| 98 | + public function extendedSearchList(&$params) { |
|
| 102 | 99 | $this->generateList( |
| 103 | 100 | $params, |
| 104 | 101 | 'label,index_name', |
@@ -139,8 +136,7 @@ discard block |
||
| 139 | 136 | * |
| 140 | 137 | * @return void |
| 141 | 138 | */ |
| 142 | - protected function generateList(&$params, $fields, $table, $sorting, $andWhere = '') |
|
| 143 | - { |
|
| 139 | + protected function generateList(&$params, $fields, $table, $sorting, $andWhere = '') { |
|
| 144 | 140 | $this->getTyposcriptConfigFromPluginSiteRoot($params); |
| 145 | 141 | |
| 146 | 142 | $queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class) |