\n"; $imgfile = $phpgw->common->get_image_dir("admin")."/" . $appname .".gif"; if (file_exists($imgfile)) { $imgpath = $phpgw->common->get_image_path("admin")."/" . $appname .".gif"; } else { $imgfile = $phpgw->common->get_image_dir("admin")."/navbar.gif"; if (file_exists($imgfile)) { $imgpath = $phpgw->common->get_image_path("admin")."/navbar.gif"; } else { $imgpath = ""; } } // Show the header for the section section_start("Administration",$imgpath); */ echo "
\n";
$imgfile = $phpgw->common->get_image_dir($appname) . '/' . $appname . '.gif';
if (file_exists($imgfile))
{
$imgpath = $phpgw->common->get_image_path($appname) . '/' . $appname . '.gif';
}
else
{
$imgfile = $phpgw->common->get_image_dir($appname) . '/navbar.gif';
if (file_exists($imgfile))
{
$imgpath = $phpgw->common->get_image_path($appname) . '/navbar.gif';
}
else
{
$imgpath = '';
}
}
section_start(ucfirst($appname),$imgpath);
// actual items in this section
echo '' . lang('User accounts')."
\n";
echo '' . lang('User groups')."
\n";
echo "
\n";
echo '' . lang('Applications')."
\n";
echo "
\n";
echo '' . lang('Global Categories')."
\n";
echo "
\n";
echo '' . lang('Change main screen message') . "
\n";
echo "
\n";
echo '' . lang('View sessions') . "
\n";
echo '' . lang('View Access Log') . "
\n";
section_end();
}
?>