类
AfterCategoryChangeStateEvent
模型事件的类。
示例:new AfterCategoryChangeStateEvent('onEventName', ['context' => $extension, 'subject' => $primaryKeys, 'value' => $newState]);
« 更多 » AfterChangeStateEvent
模型事件的类。
示例:new AfterChangeStateEvent('onEventName', ['context' => 'com_example.example', 'subject' => $primaryKeys, 'value' => $newState]);
« 更多 » AfterDeleteEvent
模型事件的类。
示例:new AfterDeleteEvent('onEventName', ['context' => 'com_example.example', 'subject' => $itemObjectToDelete]);
« 更多 » AfterSaveEvent
模型事件的类。
示例:new AfterSaveEvent('onEventName', ['context' => 'com_example.example', 'subject' => $itemObjectToSave, 'isNew' => $isNew, 'data' => $submittedData]);
« 更多 » BeforeChangeStateEvent
模型事件的类。
示例:new BeforeChangeStateEvent('onEventName', ['context' => 'com_example.example', 'subject' => $primaryKeys, 'value' => $newState]);
« 更多 » BeforeDeleteEvent
模型事件的类。
示例:new BeforeDeleteEvent('onEventName', ['context' => 'com_example.example', 'subject' => $itemObjectToDelete]);
« 更多 » BeforeSaveEvent
模型事件的类。
示例:new BeforeSaveEvent('onEventName', ['context' => 'com_example.example', 'subject' => $itemObjectToSave, 'isNew' => $isNew, 'data' => $submittedData]);
« 更多 » BeforeValidateDataEvent
模型表单事件的类。
示例:new BeforeValidateDataEvent('onEventName', ['subject' => $form, 'data' => $data]);
« 更多 » NormaliseRequestDataEvent
模型表单事件的类。
示例:new NormaliseRequestDataEvent('onEventName', ['context' => 'com_example.example', 'data' => $data, 'subject' => $form]);
« 更多 » PrepareDataEvent
模型事件的类。
示例:new PrepareDataEvent('onEventName', ['context' => 'com_example.example', 'subject' => $data]);
« 更多 » PrepareFormEvent
模型表单事件的类。
示例:new PrepareFormEvent('onEventName', ['subject' => $form, 'data' => $data]);
« 更多 »