Files
Chamilo/main/inc/lib/hook/interfaces/HookNotificationTitleEventInterface.php
2025-04-10 12:49:05 +02:00

21 lines
417 B
PHP

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