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

22 lines
433 B
PHP

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