1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- interface HookMyStudentsQuizTrackingObserverInterface extends HookObserverInterface
- {
-
- public function trackingHeader(HookMyStudentsQuizTrackingEventInterface $hook);
-
- public function trackingContent(HookMyStudentsQuizTrackingEventInterface $hook);
- }
|