30 lines
417 B
PHP
30 lines
417 B
PHP
<?php
|
|
|
|
class module_ajaxpm extends admin_module{
|
|
|
|
function admin_panels(){
|
|
return "";
|
|
}
|
|
|
|
function get_info(){
|
|
$info["name"]="AJAX PM Notice";
|
|
$info["file"]="ajaxpm";
|
|
$info["author"]="BeCast";
|
|
$info["version"]="1.0.1";
|
|
$info["url"]="http://www.becast.at";
|
|
$info["depends"]='mybb_bridge';
|
|
return $info;
|
|
}
|
|
|
|
function install(){
|
|
return TRUE;
|
|
}
|
|
|
|
function uninstall(){
|
|
return TRUE;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
?>
|