ConfigurationAwareApplicationInterface
扩展 ApplicationInterface定义应用程序类子接口,该类了解其配置
自 |
2.0.0 |
---|---|
包 |
Joomla 框架 |
方法
关闭
关闭应用程序的方法。
close( code) :
继承
自 |
2.0.0 |
---|
参数
- 代码
int
退出代码(可选;默认值为 0)。
响应
void
执行
执行应用程序。
execute() :
继承
自 |
2.0.0 |
---|
响应
void
获取
返回对象的属性,如果属性未设置,则返回默认值。
get( key, default = null) :
自 |
2.0.0 |
---|
参数
- 键
string
属性的名称。- 默认
mixed
默认值(可选),如果未设置。
响应
mixed
配置的值。
设置
修改对象的属性,如果它不存在,则创建它。
set( key, value = null) :
自 |
2.0.0 |
---|
参数
- 键
string
属性的名称。- 值
mixed
要设置的属性的值(可选)。
响应
mixed
属性的先前值
设置配置
设置应用程序的配置。
setConfiguration(\Joomla\Registry\Registry config) :