Files
Chamilo/main/inc/lib/hook/interfaces/HookNotificationContentEventInterface.php
2025-08-14 22:37:50 +02:00

21 lines
425 B
PHP

<?php
/* For licensing terms, see /license.txt */
/**
* This file contains Hook event interface for notification content.
*
* @package chamilo.library.hook
*/
/**
* Interface HookNotificationContentEventInterface.
*/
interface HookNotificationContentEventInterface extends HookEventInterface
{
/**
* @param int $type
*
* @return array
*/
public function notifyNotificationContent($type);
}