9e25f21164
The methods core_courseformat\base::set_section_number() and core_courseformat\base:: get_section_number() have been deprecated and replaced by core_courseformat\base::set_sectionnum() and core_courseformat\base::get_sectionnum(). The new methods use the null value when all the sections must be displayed (instead of 0). That way, section 0, can be displayed on a single page too.
410 lines
15 KiB
PHP
410 lines
15 KiB
PHP
<?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/>.
|
|
|
|
/**
|
|
* Contains the default activity list from a section.
|
|
*
|
|
* @package core_courseformat
|
|
* @copyright 2020 Ferran Recio <ferran@moodle.com>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
namespace core_courseformat\output\local\content;
|
|
|
|
use cm_info;
|
|
use context_course;
|
|
use core\output\named_templatable;
|
|
use core_availability\info_module;
|
|
use core_courseformat\base as course_format;
|
|
use core_courseformat\output\local\courseformat_named_templatable;
|
|
use renderable;
|
|
use renderer_base;
|
|
use section_info;
|
|
use stdClass;
|
|
|
|
/**
|
|
* Base class to render a course module inside a course format.
|
|
*
|
|
* @package core_courseformat
|
|
* @copyright 2020 Ferran Recio <ferran@moodle.com>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
class cm implements named_templatable, renderable {
|
|
use courseformat_named_templatable;
|
|
|
|
/** @var course_format the course format */
|
|
protected $format;
|
|
|
|
/** @var section_info the section object */
|
|
private $section;
|
|
|
|
/** @var cm_info the course module instance */
|
|
protected $mod;
|
|
|
|
/** @var array optional display options */
|
|
protected $displayoptions;
|
|
|
|
/** @var string the activity name output class name */
|
|
protected $cmnameclass;
|
|
|
|
/** @var string the activity control menu class name */
|
|
protected $controlmenuclass;
|
|
|
|
/** @var string the activity availability class name */
|
|
protected $availabilityclass;
|
|
|
|
/** @var string the activity completion class name */
|
|
protected $completionclass;
|
|
|
|
/** @var string the activity visibility class name */
|
|
protected $visibilityclass;
|
|
|
|
/** @var string the activity groupmode badge class name */
|
|
protected $groupmodeclass;
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param course_format $format the course format
|
|
* @param section_info $section the section info
|
|
* @param cm_info $mod the course module ionfo
|
|
* @param array $displayoptions optional extra display options
|
|
*/
|
|
public function __construct(course_format $format, section_info $section, cm_info $mod, array $displayoptions = []) {
|
|
$this->format = $format;
|
|
$this->section = $section;
|
|
$this->mod = $mod;
|
|
|
|
// Add extra display options.
|
|
$this->displayoptions = $displayoptions;
|
|
$this->load_classes();
|
|
|
|
// Get the necessary classes.
|
|
$this->cmnameclass = $format->get_output_classname('content\\cm\\cmname');
|
|
$this->controlmenuclass = $format->get_output_classname('content\\cm\\controlmenu');
|
|
$this->availabilityclass = $format->get_output_classname('content\\cm\\availability');
|
|
$this->completionclass = $format->get_output_classname('content\\cm\\completion');
|
|
$this->visibilityclass = $format->get_output_classname('content\\cm\\visibility');
|
|
$this->groupmodeclass = $format->get_output_classname('content\\cm\\groupmode');
|
|
}
|
|
|
|
/**
|
|
* Export this data so it can be used as the context for a mustache template.
|
|
*
|
|
* @param renderer_base $output typically, the renderer that's calling this function
|
|
* @return stdClass data context for a mustache template
|
|
*/
|
|
public function export_for_template(renderer_base $output): stdClass {
|
|
global $PAGE;
|
|
|
|
$mod = $this->mod;
|
|
$displayoptions = $this->displayoptions;
|
|
|
|
$data = (object)[
|
|
'grouping' => $mod->get_grouping_label($displayoptions['textclasses']),
|
|
'modname' => get_string('pluginname', 'mod_' . $mod->modname),
|
|
'url' => $mod->url,
|
|
'activityname' => $mod->get_formatted_name(),
|
|
'textclasses' => $displayoptions['textclasses'],
|
|
'classlist' => [],
|
|
'cmid' => $mod->id,
|
|
'editing' => $PAGE->user_is_editing(),
|
|
];
|
|
|
|
// Add partial data segments.
|
|
$haspartials = [];
|
|
$haspartials['cmname'] = $this->add_cm_name_data($data, $output);
|
|
$haspartials['availability'] = $this->add_availability_data($data, $output);
|
|
$haspartials['alternative'] = $this->add_alternative_content_data($data, $output);
|
|
$haspartials['completion'] = $this->add_completion_data($data, $output);
|
|
$haspartials['dates'] = $this->add_dates_data($data, $output);
|
|
$haspartials['editor'] = $this->add_editor_data($data, $output);
|
|
$haspartials['groupmode'] = $this->add_groupmode_data($data, $output);
|
|
$haspartials['visibility'] = $this->add_visibility_data($data, $output);
|
|
$this->add_format_data($data, $haspartials, $output);
|
|
|
|
// Calculated fields.
|
|
if (!empty($data->url)) {
|
|
$data->hasurl = true;
|
|
}
|
|
return $data;
|
|
}
|
|
|
|
/**
|
|
* Add course module name attributes to the data structure.
|
|
*
|
|
* @param stdClass $data the current cm data reference
|
|
* @param renderer_base $output typically, the renderer that's calling this function
|
|
* @return bool if the cm has name data
|
|
*/
|
|
protected function add_cm_name_data(stdClass &$data, renderer_base $output): bool {
|
|
// Mod inplace name editable.
|
|
$cmname = new $this->cmnameclass(
|
|
$this->format,
|
|
$this->section,
|
|
$this->mod,
|
|
null,
|
|
$this->displayoptions
|
|
);
|
|
$data->cmname = $cmname->export_for_template($output);
|
|
$data->hasname = $cmname->has_name();
|
|
return $data->hasname;
|
|
}
|
|
|
|
/**
|
|
* Add the module availability to the data structure.
|
|
*
|
|
* @param stdClass $data the current cm data reference
|
|
* @param renderer_base $output typically, the renderer that's calling this function
|
|
* @return bool if the cm has mod availability
|
|
*/
|
|
protected function add_availability_data(stdClass &$data, renderer_base $output): bool {
|
|
if (!$this->mod->visible) {
|
|
$data->modavailability = null;
|
|
return false;
|
|
}
|
|
// Mod availability output class.
|
|
$availability = new $this->availabilityclass(
|
|
$this->format,
|
|
$this->section,
|
|
$this->mod,
|
|
$this->displayoptions
|
|
);
|
|
$modavailability = $availability->export_for_template($output);
|
|
$data->modavailability = $modavailability;
|
|
return $availability->has_availability($output);
|
|
}
|
|
|
|
/**
|
|
* Add the alternative content to the data structure.
|
|
*
|
|
* @param stdClass $data the current cm data reference
|
|
* @param renderer_base $output typically, the renderer that's calling this function
|
|
* @return bool if the cm has alternative content
|
|
*/
|
|
protected function add_alternative_content_data(stdClass &$data, renderer_base $output): bool {
|
|
$altcontent = $this->mod->get_formatted_content(
|
|
['overflowdiv' => true, 'noclean' => true]
|
|
);
|
|
$data->altcontent = (empty($altcontent)) ? false : $altcontent;
|
|
$data->afterlink = $this->mod->afterlink;
|
|
|
|
$activitybadgedata = $this->mod->get_activitybadge($output);
|
|
if (!empty($activitybadgedata)) {
|
|
$data->activitybadge = $activitybadgedata;
|
|
}
|
|
|
|
return !empty($data->altcontent);
|
|
}
|
|
|
|
/**
|
|
* Add activity dates information to the data structure.
|
|
*
|
|
* @param stdClass $data the current cm data reference
|
|
* @param renderer_base $output typically, the renderer that's calling this function
|
|
* @return bool the module has completion information
|
|
*/
|
|
protected function add_dates_data(stdClass &$data, renderer_base $output): bool {
|
|
global $USER;
|
|
$course = $this->mod->get_course();
|
|
if (!$course->showactivitydates) {
|
|
return false;
|
|
}
|
|
$activitydates = \core\activity_dates::get_dates_for_module($this->mod, $USER->id);
|
|
$templatedata = new \core_course\output\activity_dates($activitydates);
|
|
$data->dates = $templatedata->export_for_template($output);
|
|
|
|
return $data->dates->hasdates;
|
|
}
|
|
|
|
/**
|
|
* Add activity completion information to the data structure.
|
|
*
|
|
* @param stdClass $data the current cm data reference
|
|
* @param renderer_base $output typically, the renderer that's calling this function
|
|
* @return bool the module has completion information
|
|
*/
|
|
protected function add_completion_data(stdClass &$data, renderer_base $output): bool {
|
|
$completion = new $this->completionclass($this->format, $this->section, $this->mod);
|
|
$templatedata = $completion->export_for_template($output);
|
|
if ($templatedata) {
|
|
$data->completion = $templatedata;
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Add activity information to the data structure.
|
|
*
|
|
* @param stdClass $data the current cm data reference
|
|
* @param bool[] $haspartials the result of loading partial data elements
|
|
* @param renderer_base $output typically, the renderer that's calling this function
|
|
* @return bool if the cm has format data
|
|
*/
|
|
protected function add_format_data(stdClass &$data, array $haspartials, renderer_base $output): bool {
|
|
$result = false;
|
|
// Legacy indentation.
|
|
if (!empty($this->mod->indent) && $this->format->uses_indentation()) {
|
|
$data->indent = $this->mod->indent;
|
|
if ($this->mod->indent > 15) {
|
|
$data->hugeindent = true;
|
|
$result = true;
|
|
}
|
|
}
|
|
// Stealth and hidden from student.
|
|
if (!$this->mod->visible) {
|
|
// This module is hidden but current user has capability to see it.
|
|
$data->modhiddenfromstudents = true;
|
|
$result = true;
|
|
} else if ($this->mod->is_stealth()) {
|
|
// This module is available but is normally not displayed on the course page
|
|
// (this user can see it because they can manage it).
|
|
$data->modstealth = true;
|
|
$result = true;
|
|
}
|
|
// Special inline activity format.
|
|
if (
|
|
$this->mod->has_custom_cmlist_item() &&
|
|
!$haspartials['availability'] &&
|
|
!$haspartials['completion'] &&
|
|
!$haspartials['dates'] &&
|
|
!$haspartials['groupmode'] &&
|
|
!isset($data->modhiddenfromstudents) &&
|
|
!isset($data->modstealth) &&
|
|
!$this->format->show_editor()
|
|
) {
|
|
$data->modinline = true;
|
|
$result = true;
|
|
}
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* Add course editor attributes to the data structure.
|
|
*
|
|
* @param stdClass $data the current cm data reference
|
|
* @param renderer_base $output typically, the renderer that's calling this function
|
|
* @return bool if the cm has editor data
|
|
*/
|
|
protected function add_editor_data(stdClass &$data, renderer_base $output): bool {
|
|
$course = $this->format->get_course();
|
|
$coursecontext = context_course::instance($course->id);
|
|
$editcaps = [];
|
|
if (has_capability('moodle/course:activityvisibility', $coursecontext)) {
|
|
$editcaps = ['moodle/course:activityvisibility'];
|
|
}
|
|
if (!$this->format->show_editor($editcaps)) {
|
|
return false;
|
|
}
|
|
$returnsection = $this->format->get_sectionnum();
|
|
// Edit actions.
|
|
$controlmenu = new $this->controlmenuclass(
|
|
$this->format,
|
|
$this->section,
|
|
$this->mod,
|
|
$this->displayoptions
|
|
);
|
|
$data->controlmenu = $controlmenu->export_for_template($output);
|
|
if (!$this->format->supports_components()) {
|
|
// Add the legacy YUI move link.
|
|
$data->moveicon = course_get_cm_move($this->mod, $returnsection);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Add group mode information to the data structure.
|
|
*
|
|
* @param stdClass $data the current cm data reference
|
|
* @param renderer_base $output typically, the renderer that's calling this function
|
|
* @return bool the module has group mode information
|
|
*/
|
|
protected function add_groupmode_data(stdClass &$data, renderer_base $output): bool {
|
|
$groupmode = new $this->groupmodeclass($this->format, $this->section, $this->mod);
|
|
$data->groupmodeinfo = $groupmode->export_for_template($output);
|
|
return !empty($data->groupmodeinfo);
|
|
}
|
|
|
|
/**
|
|
* Add visibility information to the data structure.
|
|
*
|
|
* @param stdClass $data the current cm data reference
|
|
* @param renderer_base $output typically, the renderer that's calling this function
|
|
* @return bool if the cm has visibility data
|
|
*/
|
|
protected function add_visibility_data(stdClass &$data, renderer_base $output): bool {
|
|
$visibility = new $this->visibilityclass($this->format, $this->section, $this->mod);
|
|
$templatedata = $visibility->export_for_template($output);
|
|
if ($templatedata) {
|
|
$data->visibility = $templatedata;
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Returns the CSS classes for the activity name/content
|
|
*
|
|
*/
|
|
protected function load_classes() {
|
|
$mod = $this->mod;
|
|
|
|
$linkclasses = '';
|
|
$textclasses = '';
|
|
if ($mod->uservisible) {
|
|
$info = new info_module($mod);
|
|
$conditionalhidden = !$info->is_available_for_all();
|
|
$accessiblebutdim = (!$mod->visible || $conditionalhidden) &&
|
|
has_capability('moodle/course:viewhiddenactivities', $mod->context);
|
|
if ($accessiblebutdim && $conditionalhidden) {
|
|
$linkclasses .= ' conditionalhidden';
|
|
$textclasses .= ' conditionalhidden';
|
|
}
|
|
}
|
|
$this->displayoptions['linkclasses'] = $linkclasses;
|
|
$this->displayoptions['textclasses'] = $textclasses;
|
|
$this->displayoptions['onclick'] = htmlspecialchars_decode($mod->onclick, ENT_QUOTES);;
|
|
}
|
|
|
|
/**
|
|
* Get the activity link classes.
|
|
*
|
|
* @return string the activity link classes.
|
|
*/
|
|
public function get_link_classes(): string {
|
|
return $this->displayoptions['linkclasses'] ?? '';
|
|
}
|
|
|
|
/**
|
|
* Get the activity text/description classes.
|
|
*
|
|
* @return string the activity text classes.
|
|
*/
|
|
public function get_text_classes(): string {
|
|
return $this->displayoptions['textclasses'] ?? '';
|
|
}
|
|
|
|
/**
|
|
* Get the activity onclick code.
|
|
*
|
|
* @return string the activity onclick.
|
|
*/
|
|
public function get_onclick_code(): string {
|
|
return $this->displayoptions['onclick'];
|
|
}
|
|
}
|