Subversion Repositories personal-webbase

Rev

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

Rev Author Line No. Line
1 daniel-mar 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="aktion" 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>Update-Pr&uuml;funsinterval: </td>
22
                <td><img src="designs/spacer.gif" width="15" height="1" alt=""></td>
23
                <td><input type="text" size="5" name="update_checkinterval_min" id="update_checkinterval_min" class="normal" onmouseover="this.className='highlight';" onmouseout="this.className='normal';" value="<?php echo $configuration[$modul]['update_checkinterval_min']; ?>"> Minuten</td>
24
        </tr>
25
        <tr>
26
                <td>Pr&uuml;funsinterval bei kaputten Links: </td>
27
                <td><img src="designs/spacer.gif" width="15" height="1" alt=""></td>
28
                <td><input type="text" size="5" name="kaputt_checkinterval_min" id="kaputt_checkinterval_min" class="normal" onmouseover="this.className='highlight';" onmouseout="this.className='normal';" value="<?php echo $configuration[$modul]['kaputt_checkinterval_min']; ?>"> Minuten</td>
29
        </tr>
30
</table><br>
31
 
32
        <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">
33
        &nbsp;&nbsp;&nbsp;
34
        <input type="submit" value="&Auml;ndern" class="button" onmouseover="this.className='button_act';" onmouseout="this.className='button';">
35
 
36
        </form>
37
 
38
<?php
39
 
40
                        echo $footer;
41
 
42
?>