File: config.html

package info (click to toggle)
moodle-book 1.6.3-1.1
  • links: PTS
  • area: main
  • in suites: lenny, squeeze
  • size: 928 kB
  • ctags: 541
  • sloc: php: 3,079; sql: 56; xml: 33; makefile: 27; sh: 20
file content (30 lines) | stat: -rw-r--r-- 796 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
<!-- $Id$ //-->

<form method="post" action="module.php" name="form">
<input type="hidden" name="sesskey" value="<?php echo $USER->sesskey ?>" />

<table cellpadding="9" cellspacing="0">
<tr valign="top">
    <td align="right">
        <p>book_tocwidth:</p>
    </td>
    <td>
        <?php
        $choices = array('140'=>'140', '160'=>'160', '180'=>'180', '200'=>'200',
                         '220'=>'220', '240'=>'240', '260'=>'260', '280'=>'280', '300'=>'300');
        choose_from_menu ($choices, 'book_tocwidth', $CFG->book_tocwidth, '');
        ?>
    </td>
    <td>
        <?php print_string('tocwidth', 'book') ?>
    </td>
</tr>

<tr>
    <td colspan="3" align="center">
        <input type="submit" value="<?php print_string('savechanges') ?>" />
    </td>
</tr>
</table>

</form>