@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | /** |
88 | 88 | * @inheritdoc |
89 | 89 | */ |
90 | - protected array|bool|int $allowAnonymous = [ |
|
90 | + protected array | bool | int $allowAnonymous = [ |
|
91 | 91 | ]; |
92 | 92 | |
93 | 93 | // Public Methods |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | $variables['pluginName'] = Seomatic::$settings->pluginName; |
131 | 131 | $variables['title'] = $templateTitle; |
132 | 132 | $variables['docTitle'] = "{$pluginName} - {$templateTitle}"; |
133 | - $siteHandleUri = Craft::$app->isMultiSite ? '/' . $siteHandle : ''; |
|
133 | + $siteHandleUri = Craft::$app->isMultiSite ? '/'.$siteHandle : ''; |
|
134 | 134 | $variables['crumbs'] = [ |
135 | 135 | [ |
136 | 136 | 'label' => $pluginName, |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | ], |
139 | 139 | [ |
140 | 140 | 'label' => $templateTitle, |
141 | - 'url' => UrlHelper::cpUrl('seomatic/dashboard' . $siteHandleUri), |
|
141 | + 'url' => UrlHelper::cpUrl('seomatic/dashboard'.$siteHandleUri), |
|
142 | 142 | ], |
143 | 143 | ]; |
144 | 144 | $variables['selectedSubnavItem'] = 'dashboard'; |
@@ -161,11 +161,11 @@ discard block |
||
161 | 161 | foreach ($variables['metaBundles'] as $metaBundle) { |
162 | 162 | $stat = 0; |
163 | 163 | foreach (self::SEO_SETUP_FIELDS as $setupField => $setupLabel) { |
164 | - $stat += (int)!empty($metaBundle->metaGlobalVars[$setupField]); |
|
164 | + $stat += (int) !empty($metaBundle->metaGlobalVars[$setupField]); |
|
165 | 165 | $value = $variables['contentSetupChecklist'][$setupField]['value'] ?? 0; |
166 | 166 | $variables['contentSetupChecklist'][$setupField] = [ |
167 | 167 | 'label' => $setupLabel, |
168 | - 'value' => $value + (int)!empty($metaBundle->metaGlobalVars[$setupField]), |
|
168 | + 'value' => $value + (int) !empty($metaBundle->metaGlobalVars[$setupField]), |
|
169 | 169 | ]; |
170 | 170 | } |
171 | 171 | $stat = round($numGrades - (($stat * $numGrades) / $numFields)); |
@@ -176,16 +176,16 @@ discard block |
||
176 | 176 | } |
177 | 177 | // Global SEO grades |
178 | 178 | Seomatic::$previewingMetaContainers = true; |
179 | - $metaBundle = Seomatic::$plugin->metaBundles->getGlobalMetaBundle((int)$siteId); |
|
179 | + $metaBundle = Seomatic::$plugin->metaBundles->getGlobalMetaBundle((int) $siteId); |
|
180 | 180 | Seomatic::$previewingMetaContainers = false; |
181 | 181 | if ($metaBundle !== null) { |
182 | 182 | $stat = 0; |
183 | 183 | $variables['globalSetupChecklist'] = []; |
184 | 184 | foreach (self::SEO_SETUP_FIELDS as $setupField => $setupLabel) { |
185 | - $stat += (int)!empty($metaBundle->metaGlobalVars[$setupField]); |
|
185 | + $stat += (int) !empty($metaBundle->metaGlobalVars[$setupField]); |
|
186 | 186 | $variables['globalSetupChecklist'][$setupField] = [ |
187 | 187 | 'label' => $setupLabel, |
188 | - 'value' => (int)!empty($metaBundle->metaGlobalVars[$setupField]), |
|
188 | + 'value' => (int) !empty($metaBundle->metaGlobalVars[$setupField]), |
|
189 | 189 | ]; |
190 | 190 | } |
191 | 191 | $stat = round(($stat / $numFields) * 100); |
@@ -195,17 +195,17 @@ discard block |
||
195 | 195 | $stat = 0; |
196 | 196 | $variables['siteSetupChecklist'] = []; |
197 | 197 | foreach (self::SITE_SETUP_FIELDS as $setupField => $setupLabel) { |
198 | - $stat += (int)!empty($metaBundle->metaSiteVars[$setupField]); |
|
198 | + $stat += (int) !empty($metaBundle->metaSiteVars[$setupField]); |
|
199 | 199 | $variables['siteSetupChecklist'][$setupField] = [ |
200 | 200 | 'label' => $setupLabel, |
201 | - 'value' => (int)!empty($metaBundle->metaSiteVars[$setupField]), |
|
201 | + 'value' => (int) !empty($metaBundle->metaSiteVars[$setupField]), |
|
202 | 202 | ]; |
203 | 203 | } |
204 | 204 | foreach (self::IDENTITY_SETUP_FIELDS as $setupField => $setupLabel) { |
205 | - $stat += (int)!empty($metaBundle->metaSiteVars->identity[$setupField]); |
|
205 | + $stat += (int) !empty($metaBundle->metaSiteVars->identity[$setupField]); |
|
206 | 206 | $variables['siteSetupChecklist'][$setupField] = [ |
207 | 207 | 'label' => $setupLabel, |
208 | - 'value' => (int)!empty($metaBundle->metaSiteVars->identity[$setupField]), |
|
208 | + 'value' => (int) !empty($metaBundle->metaSiteVars->identity[$setupField]), |
|
209 | 209 | ]; |
210 | 210 | } |
211 | 211 | $stat = round(($stat / $numFields) * 100); |
@@ -252,7 +252,7 @@ discard block |
||
252 | 252 | $variables['title'] = $templateTitle; |
253 | 253 | $variables['subSectionTitle'] = $subSectionTitle; |
254 | 254 | $variables['docTitle'] = "{$pluginName} - {$templateTitle} - {$subSectionTitle}"; |
255 | - $siteHandleUri = Craft::$app->isMultiSite ? '/' . $siteHandle : ''; |
|
255 | + $siteHandleUri = Craft::$app->isMultiSite ? '/'.$siteHandle : ''; |
|
256 | 256 | $variables['crumbs'] = [ |
257 | 257 | [ |
258 | 258 | 'label' => $pluginName, |
@@ -260,11 +260,11 @@ discard block |
||
260 | 260 | ], |
261 | 261 | [ |
262 | 262 | 'label' => $templateTitle, |
263 | - 'url' => UrlHelper::cpUrl('seomatic/global/general' . $siteHandleUri), |
|
263 | + 'url' => UrlHelper::cpUrl('seomatic/global/general'.$siteHandleUri), |
|
264 | 264 | ], |
265 | 265 | [ |
266 | 266 | 'label' => $subSectionTitle, |
267 | - 'url' => UrlHelper::cpUrl('seomatic/global/' . $subSection . $siteHandleUri), |
|
267 | + 'url' => UrlHelper::cpUrl('seomatic/global/'.$subSection.$siteHandleUri), |
|
268 | 268 | ], |
269 | 269 | ]; |
270 | 270 | $variables['selectedSubnavItem'] = 'global'; |
@@ -272,14 +272,14 @@ discard block |
||
272 | 272 | $this->setGlobalFieldSourceVariables($variables); |
273 | 273 | // Enabled sites |
274 | 274 | $this->setMultiSiteVariables($siteHandle, $siteId, $variables); |
275 | - $variables['controllerHandle'] = 'global' . '/' . $subSection; |
|
275 | + $variables['controllerHandle'] = 'global'.'/'.$subSection; |
|
276 | 276 | $variables['currentSubSection'] = $subSection; |
277 | 277 | // Meta bundle settings |
278 | 278 | Seomatic::$previewingMetaContainers = true; |
279 | 279 | // Get the site to copy the settings from, if any |
280 | 280 | $variables['loadFromSiteHandle'] = $loadFromSiteHandle; |
281 | 281 | $loadFromSiteId = $this->getSiteIdFromHandle($loadFromSiteHandle); |
282 | - $siteIdToLoad = $loadFromSiteHandle === null ? (int)$variables['currentSiteId'] : $loadFromSiteId; |
|
282 | + $siteIdToLoad = $loadFromSiteHandle === null ? (int) $variables['currentSiteId'] : $loadFromSiteId; |
|
283 | 283 | // Load the metabundle |
284 | 284 | $metaBundle = Seomatic::$plugin->metaBundles->getGlobalMetaBundle($siteIdToLoad); |
285 | 285 | if ($editedMetaBundle) { |
@@ -333,11 +333,11 @@ discard block |
||
333 | 333 | // Preview the meta containers |
334 | 334 | Seomatic::$plugin->metaContainers->previewMetaContainers( |
335 | 335 | MetaBundles::GLOBAL_META_BUNDLE, |
336 | - (int)$variables['currentSiteId'] |
|
336 | + (int) $variables['currentSiteId'] |
|
337 | 337 | ); |
338 | 338 | |
339 | 339 | // Render the template |
340 | - return $this->renderTemplate('seomatic/settings/global/' . $subSection, $variables); |
|
340 | + return $this->renderTemplate('seomatic/settings/global/'.$subSection, $variables); |
|
341 | 341 | } |
342 | 342 | |
343 | 343 | /** |
@@ -461,7 +461,7 @@ discard block |
||
461 | 461 | $variables['pluginName'] = Seomatic::$settings->pluginName; |
462 | 462 | $variables['title'] = $templateTitle; |
463 | 463 | $variables['docTitle'] = "{$pluginName} - {$templateTitle}"; |
464 | - $siteHandleUri = Craft::$app->isMultiSite ? '/' . $siteHandle : ''; |
|
464 | + $siteHandleUri = Craft::$app->isMultiSite ? '/'.$siteHandle : ''; |
|
465 | 465 | $variables['crumbs'] = [ |
466 | 466 | [ |
467 | 467 | 'label' => $pluginName, |
@@ -469,7 +469,7 @@ discard block |
||
469 | 469 | ], |
470 | 470 | [ |
471 | 471 | 'label' => $templateTitle, |
472 | - 'url' => UrlHelper::cpUrl('seomatic/content' . $siteHandleUri), |
|
472 | + 'url' => UrlHelper::cpUrl('seomatic/content'.$siteHandleUri), |
|
473 | 473 | ], |
474 | 474 | ]; |
475 | 475 | $this->setMultiSiteVariables($siteHandle, $siteId, $variables); |
@@ -510,7 +510,7 @@ discard block |
||
510 | 510 | // Get the site to edit |
511 | 511 | $siteId = $this->getSiteIdFromHandle($siteHandle); |
512 | 512 | if ($typeId !== null && is_string($typeId)) { |
513 | - $typeId = (int)$typeId; |
|
513 | + $typeId = (int) $typeId; |
|
514 | 514 | } |
515 | 515 | // Get the (entry) type menu |
516 | 516 | $typeMenu = []; |
@@ -524,7 +524,7 @@ discard block |
||
524 | 524 | $currentType = reset($typeMenu); |
525 | 525 | $variables['currentType'] = $typeMenu[$typeId] ?? $currentType; |
526 | 526 | $variables['currentTypeId'] = $typeId ?? key($typeMenu); |
527 | - $typeId = (int)$variables['currentTypeId']; |
|
527 | + $typeId = (int) $variables['currentTypeId']; |
|
528 | 528 | } |
529 | 529 | $pluginName = Seomatic::$settings->pluginName; |
530 | 530 | // Asset bundle |
@@ -545,7 +545,7 @@ discard block |
||
545 | 545 | // Get the site to copy the settings from, if any |
546 | 546 | $variables['loadFromSiteHandle'] = $loadFromSiteHandle; |
547 | 547 | $loadFromSiteId = $this->getSiteIdFromHandle($loadFromSiteHandle); |
548 | - $siteIdToLoad = $loadFromSiteHandle === null ? (int)$variables['currentSiteId'] : $loadFromSiteId; |
|
548 | + $siteIdToLoad = $loadFromSiteHandle === null ? (int) $variables['currentSiteId'] : $loadFromSiteId; |
|
549 | 549 | // Load the metabundle |
550 | 550 | $metaBundle = Seomatic::$plugin->metaBundles->getMetaBundleBySourceHandle( |
551 | 551 | $sourceBundleType, |
@@ -571,7 +571,7 @@ discard block |
||
571 | 571 | $variables['title'] = $templateTitle; |
572 | 572 | $variables['subSectionTitle'] = $subSectionTitle; |
573 | 573 | $variables['docTitle'] = "{$pluginName} - Content SEO - {$templateTitle} - {$subSectionTitle}"; |
574 | - $siteHandleUri = Craft::$app->isMultiSite ? '/' . $siteHandle : ''; |
|
574 | + $siteHandleUri = Craft::$app->isMultiSite ? '/'.$siteHandle : ''; |
|
575 | 575 | $variables['siteHandleUri'] = $siteHandleUri; |
576 | 576 | $variables['crumbs'] = [ |
577 | 577 | [ |
@@ -580,10 +580,10 @@ discard block |
||
580 | 580 | ], |
581 | 581 | [ |
582 | 582 | 'label' => 'Content SEO', |
583 | - 'url' => UrlHelper::cpUrl('seomatic/content' . $siteHandleUri), |
|
583 | + 'url' => UrlHelper::cpUrl('seomatic/content'.$siteHandleUri), |
|
584 | 584 | ], |
585 | 585 | [ |
586 | - 'label' => $metaBundle->sourceName . ' · ' . $subSectionTitle, |
|
586 | + 'label' => $metaBundle->sourceName.' · '.$subSectionTitle, |
|
587 | 587 | 'url' => UrlHelper::cpUrl("seomatic/edit-content/${subSection}/${sourceBundleType}/${sourceHandle}"), |
588 | 588 | ], |
589 | 589 | ]; |
@@ -613,13 +613,13 @@ discard block |
||
613 | 613 | // Preview the meta containers |
614 | 614 | Seomatic::$plugin->metaContainers->previewMetaContainers( |
615 | 615 | $uri, |
616 | - (int)$variables['currentSiteId'], |
|
616 | + (int) $variables['currentSiteId'], |
|
617 | 617 | false, |
618 | 618 | false |
619 | 619 | ); |
620 | 620 | |
621 | 621 | // Render the template |
622 | - return $this->renderTemplate('seomatic/settings/content/' . $subSection, $variables); |
|
622 | + return $this->renderTemplate('seomatic/settings/content/'.$subSection, $variables); |
|
623 | 623 | } |
624 | 624 | |
625 | 625 | /** |
@@ -701,7 +701,7 @@ discard block |
||
701 | 701 | if ($subSection === 'social') { |
702 | 702 | $subSectionSuffix = ' Media'; |
703 | 703 | } |
704 | - $subSectionTitle = Craft::t('seomatic', ucfirst($subSection) . $subSectionSuffix); |
|
704 | + $subSectionTitle = Craft::t('seomatic', ucfirst($subSection).$subSectionSuffix); |
|
705 | 705 | // Asset bundle |
706 | 706 | try { |
707 | 707 | Seomatic::$view->registerAssetBundle(SeomaticAsset::class); |
@@ -719,7 +719,7 @@ discard block |
||
719 | 719 | $variables['title'] = $templateTitle; |
720 | 720 | $variables['subSectionTitle'] = $subSectionTitle; |
721 | 721 | $variables['docTitle'] = "{$pluginName} - {$templateTitle} - {$subSectionTitle}"; |
722 | - $siteHandleUri = Craft::$app->isMultiSite ? '/' . $siteHandle : ''; |
|
722 | + $siteHandleUri = Craft::$app->isMultiSite ? '/'.$siteHandle : ''; |
|
723 | 723 | $variables['crumbs'] = [ |
724 | 724 | [ |
725 | 725 | 'label' => $pluginName, |
@@ -727,11 +727,11 @@ discard block |
||
727 | 727 | ], |
728 | 728 | [ |
729 | 729 | 'label' => $templateTitle, |
730 | - 'url' => UrlHelper::cpUrl('seomatic/site/identity' . $siteHandleUri), |
|
730 | + 'url' => UrlHelper::cpUrl('seomatic/site/identity'.$siteHandleUri), |
|
731 | 731 | ], |
732 | 732 | [ |
733 | 733 | 'label' => $subSectionTitle, |
734 | - 'url' => UrlHelper::cpUrl('seomatic/site/' . $subSection . $siteHandleUri), |
|
734 | + 'url' => UrlHelper::cpUrl('seomatic/site/'.$subSection.$siteHandleUri), |
|
735 | 735 | ], |
736 | 736 | ]; |
737 | 737 | $variables['selectedSubnavItem'] = 'site'; |
@@ -739,14 +739,14 @@ discard block |
||
739 | 739 | |
740 | 740 | // Enabled sites |
741 | 741 | $this->setMultiSiteVariables($siteHandle, $siteId, $variables); |
742 | - $variables['controllerHandle'] = 'site' . '/' . $subSection; |
|
742 | + $variables['controllerHandle'] = 'site'.'/'.$subSection; |
|
743 | 743 | |
744 | 744 | // The site settings for the appropriate meta bundle |
745 | 745 | Seomatic::$previewingMetaContainers = true; |
746 | 746 | // Get the site to copy the settings from, if any |
747 | 747 | $variables['loadFromSiteHandle'] = $loadFromSiteHandle; |
748 | 748 | $loadFromSiteId = $this->getSiteIdFromHandle($loadFromSiteHandle); |
749 | - $siteIdToLoad = $loadFromSiteHandle === null ? (int)$variables['currentSiteId'] : $loadFromSiteId; |
|
749 | + $siteIdToLoad = $loadFromSiteHandle === null ? (int) $variables['currentSiteId'] : $loadFromSiteId; |
|
750 | 750 | // Load the metabundle |
751 | 751 | $metaBundle = Seomatic::$plugin->metaBundles->getGlobalMetaBundle($siteIdToLoad); |
752 | 752 | Seomatic::$previewingMetaContainers = false; |
@@ -764,7 +764,7 @@ discard block |
||
764 | 764 | $variables['elementType'] = Asset::class; |
765 | 765 | |
766 | 766 | // Render the template |
767 | - return $this->renderTemplate('seomatic/settings/site/' . $subSection, $variables); |
|
767 | + return $this->renderTemplate('seomatic/settings/site/'.$subSection, $variables); |
|
768 | 768 | } |
769 | 769 | |
770 | 770 | /** |
@@ -893,7 +893,7 @@ discard block |
||
893 | 893 | $siteId = $this->getSiteIdFromHandle($siteHandle); |
894 | 894 | // Enabled sites |
895 | 895 | $this->setMultiSiteVariables($siteHandle, $siteId, $variables); |
896 | - $variables['controllerHandle'] = 'tracking' . '/' . $subSection; |
|
896 | + $variables['controllerHandle'] = 'tracking'.'/'.$subSection; |
|
897 | 897 | $variables['currentSubSection'] = $subSection; |
898 | 898 | |
899 | 899 | // The script meta containers for the global meta bundle |
@@ -901,7 +901,7 @@ discard block |
||
901 | 901 | // Get the site to copy the settings from, if any |
902 | 902 | $variables['loadFromSiteHandle'] = $loadFromSiteHandle; |
903 | 903 | $loadFromSiteId = $this->getSiteIdFromHandle($loadFromSiteHandle); |
904 | - $siteIdToLoad = $loadFromSiteHandle === null ? (int)$variables['currentSiteId'] : $loadFromSiteId; |
|
904 | + $siteIdToLoad = $loadFromSiteHandle === null ? (int) $variables['currentSiteId'] : $loadFromSiteId; |
|
905 | 905 | // Load the metabundle |
906 | 906 | $metaBundle = Seomatic::$plugin->metaBundles->getGlobalMetaBundle($siteIdToLoad); |
907 | 907 | if ($editedMetaBundle) { |
@@ -941,7 +941,7 @@ discard block |
||
941 | 941 | $variables['title'] = $templateTitle; |
942 | 942 | $variables['subSectionTitle'] = $subSectionTitle; |
943 | 943 | $variables['docTitle'] = "{$pluginName} - {$templateTitle} - {$subSectionTitle}"; |
944 | - $siteHandleUri = Craft::$app->isMultiSite ? '/' . $siteHandle : ''; |
|
944 | + $siteHandleUri = Craft::$app->isMultiSite ? '/'.$siteHandle : ''; |
|
945 | 945 | $variables['crumbs'] = [ |
946 | 946 | [ |
947 | 947 | 'label' => $pluginName, |
@@ -953,7 +953,7 @@ discard block |
||
953 | 953 | ], |
954 | 954 | [ |
955 | 955 | 'label' => $subSectionTitle, |
956 | - 'url' => UrlHelper::cpUrl('seomatic/tracking/' . $subSection . $siteHandleUri), |
|
956 | + 'url' => UrlHelper::cpUrl('seomatic/tracking/'.$subSection.$siteHandleUri), |
|
957 | 957 | ], |
958 | 958 | ]; |
959 | 959 | $variables['selectedSubnavItem'] = 'tracking'; |
@@ -1086,7 +1086,7 @@ discard block |
||
1086 | 1086 | if ($siteHandle !== null) { |
1087 | 1087 | $site = Craft::$app->getSites()->getSiteByHandle($siteHandle); |
1088 | 1088 | if (!$site) { |
1089 | - throw new NotFoundHttpException('Invalid site handle: ' . $siteHandle); |
|
1089 | + throw new NotFoundHttpException('Invalid site handle: '.$siteHandle); |
|
1090 | 1090 | } |
1091 | 1091 | $siteId = $site->id; |
1092 | 1092 | } else { |
@@ -1123,7 +1123,7 @@ discard block |
||
1123 | 1123 | if (!empty($variables['enabledSiteIds'])) { |
1124 | 1124 | $siteId = reset($variables['enabledSiteIds']); |
1125 | 1125 | } else { |
1126 | - $this->requirePermission('editSite:' . $siteId); |
|
1126 | + $this->requirePermission('editSite:'.$siteId); |
|
1127 | 1127 | } |
1128 | 1128 | } |
1129 | 1129 | } |
@@ -1143,7 +1143,7 @@ discard block |
||
1143 | 1143 | if ($variables['showSites']) { |
1144 | 1144 | $variables['sitesMenuLabel'] = Craft::t( |
1145 | 1145 | 'site', |
1146 | - $sites->getSiteById((int)$variables['currentSiteId'])->name |
|
1146 | + $sites->getSiteById((int) $variables['currentSiteId'])->name |
|
1147 | 1147 | ); |
1148 | 1148 | } else { |
1149 | 1149 | $variables['sitesMenuLabel'] = ''; |
@@ -1209,7 +1209,7 @@ discard block |
||
1209 | 1209 | ) |
1210 | 1210 | { |
1211 | 1211 | $variables['textFieldSources'] = array_merge( |
1212 | - ['entryGroup' => ['optgroup' => $groupName . ' Fields'], 'title' => 'Title'], |
|
1212 | + ['entryGroup' => ['optgroup' => $groupName.' Fields'], 'title' => 'Title'], |
|
1213 | 1213 | FieldHelper::fieldsOfTypeFromSource( |
1214 | 1214 | $sourceBundleType, |
1215 | 1215 | $sourceHandle, |
@@ -1218,7 +1218,7 @@ discard block |
||
1218 | 1218 | ) |
1219 | 1219 | ); |
1220 | 1220 | $variables['assetFieldSources'] = array_merge( |
1221 | - ['entryGroup' => ['optgroup' => $groupName . ' Fields']], |
|
1221 | + ['entryGroup' => ['optgroup' => $groupName.' Fields']], |
|
1222 | 1222 | FieldHelper::fieldsOfTypeFromSource( |
1223 | 1223 | $sourceBundleType, |
1224 | 1224 | $sourceHandle, |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | /** |
35 | 35 | * @inheritdoc |
36 | 36 | */ |
37 | - protected array|bool|int $allowAnonymous = [ |
|
37 | + protected array | bool | int $allowAnonymous = [ |
|
38 | 38 | 'seo-file-link', |
39 | 39 | ]; |
40 | 40 | |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | } |
84 | 84 | // Add the Link header |
85 | 85 | if (!empty($canonical)) { |
86 | - $headerValue = '<' . $canonical . '>; rel="canonical"'; |
|
86 | + $headerValue = '<'.$canonical.'>; rel="canonical"'; |
|
87 | 87 | $response->headers->add('Link', $headerValue); |
88 | 88 | } |
89 | 89 | // Ensure the file type is allowed |
@@ -160,7 +160,7 @@ discard block |
||
160 | 160 | // Get the page number of this request |
161 | 161 | $request = Craft::$app->getRequest(); |
162 | 162 | if (!$request->isConsoleRequest) { |
163 | - $this->paginationPage = (string)$request->pageNum; |
|
163 | + $this->paginationPage = (string) $request->pageNum; |
|
164 | 164 | } |
165 | 165 | } |
166 | 166 | |
@@ -176,10 +176,10 @@ discard block |
||
176 | 176 | $uniqueKey = $dependency->tags[3] ?? self::GLOBALS_CACHE_KEY; |
177 | 177 | $uniqueKey .= $bodyPosition; |
178 | 178 | $scriptData = Craft::$app->getCache()->getOrSet( |
179 | - self::GLOBALS_CACHE_KEY . $uniqueKey, |
|
180 | - function () use ($uniqueKey, $bodyPosition) { |
|
179 | + self::GLOBALS_CACHE_KEY.$uniqueKey, |
|
180 | + function() use ($uniqueKey, $bodyPosition) { |
|
181 | 181 | Craft::info( |
182 | - self::SCRIPTS_CACHE_KEY . ' cache miss: ' . $uniqueKey, |
|
182 | + self::SCRIPTS_CACHE_KEY.' cache miss: '.$uniqueKey, |
|
183 | 183 | __METHOD__ |
184 | 184 | ); |
185 | 185 | $scriptData = []; |
@@ -191,7 +191,7 @@ discard block |
||
191 | 191 | foreach ($scriptContainer->data as $metaScript) { |
192 | 192 | /** @var MetaScript $metaScript */ |
193 | 193 | if (!empty($metaScript->bodyTemplatePath) |
194 | - && ((int)$metaScript->bodyPosition === $bodyPosition)) { |
|
194 | + && ((int) $metaScript->bodyPosition === $bodyPosition)) { |
|
195 | 195 | $scriptData[] = $metaScript->renderBodyHtml(); |
196 | 196 | } |
197 | 197 | } |
@@ -271,10 +271,10 @@ discard block |
||
271 | 271 | $dependency = $this->containerDependency; |
272 | 272 | $uniqueKey = $dependency->tags[3] ?? self::GLOBALS_CACHE_KEY; |
273 | 273 | list($this->metaGlobalVars, $this->metaSiteVars) = Craft::$app->getCache()->getOrSet( |
274 | - self::GLOBALS_CACHE_KEY . $uniqueKey, |
|
275 | - function () use ($uniqueKey) { |
|
274 | + self::GLOBALS_CACHE_KEY.$uniqueKey, |
|
275 | + function() use ($uniqueKey) { |
|
276 | 276 | Craft::info( |
277 | - self::GLOBALS_CACHE_KEY . ' cache miss: ' . $uniqueKey, |
|
277 | + self::GLOBALS_CACHE_KEY.' cache miss: '.$uniqueKey, |
|
278 | 278 | __METHOD__ |
279 | 279 | ); |
280 | 280 | |
@@ -395,7 +395,7 @@ discard block |
||
395 | 395 | ?? 1; |
396 | 396 | } |
397 | 397 | // Handle pagination |
398 | - $paginationPage = 'page' . $this->paginationPage; |
|
398 | + $paginationPage = 'page'.$this->paginationPage; |
|
399 | 399 | // Get the path for the current request |
400 | 400 | $request = Craft::$app->getRequest(); |
401 | 401 | $requestPath = '/'; |
@@ -411,21 +411,21 @@ discard block |
||
411 | 411 | } |
412 | 412 | } |
413 | 413 | // Get our cache key |
414 | - $cacheKey = $uri . $siteId . $paginationPage . $requestPath . $this->getAllowedUrlParams(); |
|
414 | + $cacheKey = $uri.$siteId.$paginationPage.$requestPath.$this->getAllowedUrlParams(); |
|
415 | 415 | // For requests with a status code of >= 400, use one cache key |
416 | 416 | if (!$request->isConsoleRequest) { |
417 | 417 | $response = Craft::$app->getResponse(); |
418 | 418 | if ($response->statusCode >= 400) { |
419 | - $cacheKey = $siteId . self::INVALID_RESPONSE_CACHE_KEY . $response->statusCode; |
|
419 | + $cacheKey = $siteId.self::INVALID_RESPONSE_CACHE_KEY.$response->statusCode; |
|
420 | 420 | } |
421 | 421 | } |
422 | 422 | // Load the meta containers |
423 | 423 | $dependency = new TagDependency([ |
424 | 424 | 'tags' => [ |
425 | 425 | self::GLOBAL_METACONTAINER_CACHE_TAG, |
426 | - self::METACONTAINER_CACHE_TAG . $metaBundleSourceId . $metaBundleSourceType . $siteId, |
|
427 | - self::METACONTAINER_CACHE_TAG . $uri . $siteId, |
|
428 | - self::METACONTAINER_CACHE_TAG . $cacheKey, |
|
426 | + self::METACONTAINER_CACHE_TAG.$metaBundleSourceId.$metaBundleSourceType.$siteId, |
|
427 | + self::METACONTAINER_CACHE_TAG.$uri.$siteId, |
|
428 | + self::METACONTAINER_CACHE_TAG.$cacheKey, |
|
429 | 429 | ], |
430 | 430 | ]); |
431 | 431 | $this->containerDependency = $dependency; |
@@ -441,10 +441,10 @@ discard block |
||
441 | 441 | } else { |
442 | 442 | $cache = Craft::$app->getCache(); |
443 | 443 | list($this->metaGlobalVars, $this->metaSiteVars, $this->metaSitemapVars, $this->metaContainers) = $cache->getOrSet( |
444 | - self::CACHE_KEY . $cacheKey, |
|
445 | - function () use ($uri, $siteId) { |
|
444 | + self::CACHE_KEY.$cacheKey, |
|
445 | + function() use ($uri, $siteId) { |
|
446 | 446 | Craft::info( |
447 | - 'Meta container cache miss: ' . $uri . '/' . $siteId, |
|
447 | + 'Meta container cache miss: '.$uri.'/'.$siteId, |
|
448 | 448 | __METHOD__ |
449 | 449 | ); |
450 | 450 | $this->loadGlobalMetaContainers($siteId); |
@@ -839,10 +839,10 @@ discard block |
||
839 | 839 | $cache = Craft::$app->getCache(); |
840 | 840 | TagDependency::invalidate( |
841 | 841 | $cache, |
842 | - self::METACONTAINER_CACHE_TAG . $metaBundleSourceId . $metaBundleSourceType . $siteId |
|
842 | + self::METACONTAINER_CACHE_TAG.$metaBundleSourceId.$metaBundleSourceType.$siteId |
|
843 | 843 | ); |
844 | 844 | Craft::info( |
845 | - 'Meta bundle cache cleared: ' . $metaBundleSourceId . ' / ' . $metaBundleSourceType . ' / ' . $siteId, |
|
845 | + 'Meta bundle cache cleared: '.$metaBundleSourceId.' / '.$metaBundleSourceType.' / '.$siteId, |
|
846 | 846 | __METHOD__ |
847 | 847 | ); |
848 | 848 | // Trigger an event to let other plugins/modules know we've cleared our caches |
@@ -869,9 +869,9 @@ discard block |
||
869 | 869 | if ($siteId === null) { |
870 | 870 | $siteId = Craft::$app->getSites()->currentSite->id ?? 1; |
871 | 871 | } |
872 | - TagDependency::invalidate($cache, self::METACONTAINER_CACHE_TAG . $uri . $siteId); |
|
872 | + TagDependency::invalidate($cache, self::METACONTAINER_CACHE_TAG.$uri.$siteId); |
|
873 | 873 | Craft::info( |
874 | - 'Meta container cache cleared: ' . $uri . ' / ' . $siteId, |
|
874 | + 'Meta container cache cleared: '.$uri.' / '.$siteId, |
|
875 | 875 | __METHOD__ |
876 | 876 | ); |
877 | 877 | // Trigger an event to let other plugins/modules know we've cleared our caches |
@@ -988,7 +988,7 @@ discard block |
||
988 | 988 | |
989 | 989 | // Handle re-creating the `mainEntityOfPage` so that the model injected into the |
990 | 990 | // templates has the appropriate attributes |
991 | - $generalContainerKey = MetaJsonLdContainer::CONTAINER_TYPE . JsonLdService::GENERAL_HANDLE; |
|
991 | + $generalContainerKey = MetaJsonLdContainer::CONTAINER_TYPE.JsonLdService::GENERAL_HANDLE; |
|
992 | 992 | $generalContainer = $this->metaContainers[$generalContainerKey]; |
993 | 993 | if (($generalContainer !== null) && !empty($generalContainer->data['mainEntityOfPage'])) { |
994 | 994 | /** @var MetaJsonLd $jsonLdModel */ |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | Event::on( |
106 | 106 | ProductTypes::class, |
107 | 107 | ProductTypes::EVENT_AFTER_SAVE_PRODUCTTYPE, |
108 | - function (ProductTypeEvent $event) { |
|
108 | + function(ProductTypeEvent $event) { |
|
109 | 109 | Craft::debug( |
110 | 110 | 'ProductTypes::EVENT_AFTER_SAVE_PRODUCTTYPE', |
111 | 111 | __METHOD__ |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | ProductTypes::class, |
122 | 122 | ProductTypes::EVENT_AFTER_SAVE_PRODUCTTYPE, |
123 | 123 | /** @var ProductTypeEvent $event */ |
124 | - static function ($event) { |
|
124 | + static function($event) { |
|
125 | 125 | Craft::debug( |
126 | 126 | 'ProductTypes::EVENT_AFTER_SAVE_PRODUCTTYPE', |
127 | 127 | __METHOD__ |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | Event::on( |
178 | 178 | Product::class, |
179 | 179 | Product::EVENT_DEFINE_SIDEBAR_HTML, |
180 | - static function (DefineHtmlEvent $event) { |
|
180 | + static function(DefineHtmlEvent $event) { |
|
181 | 181 | Craft::debug( |
182 | 182 | 'Product::EVENT_DEFINE_SIDEBAR_HTML', |
183 | 183 | __METHOD__ |
@@ -386,7 +386,7 @@ discard block |
||
386 | 386 | ConfigHelper::getConfigFromFile(self::configFilePath()), |
387 | 387 | [ |
388 | 388 | 'sourceId' => $sourceModel->id, |
389 | - 'sourceName' => (string)$sourceModel->name, |
|
389 | + 'sourceName' => (string) $sourceModel->name, |
|
390 | 390 | 'sourceHandle' => $sourceModel->handle, |
391 | 391 | ] |
392 | 392 | ); |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | BaseEvent::on( |
87 | 87 | CalendarsService::class, |
88 | 88 | CalendarsService::EVENT_AFTER_SAVE, |
89 | - function (SaveModelEvent $event) { |
|
89 | + function(SaveModelEvent $event) { |
|
90 | 90 | Craft::debug( |
91 | 91 | 'CalendarsService::EVENT_AFTER_DELETE', |
92 | 92 | __METHOD__ |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | BaseEvent::on( |
98 | 98 | CalendarsService::class, |
99 | 99 | CalendarsService::EVENT_AFTER_DELETE, |
100 | - function (SaveModelEvent $event) { |
|
100 | + function(SaveModelEvent $event) { |
|
101 | 101 | Craft::debug( |
102 | 102 | 'CalendarsService::EVENT_AFTER_DELETE', |
103 | 103 | __METHOD__ |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | BaseEvent::on( |
113 | 113 | CalendarsService::class, |
114 | 114 | CalendarsService::EVENT_AFTER_SAVE, |
115 | - function (SaveModelEvent $event) { |
|
115 | + function(SaveModelEvent $event) { |
|
116 | 116 | Craft::debug( |
117 | 117 | 'CalendarsService::EVENT_AFTER_SAVE', |
118 | 118 | __METHOD__ |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | BaseEvent::on( |
138 | 138 | CalendarsService::class, |
139 | 139 | CalendarsService::EVENT_AFTER_DELETE, |
140 | - function (DeleteModelEvent $event) { |
|
140 | + function(DeleteModelEvent $event) { |
|
141 | 141 | Craft::debug( |
142 | 142 | 'CalendarsService::EVENT_AFTER_DELETE', |
143 | 143 | __METHOD__ |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | BaseEvent::on( |
169 | 169 | Event::class, |
170 | 170 | Event::EVENT_DEFINE_SIDEBAR_HTML, |
171 | - static function (DefineHtmlEvent $event) { |
|
171 | + static function(DefineHtmlEvent $event) { |
|
172 | 172 | Craft::debug( |
173 | 173 | 'Entry::EVENT_DEFINE_SIDEBAR_HTML', |
174 | 174 | __METHOD__ |
@@ -243,8 +243,8 @@ discard block |
||
243 | 243 | $query = Event::find() |
244 | 244 | ->setCalendar($metaBundle->sourceHandle) |
245 | 245 | ->setLoadOccurrences(false) |
246 | - ->siteId((int)$metaBundle->sourceSiteId) |
|
247 | - ->limit((int)$metaBundle->metaSitemapVars->sitemapLimit); |
|
246 | + ->siteId((int) $metaBundle->sourceSiteId) |
|
247 | + ->limit((int) $metaBundle->metaSitemapVars->sitemapLimit); |
|
248 | 248 | |
249 | 249 | return $query; |
250 | 250 | } |
@@ -405,7 +405,7 @@ discard block |
||
405 | 405 | ConfigHelper::getConfigFromFile(self::configFilePath()), |
406 | 406 | [ |
407 | 407 | 'sourceId' => $sourceModel->id, |
408 | - 'sourceName' => (string)$sourceModel->name, |
|
408 | + 'sourceName' => (string) $sourceModel->name, |
|
409 | 409 | 'sourceHandle' => $sourceModel->handle, |
410 | 410 | ] |
411 | 411 | ); |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | Event::on( |
107 | 107 | ProductTypes::class, |
108 | 108 | ProductTypes::EVENT_AFTER_SAVE_PRODUCTTYPE, |
109 | - function (ProductTypeEvent $event) { |
|
109 | + function(ProductTypeEvent $event) { |
|
110 | 110 | Craft::debug( |
111 | 111 | 'ProductTypes::EVENT_AFTER_SAVE_PRODUCTTYPE', |
112 | 112 | __METHOD__ |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | Event::on( |
122 | 122 | ProductTypes::class, |
123 | 123 | ProductTypes::EVENT_AFTER_SAVE_PRODUCTTYPE, |
124 | - static function (ProductTypeEvent $event) { |
|
124 | + static function(ProductTypeEvent $event) { |
|
125 | 125 | Craft::debug( |
126 | 126 | 'ProductTypes::EVENT_AFTER_SAVE_PRODUCTTYPE', |
127 | 127 | __METHOD__ |
@@ -176,7 +176,7 @@ discard block |
||
176 | 176 | Event::on( |
177 | 177 | Product::class, |
178 | 178 | Product::EVENT_DEFINE_SIDEBAR_HTML, |
179 | - static function (DefineHtmlEvent $event) { |
|
179 | + static function(DefineHtmlEvent $event) { |
|
180 | 180 | Craft::debug( |
181 | 181 | 'Product::EVENT_DEFINE_SIDEBAR_HTML', |
182 | 182 | __METHOD__ |
@@ -385,7 +385,7 @@ discard block |
||
385 | 385 | ConfigHelper::getConfigFromFile(self::configFilePath()), |
386 | 386 | [ |
387 | 387 | 'sourceId' => $sourceModel->id, |
388 | - 'sourceName' => (string)$sourceModel->name, |
|
388 | + 'sourceName' => (string) $sourceModel->name, |
|
389 | 389 | 'sourceHandle' => $sourceModel->handle, |
390 | 390 | ] |
391 | 391 | ); |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | /** |
50 | 50 | * @var bool|array |
51 | 51 | */ |
52 | - protected array|bool|int $allowAnonymous = [ |
|
52 | + protected array | bool | int $allowAnonymous = [ |
|
53 | 53 | ]; |
54 | 54 | |
55 | 55 | // Public Methods |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | */ |
75 | 75 | public function actionGenerate() |
76 | 76 | { |
77 | - echo 'Generating sitemap' . PHP_EOL; |
|
77 | + echo 'Generating sitemap'.PHP_EOL; |
|
78 | 78 | if ($this->siteId !== null) { |
79 | 79 | $siteIds[] = $this->siteId; |
80 | 80 | } else { |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | ]); |
117 | 117 | } |
118 | 118 | |
119 | - echo '---' . PHP_EOL; |
|
119 | + echo '---'.PHP_EOL; |
|
120 | 120 | } |
121 | 121 | } |
122 | 122 | } |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | // Add a URL to the schema.org type if this is a MetaJsonLD object |
159 | 159 | if ($isMetaJsonLdModel) { |
160 | 160 | /** @var $this MetaJsonLd */ |
161 | - $extraInfo = ' for http://schema.org/' . $this->type; |
|
161 | + $extraInfo = ' for http://schema.org/'.$this->type; |
|
162 | 162 | } |
163 | 163 | $errorMsg = |
164 | 164 | Craft::t('seomatic', 'Scenario: "') |
@@ -169,10 +169,10 @@ discard block |
||
169 | 169 | . print_r($this->render(), true); |
170 | 170 | Craft::info($errorMsg, __METHOD__); |
171 | 171 | foreach ($this->errors as $param => $errors) { |
172 | - $errorMsg = Craft::t('seomatic', $errorLabel) . $param; |
|
172 | + $errorMsg = Craft::t('seomatic', $errorLabel).$param; |
|
173 | 173 | /** @var array $errors */ |
174 | 174 | foreach ($errors as $error) { |
175 | - $errorMsg .= ' -> ' . $error; |
|
175 | + $errorMsg .= ' -> '.$error; |
|
176 | 176 | // Change the error level depending on the error message if this is a MetaJsonLD object |
177 | 177 | if ($isMetaJsonLdModel) { |
178 | 178 | if (strpos($error, 'recommended') !== false) { |
@@ -185,15 +185,15 @@ discard block |
||
185 | 185 | } |
186 | 186 | } |
187 | 187 | } |
188 | - Craft::info(strtoupper($logLevel) . ' - ' . $errorMsg, __METHOD__); |
|
188 | + Craft::info(strtoupper($logLevel).' - '.$errorMsg, __METHOD__); |
|
189 | 189 | // Extra debugging info for MetaJsonLd objects |
190 | 190 | if ($isMetaJsonLdModel) { |
191 | 191 | /** @var MetaJsonLd $className */ |
192 | 192 | $className = \get_class($this); |
193 | 193 | if (!empty($className::$schemaPropertyDescriptions[$param])) { |
194 | - $errorMsg = Craft::t('seomatic', $errorLabel) . $param; |
|
194 | + $errorMsg = Craft::t('seomatic', $errorLabel).$param; |
|
195 | 195 | /** @var $className MetaJsonLd */ |
196 | - $errorMsg .= ' -> ' . $className::$schemaPropertyDescriptions[$param]; |
|
196 | + $errorMsg .= ' -> '.$className::$schemaPropertyDescriptions[$param]; |
|
197 | 197 | Craft::info($errorMsg, __METHOD__); |
198 | 198 | } |
199 | 199 | } |
@@ -127,16 +127,16 @@ discard block |
||
127 | 127 | $dependency = new TagDependency([ |
128 | 128 | 'tags' => [ |
129 | 129 | self::GLOBAL_SITEMAP_CACHE_TAG, |
130 | - self::SITEMAP_CACHE_TAG . $handle . $siteId, |
|
130 | + self::SITEMAP_CACHE_TAG.$handle.$siteId, |
|
131 | 131 | ], |
132 | 132 | ]); |
133 | 133 | |
134 | - return $cache->getOrSet(self::CACHE_KEY . $groupId . self::CUSTOM_SCOPE . $handle . $siteId, function () use ( |
|
134 | + return $cache->getOrSet(self::CACHE_KEY.$groupId.self::CUSTOM_SCOPE.$handle.$siteId, function() use ( |
|
135 | 135 | $handle, |
136 | 136 | $siteId |
137 | 137 | ) { |
138 | 138 | Craft::info( |
139 | - 'Sitemap Custom cache miss: ' . $handle . '/' . $siteId, |
|
139 | + 'Sitemap Custom cache miss: '.$handle.'/'.$siteId, |
|
140 | 140 | __METHOD__ |
141 | 141 | ); |
142 | 142 | $lines = []; |
@@ -211,9 +211,9 @@ discard block |
||
211 | 211 | { |
212 | 212 | $handle = self::CUSTOM_HANDLE; |
213 | 213 | $cache = Craft::$app->getCache(); |
214 | - TagDependency::invalidate($cache, self::SITEMAP_CACHE_TAG . $handle . $siteId); |
|
214 | + TagDependency::invalidate($cache, self::SITEMAP_CACHE_TAG.$handle.$siteId); |
|
215 | 215 | Craft::info( |
216 | - 'Sitemap Custom cache cleared: ' . $handle, |
|
216 | + 'Sitemap Custom cache cleared: '.$handle, |
|
217 | 217 | __METHOD__ |
218 | 218 | ); |
219 | 219 | } |