mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
24 lines
896 B
HTML
24 lines
896 B
HTML
<?PHP
|
|
// Make sure all variables are defined
|
|
|
|
?>
|
|
<form action="admin.php" method="post" enctype="multipart/form-data">
|
|
<fieldset class="invisiblefieldset">
|
|
<input type="hidden" name="userid" value="<?php print $userid; ?>" />
|
|
<input type="hidden" name="groupid" value="<?php print $groupid ?>" />
|
|
<input type="hidden" name="action" value="<?php print $action; ?>" />
|
|
<input type="hidden" name="id" value="<?php print $cm->id ?>" />
|
|
<input type="hidden" name="wikipage" value="<?php print $wikipage?>" />
|
|
<?php
|
|
$strip_table=wiki_admin_strip_list($form->pagestostrip, $form->version, $err);
|
|
echo $OUTPUT->table($strip_table);
|
|
?>
|
|
<div class="boxaligncenter">
|
|
<?php
|
|
if(!count($strip_table->data)) {
|
|
print get_string("nothingtostrip","wiki")."<br /><br />";
|
|
}
|
|
?>
|
|
<input type="submit" name="proceed" value="<?php print get_string("strippages","wiki"); ?>" />
|
|
</div></fieldset></form>
|