/inc/classes/BxDolUserStatusView.php
~ 11
/**
* Class constructor ;
*/
function BxDolUserStatusView()
{
$this -> sHomeUrl = BX_DOL_URL_ROOT;
$this -> aStatuses = array(
'online' => array(
'icon8' => 'sys_status_online.png',
'icon' => 'status_online.png',
'title' => _t('_Online'),
),
'offline' => array(
'icon8' => 'sys_status_offline.png',
'icon' => 'status_offline.png',
'title' => _t('_Offline'),
),
'away' => array(
'icon8' => 'sys_status_away.png',
'icon' => 'status_away.png',
'title' => _t('_Away'),
),
'busy' => array(
'icon8' => 'sys_status_busy.png',
'icon' => 'status_busy.png',
'title' => _t('_Busy'),
),
);
}
/**
* Class constructor ;
*/
function BxDolUserStatusView()
{
$this -> sHomeUrl = BX_DOL_URL_ROOT;
$this -> aStatuses = array(
'online' => array(
'icon8' => 'sys_status_online.png',
'icon' => 'status_online.png',
'title' => _t('_Online'),
),
'offline' => array(
'icon8' => 'sys_status_offline.png',
'icon' => 'status_offline.png',
'title' => _t('_Offline'),
),
);
}