@@ -23,15 +23,13 @@ discard block |
||
| 23 | 23 | * @subpackage dlf |
| 24 | 24 | * @access public |
| 25 | 25 | */ |
| 26 | -class ToolboxController extends AbstractController |
|
| 27 | -{ |
|
| 26 | +class ToolboxController extends AbstractController { |
|
| 28 | 27 | /** |
| 29 | 28 | * The main method of the plugin |
| 30 | 29 | * |
| 31 | 30 | * @return void |
| 32 | 31 | */ |
| 33 | - public function mainAction() |
|
| 34 | - { |
|
| 32 | + public function mainAction() { |
|
| 35 | 33 | // Load current document. |
| 36 | 34 | $this->loadDocument($this->requestData); |
| 37 | 35 | |
@@ -52,8 +50,7 @@ discard block |
||
| 52 | 50 | * |
| 53 | 51 | * @return void |
| 54 | 52 | */ |
| 55 | - public function annotationtool() |
|
| 56 | - { |
|
| 53 | + public function annotationtool() { |
|
| 57 | 54 | if ( |
| 58 | 55 | $this->document === null |
| 59 | 56 | || $this->document->getDoc()->numPages < 1 |
@@ -94,8 +91,7 @@ discard block |
||
| 94 | 91 | * |
| 95 | 92 | * @return void |
| 96 | 93 | */ |
| 97 | - public function fulltextdownloadtool() |
|
| 98 | - { |
|
| 94 | + public function fulltextdownloadtool() { |
|
| 99 | 95 | if ( |
| 100 | 96 | $this->document === null |
| 101 | 97 | || $this->document->getDoc()->numPages < 1 |
@@ -140,8 +136,7 @@ discard block |
||
| 140 | 136 | * |
| 141 | 137 | * @return void |
| 142 | 138 | */ |
| 143 | - public function fulltexttool() |
|
| 144 | - { |
|
| 139 | + public function fulltexttool() { |
|
| 145 | 140 | if ( |
| 146 | 141 | $this->document === null |
| 147 | 142 | || $this->document->getDoc()->numPages < 1 |
@@ -186,8 +181,7 @@ discard block |
||
| 186 | 181 | * |
| 187 | 182 | * @return void |
| 188 | 183 | */ |
| 189 | - public function imagedownloadtool() |
|
| 190 | - { |
|
| 184 | + public function imagedownloadtool() { |
|
| 191 | 185 | if ( |
| 192 | 186 | $this->document === null |
| 193 | 187 | || $this->document->getDoc()->numPages < 1 |
@@ -230,8 +224,7 @@ discard block |
||
| 230 | 224 | * |
| 231 | 225 | * @return array Array of image links and image format information |
| 232 | 226 | */ |
| 233 | - protected function getImage($page) |
|
| 234 | - { |
|
| 227 | + protected function getImage($page) { |
|
| 235 | 228 | $image = []; |
| 236 | 229 | // Get @USE value of METS fileGrp. |
| 237 | 230 | $fileGrps = \TYPO3\CMS\Core\Utility\GeneralUtility::trimExplode(',', $this->settings['fileGrpsImageDownload']); |
@@ -264,8 +257,7 @@ discard block |
||
| 264 | 257 | * |
| 265 | 258 | * @return void |
| 266 | 259 | */ |
| 267 | - public function imagemanipulationtool() |
|
| 268 | - { |
|
| 260 | + public function imagemanipulationtool() { |
|
| 269 | 261 | // Set parent element for initialization. |
| 270 | 262 | $parentContainer = !empty($this->settings['parentContainer']) ? $this->settings['parentContainer'] : '.tx-dlf-imagemanipulationtool'; |
| 271 | 263 | |
@@ -278,8 +270,7 @@ discard block |
||
| 278 | 270 | * |
| 279 | 271 | * @return void |
| 280 | 272 | */ |
| 281 | - public function pdfdownloadtool() |
|
| 282 | - { |
|
| 273 | + public function pdfdownloadtool() { |
|
| 283 | 274 | if ( |
| 284 | 275 | $this->document === null |
| 285 | 276 | || $this->document->getDoc() === null |
@@ -318,8 +309,7 @@ discard block |
||
| 318 | 309 | * |
| 319 | 310 | * @return array Link to downloadable page |
| 320 | 311 | */ |
| 321 | - protected function getPageLink() |
|
| 322 | - { |
|
| 312 | + protected function getPageLink() { |
|
| 323 | 313 | $page1Link = ''; |
| 324 | 314 | $page2Link = ''; |
| 325 | 315 | $pageLinkArray = []; |
@@ -363,8 +353,7 @@ discard block |
||
| 363 | 353 | * |
| 364 | 354 | * @return string Link to downloadable work |
| 365 | 355 | */ |
| 366 | - protected function getWorkLink() |
|
| 367 | - { |
|
| 356 | + protected function getWorkLink() { |
|
| 368 | 357 | $workLink = ''; |
| 369 | 358 | $fileGrpsDownload = GeneralUtility::trimExplode(',', $this->extConf['fileGrpDownload']); |
| 370 | 359 | // Get work link. |
@@ -393,8 +382,7 @@ discard block |
||
| 393 | 382 | * |
| 394 | 383 | * @return void |
| 395 | 384 | */ |
| 396 | - public function searchindocumenttool() |
|
| 397 | - { |
|
| 385 | + public function searchindocumenttool() { |
|
| 398 | 386 | if ( |
| 399 | 387 | $this->document === null |
| 400 | 388 | || $this->document->getDoc()->numPages < 1 |
@@ -457,8 +445,7 @@ discard block |
||
| 457 | 445 | * |
| 458 | 446 | * @return string with current document id |
| 459 | 447 | */ |
| 460 | - protected function getCurrentDocumentId() |
|
| 461 | - { |
|
| 448 | + protected function getCurrentDocumentId() { |
|
| 462 | 449 | $id = $this->document->getUid(); |
| 463 | 450 | |
| 464 | 451 | if ($id !== null && $id > 0) { |
@@ -493,8 +480,7 @@ discard block |
||
| 493 | 480 | * |
| 494 | 481 | * @return string with encrypted core name |
| 495 | 482 | */ |
| 496 | - protected function getEncryptedCoreName() |
|
| 497 | - { |
|
| 483 | + protected function getEncryptedCoreName() { |
|
| 498 | 484 | // Get core name. |
| 499 | 485 | $name = Helper::getIndexNameFromUid($this->settings['solrcore'], 'tx_dlf_solrcores'); |
| 500 | 486 | // Encrypt core name. |
@@ -23,15 +23,13 @@ |
||
| 23 | 23 | * @subpackage dlf |
| 24 | 24 | * @access public |
| 25 | 25 | */ |
| 26 | -class NavigationController extends AbstractController |
|
| 27 | -{ |
|
| 26 | +class NavigationController extends AbstractController { |
|
| 28 | 27 | /** |
| 29 | 28 | * The main method of the plugin |
| 30 | 29 | * |
| 31 | 30 | * @return void |
| 32 | 31 | */ |
| 33 | - public function mainAction() |
|
| 34 | - { |
|
| 32 | + public function mainAction() { |
|
| 35 | 33 | // Load current document. |
| 36 | 34 | $this->loadDocument($this->requestData); |
| 37 | 35 | if ( |
@@ -34,8 +34,7 @@ discard block |
||
| 34 | 34 | * @subpackage dlf |
| 35 | 35 | * @access public |
| 36 | 36 | */ |
| 37 | -class DataHandler implements LoggerAwareInterface |
|
| 38 | -{ |
|
| 37 | +class DataHandler implements LoggerAwareInterface { |
|
| 39 | 38 | use LoggerAwareTrait; |
| 40 | 39 | |
| 41 | 40 | /** |
@@ -43,8 +42,7 @@ discard block |
||
| 43 | 42 | */ |
| 44 | 43 | protected $documentRepository; |
| 45 | 44 | |
| 46 | - protected function getDocumentRepository() |
|
| 47 | - { |
|
| 45 | + protected function getDocumentRepository() { |
|
| 48 | 46 | if ($this->documentRepository === null) { |
| 49 | 47 | $objectManager = GeneralUtility::makeInstance(ObjectManager::class); |
| 50 | 48 | $this->documentRepository = $objectManager->get(DocumentRepository::class); |
@@ -65,8 +63,7 @@ discard block |
||
| 65 | 63 | * |
| 66 | 64 | * @return void |
| 67 | 65 | */ |
| 68 | - public function processDatamap_postProcessFieldArray($status, $table, $id, &$fieldArray) |
|
| 69 | - { |
|
| 66 | + public function processDatamap_postProcessFieldArray($status, $table, $id, &$fieldArray) { |
|
| 70 | 67 | if ($status == 'new') { |
| 71 | 68 | switch ($table) { |
| 72 | 69 | // Field post-processing for table "tx_dlf_documents". |
@@ -195,8 +192,7 @@ discard block |
||
| 195 | 192 | * |
| 196 | 193 | * @return void |
| 197 | 194 | */ |
| 198 | - public function processDatamap_afterDatabaseOperations($status, $table, $id, &$fieldArray) |
|
| 199 | - { |
|
| 195 | + public function processDatamap_afterDatabaseOperations($status, $table, $id, &$fieldArray) { |
|
| 200 | 196 | if ($status == 'update') { |
| 201 | 197 | switch ($table) { |
| 202 | 198 | // After database operations for table "tx_dlf_documents". |
@@ -275,8 +271,7 @@ discard block |
||
| 275 | 271 | * |
| 276 | 272 | * @return void |
| 277 | 273 | */ |
| 278 | - public function processCmdmap_postProcess($command, $table, $id) |
|
| 279 | - { |
|
| 274 | + public function processCmdmap_postProcess($command, $table, $id) { |
|
| 280 | 275 | if ( |
| 281 | 276 | in_array($command, ['move', 'delete', 'undelete']) |
| 282 | 277 | && $table == 'tx_dlf_documents' |
@@ -14,10 +14,8 @@ |
||
| 14 | 14 | |
| 15 | 15 | use TYPO3\CMS\Backend\Form\Element\AbstractFormElement; |
| 16 | 16 | |
| 17 | -class ThumbnailCustomElement extends AbstractFormElement |
|
| 18 | -{ |
|
| 19 | - public function render() |
|
| 20 | - { |
|
| 17 | +class ThumbnailCustomElement extends AbstractFormElement { |
|
| 18 | + public function render() { |
|
| 21 | 19 | // Custom TCA properties and other data can be found in $this->data, for example the above |
| 22 | 20 | // parameters are available in $this->data['parameterArray']['fieldConf']['config']['parameters'] |
| 23 | 21 | $result = $this->initializeResultArray(); |
@@ -29,8 +29,7 @@ discard block |
||
| 29 | 29 | * @subpackage dlf |
| 30 | 30 | * @access public |
| 31 | 31 | */ |
| 32 | -class ConfigurationForm |
|
| 33 | -{ |
|
| 32 | +class ConfigurationForm { |
|
| 34 | 33 | |
| 35 | 34 | /** |
| 36 | 35 | * Check if a connection to a Solr server could be established with the given credentials. |
@@ -39,8 +38,7 @@ discard block |
||
| 39 | 38 | * |
| 40 | 39 | * @return string Message informing the user of success or failure |
| 41 | 40 | */ |
| 42 | - public function checkSolrConnection() |
|
| 43 | - { |
|
| 41 | + public function checkSolrConnection() { |
|
| 44 | 42 | $solr = Solr::getInstance(); |
| 45 | 43 | if ($solr->ready) { |
| 46 | 44 | Helper::addMessage( |
@@ -65,8 +63,7 @@ discard block |
||
| 65 | 63 | * |
| 66 | 64 | * @return void |
| 67 | 65 | */ |
| 68 | - public function __construct() |
|
| 69 | - { |
|
| 66 | + public function __construct() { |
|
| 70 | 67 | // Load backend localization file. |
| 71 | 68 | Helper::getLanguageService()->includeLLFile('EXT:dlf/Resources/Private/Language/locallang_be.xlf'); |
| 72 | 69 | } |
@@ -41,8 +41,7 @@ discard block |
||
| 41 | 41 | /** |
| 42 | 42 | * @return ExpressionFunction[] An array of Function instances |
| 43 | 43 | */ |
| 44 | - public function getFunctions() |
|
| 45 | - { |
|
| 44 | + public function getFunctions() { |
|
| 46 | 45 | return [ |
| 47 | 46 | $this->getDocumentTypeFunction(), |
| 48 | 47 | ]; |
@@ -68,8 +67,7 @@ discard block |
||
| 68 | 67 | * |
| 69 | 68 | * @return void |
| 70 | 69 | */ |
| 71 | - protected function initializeRepositories($storagePid) |
|
| 72 | - { |
|
| 70 | + protected function initializeRepositories($storagePid) { |
|
| 73 | 71 | Helper::polyfillExtbaseClassesForTYPO3v9(); |
| 74 | 72 | |
| 75 | 73 | // TODO: When we drop support for TYPO3v9, we needn't/shouldn't use ObjectManager anymore |
@@ -92,12 +90,10 @@ discard block |
||
| 92 | 90 | { |
| 93 | 91 | return new ExpressionFunction( |
| 94 | 92 | 'getDocumentType', |
| 95 | - function() |
|
| 96 | - { |
|
| 93 | + function() { |
|
| 97 | 94 | // Not implemented, we only use the evaluator |
| 98 | 95 | }, |
| 99 | - function($arguments, $cPid) |
|
| 100 | - { |
|
| 96 | + function($arguments, $cPid) { |
|
| 101 | 97 | /** @var RequestWrapper $requestWrapper */ |
| 102 | 98 | $requestWrapper = $arguments['request']; |
| 103 | 99 | $queryParams = $requestWrapper->getQueryParams(); |
@@ -143,8 +139,7 @@ discard block |
||
| 143 | 139 | * |
| 144 | 140 | * @return void |
| 145 | 141 | */ |
| 146 | - protected function loadDocument($requestData, int $pid) |
|
| 147 | - { |
|
| 142 | + protected function loadDocument($requestData, int $pid) { |
|
| 148 | 143 | // Try to get document format from database |
| 149 | 144 | if (!empty($requestData['id'])) { |
| 150 | 145 | |
@@ -37,8 +37,7 @@ discard block |
||
| 37 | 37 | * @property-read bool $ready Is the Solr service instantiated successfully? |
| 38 | 38 | * @property-read \Solarium\Client $service This holds the Solr service object |
| 39 | 39 | */ |
| 40 | -class Solr implements LoggerAwareInterface |
|
| 41 | -{ |
|
| 40 | +class Solr implements LoggerAwareInterface { |
|
| 42 | 41 | use LoggerAwareTrait; |
| 43 | 42 | |
| 44 | 43 | /** |
@@ -130,8 +129,7 @@ discard block |
||
| 130 | 129 | * |
| 131 | 130 | * @return string The name of the new core |
| 132 | 131 | */ |
| 133 | - public static function createCore($core = '') |
|
| 134 | - { |
|
| 132 | + public static function createCore($core = '') { |
|
| 135 | 133 | // Get next available core name if none given. |
| 136 | 134 | if (empty($core)) { |
| 137 | 135 | $core = 'dlfCore' . self::getNextCoreNumber(); |
@@ -178,8 +176,7 @@ discard block |
||
| 178 | 176 | * |
| 179 | 177 | * @return string The escaped query string |
| 180 | 178 | */ |
| 181 | - public static function escapeQuery($query) |
|
| 182 | - { |
|
| 179 | + public static function escapeQuery($query) { |
|
| 183 | 180 | $helper = GeneralUtility::makeInstance(\Solarium\Core\Query\Helper::class); |
| 184 | 181 | // Escape query phrase or term. |
| 185 | 182 | if (preg_match('/^".*"$/', $query)) { |
@@ -202,8 +199,7 @@ discard block |
||
| 202 | 199 | * |
| 203 | 200 | * @return string The escaped query string |
| 204 | 201 | */ |
| 205 | - public static function escapeQueryKeepField($query, $pid) |
|
| 206 | - { |
|
| 202 | + public static function escapeQueryKeepField($query, $pid) { |
|
| 207 | 203 | // Is there a field query? |
| 208 | 204 | if (preg_match('/^[[:alnum:]]+_[tu][su]i:\(?.*\)?$/', $query)) { |
| 209 | 205 | $queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class) |
@@ -253,8 +249,7 @@ discard block |
||
| 253 | 249 | * |
| 254 | 250 | * @return array fields |
| 255 | 251 | */ |
| 256 | - public static function getFields() |
|
| 257 | - { |
|
| 252 | + public static function getFields() { |
|
| 258 | 253 | $conf = GeneralUtility::makeInstance(ExtensionConfiguration::class)->get(self::$extKey); |
| 259 | 254 | |
| 260 | 255 | $fields = []; |
@@ -296,8 +291,7 @@ discard block |
||
| 296 | 291 | * |
| 297 | 292 | * @return \Kitodo\Dlf\Common\Solr Instance of this class |
| 298 | 293 | */ |
| 299 | - public static function getInstance($core = null) |
|
| 300 | - { |
|
| 294 | + public static function getInstance($core = null) { |
|
| 301 | 295 | // Get core name if UID is given. |
| 302 | 296 | if (MathUtility::canBeInterpretedAsInteger($core)) { |
| 303 | 297 | $core = Helper::getIndexNameFromUid($core, 'tx_dlf_solrcores'); |
@@ -337,8 +331,7 @@ discard block |
||
| 337 | 331 | * |
| 338 | 332 | * @return int First unused core number found |
| 339 | 333 | */ |
| 340 | - public static function getNextCoreNumber($number = 0) |
|
| 341 | - { |
|
| 334 | + public static function getNextCoreNumber($number = 0) { |
|
| 342 | 335 | $number = max(intval($number), 0); |
| 343 | 336 | // Check if core already exists. |
| 344 | 337 | $solr = self::getInstance('dlfCore' . $number); |
@@ -356,8 +349,7 @@ discard block |
||
| 356 | 349 | * |
| 357 | 350 | * @return void |
| 358 | 351 | */ |
| 359 | - protected function loadSolrConnectionInfo() |
|
| 360 | - { |
|
| 352 | + protected function loadSolrConnectionInfo() { |
|
| 361 | 353 | if (empty($this->config)) { |
| 362 | 354 | $config = []; |
| 363 | 355 | // Extract extension configuration. |
@@ -397,8 +389,7 @@ discard block |
||
| 397 | 389 | * |
| 398 | 390 | * @return array The Apache Solr Documents that were fetched |
| 399 | 391 | */ |
| 400 | - public function search_raw($parameters = []) |
|
| 401 | - { |
|
| 392 | + public function search_raw($parameters = []) { |
|
| 402 | 393 | // Set additional query parameters. |
| 403 | 394 | $parameters['start'] = 0; |
| 404 | 395 | $parameters['rows'] = $this->limit; |
@@ -428,8 +419,7 @@ discard block |
||
| 428 | 419 | * |
| 429 | 420 | * @return string|null The core name of the current query endpoint or null if core admin endpoint |
| 430 | 421 | */ |
| 431 | - protected function _getCore() |
|
| 432 | - { |
|
| 422 | + protected function _getCore() { |
|
| 433 | 423 | return $this->core; |
| 434 | 424 | } |
| 435 | 425 | |
@@ -440,8 +430,7 @@ discard block |
||
| 440 | 430 | * |
| 441 | 431 | * @return int The max number of results |
| 442 | 432 | */ |
| 443 | - protected function _getLimit() |
|
| 444 | - { |
|
| 433 | + protected function _getLimit() { |
|
| 445 | 434 | return $this->limit; |
| 446 | 435 | } |
| 447 | 436 | |
@@ -452,8 +441,7 @@ discard block |
||
| 452 | 441 | * |
| 453 | 442 | * @return int Total number of hits for last search |
| 454 | 443 | */ |
| 455 | - protected function _getNumberOfHits() |
|
| 456 | - { |
|
| 444 | + protected function _getNumberOfHits() { |
|
| 457 | 445 | return $this->numberOfHits; |
| 458 | 446 | } |
| 459 | 447 | |
@@ -464,8 +452,7 @@ discard block |
||
| 464 | 452 | * |
| 465 | 453 | * @return bool Is the search instantiated successfully? |
| 466 | 454 | */ |
| 467 | - protected function _getReady() |
|
| 468 | - { |
|
| 455 | + protected function _getReady() { |
|
| 469 | 456 | return $this->ready; |
| 470 | 457 | } |
| 471 | 458 | |
@@ -476,8 +463,7 @@ discard block |
||
| 476 | 463 | * |
| 477 | 464 | * @return \Solarium\Client Apache Solr service object |
| 478 | 465 | */ |
| 479 | - protected function _getService() |
|
| 480 | - { |
|
| 466 | + protected function _getService() { |
|
| 481 | 467 | return $this->service; |
| 482 | 468 | } |
| 483 | 469 | |
@@ -490,8 +476,7 @@ discard block |
||
| 490 | 476 | * |
| 491 | 477 | * @return void |
| 492 | 478 | */ |
| 493 | - protected function _setCPid($value) |
|
| 494 | - { |
|
| 479 | + protected function _setCPid($value) { |
|
| 495 | 480 | $this->cPid = max(intval($value), 0); |
| 496 | 481 | } |
| 497 | 482 | |
@@ -504,8 +489,7 @@ discard block |
||
| 504 | 489 | * |
| 505 | 490 | * @return void |
| 506 | 491 | */ |
| 507 | - protected function _setLimit($value) |
|
| 508 | - { |
|
| 492 | + protected function _setLimit($value) { |
|
| 509 | 493 | $this->limit = max(intval($value), 0); |
| 510 | 494 | } |
| 511 | 495 | |
@@ -518,8 +502,7 @@ discard block |
||
| 518 | 502 | * |
| 519 | 503 | * @return void |
| 520 | 504 | */ |
| 521 | - protected function _setParams(array $value) |
|
| 522 | - { |
|
| 505 | + protected function _setParams(array $value) { |
|
| 523 | 506 | $this->params = $value; |
| 524 | 507 | } |
| 525 | 508 | |
@@ -532,8 +515,7 @@ discard block |
||
| 532 | 515 | * |
| 533 | 516 | * @return mixed Value of $this->$var |
| 534 | 517 | */ |
| 535 | - public function __get($var) |
|
| 536 | - { |
|
| 518 | + public function __get($var) { |
|
| 537 | 519 | $method = '_get' . ucfirst($var); |
| 538 | 520 | if ( |
| 539 | 521 | !property_exists($this, $var) |
@@ -555,8 +537,7 @@ discard block |
||
| 555 | 537 | * |
| 556 | 538 | * @return bool true if variable is set and not empty, false otherwise |
| 557 | 539 | */ |
| 558 | - public function __isset($var) |
|
| 559 | - { |
|
| 540 | + public function __isset($var) { |
|
| 560 | 541 | return !empty($this->__get($var)); |
| 561 | 542 | } |
| 562 | 543 | |
@@ -570,8 +551,7 @@ discard block |
||
| 570 | 551 | * |
| 571 | 552 | * @return void |
| 572 | 553 | */ |
| 573 | - public function __set($var, $value) |
|
| 574 | - { |
|
| 554 | + public function __set($var, $value) { |
|
| 575 | 555 | $method = '_set' . ucfirst($var); |
| 576 | 556 | if ( |
| 577 | 557 | !property_exists($this, $var) |
@@ -592,8 +572,7 @@ discard block |
||
| 592 | 572 | * |
| 593 | 573 | * @return void |
| 594 | 574 | */ |
| 595 | - protected function __construct($core) |
|
| 596 | - { |
|
| 575 | + protected function __construct($core) { |
|
| 597 | 576 | // Get Solr connection parameters from configuration. |
| 598 | 577 | $this->loadSolrConnectionInfo(); |
| 599 | 578 | // Configure connection adapter. |
@@ -24,8 +24,7 @@ discard block |
||
| 24 | 24 | * @subpackage dlf |
| 25 | 25 | * @access public |
| 26 | 26 | */ |
| 27 | -class ResultDocument |
|
| 28 | -{ |
|
| 27 | +class ResultDocument { |
|
| 29 | 28 | |
| 30 | 29 | /** |
| 31 | 30 | * The identifier |
@@ -134,8 +133,7 @@ discard block |
||
| 134 | 133 | * |
| 135 | 134 | * @return void |
| 136 | 135 | */ |
| 137 | - public function __construct($record, $highlighting, $fields) |
|
| 138 | - { |
|
| 136 | + public function __construct($record, $highlighting, $fields) { |
|
| 139 | 137 | $this->id = $record[$fields['id']]; |
| 140 | 138 | $this->uid = $record[$fields['uid']]; |
| 141 | 139 | $this->page = $record[$fields['page']]; |
@@ -160,8 +158,7 @@ discard block |
||
| 160 | 158 | * |
| 161 | 159 | * @return string The result's record identifier |
| 162 | 160 | */ |
| 163 | - public function getId() |
|
| 164 | - { |
|
| 161 | + public function getId() { |
|
| 165 | 162 | return $this->id; |
| 166 | 163 | } |
| 167 | 164 | |
@@ -172,8 +169,7 @@ discard block |
||
| 172 | 169 | * |
| 173 | 170 | * @return string|null The result's record unified identifier |
| 174 | 171 | */ |
| 175 | - public function getUid() |
|
| 176 | - { |
|
| 172 | + public function getUid() { |
|
| 177 | 173 | return $this->uid; |
| 178 | 174 | } |
| 179 | 175 | |
@@ -184,8 +180,7 @@ discard block |
||
| 184 | 180 | * |
| 185 | 181 | * @return int The result's record page |
| 186 | 182 | */ |
| 187 | - public function getPage() |
|
| 188 | - { |
|
| 183 | + public function getPage() { |
|
| 189 | 184 | return $this->page; |
| 190 | 185 | } |
| 191 | 186 | |
@@ -196,8 +191,7 @@ discard block |
||
| 196 | 191 | * |
| 197 | 192 | * @return string All result's record snippets imploded to one string |
| 198 | 193 | */ |
| 199 | - public function getSnippets() |
|
| 200 | - { |
|
| 194 | + public function getSnippets() { |
|
| 201 | 195 | return $this->snippets; |
| 202 | 196 | } |
| 203 | 197 | |
@@ -208,8 +202,7 @@ discard block |
||
| 208 | 202 | * |
| 209 | 203 | * @return string |
| 210 | 204 | */ |
| 211 | - public function getThumbnail() |
|
| 212 | - { |
|
| 205 | + public function getThumbnail() { |
|
| 213 | 206 | return $this->thumbnail; |
| 214 | 207 | } |
| 215 | 208 | |
@@ -220,8 +213,7 @@ discard block |
||
| 220 | 213 | * |
| 221 | 214 | * @return string |
| 222 | 215 | */ |
| 223 | - public function getTitle() |
|
| 224 | - { |
|
| 216 | + public function getTitle() { |
|
| 225 | 217 | return $this->title; |
| 226 | 218 | } |
| 227 | 219 | |
@@ -232,8 +224,7 @@ discard block |
||
| 232 | 224 | * |
| 233 | 225 | * @return boolean |
| 234 | 226 | */ |
| 235 | - public function getToplevel() |
|
| 236 | - { |
|
| 227 | + public function getToplevel() { |
|
| 237 | 228 | return $this->toplevel; |
| 238 | 229 | } |
| 239 | 230 | |
@@ -244,8 +235,7 @@ discard block |
||
| 244 | 235 | * |
| 245 | 236 | * @return string |
| 246 | 237 | */ |
| 247 | - public function getType() |
|
| 248 | - { |
|
| 238 | + public function getType() { |
|
| 249 | 239 | return $this->type; |
| 250 | 240 | } |
| 251 | 241 | |
@@ -256,8 +246,7 @@ discard block |
||
| 256 | 246 | * |
| 257 | 247 | * @return array(Page) All result's pages which contain search phrase |
| 258 | 248 | */ |
| 259 | - public function getPages() |
|
| 260 | - { |
|
| 249 | + public function getPages() { |
|
| 261 | 250 | return $this->pages; |
| 262 | 251 | } |
| 263 | 252 | |
@@ -268,8 +257,7 @@ discard block |
||
| 268 | 257 | * |
| 269 | 258 | * @return array(Region) All result's regions which contain search phrase |
| 270 | 259 | */ |
| 271 | - public function getRegions() |
|
| 272 | - { |
|
| 260 | + public function getRegions() { |
|
| 273 | 261 | return $this->regions; |
| 274 | 262 | } |
| 275 | 263 | |
@@ -280,8 +268,7 @@ discard block |
||
| 280 | 268 | * |
| 281 | 269 | * @return array(Highlight) All result's highlights of search phrase |
| 282 | 270 | */ |
| 283 | - public function getHighlights() |
|
| 284 | - { |
|
| 271 | + public function getHighlights() { |
|
| 285 | 272 | return $this->highlights; |
| 286 | 273 | } |
| 287 | 274 | |
@@ -292,8 +279,7 @@ discard block |
||
| 292 | 279 | * |
| 293 | 280 | * @return array(string) All result's highlights of search phrase |
| 294 | 281 | */ |
| 295 | - public function getHighlightsIds() |
|
| 296 | - { |
|
| 282 | + public function getHighlightsIds() { |
|
| 297 | 283 | $highlightsIds = []; |
| 298 | 284 | foreach ($this->highlights as $highlight) { |
| 299 | 285 | array_push($highlightsIds, $highlight->getId()); |
@@ -309,8 +295,7 @@ discard block |
||
| 309 | 295 | * |
| 310 | 296 | * @return void |
| 311 | 297 | */ |
| 312 | - private function parseSnippets() |
|
| 313 | - { |
|
| 298 | + private function parseSnippets() { |
|
| 314 | 299 | $snippetArray = $this->getArrayByIndex('text'); |
| 315 | 300 | |
| 316 | 301 | $this->snippets = !empty($snippetArray) ? implode(' [...] ', $snippetArray) : ''; |
@@ -324,8 +309,7 @@ discard block |
||
| 324 | 309 | * |
| 325 | 310 | * @return void |
| 326 | 311 | */ |
| 327 | - private function parsePages() |
|
| 328 | - { |
|
| 312 | + private function parsePages() { |
|
| 329 | 313 | $pageArray = $this->getArrayByIndex('pages'); |
| 330 | 314 | |
| 331 | 315 | $i = 0; |
@@ -345,8 +329,7 @@ discard block |
||
| 345 | 329 | * |
| 346 | 330 | * @return void |
| 347 | 331 | */ |
| 348 | - private function parseRegions() |
|
| 349 | - { |
|
| 332 | + private function parseRegions() { |
|
| 350 | 333 | $regionArray = $this->getArrayByIndex('regions'); |
| 351 | 334 | |
| 352 | 335 | $i = 0; |
@@ -366,8 +349,7 @@ discard block |
||
| 366 | 349 | * |
| 367 | 350 | * @return void |
| 368 | 351 | */ |
| 369 | - private function parseHighlights() |
|
| 370 | - { |
|
| 352 | + private function parseHighlights() { |
|
| 371 | 353 | $highlightArray = $this->getArrayByIndex('highlights'); |
| 372 | 354 | |
| 373 | 355 | foreach ($highlightArray as $highlights) { |
@@ -388,8 +370,7 @@ discard block |
||
| 388 | 370 | * |
| 389 | 371 | * @return array |
| 390 | 372 | */ |
| 391 | - private function getArrayByIndex($index) |
|
| 392 | - { |
|
| 373 | + private function getArrayByIndex($index) { |
|
| 393 | 374 | $objectArray = []; |
| 394 | 375 | foreach ($this->snippetsForRecord as $snippet) { |
| 395 | 376 | if (!empty($snippet[$index])) { |
@@ -32,8 +32,7 @@ discard block |
||
| 32 | 32 | * @subpackage dlf |
| 33 | 33 | * @access public |
| 34 | 34 | */ |
| 35 | -class Indexer |
|
| 36 | -{ |
|
| 35 | +class Indexer { |
|
| 37 | 36 | /** |
| 38 | 37 | * The extension key |
| 39 | 38 | * |
@@ -93,8 +92,7 @@ discard block |
||
| 93 | 92 | * |
| 94 | 93 | * @return bool true on success or false on failure |
| 95 | 94 | */ |
| 96 | - public static function add(Document $document) |
|
| 97 | - { |
|
| 95 | + public static function add(Document $document) { |
|
| 98 | 96 | if (in_array($document->getUid(), self::$processedDocs)) { |
| 99 | 97 | return true; |
| 100 | 98 | } elseif (self::solrConnect($document->getSolrcore(), $document->getPid())) { |
@@ -209,8 +207,7 @@ discard block |
||
| 209 | 207 | * |
| 210 | 208 | * @return string The field's dynamic index name |
| 211 | 209 | */ |
| 212 | - public static function getIndexFieldName($index_name, $pid = 0) |
|
| 213 | - { |
|
| 210 | + public static function getIndexFieldName($index_name, $pid = 0) { |
|
| 214 | 211 | // Sanitize input. |
| 215 | 212 | $pid = max(intval($pid), 0); |
| 216 | 213 | if (!$pid) { |
@@ -236,8 +233,7 @@ discard block |
||
| 236 | 233 | * |
| 237 | 234 | * @return void |
| 238 | 235 | */ |
| 239 | - protected static function loadIndexConf($pid) |
|
| 240 | - { |
|
| 236 | + protected static function loadIndexConf($pid) { |
|
| 241 | 237 | if (!self::$fieldsLoaded) { |
| 242 | 238 | $queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class) |
| 243 | 239 | ->getQueryBuilderForTable('tx_dlf_metadata'); |
@@ -307,8 +303,7 @@ discard block |
||
| 307 | 303 | * |
| 308 | 304 | * @return bool true on success or false on failure |
| 309 | 305 | */ |
| 310 | - protected static function processLogical(Document $document, array $logicalUnit) |
|
| 311 | - { |
|
| 306 | + protected static function processLogical(Document $document, array $logicalUnit) { |
|
| 312 | 307 | $success = true; |
| 313 | 308 | $doc = $document->getDoc(); |
| 314 | 309 | $doc->cPid = $document->getPid(); |
@@ -436,8 +431,7 @@ discard block |
||
| 436 | 431 | * |
| 437 | 432 | * @return bool true on success or false on failure |
| 438 | 433 | */ |
| 439 | - protected static function processPhysical(Document $document, $page, array $physicalUnit) |
|
| 440 | - { |
|
| 434 | + protected static function processPhysical(Document $document, $page, array $physicalUnit) { |
|
| 441 | 435 | $doc = $document->getDoc(); |
| 442 | 436 | $doc->cPid = $document->getPid(); |
| 443 | 437 | if ($doc->hasFulltext && $fullText = $doc->getFullText($physicalUnit['id'])) { |
@@ -525,8 +519,7 @@ discard block |
||
| 525 | 519 | * |
| 526 | 520 | * @return bool true on success or false on failure |
| 527 | 521 | */ |
| 528 | - protected static function solrConnect($core, $pid = 0) |
|
| 529 | - { |
|
| 522 | + protected static function solrConnect($core, $pid = 0) { |
|
| 530 | 523 | // Get Solr instance. |
| 531 | 524 | if (!self::$solr) { |
| 532 | 525 | // Connect to Solr server. |
@@ -549,8 +542,7 @@ discard block |
||
| 549 | 542 | * |
| 550 | 543 | * @access private |
| 551 | 544 | */ |
| 552 | - private function __construct() |
|
| 553 | - { |
|
| 545 | + private function __construct() { |
|
| 554 | 546 | // This is a static class, thus no instances should be created. |
| 555 | 547 | } |
| 556 | 548 | } |