HookMyStudentsLpTrackingEventInterface.php 433 B

123456789101112131415161718192021
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * Interface HookMyStudentsLpTrackingEventInterface.
  5. */
  6. interface HookMyStudentsLpTrackingEventInterface extends HookEventInterface
  7. {
  8. /**
  9. * @return array
  10. */
  11. public function notifyTrackingHeader();
  12. /**
  13. * @param int $lpId
  14. * @param int $studentId
  15. *
  16. * @return array
  17. */
  18. public function notifyTrackingContent($lpId, $studentId);
  19. }