mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-26 01:09:21 +02:00
37 lines
896 B
PHP
37 lines
896 B
PHP
<?php
|
|
/**
|
|
* Visitors viewer
|
|
*
|
|
* @package MyAAC
|
|
* @author Slawkens <slawkens@gmail.com>
|
|
* @copyright 2017 MyAAC
|
|
* @version 0.6.4
|
|
* @link http://my-aac.org
|
|
*/
|
|
defined('MYAAC') or die('Direct access not allowed!');
|
|
$title = 'Visitors';
|
|
|
|
if(!$config['visitors_counter']): ?>
|
|
Visitors counter is disabled.<br/>
|
|
You can enable it by editing this configurable in <b>config.local.php</b> file:<br/>
|
|
<p style="margin-left: 3em;"><b>$config['visitors_counter'] = true;</b></p>
|
|
<?php
|
|
return;
|
|
endif;
|
|
|
|
require(SYSTEM . 'libs/visitors.php');
|
|
$visitors = new Visitors($config['visitors_counter_ttl']);
|
|
|
|
function compare($a, $b) {
|
|
return $a['lastvisit'] > $b['lastvisit'] ? -1 : 1;
|
|
}
|
|
|
|
$tmp = $visitors->getVisitors();
|
|
usort($tmp, 'compare');
|
|
|
|
echo $twig->render('admin.visitors.html.twig', array(
|
|
'config_visitors_counter_ttl' => $config['visitors_counter_ttl'],
|
|
'visitors' => $tmp
|
|
));
|
|
?>
|