Subversion Repositories personal-webbase

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

  1. <?php
  2.  
  3. if (!defined('WBLEGAL')) die('Kann nicht ohne Personal WebBase ausgef&uuml;hrt werden.');
  4.  
  5. echo str_replace('<body', '<body onload="self.focus();document.getElementById(\'admin_mail\').focus();"', $header);
  6.  
  7. if (!isset($vonmodul)) $vonmodul = $modul;
  8. if (!isset($vonseite)) $vonseite = 'main';
  9.  
  10. echo '<h1>'.htmlentities($module_information->caption).'</h1>';
  11.  
  12. echo '<form action="'.$_SERVER['PHP_SELF'].'" method="POST" name="mainform" id="mainform">
  13. <input type="hidden" name="seite" value="operate">
  14. <input type="hidden" name="action" value="change_configuration">
  15. <input type="hidden" name="modul" value="'.$modul.'">
  16. <input type="hidden" name="vonseite" value="'.$vonseite.'">
  17. <input type="hidden" name="vonmodul" value="'.$vonmodul.'">'; ?>
  18.  
  19. <table cellpadding="0" cellspacing="0" border="0">
  20.         <tr>
  21.                 <td>Admin-Mailadresse:</td>
  22.                 <td><img src="designs/spacer.gif" width="15" height="1" alt=""></td>
  23.                 <td><input type="text" size="30" name="admin_mail" id="admin_mail" class="normal" onmouseover="this.className='highlight';" onmouseout="this.className='normal';" value="<?php echo $configuration[$modul]['admin_mail']; ?>"></td>
  24.         </tr>
  25. </table><br>
  26.  
  27.         <input type="button" onclick="document.location.href='<?PHP echo $_SERVER['PHP_SELF']; ?>?modul=<?php echo $vonmodul; ?>&amp;seite=<?php echo $vonseite; ?>';" class="button" onmouseover="this.className='button_act';" onmouseout="this.className='button';" value="Zur&uuml;ck">
  28.         &nbsp;&nbsp;&nbsp;
  29.         <input type="submit" value="&Auml;ndern" class="button" onmouseover="this.className='button_act';" onmouseout="this.className='button';">
  30.  
  31.         </form>
  32.  
  33. <?php
  34.  
  35.                         echo $footer;
  36.  
  37. ?>