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

12 lines
292 B
PHP

<?php
/* For licensing terms, see /license.txt */
/**
* Interface HookDocumentItemViewObserverInterface.
*/
interface HookDocumentItemViewObserverInterface extends HookObserverInterface
{
public function notifyDocumentItemView(HookDocumentItemViewEventInterface $hookvent): string;
}