Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.51
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
moodle.backup.39 /
grade /
edit /
outcome /
[ HOME SHELL ]
Name
Size
Permission
Action
course.php
4.86
KB
-rw-rw-r--
course_form.html
2.98
KB
-rw-rw-r--
edit.php
5.97
KB
-rw-rw-r--
edit_form.php
5.53
KB
-rw-rw-r--
export.php
4.14
KB
-rw-rw-r--
import.php
10.14
KB
-rw-rw-r--
import_outcomes_form.php
2.17
KB
-rw-rw-r--
index.php
9.25
KB
-rw-rw-r--
tabs.php
1.53
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : course_form.html
<?php $maxlength=70; ?> <form action="course.php" method="post"> <div> <table class="courseoutcomes"> <tr> <td> <label for="removeoutcomes"><?php print_string('outcomescourse', 'grades'); ?></label> <br /> <select id="removeoutcomes" size="20" name="removeoutcomes[]" multiple="multiple"> <?php if ($co_standard_notused) { echo '<optgroup label="'.get_string('outcomescoursenotused', 'grades').'">'; foreach ($co_standard_notused as $outcome) { echo '<option value="'.$outcome->id.'">'.shorten_text($outcome->get_name(), $maxlength).'</option>'; } echo '</optgroup>'; } if ($co_standard_used) { echo '<optgroup label="'.get_string('outcomescourseused', 'grades').'">'; foreach ($co_standard_used as $outcome) { echo '<option value="'.$outcome->id.'">'.shorten_text($outcome->get_name(), $maxlength).'</option>'; } echo '</optgroup>'; } if ($co_custom) { echo '<optgroup label="'.get_string('outcomescoursecustom', 'grades').'">'; foreach ($co_custom as $outcome) { echo '<option value="'.$outcome->id.'">'.shorten_text($outcome->get_name(), $maxlength).'</option>'; } echo '</optgroup>'; } ?> </select> </td> <?php if (has_capability('moodle/grade:manageoutcomes', $context)) { ?> <td> <p class="arrow_button"> <input name="add" id="add" type="submit" value="<?php echo ' '.$OUTPUT->larrow().' '.get_string('add'); ?>" title="<?php print_string('add'); ?>" /> <br /> <input name="remove" id="remove" type="submit" value="<?php echo ' '.$OUTPUT->rarrow().' '.get_string('remove'); ?>" title="<?php print_string('remove'); ?>" /> </p> </td> <?php } ?> <td> <label for="addoutcomes"><?php print_string('outcomesstandardavailable', 'grades'); ?></label> <br /> <select id="addoutcomes" size="20" name="addoutcomes[]" multiple="multiple"> <?php foreach ($standardoutcomes as $outcome) { echo '<option value="'.$outcome->id.'">'.shorten_text($outcome->get_name(), $maxlength).'</option>'; } ?> </select> </td> </tr> </table> <?php if (has_capability('moodle/grade:manageoutcomes', $context)) { ?> <p class="mdl-align"> <a href="<?php echo $CFG->wwwroot ?>/grade/edit/outcome/index.php?id=<?php echo $courseid; ?>"><?php echo get_string('editoutcomes','grades'); ?></a> </p> <?php } ?> <input name="id" type="hidden" value="<?php echo $courseid?>"/> <input type="hidden" name="sesskey" value="<?php echo sesskey() ?>" /> </div> </form>
Close