mirror of https://github.com/movim/movim
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.
35 lines
525 B
35 lines
525 B
<?php
|
|
|
|
/**
|
|
* @package Widgets
|
|
*
|
|
* @file Chat.php
|
|
* This file is part of MOVIM.
|
|
*
|
|
* @brief A jabber chat 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 Poller extends WidgetBase
|
|
{
|
|
function WidgetLoad()
|
|
{
|
|
// We add the javascript that does the job.
|
|
$this->addjs('poller.js');
|
|
// And that's it!
|
|
}
|
|
|
|
function build()
|
|
{
|
|
}
|
|
}
|
|
|
|
?>
|