0 关注者

接口 yii\web\AssetConverterInterface

实现类yii\web\AssetConverter
版本2.0
源代码 https://github.com/yiisoft/yii2/blob/master/framework/web/AssetConverterInterface.php

资产转换类必须实现 AssetConverterInterface 接口。

公共方法

隐藏继承方法

方法 描述 定义于
convert() 将给定的资产文件转换为 CSS 或 JS 文件。 yii\web\AssetConverterInterface

方法详情

隐藏继承方法

convert() 公共抽象方法

将给定的资产文件转换为 CSS 或 JS 文件。

public abstract string convert ( $asset, $basePath )
$asset string

资产文件路径,相对于 $basePath

$basePath string

$asset 相对于的目录。

返回值 string

转换后的资产文件路径,相对于 $basePath。

                public function convert($asset, $basePath);