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

20 lines
429 B
PHP

<?php
/* For licensing terms, see /license.txt */
/**
* This file contains all Hook interfaces and their relation.
* They are used for Hook classes.
*
* @package chamilo.library.hook
*/
/**
* Interface HookAdminBlockObserverInterface.
*/
interface HookAdminBlockObserverInterface extends HookObserverInterface
{
/**
* @return int
*/
public function hookAdminBlock(HookAdminBlockEventInterface $hook);
}