__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?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/>.
/**
* Display a course section.
*
* @package core_course
* @copyright 2023 Sara Arjona <sara@moodle.com>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
require_once('../config.php');
require_once('lib.php');
require_once($CFG->libdir.'/completionlib.php');
redirect_if_major_upgrade_required();
$sectionid = required_param('id', PARAM_INT);
// This parameter is used by the classic theme to force editing on.
$edit = optional_param('edit', -1, PARAM_BOOL);
if (!$section = $DB->get_record('course_sections', ['id' => $sectionid], '*')) {
$url = new moodle_url('/');
$PAGE->set_context(\core\context\system::instance());
$PAGE->set_url($url);
$PAGE->set_pagelayout('course');
$PAGE->add_body_classes(['limitedwidth', 'single-section-page']);
$PAGE->set_title(get_string('notfound', 'error'));
$PAGE->set_heading($SITE->fullname);
echo $OUTPUT->header();
$errortext = new \core\output\notification(
get_string('sectioncantbefound', 'error'),
\core\output\notification::NOTIFY_ERROR
);
echo $OUTPUT->render($errortext);
$button = new single_button($url, get_string('gobacktosite'), 'get', single_button::BUTTON_PRIMARY);
$button->class = 'continuebutton';
echo $OUTPUT->render($button);
echo $OUTPUT->footer();
die();
}
// Defined here to avoid notices on errors.
$PAGE->set_url('/course/section.php', ['id' => $sectionid]);
if ($section->course == SITEID) {
// The home page is not a real course.
redirect($CFG->wwwroot .'/?redirect=0');
}
$course = get_course($section->course);
// Fix course format if it is no longer installed.
$format = course_get_format($course);
$course->format = $format->get_format();
$format->set_sectionid($section->id);
// When the course format doesn't support sections, redirect to course page.
if (!course_format_uses_sections($course->format)) {
redirect(new moodle_url('/course/view.php', ['id' => $course->id]));
}
// Prevent caching of this page to stop confusion when changing page after making AJAX changes.
$PAGE->set_cacheable(false);
context_helper::preload_course($course->id);
$context = context_course::instance($course->id, MUST_EXIST);
require_login($course);
// Must set layout before getting section info. See MDL-47555.
$PAGE->set_pagelayout('course');
$PAGE->add_body_classes(['limitedwidth', 'single-section-page']);
// Get section details and check it exists.
$modinfo = get_fast_modinfo($course);
$sectioninfo = $modinfo->get_section_info($section->section, MUST_EXIST);
// Check user is allowed to see it.
if (!$sectioninfo->uservisible) {
// Check if coursesection has conditions affecting availability and if
// so, output availability info.
if ($sectioninfo->visible && $sectioninfo->availableinfo) {
$sectionname = get_section_name($course, $sectioninfo);
$message = get_string('notavailablecourse', '', $sectionname);
redirect(course_get_url($course), $message, null, \core\output\notification::NOTIFY_ERROR);
} else {
// Note: We actually already know they don't have this capability
// or uservisible would have been true; this is just to get the
// correct error message shown.
require_capability('moodle/course:viewhiddensections', $context);
}
}
$PAGE->set_pagetype('course-view-section-' . $course->format);
$PAGE->set_other_editing_capability('moodle/course:update');
$PAGE->set_other_editing_capability('moodle/course:manageactivities');
$PAGE->set_other_editing_capability('moodle/course:activityvisibility');
$PAGE->set_other_editing_capability('moodle/course:sectionvisibility');
$PAGE->set_other_editing_capability('moodle/course:movesections');
$renderer = $PAGE->get_renderer('format_' . $course->format);
// This is used by the Classic theme to change the editing mode based on the 'edit' parameter value.
if (!isset($USER->editing)) {
$USER->editing = 0;
}
if ($PAGE->user_allowed_editing()) {
if (($edit == 1) && confirm_sesskey()) {
$USER->editing = 1;
$url = new moodle_url($PAGE->url, ['notifyeditingon' => 1]);
redirect($url);
} else if (($edit == 0) && confirm_sesskey()) {
$USER->editing = 0;
if (!empty($USER->activitycopy) && $USER->activitycopycourse == $course->id) {
$USER->activitycopy = false;
$USER->activitycopycourse = null;
}
redirect($PAGE->url);
}
}
// This is used by the Classic theme, to display the Turn editing on/off button.
// We are currently keeping the button here from 1.x to help new teachers figure out what to do, even though the link also appears
// in the course admin block. It also means you can back out of a situation where you removed the admin block.
if ($PAGE->user_allowed_editing()) {
$buttons = $OUTPUT->edit_button($PAGE->url);
$PAGE->set_button($buttons);
}
// Make the title more specific when editing, for accessibility reasons.
$editingtitle = '';
if ($PAGE->user_is_editing()) {
$editingtitle = 'editing';
}
$sectionname = get_string('sectionname', "format_$course->format");
$sectiontitle = get_section_name($course, $section);
$PAGE->set_title(
get_string(
'coursesectiontitle' . $editingtitle,
'moodle',
['course' => $course->fullname, 'sectiontitle' => $sectiontitle, 'sectionname' => $sectionname]
)
);
// Add bulk editing control.
$bulkbutton = $renderer->bulk_editing_button($format);
if (!empty($bulkbutton)) {
$PAGE->add_header_action($bulkbutton);
}
$outputclass = $format->get_output_classname('content');
/** @var \core_courseformat\output\local\content */
$sectionoutput = new $outputclass($format);
// Add to the header the control menu for the section.
if ($format->show_editor()) {
$menu = $sectionoutput->get_page_header_action($renderer);
if ($menu) {
$PAGE->add_header_action($menu);
}
$sectionheading = $OUTPUT->container(
$OUTPUT->render($format->inplace_editable_render_section_name($sectioninfo, false)),
attributes: ['data-for' => 'section_title'],
);
$PAGE->set_heading($sectionheading, false, false);
} else {
$PAGE->set_heading($sectiontitle);
}
$PAGE->set_secondary_navigation(false);
echo $OUTPUT->header();
// Show communication room status notification.
if (core_communication\api::is_available() && has_capability('moodle/course:update', $context)) {
$communication = \core_communication\api::load_by_instance(
$context,
'core_course',
'coursecommunication',
$course->id
);
$communication->show_communication_room_status_notification();
}
// Display a warning if asynchronous backups are pending for this course.
if ($PAGE->user_is_editing()) {
require_once($CFG->dirroot . '/backup/util/helper/async_helper.class.php');
if (async_helper::is_async_pending($course->id, 'course', 'backup')) {
echo $OUTPUT->notification(get_string('pendingasyncedit', 'backup'), 'warning');
}
}
echo $renderer->container_start('course-content');
// Include course AJAX.
include_course_ajax($course, $modinfo->get_used_module_names());
echo $renderer->render($sectionoutput);
// Include course format javascript files.
$jsfiles = $format->get_required_jsfiles();
foreach ($jsfiles as $jsfile) {
$PAGE->requires->js($jsfile);
}
echo $renderer->container_end();
// Trigger section viewed event.
course_section_view($context, $sectionid);
// Load the view JS module if completion tracking is enabled for this course.
$completion = new completion_info($course);
if ($completion->is_enabled()) {
$PAGE->requires->js_call_amd('core_course/view', 'init');
}
echo $OUTPUT->footer();
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| ajax | Folder | 0777 |
|
|
| amd | Folder | 0777 |
|
|
| classes | Folder | 0777 |
|
|
| format | Folder | 0777 |
|
|
| report | Folder | 0777 |
|
|
| templates | Folder | 0777 |
|
|
| tests | Folder | 0777 |
|
|
| yui | Folder | 0777 |
|
|
| UPGRADING.md | File | 3.36 KB | 0777 |
|
| admin.php | File | 1.79 KB | 0777 |
|
| bulkcompletion.php | File | 2.66 KB | 0777 |
|
| category.ajax.php | File | 1.24 KB | 0777 |
|
| changenumsections.php | File | 4.23 KB | 0777 |
|
| completion.php | File | 5.95 KB | 0777 |
|
| completion_form.php | File | 14.35 KB | 0777 |
|
| customfield.php | File | 1.3 KB | 0777 |
|
| defaultcompletion.php | File | 3.23 KB | 0777 |
|
| delete.php | File | 4.3 KB | 0777 |
|
| dndupload.js | File | 46.42 KB | 0777 |
|
| dndupload.php | File | 1.54 KB | 0777 |
|
| dnduploadlib.php | File | 25.84 KB | 0777 |
|
| downloadcontent.php | File | 3.56 KB | 0777 |
|
| edit.php | File | 9.9 KB | 0777 |
|
| edit_form.php | File | 26.75 KB | 0777 |
|
| editbulkcompletion.php | File | 2.55 KB | 0777 |
|
| editcategory.php | File | 4.92 KB | 0777 |
|
| editsection.php | File | 6.24 KB | 0777 |
|
| editsection_form.php | File | 5.43 KB | 0777 |
|
| enrol.php | File | 1021 B | 0777 |
|
| externallib.php | File | 209.73 KB | 0777 |
|
| index.php | File | 2.8 KB | 0777 |
|
| info.php | File | 2.74 KB | 0777 |
|
| jumpto.php | File | 1.26 KB | 0777 |
|
| lib.php | File | 183.54 KB | 0777 |
|
| loginas.php | File | 3.04 KB | 0777 |
|
| management.php | File | 23.02 KB | 0777 |
|
| mod.php | File | 12.15 KB | 0777 |
|
| modduplicate.php | File | 1.89 KB | 0777 |
|
| modedit.php | File | 8.38 KB | 0777 |
|
| modlib.php | File | 39.18 KB | 0777 |
|
| modregrade.php | File | 2.25 KB | 0777 |
|
| moodleform_mod.php | File | 50.92 KB | 0777 |
|
| pending.php | File | 7.01 KB | 0777 |
|
| recent.php | File | 8.32 KB | 0777 |
|
| recent_form.php | File | 6.94 KB | 0777 |
|
| recommendations.php | File | 1.98 KB | 0777 |
|
| renderer.php | File | 86.02 KB | 0777 |
|
| report.php | File | 1.34 KB | 0777 |
|
| request.php | File | 3.55 KB | 0777 |
|
| request_form.php | File | 6.6 KB | 0777 |
|
| reset.php | File | 4.1 KB | 0777 |
|
| reset_form.php | File | 10.05 KB | 0777 |
|
| resources.php | File | 4.96 KB | 0777 |
|
| rest.php | File | 3.28 KB | 0777 |
|
| scales.php | File | 5 KB | 0777 |
|
| search.php | File | 4.05 KB | 0777 |
|
| section.php | File | 8.23 KB | 0777 |
|
| switchrole.php | File | 3.65 KB | 0777 |
|
| switchrole_form.php | File | 3.19 KB | 0777 |
|
| tags.php | File | 2.36 KB | 0777 |
|
| tags_form.php | File | 1.51 KB | 0777 |
|
| togglecompletion.php | File | 6.14 KB | 0777 |
|
| upgrade.txt | File | 19.7 KB | 0777 |
|
| user.php | File | 8.74 KB | 0777 |
|
| view.php | File | 13.24 KB | 0777 |
|