AutorÃa | Ultima modificación | Ver Log |
<?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/>.
/**
* Filters results to current course only.
*
* @package block_dash
* @copyright 2020 bdecent gmbh <https://bdecent.de>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
namespace block_dash\local\data_grid\filter;
use moodleform;
use MoodleQuickForm;
/**
* Filters results to current course only.
*
* @package block_dash
*/
class course_condition extends condition {
/**
* Get values from filter based on user selection. All filters must return an array of values.
*
* Override in child class to add more values.
*
* @return array
*/
public function get_values() {
if (isset($this->get_preferences()['courseids'])) {
$courseids = $this->get_preferences()['courseids'];
if (is_array($courseids)) {
return $courseids;
} else {
return [$courseids];
}
}
return [];
}
/**
* Get condition label.
*
* @return string
* @throws \coding_exception
*/
public function get_label() {
if ($label = parent::get_label()) {
return $label;
}
return get_string('courses');
}
/**
* Add form fields for this filter (and any settings related to this filter.)
*
* @param moodleform $moodleform
* @param MoodleQuickForm $mform
* @param string $fieldnameformat
*/
public function build_settings_form_fields(
moodleform $moodleform,
MoodleQuickForm $mform,
$fieldnameformat = 'filters[%s]'): void {
global $DB;
parent::build_settings_form_fields($moodleform, $mform, $fieldnameformat); // Always call parent.
$fieldname = sprintf($fieldnameformat, $this->get_name());
$courses = $DB->get_records_sql_menu('SELECT id, shortname FROM {course} WHERE format != :format', ['format' => 'site']);
$select = $mform->addElement('select', $fieldname . '[courseids]',
get_string('courses'),
$courses,
['class' => 'select2-form']
);
$mform->hideIf($fieldname . '[courseids]', $fieldname . '[enabled]');
$select->setMultiple(true);
}
}