File: mod_delete.html

package info (click to toggle)
moodle 1.4.4.dfsg.1-3sarge1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 57,876 kB
  • ctags: 29,496
  • sloc: php: 271,617; sql: 5,084; xml: 702; perl: 638; sh: 403; java: 283; makefile: 42; pascal: 21
file content (13 lines) | stat: -rw-r--r-- 691 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
<form name="form" method="post" action="<?php echo "$CFG->wwwroot/course/mod.php" ?>">

<input type="hidden" name=mode         value="delete">
<input type="hidden" name=section      value="<?php p($form->section) ?>">
<input type="hidden" name=course       value="<?php p($form->course) ?>">
<input type="hidden" name=coursemodule value="<?php p($form->coursemodule) ?>">
<input type="hidden" name=modulename   value="<?php p($form->modulename) ?>">
<input type="hidden" name=instance     value="<?php p($form->instance) ?>">

<input type="submit" value=" <?php print_string("yes")?> "> 
<input type=button value=" <?php print_string("no")?> " onclick="javascript:history.go(-1);">

</form>