30 lines
416 B
PHP
30 lines
416 B
PHP
<?php
|
|
|
|
class module_chatusers extends admin_module{
|
|
|
|
function admin_panels(){
|
|
return "";
|
|
}
|
|
|
|
function get_info(){
|
|
$info["name"]="Chatusers AJAX";
|
|
$info["file"]="chatusers";
|
|
$info["author"]="BeCast";
|
|
$info["version"]="1.0.0";
|
|
$info["url"]="http://www.becast.at";
|
|
$info["depends"]='chat';
|
|
return $info;
|
|
}
|
|
|
|
function install(){
|
|
return TRUE;
|
|
}
|
|
|
|
function uninstall(){
|
|
return TRUE;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
?>
|