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 >
PHP Script  |  2004-03-08  |  1KB  |  37 lines

  1. <?php
  2. require('../../Group-Office.php');
  3. ?>
  4. <html>
  5. <head>
  6. <link href="<?php echo $GO_THEME->theme_url.'style.css'; ?>" rel="stylesheet" type="text/css" />
  7. </head>
  8. <body marginwidth="0" marginheight="0" leftmargin="0" topmargin="0">
  9. <table border="0" cellpadding="0" cellspacing="0" width="100%" class="FooterBar">
  10. <tr>
  11.     <td align="right">
  12.     <table border="0">
  13.     <tr>
  14.         <?php
  15.             $GO_MODULES->get_modules();
  16.             while ($GO_MODULES->next_record())
  17.             {
  18.                 if ($GO_SECURITY->has_permission($GO_SECURITY->user_id, $GO_MODULES->f('acl_read')) && isset($GO_THEME->images[$GO_MODULES->f('id')]))
  19.                 {
  20.                     $lang_var = isset($lang_modules[$GO_MODULES->f('id')]) ? $lang_modules[$GO_MODULES->f('id')] : $GO_MODULES->f('id');
  21.                     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>';
  22.                 }
  23.             }
  24.         ?>
  25.     </tr>
  26.     </table>
  27.     </td>
  28.     <td width="100%" height="50" align="right">
  29.     <a target="main" href="<?php echo $GO_CONFIG->host; ?>about.php" title="<?php echo $menu_about; ?>">
  30.     <img src="<?php echo $GO_THEME->images['go_header']; ?>" border="0" height="40" width="200" />
  31.     </a>
  32.     </td>
  33. </tr>
  34. </table>
  35. </body>
  36. </html>
  37.