30 lines
382 B
PHP
30 lines
382 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"]="astat";
|
||
|
$info["version"]="1.0.0";
|
||
|
$info["url"]="http://www.astat.org";
|
||
|
return $info;
|
||
|
}
|
||
|
|
||
|
function install(){
|
||
|
return TRUE;
|
||
|
}
|
||
|
|
||
|
function uninstall(){
|
||
|
return TRUE;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
?>
|