ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilEventHookPlugin.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
26abstract 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.