WebAssetRegistryInterface

Web 资源注册接口

4.0.0

Joomla CMS

方法

add

将资源添加到已知资源注册表

add( type, \Joomla\CMS\WebAsset\WebAssetItemInterface asset) : 

4.0.0

参数

类型

string资源类型,脚本或样式等

资源

WebAssetItemInterface资源实例

响应

自身

exists

检查资源是否存在于注册表中。

exists( type,  name) : 

4.0.0

参数

类型

string资源类型,脚本或样式等

名称

string资源名称

响应

bool

get

从注册表中获取现有资源,按资源名称和资源类型。

get( type,  name) : \Joomla\CMS\WebAsset\WebAssetItem
抛出

UnknownAssetException当无法找到资源时

4.0.0

参数

类型

string资源类型,脚本或样式等

名称

string资源名称

响应

WebAssetItem

remove

从注册表中删除资源。

remove( type,  name) : 

4.0.0

参数

类型

string资源类型,脚本或样式等

名称

string资源名称

响应

自身