@@ -71,7 +71,7 @@ |
||
| 71 | 71 | * @param $table |
| 72 | 72 | * @param $uid |
| 73 | 73 | * |
| 74 | - * @return mixed |
|
| 74 | + * @return integer |
|
| 75 | 75 | */ |
| 76 | 76 | public function getIndexCount($table, $uid) |
| 77 | 77 | { |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | |
| 80 | 80 | return $databaseConnection->count('*', self::TABLE_NAME, [ |
| 81 | 81 | 'foreign_table' => $table, |
| 82 | - 'foreign_uid' => (int) $uid, |
|
| 82 | + 'foreign_uid' => (int)$uid, |
|
| 83 | 83 | ]); |
| 84 | 84 | } |
| 85 | 85 | |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | $q->expr()->andX( |
| 105 | 105 | $q->expr()->gte('start_date', $now->getTimestamp()), |
| 106 | 106 | $q->expr()->eq('foreign_table', $q->createNamedParameter($table)), |
| 107 | - $q->expr()->eq('foreign_uid', $q->createNamedParameter((int) $uid, \PDO::PARAM_INT)) |
|
| 107 | + $q->expr()->eq('foreign_uid', $q->createNamedParameter((int)$uid, \PDO::PARAM_INT)) |
|
| 108 | 108 | ) |
| 109 | 109 | ) |
| 110 | 110 | ->addOrderBy('start_date', 'ASC') |
@@ -187,11 +187,11 @@ discard block |
||
| 187 | 187 | { |
| 188 | 188 | foreach ($neededItem as $key => $value) { |
| 189 | 189 | if (MathUtility::canBeInterpretedAsInteger($value)) { |
| 190 | - if ((int) $value !== (int) $currentItem[$key]) { |
|
| 190 | + if ((int)$value !== (int)$currentItem[$key]) { |
|
| 191 | 191 | return false; |
| 192 | 192 | } |
| 193 | 193 | } else { |
| 194 | - if ((string) $value !== (string) $currentItem[$key]) { |
|
| 194 | + if ((string)$value !== (string)$currentItem[$key]) { |
|
| 195 | 195 | return false; |
| 196 | 196 | } |
| 197 | 197 | } |
@@ -258,9 +258,9 @@ discard block |
||
| 258 | 258 | $q->expr()->notIn('unique_register_key', $validKeys) |
| 259 | 259 | )->execute(); |
| 260 | 260 | |
| 261 | - return (bool) $q->execute(); |
|
| 261 | + return (bool)$q->execute(); |
|
| 262 | 262 | } |
| 263 | 263 | |
| 264 | - return (bool) $db->truncate(self::TABLE_NAME); |
|
| 264 | + return (bool)$db->truncate(self::TABLE_NAME); |
|
| 265 | 265 | } |
| 266 | 266 | } |
@@ -9,7 +9,6 @@ |
||
| 9 | 9 | |
| 10 | 10 | use DmitryDulepov\Realurl\Configuration\ConfigurationReader; |
| 11 | 11 | use DmitryDulepov\Realurl\Utility; |
| 12 | -use HDNET\Calendarize\Domain\Model\Index; |
|
| 13 | 12 | use HDNET\Calendarize\Service\IndexerService; |
| 14 | 13 | use HDNET\Calendarize\Utility\HelperUtility; |
| 15 | 14 | use TYPO3\CMS\Core\Utility\ExtensionManagementUtility; |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | ); |
| 74 | 74 | |
| 75 | 75 | foreach ($q->execute()->fetchAll() as $row) { |
| 76 | - $removeIds[] = (int) $row['uid']; |
|
| 76 | + $removeIds[] = (int)$row['uid']; |
|
| 77 | 77 | } |
| 78 | 78 | |
| 79 | 79 | if (empty($removeIds)) { |
@@ -112,12 +112,12 @@ discard block |
||
| 112 | 112 | ->fetch(); |
| 113 | 113 | |
| 114 | 114 | if (isset($row['value_id'])) { |
| 115 | - return (int) $row['value_id']; |
|
| 115 | + return (int)$row['value_id']; |
|
| 116 | 116 | } |
| 117 | 117 | |
| 118 | 118 | $matches = []; |
| 119 | 119 | if (\preg_match('/^idx-([0-9]+)$/', $value, $matches)) { |
| 120 | - return (int) $matches[1]; |
|
| 120 | + return (int)$matches[1]; |
|
| 121 | 121 | } |
| 122 | 122 | |
| 123 | 123 | return 0; |
@@ -139,17 +139,17 @@ discard block |
||
| 139 | 139 | ->where( |
| 140 | 140 | $q->expr()->andX( |
| 141 | 141 | $q->expr()->eq('tablename', IndexerService::TABLE_NAME), |
| 142 | - $q->expr()->eq('value_id', $q->createNamedParameter((int) $value, \PDO::PARAM_INT)) |
|
| 142 | + $q->expr()->eq('value_id', $q->createNamedParameter((int)$value, \PDO::PARAM_INT)) |
|
| 143 | 143 | ) |
| 144 | 144 | ) |
| 145 | 145 | ->execute() |
| 146 | 146 | ->fetch(); |
| 147 | 147 | |
| 148 | 148 | if (isset($row['value_alias'])) { |
| 149 | - return (string) $row['value_alias']; |
|
| 149 | + return (string)$row['value_alias']; |
|
| 150 | 150 | } |
| 151 | 151 | |
| 152 | - $alias = $this->getIndexBase((int) $value); |
|
| 152 | + $alias = $this->getIndexBase((int)$value); |
|
| 153 | 153 | $alias = $this->cleanUrl($alias); |
| 154 | 154 | |
| 155 | 155 | $entry = [ |
@@ -164,7 +164,7 @@ discard block |
||
| 164 | 164 | } |
| 165 | 165 | |
| 166 | 166 | $aliasBase = $alias; |
| 167 | - for ($i = 0;; ++$i) { |
|
| 167 | + for ($i = 0; ; ++$i) { |
|
| 168 | 168 | $alias = $i > 0 ? $aliasBase . '-' . $i : $aliasBase; |
| 169 | 169 | if (!$this->aliasAlreadyExists($alias)) { |
| 170 | 170 | $entry['value_alias'] = $alias; |
@@ -175,7 +175,7 @@ discard block |
||
| 175 | 175 | $q->resetQueryParts(); |
| 176 | 176 | $q->insert('tx_realurl_uniqalias')->values($entry)->execute(); |
| 177 | 177 | |
| 178 | - return (string) $alias; |
|
| 178 | + return (string)$alias; |
|
| 179 | 179 | } |
| 180 | 180 | |
| 181 | 181 | /** |
@@ -190,7 +190,7 @@ discard block |
||
| 190 | 190 | $db = HelperUtility::getDatabaseConnection('tx_realurl_uniqalias'); |
| 191 | 191 | $count = $db->count('*', 'tx_realurl_uniqalias', ['value_alias' => $db->quoteIdentifier($alias)]); |
| 192 | 192 | |
| 193 | - return (bool) $count; |
|
| 193 | + return (bool)$count; |
|
| 194 | 194 | } |
| 195 | 195 | |
| 196 | 196 | /** |
@@ -218,7 +218,7 @@ discard block |
||
| 218 | 218 | $processedTitle = $utility->convertToSafeString($alias); |
| 219 | 219 | } |
| 220 | 220 | |
| 221 | - return (string) $processedTitle; |
|
| 221 | + return (string)$processedTitle; |
|
| 222 | 222 | } |
| 223 | 223 | |
| 224 | 224 | /** |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | protected function getIndexBase($indexUid): string |
| 37 | 37 | { |
| 38 | 38 | $indexRepository = HelperUtility::create(IndexRepository::class); |
| 39 | - $index = $indexRepository->findByUid((int) $indexUid); |
|
| 39 | + $index = $indexRepository->findByUid((int)$indexUid); |
|
| 40 | 40 | if (!($index instanceof Index)) { |
| 41 | 41 | return 'idx-' . $indexUid; |
| 42 | 42 | } |
@@ -47,12 +47,12 @@ discard block |
||
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | $base = $originalObject->getRealUrlAliasBase(); |
| 50 | - if (!(bool) \HDNET\Calendarize\Utility\ConfigurationUtility::get('disableDateInSpeakingUrl')) { |
|
| 50 | + if (!(bool)\HDNET\Calendarize\Utility\ConfigurationUtility::get('disableDateInSpeakingUrl')) { |
|
| 51 | 51 | $datePart = $index->isAllDay() ? 'Y-m-d' : 'Y-m-d-h-i'; |
| 52 | 52 | $base .= '-' . $index->getStartDateComplete() |
| 53 | 53 | ->format($datePart); |
| 54 | 54 | } |
| 55 | 55 | |
| 56 | - return (string) $base; |
|
| 56 | + return (string)$base; |
|
| 57 | 57 | } |
| 58 | 58 | } |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | ->where( |
| 37 | 37 | $q->expr()->andX( |
| 38 | 38 | $q->expr()->eq('tablenames', 'tx_cal_event'), |
| 39 | - $q->expr()->eq('uid_foreign', $q->createNamedParameter((int) $event['uid'], \PDO::PARAM_INT)) |
|
| 39 | + $q->expr()->eq('uid_foreign', $q->createNamedParameter((int)$event['uid'], \PDO::PARAM_INT)) |
|
| 40 | 40 | ) |
| 41 | 41 | ); |
| 42 | 42 | |
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | $importId = CalMigrationUpdate::IMPORT_PREFIX . $selectResult['uid']; |
| 50 | 50 | |
| 51 | 51 | $fieldValues = [ |
| 52 | - 'uid_foreign' => (int) $recordId, |
|
| 52 | + 'uid_foreign' => (int)$recordId, |
|
| 53 | 53 | 'tablenames' => $table, |
| 54 | 54 | ]; |
| 55 | 55 | |
@@ -243,7 +243,7 @@ |
||
| 243 | 243 | $sort = $this->settings['sorting']; |
| 244 | 244 | $this->checkStaticTemplateIsIncluded(); |
| 245 | 245 | $this->slotExtendedAssignMultiple([ |
| 246 | - 'indices' => $this->indexRepository->findByPast($limit, $sort), |
|
| 246 | + 'indices' => $this->indexRepository->findByPast($limit, $sort), |
|
| 247 | 247 | ], __CLASS__, __FUNCTION__); |
| 248 | 248 | } |
| 249 | 249 | |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | $configuration = ExtensionConfigurationUtility::get($configurationName); |
| 74 | 74 | |
| 75 | 75 | // get Event by Configuration and Uid |
| 76 | - $event = EventUtility::getOriginalRecordByConfiguration($configuration, (int) $this->request->getArgument('event')); |
|
| 76 | + $event = EventUtility::getOriginalRecordByConfiguration($configuration, (int)$this->request->getArgument('event')); |
|
| 77 | 77 | $index = $this->indexRepository->findByEventTraversing($event, true, false, 1)->getFirst(); |
| 78 | 78 | |
| 79 | 79 | // if there is a valid index in the event |
@@ -239,7 +239,7 @@ discard block |
||
| 239 | 239 | $limit = 100, |
| 240 | 240 | $sort = 'ASC' |
| 241 | 241 | ) { |
| 242 | - $limit = (int) ($this->settings['limit']); |
|
| 242 | + $limit = (int)($this->settings['limit']); |
|
| 243 | 243 | $sort = $this->settings['sorting']; |
| 244 | 244 | $this->checkStaticTemplateIsIncluded(); |
| 245 | 245 | $this->slotExtendedAssignMultiple([ |
@@ -257,7 +257,7 @@ discard block |
||
| 257 | 257 | $date = DateTimeUtility::normalizeDateTime(1, 1, $year); |
| 258 | 258 | |
| 259 | 259 | $this->slotExtendedAssignMultiple([ |
| 260 | - 'indices' => $this->indexRepository->findYear((int) $date->format('Y')), |
|
| 260 | + 'indices' => $this->indexRepository->findYear((int)$date->format('Y')), |
|
| 261 | 261 | 'date' => $date, |
| 262 | 262 | ], __CLASS__, __FUNCTION__); |
| 263 | 263 | } |
@@ -275,7 +275,7 @@ discard block |
||
| 275 | 275 | |
| 276 | 276 | $this->slotExtendedAssignMultiple([ |
| 277 | 277 | 'date' => $date, |
| 278 | - 'indices' => $this->indexRepository->findMonth((int) $date->format('Y'), (int) $date->format('n')), |
|
| 278 | + 'indices' => $this->indexRepository->findMonth((int)$date->format('Y'), (int)$date->format('n')), |
|
| 279 | 279 | ], __CLASS__, __FUNCTION__); |
| 280 | 280 | } |
| 281 | 281 | |
@@ -294,8 +294,8 @@ discard block |
||
| 294 | 294 | if (null === $week) { |
| 295 | 295 | $week = $now->format('W'); |
| 296 | 296 | } |
| 297 | - $weekStart = (int) $this->settings['weekStart']; |
|
| 298 | - $firstDay = DateTimeUtility::convertWeekYear2DayMonthYear((int) $week, $year, $weekStart); |
|
| 297 | + $weekStart = (int)$this->settings['weekStart']; |
|
| 298 | + $firstDay = DateTimeUtility::convertWeekYear2DayMonthYear((int)$week, $year, $weekStart); |
|
| 299 | 299 | $timezone = DateTimeUtility::getTimeZone(); |
| 300 | 300 | $firstDay->setTimezone($timezone); |
| 301 | 301 | $firstDay->setTime(0, 0, 0); |
@@ -336,7 +336,7 @@ discard block |
||
| 336 | 336 | $next->modify('+1 day'); |
| 337 | 337 | |
| 338 | 338 | $this->slotExtendedAssignMultiple([ |
| 339 | - 'indices' => $this->indexRepository->findDay((int) $date->format('Y'), (int) $date->format('n'), (int) $date->format('j')), |
|
| 339 | + 'indices' => $this->indexRepository->findDay((int)$date->format('Y'), (int)$date->format('n'), (int)$date->format('j')), |
|
| 340 | 340 | 'today' => $date, |
| 341 | 341 | 'previous' => $previous, |
| 342 | 342 | 'next' => $next, |
@@ -355,7 +355,7 @@ discard block |
||
| 355 | 355 | if (null === $index) { |
| 356 | 356 | // handle fallback for "strange language settings" |
| 357 | 357 | if ($this->request->hasArgument('index')) { |
| 358 | - $indexId = (int) $this->request->getArgument('index'); |
|
| 358 | + $indexId = (int)$this->request->getArgument('index'); |
|
| 359 | 359 | if ($indexId > 0) { |
| 360 | 360 | $index = $this->indexRepository->findByUid($indexId); |
| 361 | 361 | } |
@@ -363,7 +363,7 @@ discard block |
||
| 363 | 363 | |
| 364 | 364 | if (null === $index) { |
| 365 | 365 | if (!MathUtility::canBeInterpretedAsInteger($this->settings['listPid'])) { |
| 366 | - return (string) TranslateUtility::get('noEventDetailView'); |
|
| 366 | + return (string)TranslateUtility::get('noEventDetailView'); |
|
| 367 | 367 | } |
| 368 | 368 | $this->slottedRedirect(__CLASS__, __FUNCTION__ . 'noEvent'); |
| 369 | 369 | } |
@@ -477,20 +477,20 @@ discard block |
||
| 477 | 477 | $searchMode = true; |
| 478 | 478 | $indices = $this->indexRepository->findBySearch($startDate, $endDate, $customSearch); |
| 479 | 479 | } elseif (MathUtility::canBeInterpretedAsInteger($year) && MathUtility::canBeInterpretedAsInteger($month) && MathUtility::canBeInterpretedAsInteger($day)) { |
| 480 | - $indices = $this->indexRepository->findDay((int) $year, (int) $month, (int) $day); |
|
| 480 | + $indices = $this->indexRepository->findDay((int)$year, (int)$month, (int)$day); |
|
| 481 | 481 | } elseif (MathUtility::canBeInterpretedAsInteger($year) && MathUtility::canBeInterpretedAsInteger($month)) { |
| 482 | - $indices = $this->indexRepository->findMonth((int) $year, (int) $month); |
|
| 482 | + $indices = $this->indexRepository->findMonth((int)$year, (int)$month); |
|
| 483 | 483 | } elseif (MathUtility::canBeInterpretedAsInteger($year) && MathUtility::canBeInterpretedAsInteger($week)) { |
| 484 | 484 | $indices = $this->indexRepository->findWeek($year, $week, $this->settings['weekStart']); |
| 485 | 485 | } elseif (MathUtility::canBeInterpretedAsInteger($year)) { |
| 486 | - $indices = $this->indexRepository->findYear((int) $year); |
|
| 486 | + $indices = $this->indexRepository->findYear((int)$year); |
|
| 487 | 487 | } else { |
| 488 | - $overrideStartDate = (int) $this->settings['overrideStartdate']; |
|
| 489 | - $overrideEndDate = (int) $this->settings['overrideEnddate']; |
|
| 488 | + $overrideStartDate = (int)$this->settings['overrideStartdate']; |
|
| 489 | + $overrideEndDate = (int)$this->settings['overrideEnddate']; |
|
| 490 | 490 | $indices = $this->indexRepository->findList( |
| 491 | - (int) $this->settings['limit'], |
|
| 491 | + (int)$this->settings['limit'], |
|
| 492 | 492 | $this->settings['listStartTime'], |
| 493 | - (int) $this->settings['listStartTimeOffsetHours'], |
|
| 493 | + (int)$this->settings['listStartTimeOffsetHours'], |
|
| 494 | 494 | $overrideStartDate, |
| 495 | 495 | $overrideEndDate |
| 496 | 496 | ); |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | |
| 65 | 65 | $actions = $this->flexFormService->get('switchableControllerActions', 'main'); |
| 66 | 66 | $parts = GeneralUtility::trimExplode(';', $actions, true); |
| 67 | - $parts = \array_map(function ($element) { |
|
| 67 | + $parts = \array_map(function($element) { |
|
| 68 | 68 | $split = \explode('->', $element); |
| 69 | 69 | |
| 70 | 70 | return \ucfirst($split[1]); |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | |
| 74 | 74 | $this->layoutService->addRow(TranslateUtility::get('mode'), TranslateUtility::get('mode.' . $actionKey)); |
| 75 | 75 | |
| 76 | - $pluginConfiguration = (int) $this->flexFormService->get('settings.pluginConfiguration', 'main'); |
|
| 76 | + $pluginConfiguration = (int)$this->flexFormService->get('settings.pluginConfiguration', 'main'); |
|
| 77 | 77 | if ($pluginConfiguration) { |
| 78 | 78 | $table = 'tx_calendarize_domain_model_pluginconfiguration'; |
| 79 | 79 | |
@@ -88,21 +88,21 @@ discard block |
||
| 88 | 88 | ); |
| 89 | 89 | } |
| 90 | 90 | |
| 91 | - if ('' !== \trim((string) $this->flexFormService->get('settings.configuration', 'general'))) { |
|
| 91 | + if ('' !== \trim((string)$this->flexFormService->get('settings.configuration', 'general'))) { |
|
| 92 | 92 | $this->layoutService->addRow( |
| 93 | 93 | TranslateUtility::get('configuration'), |
| 94 | 94 | $this->flexFormService->get('settings.configuration', 'general') |
| 95 | 95 | ); |
| 96 | 96 | } |
| 97 | 97 | |
| 98 | - if ((bool) $this->flexFormService->get('settings.hidePagination', 'main')) { |
|
| 98 | + if ((bool)$this->flexFormService->get('settings.hidePagination', 'main')) { |
|
| 99 | 99 | $this->layoutService->addRow(TranslateUtility::get('hide.pagination.teaser'), '!!!'); |
| 100 | 100 | } |
| 101 | - $overrideStartDate = (int) $this->flexFormService->get('settings.overrideStartdate', 'main'); |
|
| 101 | + $overrideStartDate = (int)$this->flexFormService->get('settings.overrideStartdate', 'main'); |
|
| 102 | 102 | if ($overrideStartDate) { |
| 103 | 103 | $this->layoutService->addRow('OverrideStartdate', \date('d.m.y H:i', $overrideStartDate)); |
| 104 | 104 | } |
| 105 | - $overrideEndDate = (int) $this->flexFormService->get('settings.overrideEnddate', 'main'); |
|
| 105 | + $overrideEndDate = (int)$this->flexFormService->get('settings.overrideEnddate', 'main'); |
|
| 106 | 106 | if ($overrideEndDate) { |
| 107 | 107 | $this->layoutService->addRow('OverrideEndDate', \date('d.m.y H:i', $overrideEndDate)); |
| 108 | 108 | } |
@@ -127,7 +127,7 @@ discard block |
||
| 127 | 127 | 'bookingPid', |
| 128 | 128 | ]; |
| 129 | 129 | foreach ($pageIdsNames as $pageIdName) { |
| 130 | - $pageId = (int) $this->flexFormService->get('settings.' . $pageIdName, 'pages'); |
|
| 130 | + $pageId = (int)$this->flexFormService->get('settings.' . $pageIdName, 'pages'); |
|
| 131 | 131 | $pageRow = BackendUtility::getRecord('pages', $pageId); |
| 132 | 132 | if ($pageRow) { |
| 133 | 133 | $this->layoutService->addRow( |
@@ -29,7 +29,7 @@ |
||
| 29 | 29 | // set timezone to UTC |
| 30 | 30 | \date_default_timezone_set('UTC'); |
| 31 | 31 | |
| 32 | - $result = \strftime($format, (int) $date->format('U')); |
|
| 32 | + $result = \strftime($format, (int)$date->format('U')); |
|
| 33 | 33 | |
| 34 | 34 | // restore timezone setting |
| 35 | 35 | \date_default_timezone_set($timezone); |
@@ -118,6 +118,6 @@ |
||
| 118 | 118 | ); |
| 119 | 119 | } |
| 120 | 120 | |
| 121 | - return (array) (new \ICal($absoluteIcalFile))->events(); |
|
| 121 | + return (array)(new \ICal($absoluteIcalFile))->events(); |
|
| 122 | 122 | } |
| 123 | 123 | } |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | $objectManager = new ObjectManager(); |
| 78 | 78 | /** @var UriBuilder $uriBuilder */ |
| 79 | 79 | $uriBuilder = $objectManager->get(UriBuilder::class); |
| 80 | - $this->lastHref = (string) $uriBuilder->reset() |
|
| 80 | + $this->lastHref = (string)$uriBuilder->reset() |
|
| 81 | 81 | ->setTargetPageUid($pageUid) |
| 82 | 82 | ->setArguments($additionalParams) |
| 83 | 83 | ->setCreateAbsoluteUri($absolute) |
@@ -104,17 +104,17 @@ discard block |
||
| 104 | 104 | protected function getPageUid($pageUid, $contextName = null) |
| 105 | 105 | { |
| 106 | 106 | if (MathUtility::canBeInterpretedAsInteger($pageUid) && $pageUid > 0) { |
| 107 | - return (int) $pageUid; |
|
| 107 | + return (int)$pageUid; |
|
| 108 | 108 | } |
| 109 | 109 | |
| 110 | 110 | // by settings |
| 111 | 111 | if ($contextName && $this->templateVariableContainer->exists('settings')) { |
| 112 | 112 | $settings = $this->templateVariableContainer->get('settings'); |
| 113 | 113 | if (isset($settings[$contextName]) && MathUtility::canBeInterpretedAsInteger($settings[$contextName])) { |
| 114 | - return (int) $settings[$contextName]; |
|
| 114 | + return (int)$settings[$contextName]; |
|
| 115 | 115 | } |
| 116 | 116 | } |
| 117 | 117 | |
| 118 | - return (int) $GLOBALS['TSFE']->id; |
|
| 118 | + return (int)$GLOBALS['TSFE']->id; |
|
| 119 | 119 | } |
| 120 | 120 | } |