HookNotificationContentObserverInterface.php 507 B

1234567891011121314151617181920
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * This file contains Hook observer interface for notification content.
  5. *
  6. * @package chamilo.library.hook
  7. */
  8. /**
  9. * Interface HookNotificationContentObserverInterface.
  10. */
  11. interface HookNotificationContentObserverInterface extends HookObserverInterface
  12. {
  13. /**
  14. * @param HookNotificationContentEventInterface $hook
  15. *
  16. * @return array
  17. */
  18. public function hookNotificationContent(HookNotificationContentEventInterface $hook);
  19. }