DaemonReceiveSignalEvent
扩展 ApplicationEventDaemonApplication 的 ReceiveSignal 事件类
自 |
5.0.0 |
---|---|
包 |
Joomla CMS |
方法
__construct
构造函数。
__construct( name, mixed||string|int arguments = []) :
抛出 |
|
---|---|
自 |
5.0.0 |
参数
- name
string
事件名称。- arguments
array<string|int, mixed>
事件参数。
响应
mixed
create
为给定的事件名称和主题创建新的 CMS 事件对象。必须给出以下参数:主题对象 事件的主题。这是你要操作的核心对象。
create( eventName, mixed||string|int arguments = []) :
eventClass string 事件类名称。如果未提供,将使用 Joomla\CMS\Events<eventNameWithoutOnPrefix>。
自 |
4.0.0 |
---|---|
抛出 |
|
参数
- eventName
string
事件名称,例如 onTableBeforeLoad- arguments
array<string|int, mixed>
传递给事件的附加参数
响应
静态
getApplication
获取事件的应用程序对象
getApplication() : \Joomla\Application\AbstractApplication
自 |
5.0.0 |
---|
响应
AbstractApplication
getArgument
获取事件参数值。
getArgument( name, default = null) :
它将使用预处理方法(如果存在)。该方法具有以下签名
onGet<ArgumentName>($value): mixed
其中
$value 是当前存储在事件 $arguments 数组中的值 它返回要返回给调用者的值。
自 |
4.0.0 |
---|
参数
- name
string
参数名称。- default
mixed
如果未找到,则为默认值。
响应
mixed
参数值或默认值。
getEventClassByEventName
获取给定事件名称的具体事件类名称。
getEventClassByEventName( eventName) :
如果此特性未知事件名称,则此方法将回退到通用 Joomla\Event\Event 类。
自 |
4.2.0 |
---|
参数
- eventName
string
事件名称
响应
string
事件类名称
getSignal
获取事件的信号对象
getSignal() :
自 |
5.0.0 |
---|
响应
int
offsetSet
设置事件参数的值。
offsetSet( name, value) :
自 |
4.0.0 |
---|---|
抛出 |
|
参数
- name
string
参数名称。- value
mixed
参数值。
响应
void
offsetUnset
删除事件参数。
offsetUnset( name) :
自 |
4.0.0 |
---|---|
抛出 |
|
参数
- name
string
参数名称。
响应
void
onSetSignal
信号参数的设置器。
onSetSignal( value) :
自 |
5.0.0 |
---|
参数
- value
int
要设置的值
响应
int
onSetSubject
主题参数的设置器。
onSetSubject(\Joomla\Application\AbstractApplication value) : \Joomla\Application\AbstractApplication
自 |
5.0.0 |
---|
参数
- value
AbstractApplication
要设置的值
响应
AbstractApplication
setArgument
将参数添加到事件。
setArgument( name, value) :
它将使用预处理方法(如果存在)。该方法具有以下签名
onSet<ArgumentName>($value): mixed
其中
$value 是用户设置的值 它返回要返回以设置在事件的 $arguments 数组中的值。
自 |
4.0.0 |
---|
参数
- name
string
参数名称。- value
mixed
值。
响应
$this
属性
eventNameToConcreteClass
将事件名称映射到具体事件类。
这仅适用于名称不变的事件。具有可变名称的事件在 getEventClassByEventName 类中使用 PHP 逻辑进行处理。
自 |
4.2.0 |
---|
类型
array<string|int, mixed>
constructed
一个标志,用于查看构造函数是否已被调用。
自 |
4.0.0 |
---|
类型
bool