|
|
@ -136,7 +136,6 @@ class AssetController extends Controller |
|
|
|
$this->loadConfiguration($configFile); |
|
|
|
$this->loadConfiguration($configFile); |
|
|
|
$bundles = $this->loadBundles($this->bundles); |
|
|
|
$bundles = $this->loadBundles($this->bundles); |
|
|
|
$targets = $this->loadTargets($this->targets, $bundles); |
|
|
|
$targets = $this->loadTargets($this->targets, $bundles); |
|
|
|
$this->publishBundles($bundles, $this->assetManager); |
|
|
|
|
|
|
|
$timestamp = time(); |
|
|
|
$timestamp = time(); |
|
|
|
foreach ($targets as $name => $target) { |
|
|
|
foreach ($targets as $name => $target) { |
|
|
|
echo "Creating output bundle '{$name}':\n"; |
|
|
|
echo "Creating output bundle '{$name}':\n"; |
|
|
@ -276,21 +275,6 @@ class AssetController extends Controller |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* Publishes given asset bundles. |
|
|
|
|
|
|
|
* @param \yii\web\AssetBundle[] $bundles asset bundles to be published. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
protected function publishBundles($bundles) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
echo "\nPublishing bundles:\n"; |
|
|
|
|
|
|
|
$assetManager = $this->getAssetManager(); |
|
|
|
|
|
|
|
foreach ($bundles as $name => $bundle) { |
|
|
|
|
|
|
|
$bundle->publish($assetManager); |
|
|
|
|
|
|
|
echo " '".$name."' published.\n"; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
echo "\n"; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Builds output asset bundle. |
|
|
|
* Builds output asset bundle. |
|
|
|
* @param \yii\web\AssetBundle $target output asset bundle |
|
|
|
* @param \yii\web\AssetBundle $target output asset bundle |
|
|
|
* @param string $type either 'js' or 'css'. |
|
|
|
* @param string $type either 'js' or 'css'. |
|
|
|