Mibew Messenger Community
General => Support => Topic started by: cpcbegin on April 07, 2016, 08:46:19 AM
-
I want to make a page that just shows 'on' if any operator is connected to Mibew or 'off' in the oposite case, which function I need use to get it?
-
I find a solution: I make a file.php with this content:
<?php
require_once('/libs/init.php');
echo has_online_operators(false)?'online':'offline';
exit;
?>