home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2004 April
/
CMCD0404.ISO
/
Software
/
Freeware
/
Programare
/
groupoffice-com-2.01
/
themes
/
lush
/
footer.php
< prev
next >
Wrap
PHP Script
|
2004-03-08
|
1KB
|
37 lines
<?php
require('../../Group-Office.php');
?>
<html>
<head>
<link href="<?php echo $GO_THEME->theme_url.'style.css'; ?>" rel="stylesheet" type="text/css" />
</head>
<body marginwidth="0" marginheight="0" leftmargin="0" topmargin="0">
<table border="0" cellpadding="0" cellspacing="0" width="100%" class="FooterBar">
<tr>
<td align="right">
<table border="0">
<tr>
<?php
$GO_MODULES->get_modules();
while ($GO_MODULES->next_record())
{
if ($GO_SECURITY->has_permission($GO_SECURITY->user_id, $GO_MODULES->f('acl_read')) && isset($GO_THEME->images[$GO_MODULES->f('id')]))
{
$lang_var = isset($lang_modules[$GO_MODULES->f('id')]) ? $lang_modules[$GO_MODULES->f('id')] : $GO_MODULES->f('id');
echo '<td align="center" valign="top" class="ModuleIcons" nowrap><a target="main" href="'.$GO_CONFIG->host.$GO_MODULES->f('path').'"><img src="'.$GO_THEME->images[$GO_MODULES->f('id')].'" border="0" width="32" height="32" /><br />'.$lang_var.'</a></td>';
}
}
?>
</tr>
</table>
</td>
<td width="100%" height="50" align="right">
<a target="main" href="<?php echo $GO_CONFIG->host; ?>about.php" title="<?php echo $menu_about; ?>">
<img src="<?php echo $GO_THEME->images['go_header']; ?>" border="0" height="40" width="200" />
</a>
</td>
</tr>
</table>
</body>
</html>