File: group-edit.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 (61 lines) | stat: -rw-r--r-- 2,183 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
55
56
57
58
59
60
61
<form method="post" enctype="multipart/form-data" action="group.php">
<table cellpadding="9" cellspacing="0" align="center">
<tr valign="top">
    <td align="right"><?php print_string("name") ?>:</td>
    <td><input type="text" name="name" size="30" value="<?php p($group->name) ?>" />
    <?php if (isset($err["name"])) formerr($err["name"]); ?>
    </td>
</tr>
<tr valign="top">
    <td align="right"><?php print_string("description") ?>:<br />
        <?php helpbutton("text", get_string("helptext")) ?>
    </td>
    <td><?php 
        print_textarea($usehtmleditor, 8, 35, 660, 200, "description", $group->description);
        if (isset($err["description"])) formerr($err["description"]); 
    ?>
    </td>
</tr>

<tr valign="top">
    <td align="right"><?php print_string('enrolmentkey') ?>:</td>
    <td><input type="text" name="password" size="25" value="<?php echo $group->password ?>" alt="<?php print_string('enrolmentkey') ?>" /></td>
</tr>

<tr valign="top">
    <td align="right"><?php print_string("hidepicture") ?>:</td>
    <td><?php 
        $options = NULL;
        $options[0] = get_string("no");
        $options[1] = get_string("yes");
        choose_from_menu ($options, "hidepicture", $group->hidepicture, "");
    ?>
    </td>
</tr>

<?php 
    $maxbytes = get_max_upload_file_size($CFG->maxbytes, $course->maxbytes);
    if (!empty($CFG->gdversion) and $maxbytes) {  
?>
<tr valign="top">
    <td align="right"><?php print_string("newpicture") ?>:</td>
    <td>
    <?php
       require_once($CFG->dirroot.'/lib/uploadlib.php');
       upload_print_form_fragment(1,array('imagefile'),null,false,null,0,0,false);
       helpbutton("picture", get_string("helppicture"));
       print_string("maxsize", "", display_size($maxbytes)); 
       if (isset($err["imagefile"])) formerr($err["imagefile"]);
    ?>
    </td>
</tr>
<?php }  ?>
<tr>
    <td></td>
    <td><input type="submit" value="<?php print_string("savechanges") ?>" /></td>
</table>

<input type="hidden" name="group" value="<?php p($group->id) ?>" /> 
<input type="hidden" name="id" value="<?php p($course->id) ?>" /> 
<input type="hidden" name="sesskey" value="<?php p(sesskey()) ?>" /> 
</form>