ConsoleEvent
扩展 Event控制台事件的基本事件类。
自 |
2.0.0 |
---|---|
包 |
Joomla 框架 |
方法
__construct
事件构造函数。
__construct( name, \Joomla\Console\Application application, \Joomla\Console\Command\AbstractCommand|null command = null) :
__serialize
序列化事件。
__serialize() : mixed||string|int
自 |
2.0.0 |
---|
响应
array<string|int, mixed>
要序列化的数据
__unserialize
反序列化事件。
__unserialize(mixed||string|int data) :
自 |
2.0.0 |
---|
参数
- 数据
array<string|int, mixed>
序列化的事件。
响应
无效
addArgument
添加事件参数,仅当它不存在时。
addArgument( name, value) :
自 |
1.0 |
---|
参数
- 名称
string
参数名称。- 价值
mixed
参数值。
响应
$this
clearArguments
清除所有事件参数。
clearArguments() : mixed||string|int
自 |
1.0 |
---|
响应
array<string|int, mixed>
旧的参数。
count
计算参数数量。
count() :
自 |
1.0 |
---|
响应
int
参数数量。
getArgument
获取事件参数值。
getArgument( name, default = null) :
自 |
1.0 |
---|
参数
- 名称
string
参数名称。- 默认
mixed
如果未找到,则为默认值。
响应
mixed
参数值或默认值。
getArguments
获取所有事件参数。
getArguments() : mixed||string|int
自 |
1.0 |
---|
响应
array<string|int, mixed>
参数名称作为键和其值作为值的关联数组。
getCommand
获取正在执行的命令。
getCommand() : \Joomla\Console\Command\AbstractCommand|null
getName
获取事件名称。
getName() :
自 |
1.0 |
---|
响应
string
事件名称。
hasArgument
判断给定事件参数是否存在。
hasArgument( name) :
自 |
1.0 |
---|
参数
- 名称
string
参数名称。
响应
bool
如果存在,则为 true,否则为 false。
isStopped
判断事件传播是否已停止。
isStopped() :
自 |
1.0 |
---|
响应
bool
如果停止,则为 true,否则为 false。
offsetExists
判断给定事件参数是否存在。
offsetExists( name) :
自 |
1.0 |
---|
参数
- 名称
string
参数名称。
响应
bool
如果存在,则为 true,否则为 false。
offsetGet
获取事件参数值。
offsetGet( name) :
自 |
1.0 |
---|
参数
- 名称
string
参数名称。
响应
mixed
参数值,如果不存在,则为 null。
offsetSet
设置事件参数的值。
offsetSet( name, value) :
自 |
1.0 |
---|---|
抛出 |
|
参数
- 名称
string
参数名称。- 价值
mixed
参数值。
响应
无效
offsetUnset
删除事件参数。
offsetUnset( name) :
自 |
1.0 |
---|
参数
- 名称
string
参数名称。
响应
无效
removeArgument
删除事件参数。
removeArgument( name) :
自 |
1.0 |
---|
参数
- 名称
string
参数名称。
响应
mixed
旧的参数值,如果它不存在,则为 null。
serialize
序列化事件。
serialize() :
自 |
1.0 |
---|
响应
string
序列化的事件。
setArgument
将参数添加到事件。
setArgument( name, value) :
自 |
1.0 |
---|
参数
- 名称
string
参数名称。- 价值
mixed
价值。
响应
$this
stop
停止事件传播。
stop() :
自 |
1.0 |
---|---|
已弃用 |
3.0 使用 stopPropagation 代替 |
响应
无效
stopPropagation
停止事件传播到更进一步的事件监听器。
stopPropagation() :
自 |
2.0.0 |
---|
响应
无效
unserialize
反序列化事件。
unserialize( serialized) :
自 |
1.0 |
---|
参数
- 序列化
string
序列化的事件。
响应
无效
属性
名称
事件名称。
自 |
1.0 |
---|
类型
字符串
参数
事件参数。
自 |
1.0 |
---|
类型
array<string|int, mixed>
已停止
一个标志,用于查看事件传播是否已停止。
自 |
1.0 |
---|
类型
布尔