Browse Source

Added asset processor concept.

tags/2.0.0-beta
Qiang Xue 12 years ago
parent
commit
1f47ea9781
  1. 15
      framework/web/AssetManager.php

15
framework/web/AssetManager.php

@ -26,6 +26,13 @@ class AssetManager extends Component
*/ */
public $bundles; public $bundles;
/** /**
* @var array list of asset processors. An asset processor will convert a special type of asset files
* (e.g. LESS, Sass, TypeScript) into JS or CSS files. The array keys are the file extension names
* (e.g. "less", "sass", "ts"), and the array values are the corresponding configuration arrays
* for creating the processor objects.
*/
public $processors;
/**
* @return string the root directory storing the published asset files. * @return string the root directory storing the published asset files.
*/ */
public $basePath = '@wwwroot/assets'; public $basePath = '@wwwroot/assets';
@ -143,8 +150,16 @@ class AssetManager extends Component
*/ */
public function processAsset($asset, $basePath, $baseUrl) public function processAsset($asset, $basePath, $baseUrl)
{ {
$ext = pathinfo($asset, PATHINFO_EXTENSION);
if (isset($this->processors[$ext])) {
if (is_array($this->processors[$ext])) {
$this->processors[$ext] = Yii::createObject($this->processors[$ext]);
}
return $this->processors[$ext]->process($asset, $basePath, $baseUrl);
} else {
return $baseUrl . '/' . $asset; return $baseUrl . '/' . $asset;
} }
}
/** /**
* @var array published assets * @var array published assets

Loading…
Cancel
Save