123456789101112131415161718192021222324252627282930313233 |
- <?php
- class HookResubscribe extends HookEvent implements HookResubscribeEventInterface
- {
-
- protected function __construct()
- {
- parent::__construct('HookResubscribe');
- }
-
- public function notifyResubscribe($type)
- {
-
- $this->eventData['type'] = $type;
- foreach ($this->observers as $observer) {
- $observer->hookResubscribe($this);
- }
- return 1;
- }
- }
|