ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilEventHookPlugin.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
26 abstract class ilEventHookPlugin extends ilPlugin
27 {
35  abstract public function handleEvent(
36  string $a_component,
37  string $a_event,
38  array $a_parameter
39  ): void;
40 }
Abstract parent class for all event hook plugin classes.
handleEvent(string $a_component, string $a_event, array $a_parameter)
Handle the event.