You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
878 B
34 lines
878 B
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
/**
|
|
* Interface HookMyStudentsQuizTrackingObserverInterface.
|
|
*/
|
|
interface HookMyStudentsQuizTrackingObserverInterface extends HookObserverInterface
|
|
{
|
|
/**
|
|
* Return an associative array this value and attributes.
|
|
* <code>
|
|
* [
|
|
* 'value' => 'Users online',
|
|
* 'attrs' => ['class' => 'text-center'],
|
|
* ]
|
|
* </code>.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function trackingHeader(HookMyStudentsQuizTrackingEventInterface $hook);
|
|
|
|
/**
|
|
* Return an associative array this value and attributes.
|
|
* <code>
|
|
* [
|
|
* 'value' => '5 connected users ',
|
|
* 'attrs' => ['class' => 'text-center text-success'],
|
|
* ]
|
|
* </code>.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function trackingContent(HookMyStudentsQuizTrackingEventInterface $hook);
|
|
}
|
|
|