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.
 
 
 
 

125 lines
3.3 KiB

<?php
/**
* @package Widgets
*
* @file Logout.php
* This file is part of MOVIM.
*
* @brief The little logout widget.
*
* @author Guillaume Pasquet <etenil@etenilsrealm.nl>
*
* @version 1.0
* @date 20 October 2010
*
* Copyright (C)2010 MOVIM project
*
* See COPYING for licensing information.
*/
class Logout extends WidgetBase
{
function WidgetLoad()
{
$this->addcss('logout.css');
$this->addjs('logout.js');
$this->registerEvent('mypresence', 'onMyPresence');
}
function onMyPresence()
{
$html = $this->preparePresence();
RPC::call('movim_fill', 'logout', RPC::cdata($html));
RPC::commit();
}
function onPostDisconnect($data)
{
RPC::call('movim_reload',
RPC::cdata(BASE_URI."index.php?q=disconnect"));
}
function ajaxLogout()
{
$presence = Cache::c('presence');
Cache::c(
'presence',
array(
'status' => $presence['status'],
'show' => $presence['show']
)
);
$this->xmpp->logout();
}
function ajaxSetStatus($show)
{
// We update the cache with our status and presence
$presence = Cache::c('presence');
if($show == "boot") $show = $presence['show'];
Cache::c(
'presence',
array(
'status' => $presence['status'],
'show' => $show
)
);
switch($show) {
case 'chat':
$p = new moxl\PresenceChat();
$p->setStatus($presence['status'])->request();
break;
case 'away':
$p = new moxl\PresenceAway();
$p->setStatus($presence['status'])->request();
break;
case 'dnd':
$p = new moxl\PresenceDND();
$p->setStatus($presence['status'])->request();
break;
case 'xa':
$p = new moxl\PresenceXA();
$p->setStatus($presence['status'])->request();
break;
}
}
function preparePresence()
{
$txt = getPresences();
$txts = getPresencesTxt();
global $session;
$pd = new \modl\PresenceDAO();
$p = $pd->getPresence($this->user->getLogin(), $session['ressource']);
$html = '<div id="logouttab" class="'.$txts[$p->presence].'" onclick="showLogoutList();">'.$txt[$p->presence].'</div>';
$html .= '
<div id="logoutlist">
<a onclick="'.$this->genCallAjax('ajaxSetStatus', "'chat'").'; hideLogoutList();" class="online">'.$txt[1].'</a>
<a onclick="'.$this->genCallAjax('ajaxSetStatus', "'away'").'; hideLogoutList();" class="away">'.$txt[2].'</a>
<a onclick="'.$this->genCallAjax('ajaxSetStatus', "'dnd'").'; hideLogoutList();" class="dnd">'.$txt[3].'</a>
<a onclick="'.$this->genCallAjax('ajaxSetStatus', "'xa'").'; hideLogoutList();" class="xa">'.$txt[4].'</a>
</div>
';
return $html;
}
function build()
{
?>
<div id="logout">
<?php echo $this->preparePresence(); ?>
</div>
<?php
}
}
?>