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

17 lines
294 B
PHP

<?php
/* For licensing terms, see /license.txt */
/**
* Interface HookDocumentActionEventInterface.
*/
interface HookDocumentActionEventInterface extends HookEventInterface
{
/**
* @param $type
*
* @return mixed
*/
public function notifyDocumentAction($type);
}