AbstractView
实现 ViewInterfaceJoomla 框架抽象视图类
抽象
自 |
1.0 |
---|---|
包 |
Joomla 框架 |
方法
addData
将对象添加到数据数组
addData( key, value) :
自 |
2.0.0 |
---|
参数
- 键
string
数组键- 值
mixed
要添加的数据值
响应
$this
clearData
重置内部数据数组
clearData() :
自 |
2.0.0 |
---|
响应
$this
getData
检索数据数组
getData() : mixed||string|int
自 |
2.0.0 |
---|
响应
array<string|int, mixed>
removeData
从数据数组中删除对象
removeData( key) :
自 |
2.0.0 |
---|
参数
- 键
string
要删除的数组键
响应
$this
setData
将附加数据设置为数据数组
setData(mixed||string|int data) :
自 |
2.0.0 |
---|
参数
- 数据
array<string|int, mixed>
要合并到现有数据数组中的数据
响应
$this
属性
数据
传递给渲染器的数据数组
自 |
2.0.0 |
---|
类型
array<string|int, mixed>