<?php
/**************************************************************************
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
@Authors: Ryan Thompson(hide@address.com)
***************************************************************************/
class admin
{
function msg($message, $service = 'ad')
{
GLOBAL $O, $lang;
return $lang->get_msg($message, $service);
}
function nav_buttons()
{
$navigation .= "<input type=\"submit\" name=\"admin_menu\" value=\"". $this->msg('admin_menu') ."\"
class=\"button1\" onClick=\"window.location='index.php'\">";
return $navigation;
}
}