home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Freeware / Programare / groupoffice-com-2.01 / administrator / settings / menus.inc < prev    next >
Encoding:
Text File  |  2004-03-08  |  1.4 KB  |  36 lines

  1. <br />
  2. <?php echo $admin_menus_text ?>
  3. <br /><br />
  4. <table border="0">
  5. <tr>
  6.     <?php
  7.     $checked = ($GO_CONFIG->get_setting('applications') != 'false') ? '' : 'checked';
  8.     ?>
  9.     <td><input type="hidden" name="menus[]" value="applications" /><input type="checkbox" name="enabled_menus[]" value="applications" <?php echo $checked; ?> /></td>
  10.     <td><?php echo $menu_applications; ?></td>
  11. </tr>
  12. <tr>
  13.     <?php
  14.     $checked = ($GO_CONFIG->get_setting('configuration') != 'false') ? '' : 'checked';
  15.     ?>
  16.     <td><input type="hidden" name="menus[]" value="configuration" /><input type="checkbox" name="enabled_menus[]" value="configuration" <?php echo $checked; ?> /></td>
  17.     <td><?php echo $menu_configuration; ?></td>
  18. </tr>
  19. <tr>
  20.     <?php
  21.     $checked = ($GO_CONFIG->get_setting('bookmarks') != 'false') ? '' : 'checked';
  22.     ?>
  23.     <td><input type="hidden" name="menus[]" value="bookmarks" /><input type="checkbox" name="enabled_menus[]" value="bookmarks" <?php echo $checked; ?> /></td>
  24.     <td><?php echo $menu_bookmarks; ?></td>
  25. </tr>
  26. <tr>
  27.     <?php
  28.     $checked = ($GO_CONFIG->get_setting('help') != 'false') ? '' : 'checked';
  29.     ?>
  30.     <td><input type="hidden" name="menus[]" value="help" /><input type="checkbox" name="enabled_menus[]" value="help" <?php echo $checked; ?> /></td>
  31.     <td><?php echo $menu_help; ?></td>
  32. </tr>
  33. </table>
  34. <?php
  35. $button = new button($cmdSave, "javascript:document.forms[0].submit();");
  36. ?>