コード例 #1
0
ファイル: AssetMaker.php プロジェクト: Rudianasaja/october
 /**
  * Internal helper, attaches a build code to an asset path
  * @param  array $asset Stored asset array
  * @return string
  */
 protected function getAssetEntryBuildPath($asset)
 {
     $path = $asset['path'];
     if (isset($asset['attributes']['build'])) {
         $build = $asset['attributes']['build'];
         if ($build == 'core') {
             $build = 'v' . Parameters::get('system::core.build', 1);
         } elseif ($pluginVersion = PluginVersion::getVersion($build)) {
             $build = 'v' . $pluginVersion;
         }
         $path .= '?' . $build;
     }
     return $path;
 }