File: settings.html

package info (click to toggle)
moodle 1.6.3-2%2Betch3
  • links: PTS
  • area: main
  • in suites: etch
  • size: 37,172 kB
  • ctags: 51,688
  • sloc: php: 231,916; sql: 5,631; xml: 2,688; sh: 1,185; perl: 638; makefile: 48; pascal: 36
file content (54 lines) | stat: -rw-r--r-- 2,512 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<form name="message_settings" action="index.php" method="post">
<input type="hidden" name="tab" value="settings" />


<table cellpadding="5" align="center" class="message_form">

    <tr valign="top">
        <td align="right"><input type="checkbox" name="showmessagewindow" alt="<?php print_string('showmessagewindow', 'message') ?>" <?php echo $cbshowmessagewindow ?> /></td>
        <td colspan="2"><?php print_string('showmessagewindow', 'message') ?></td>
    </tr>
    <tr valign="top">
        <td align="right"><input type="checkbox" name="blocknoncontacts" alt="<?php print_string('blocknoncontacts', 'message') ?>" <?php echo $cbblocknoncontacts ?>  /></td>
        <td colspan="2"><?php print_string('blocknoncontacts', 'message') ?></td>
    </tr>
    <tr valign="top">
        <td align="right"><input type="checkbox" name="beepnewmessage" alt="<?php print_string('beepnewmessage', 'message') ?>" <?php echo $cbbeepnewmessage ?>  /></td>
        <td colspan="2"><?php print_string('beepnewmessage', 'message') ?></td>
    </tr>
    <tr valign="top">
        <td align="right"><input type="checkbox" name="usehtmleditor" alt="<?php print_string('htmleditor') ?>" <?php echo $cbusehtmleditor ?>  /></td>
        <td colspan="2"><?php print_string('htmleditor') ?></td>
    </tr>

    
    <tr valign="top">
        <td><input type="checkbox" name="emailmessages" alt="<?php print_string('emailmessages', 'message') ?>" <?php echo $cbemailmessages ?>  /></td>
        <td colspan="2"><?php print_string('emailmessages', 'message') ?></td>
    </tr>
    <tr valign="top">
        <td>&nbsp;</td>
        <td align="right"><?php print_string('formorethan', 'message') ?>:</td>
        <td><input type="text" name="emailtimenosee" size="2" value="<?php echo $txemailtimenosee ?>" alt="<?php print_string('timenosee', 'message') ?>" /> <?php print_string('mins') ?></td>
    </tr>

    <tr valign="top">
        <td>&nbsp;</td>
        <td align="right"><?php print_string('email') ?>:</td>
        <td><input type="text" name="emailaddress" size="20" value="<?php echo $txemailaddress ?>" alt="<?php print_string('email') ?>" /></td>
    </tr>
    <tr valign="top">
        <td>&nbsp;</td>
        <td align="right"><?php print_string('format') ?>:</td>
        <td><?php echo $format_select ?>
        </td>
    </tr>

    <tr valign="top">
        <td colspan="3" align="center"><br /><input type="submit" value="<?php print_string('savemysettings', 'message') ?>" /></td>
    </tr>


</table>

</form>