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

22 lines
441 B
PHP

<?php
/* For licensing terms, see /license.txt */
/**
* Interface HookMyStudentsQuizTrackingEventInterface.
*/
interface HookMyStudentsQuizTrackingEventInterface extends HookEventInterface
{
/**
* @return array
*/
public function notifyTrackingHeader();
/**
* @param int $quizId
* @param int $studentId
*
* @return array
*/
public function notifyTrackingContent($quizId, $studentId);
}