@@ -155,7 +155,7 @@ |
||
| 155 | 155 | { |
| 156 | 156 | $result = ''; |
| 157 | 157 | $filePath = parse_url($url, PHP_URL_PATH); |
| 158 | - $filePath = $_SERVER['DOCUMENT_ROOT'] . $filePath; |
|
| 158 | + $filePath = $_SERVER['DOCUMENT_ROOT'].$filePath; |
|
| 159 | 159 | if (file_exists($filePath)) { |
| 160 | 160 | $urlParams = [ |
| 161 | 161 | 'url' => $url, |
@@ -84,12 +84,12 @@ discard block |
||
| 84 | 84 | |
| 85 | 85 | // rawDuration is in 00:00:00.00 format. This converts it to seconds. |
| 86 | 86 | $ar = array_reverse(explode(':', $rawDuration)); |
| 87 | - $duration = (float)$ar[0]; |
|
| 87 | + $duration = (float) $ar[0]; |
|
| 88 | 88 | if (!empty($ar[1])) { |
| 89 | - $duration += (int)$ar[1] * 60; |
|
| 89 | + $duration += (int) $ar[1] * 60; |
|
| 90 | 90 | } |
| 91 | 91 | if (!empty($ar[2])) { |
| 92 | - $duration += (int)$ar[2] * 60 * 60; |
|
| 92 | + $duration += (int) $ar[2] * 60 * 60; |
|
| 93 | 93 | } |
| 94 | 94 | } else { |
| 95 | 95 | $duration = 'unknown'; // with GIF as input, duration is unknown |
@@ -106,12 +106,12 @@ discard block |
||
| 106 | 106 | |
| 107 | 107 | //rawTime is in 00:00:00.00 format. This converts it to seconds. |
| 108 | 108 | $ar = array_reverse(explode(':', $rawTime)); |
| 109 | - $time = (float)$ar[0]; |
|
| 109 | + $time = (float) $ar[0]; |
|
| 110 | 110 | if (!empty($ar[1])) { |
| 111 | - $time += (int)$ar[1] * 60; |
|
| 111 | + $time += (int) $ar[1] * 60; |
|
| 112 | 112 | } |
| 113 | 113 | if (!empty($ar[2])) { |
| 114 | - $time += (int)$ar[2] * 60 * 60; |
|
| 114 | + $time += (int) $ar[2] * 60 * 60; |
|
| 115 | 115 | } |
| 116 | 116 | |
| 117 | 117 | //calculate the progress |
@@ -300,7 +300,7 @@ discard block |
||
| 300 | 300 | $cache = Craft::$app->getCache(); |
| 301 | 301 | $file = $cache->getOrSet( |
| 302 | 302 | self::CACHE_KEY.$path, |
| 303 | - function () use ($path) { |
|
| 303 | + function() use ($path) { |
|
| 304 | 304 | $result = null; |
| 305 | 305 | $string = @file_get_contents($path); |
| 306 | 306 | if ($string) { |
@@ -327,7 +327,7 @@ discard block |
||
| 327 | 327 | protected static function combinePaths(string ...$paths): string |
| 328 | 328 | { |
| 329 | 329 | $last_key = \count($paths) - 1; |
| 330 | - array_walk($paths, function (&$val, $key) use ($last_key) { |
|
| 330 | + array_walk($paths, function(&$val, $key) use ($last_key) { |
|
| 331 | 331 | switch ($key) { |
| 332 | 332 | case 0: |
| 333 | 333 | $val = rtrim($val, '/ '); |
@@ -131,7 +131,7 @@ discard block |
||
| 131 | 131 | Event::on( |
| 132 | 132 | CraftVariable::class, |
| 133 | 133 | CraftVariable::EVENT_INIT, |
| 134 | - function (Event $event) { |
|
| 134 | + function(Event $event) { |
|
| 135 | 135 | /** @var CraftVariable $variable */ |
| 136 | 136 | $variable = $event->sender; |
| 137 | 137 | $variable->set('transcoder', TranscoderVariable::class); |
@@ -149,7 +149,7 @@ discard block |
||
| 149 | 149 | Event::on( |
| 150 | 150 | Assets::class, |
| 151 | 151 | Assets::EVENT_GET_THUMB_PATH, |
| 152 | - function (AssetThumbEvent $event) { |
|
| 152 | + function(AssetThumbEvent $event) { |
|
| 153 | 153 | Craft::debug( |
| 154 | 154 | 'Assets::EVENT_GET_THUMB_PATH', |
| 155 | 155 | __METHOD__ |
@@ -166,7 +166,7 @@ discard block |
||
| 166 | 166 | Event::on( |
| 167 | 167 | ClearCaches::class, |
| 168 | 168 | ClearCaches::EVENT_REGISTER_CACHE_OPTIONS, |
| 169 | - function (RegisterCacheOptionsEvent $event) { |
|
| 169 | + function(RegisterCacheOptionsEvent $event) { |
|
| 170 | 170 | $event->options[] = [ |
| 171 | 171 | 'key' => 'transcoder', |
| 172 | 172 | 'label' => Craft::t('transcoder', 'Transcoder caches'), |
@@ -179,7 +179,7 @@ discard block |
||
| 179 | 179 | Event::on( |
| 180 | 180 | Plugins::class, |
| 181 | 181 | Plugins::EVENT_AFTER_INSTALL_PLUGIN, |
| 182 | - function (PluginEvent $event) { |
|
| 182 | + function(PluginEvent $event) { |
|
| 183 | 183 | if ($event->plugin === $this) { |
| 184 | 184 | $request = Craft::$app->getRequest(); |
| 185 | 185 | if ($request->isCpRequest) { |
@@ -204,7 +204,7 @@ discard block |
||
| 204 | 204 | Event::on( |
| 205 | 205 | UrlManager::class, |
| 206 | 206 | UrlManager::EVENT_REGISTER_SITE_URL_RULES, |
| 207 | - function (RegisterUrlRulesEvent $event) { |
|
| 207 | + function(RegisterUrlRulesEvent $event) { |
|
| 208 | 208 | Craft::debug( |
| 209 | 209 | 'UrlManager::EVENT_REGISTER_SITE_URL_RULES', |
| 210 | 210 | __METHOD__ |
@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | $subfolder = ''; |
| 101 | 101 | |
| 102 | 102 | // sub folder check |
| 103 | - if(\is_object($filePath) && ($filePath instanceof Asset) && $settings['createSubfolders']) { |
|
| 103 | + if (\is_object($filePath) && ($filePath instanceof Asset) && $settings['createSubfolders']) { |
|
| 104 | 104 | $subfolder = $filePath->folderPath; |
| 105 | 105 | } |
| 106 | 106 | |
@@ -242,7 +242,7 @@ discard block |
||
| 242 | 242 | $subfolder = ''; |
| 243 | 243 | |
| 244 | 244 | // sub folder check |
| 245 | - if(\is_object($filePath) && ($filePath instanceof Asset) && $settings['createSubfolders']) { |
|
| 245 | + if (\is_object($filePath) && ($filePath instanceof Asset) && $settings['createSubfolders']) { |
|
| 246 | 246 | $subfolder = $filePath->folderPath; |
| 247 | 247 | } |
| 248 | 248 | |
@@ -314,7 +314,7 @@ discard block |
||
| 314 | 314 | if ($asPath) { |
| 315 | 315 | $result = $destThumbnailPath; |
| 316 | 316 | } else { |
| 317 | - $url = $settings['transcoderUrls']['thumbnail'] . $subfolder ?? $settings['transcoderUrls']['default']; |
|
| 317 | + $url = $settings['transcoderUrls']['thumbnail'].$subfolder ?? $settings['transcoderUrls']['default']; |
|
| 318 | 318 | $result = Craft::getAlias($url).$destThumbnailFile; |
| 319 | 319 | } |
| 320 | 320 | } |
@@ -338,7 +338,7 @@ discard block |
||
| 338 | 338 | $subfolder = ''; |
| 339 | 339 | |
| 340 | 340 | // sub folder check |
| 341 | - if(\is_object($filePath) && ($filePath instanceof Asset) && $settings['createSubfolders']) { |
|
| 341 | + if (\is_object($filePath) && ($filePath instanceof Asset) && $settings['createSubfolders']) { |
|
| 342 | 342 | $subfolder = $filePath->folderPath; |
| 343 | 343 | } |
| 344 | 344 | |
@@ -414,7 +414,7 @@ discard block |
||
| 414 | 414 | |
| 415 | 415 | // If the audio file already exists and hasn't been modified, return it. Otherwise, start it transcoding |
| 416 | 416 | if ($this->shouldGenerateAsset('audio', $destAudioPath, $filePath)) { |
| 417 | - $url = $settings['transcoderUrls']['audio'] . $subfolder ?? $settings['transcoderUrls']['default']; |
|
| 417 | + $url = $settings['transcoderUrls']['audio'].$subfolder ?? $settings['transcoderUrls']['default']; |
|
| 418 | 418 | $result = Craft::getAlias($url).$destAudioFile; |
| 419 | 419 | |
| 420 | 420 | if ($remoteUrl = $this->moveAssetToVolume('audio', $destAudioPath)) { |
@@ -495,7 +495,7 @@ discard block |
||
| 495 | 495 | && (strpos($summaryResult['videoFrameRate'], '/') !== false) |
| 496 | 496 | ) { |
| 497 | 497 | $parts = explode('/', $summaryResult['videoFrameRate']); |
| 498 | - $summaryResult['videoFrameRate'] = (float)$parts[0] / (float)$parts[1]; |
|
| 498 | + $summaryResult['videoFrameRate'] = (float) $parts[0] / (float) $parts[1]; |
|
| 499 | 499 | } |
| 500 | 500 | $result = $summaryResult; |
| 501 | 501 | } |
@@ -607,7 +607,7 @@ discard block |
||
| 607 | 607 | $subfolder = ''; |
| 608 | 608 | |
| 609 | 609 | // sub folder check |
| 610 | - if(\is_object($filePath) && ($filePath instanceof Asset) && $settings['createSubfolders']) { |
|
| 610 | + if (\is_object($filePath) && ($filePath instanceof Asset) && $settings['createSubfolders']) { |
|
| 611 | 611 | $subfolder = $filePath->folderPath; |
| 612 | 612 | } |
| 613 | 613 | |
@@ -668,7 +668,7 @@ discard block |
||
| 668 | 668 | |
| 669 | 669 | // If the video file already exists and hasn't been modified, return it. Otherwise, start it transcoding |
| 670 | 670 | if ($this->shouldGenerateAsset('gif', $destVideoPath, $filePath)) { |
| 671 | - $url = $settings['transcoderUrls']['gif'] . $subfolder ?? $settings['transcoderUrls']['default']; |
|
| 671 | + $url = $settings['transcoderUrls']['gif'].$subfolder ?? $settings['transcoderUrls']['default']; |
|
| 672 | 672 | $result = Craft::getAlias($url).$destVideoFile; |
| 673 | 673 | |
| 674 | 674 | if ($remoteUrl = $this->moveAssetToVolume('gif', $destVideoPath)) { |
@@ -758,14 +758,14 @@ discard block |
||
| 758 | 758 | // If it's local, get a path to the file |
| 759 | 759 | if ($assetVolume instanceof Local) { |
| 760 | 760 | $sourcePath = rtrim($assetVolume->path, DIRECTORY_SEPARATOR); |
| 761 | - $sourcePath .= '' === $sourcePath ? '': DIRECTORY_SEPARATOR; |
|
| 761 | + $sourcePath .= '' === $sourcePath ? '' : DIRECTORY_SEPARATOR; |
|
| 762 | 762 | $folderPath = ''; |
| 763 | 763 | try { |
| 764 | 764 | $folderPath = rtrim($asset->getFolder()->path, DIRECTORY_SEPARATOR); |
| 765 | 765 | } catch (InvalidConfigException $e) { |
| 766 | 766 | Craft::error($e->getMessage(), __METHOD__); |
| 767 | 767 | } |
| 768 | - $folderPath .= '' === $folderPath ? '': DIRECTORY_SEPARATOR; |
|
| 768 | + $folderPath .= '' === $folderPath ? '' : DIRECTORY_SEPARATOR; |
|
| 769 | 769 | |
| 770 | 770 | $filePath = $sourcePath.$folderPath.$asset->filename; |
| 771 | 771 | } else { |