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.
39 lines
1002 B
39 lines
1002 B
|
6 years ago
|
<?php
|
||
|
|
/* For licensing terms, see /license.txt */
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Interface HookMyStudentsLpTrackingObserverInterface.
|
||
|
|
*/
|
||
|
|
interface HookMyStudentsLpTrackingObserverInterface extends HookObserverInterface
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* Return an associative array this value and attributes.
|
||
|
|
* <code>
|
||
|
|
* [
|
||
|
|
* 'value' => 'Users online',
|
||
|
|
* 'attrs' => ['class' => 'text-center'],
|
||
|
|
* ]
|
||
|
|
* </code>.
|
||
|
|
*
|
||
|
|
* @param HookMyStudentsLpTrackingEventInterface $hook
|
||
|
|
*
|
||
|
|
* @return array
|
||
|
|
*/
|
||
|
|
public function trackingHeader(HookMyStudentsLpTrackingEventInterface $hook);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Return an associative array this value and attributes.
|
||
|
|
* <code>
|
||
|
|
* [
|
||
|
|
* 'value' => '5 connected users ',
|
||
|
|
* 'attrs' => ['class' => 'text-center text-success'],
|
||
|
|
* ]
|
||
|
|
* </code>.
|
||
|
|
*
|
||
|
|
* @param HookMyStudentsLpTrackingEventInterface $hook
|
||
|
|
*
|
||
|
|
* @return array
|
||
|
|
*/
|
||
|
|
public function trackingContent(HookMyStudentsLpTrackingEventInterface $hook);
|
||
|
|
}
|