@@ -35,7 +35,7 @@ |
||
| 35 | 35 | ), |
| 36 | 36 | ] |
| 37 | 37 | ); |
| 38 | - if((bool) $this->getOwner()->NeverCachePublicly !== true) { |
|
| 38 | + if ((bool) $this->getOwner()->NeverCachePublicly !== true) { |
|
| 39 | 39 | $fields->addFieldsToTab( |
| 40 | 40 | 'Root.Cache', |
| 41 | 41 | [ |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | public static function update_cache_key(?string $className = '') |
| 88 | 88 | { |
| 89 | 89 | // important - avoid endless loop! |
| 90 | - if(SiteConfig::get()->exists()) { |
|
| 90 | + if (SiteConfig::get()->exists()) { |
|
| 91 | 91 | $howOldIsIt = DB::query('SELECT Created FROM SiteConfig LIMIT 1')->value(); |
| 92 | 92 | if ($howOldIsIt && strtotime((string) $howOldIsIt) > strtotime('-5 minutes')) { |
| 93 | 93 | return; |
@@ -112,7 +112,7 @@ discard block |
||
| 112 | 112 | } |
| 113 | 113 | if ($obj && $obj->RecordCacheUpdates) { |
| 114 | 114 | $recordId = Injector::inst() |
| 115 | - ->create(ObjectsUpdated::class, ['ClassNameLastEdited' => $className]) |
|
| 115 | + ->create(ObjectsUpdated::class, [ 'ClassNameLastEdited' => $className ]) |
|
| 116 | 116 | ->write() |
| 117 | 117 | ; |
| 118 | 118 | DB::query('DELETE FROM ObjectsUpdated WHERE ID < ' . (int) ($recordId - self::MAX_OBJECTS_UPDATED)); |
@@ -121,9 +121,9 @@ discard block |
||
| 121 | 121 | |
| 122 | 122 | public function requireDefaultRecords() |
| 123 | 123 | { |
| 124 | - if((int) SiteConfig::get()->count() > 100) { |
|
| 124 | + if ((int) SiteConfig::get()->count() > 100) { |
|
| 125 | 125 | $currentSiteConfig = SiteConfig::current_site_config(); |
| 126 | - if($currentSiteConfig) { |
|
| 126 | + if ($currentSiteConfig) { |
|
| 127 | 127 | DB::alteration_message('Deleting all SiteConfig records except for the current one.', 'deleted'); |
| 128 | 128 | DB::query('DELETE FROM "SiteConfig" WHERE ID <> ' . $currentSiteConfig->ID); |
| 129 | 129 | } |
@@ -18,7 +18,7 @@ discard block |
||
| 18 | 18 | { |
| 19 | 19 | public function onBeforeInit() |
| 20 | 20 | { |
| 21 | - if(Security::getCurrentUser()) { |
|
| 21 | + if (Security::getCurrentUser()) { |
|
| 22 | 22 | return; |
| 23 | 23 | } |
| 24 | 24 | if (Versioned::LIVE !== Versioned::get_stage()) { |
@@ -28,41 +28,41 @@ discard block |
||
| 28 | 28 | $owner = $this->getOwner(); |
| 29 | 29 | if ($owner instanceof ContentController) { |
| 30 | 30 | $extend = $owner->extend('updateCacheControl'); |
| 31 | - if($extend) { |
|
| 31 | + if ($extend) { |
|
| 32 | 32 | return; |
| 33 | 33 | } |
| 34 | 34 | $sc = SiteConfig::current_site_config(); |
| 35 | - if(! $sc->HasCaching) { |
|
| 35 | + if (!$sc->HasCaching) { |
|
| 36 | 36 | return; |
| 37 | 37 | } |
| 38 | 38 | $request = $owner->getRequest(); |
| 39 | - if($request->param('Action')) { |
|
| 39 | + if ($request->param('Action')) { |
|
| 40 | 40 | return; |
| 41 | 41 | } |
| 42 | - if($request->param('ID')) { |
|
| 42 | + if ($request->param('ID')) { |
|
| 43 | 43 | return; |
| 44 | 44 | } |
| 45 | - if($request->isAjax()) { |
|
| 45 | + if ($request->isAjax()) { |
|
| 46 | 46 | return; |
| 47 | 47 | } |
| 48 | - if($request->getVar('flush')) { |
|
| 48 | + if ($request->getVar('flush')) { |
|
| 49 | 49 | return; |
| 50 | 50 | } |
| 51 | - if($request->requestVars()) { |
|
| 51 | + if ($request->requestVars()) { |
|
| 52 | 52 | return; |
| 53 | 53 | } |
| 54 | 54 | $dataRecord = $owner->data(); |
| 55 | 55 | if (empty($dataRecord)) { |
| 56 | 56 | return; |
| 57 | 57 | } |
| 58 | - if($dataRecord->NeverCachePublicly) { |
|
| 58 | + if ($dataRecord->NeverCachePublicly) { |
|
| 59 | 59 | HTTPCacheControlMiddleware::singleton() |
| 60 | 60 | ->disableCache() |
| 61 | 61 | ; |
| 62 | 62 | return; |
| 63 | 63 | } |
| 64 | 64 | $cacheTime = (int) ($dataRecord->PublicCacheDurationInSeconds ?: $sc->PublicCacheDurationInSeconds); |
| 65 | - if($cacheTime > 0) { |
|
| 65 | + if ($cacheTime > 0) { |
|
| 66 | 66 | return HTTPCacheControlMiddleware::singleton() |
| 67 | 67 | ->enableCache() |
| 68 | 68 | ->setMaxAge($cacheTime) |