%PDF- %PDF-
Direktori : /home/vacivi36/ava/question/classes/local/bank/ |
Current File : /home/vacivi36/ava/question/classes/local/bank/column_base.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/>. /** * Base class for representing a column. * * @package core_question * @copyright 1999 onwards Martin Dougiamas and others {@link http://moodle.com} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ namespace core_question\local\bank; /** * Base class for representing a column. * * @copyright 2009 Tim Hunt * @author 2021 Safat Shahin <safatshahin@catalyst-au.net> * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ abstract class column_base { /** * @var view $qbank the question bank view we are helping to render. */ protected $qbank; /** @var bool determine whether the column is td or th. */ protected $isheading = false; /** * Constructor. * @param view $qbank the question bank view we are helping to render. */ public function __construct(view $qbank) { $this->qbank = $qbank; $this->init(); } /** * A chance for subclasses to initialise themselves, for example to load lang strings, * without having to override the constructor. */ protected function init(): void { } /** * Set the column as heading */ public function set_as_heading(): void { $this->isheading = true; } /** * Check if the column is an extra row of not. */ public function is_extra_row(): bool { return false; } /** * Check if the row has an extra preference to view/hide. */ public function has_preference(): bool { return false; } /** * Get if the preference key of the row. */ public function get_preference_key(): string { return ''; } /** * Get if the preference of the row. */ public function get_preference(): bool { return false; } /** * Output the column header cell. */ public function display_header(): void { global $PAGE; $renderer = $PAGE->get_renderer('core_question', 'bank'); $data = []; $data['sortable'] = true; $data['extraclasses'] = $this->get_classes(); $sortable = $this->is_sortable(); $name = get_class($this); $title = $this->get_title(); $tip = $this->get_title_tip(); $links = []; if (is_array($sortable)) { if ($title) { $data['title'] = $title; } foreach ($sortable as $subsort => $details) { $links[] = $this->make_sort_link($name . '-' . $subsort, $details['title'], isset($details['tip']) ? $details['tip'] : '', !empty($details['reverse'])); } $data['sortlinks'] = implode(' / ', $links); } else if ($sortable) { $data['sortlinks'] = $this->make_sort_link($name, $title, $tip); } else { $data['sortable'] = false; $data['tiptitle'] = $title; if ($tip) { $data['sorttip'] = true; $data['tip'] = $tip; } } $help = $this->help_icon(); if ($help) { $data['help'] = $help->export_for_template($renderer); } echo $renderer->render_column_header($data); } /** * Title for this column. Not used if is_sortable returns an array. */ abstract public function get_title(); /** * Use this when get_title() returns * something very short, and you want a longer version as a tool tip. * * @return string a fuller version of the name. */ public function get_title_tip() { return ''; } /** * If you return a help icon here, it is shown in the column header after the title. * * @return \help_icon|null help icon to show, if required. */ public function help_icon(): ?\help_icon { return null; } /** * Get a link that changes the sort order, and indicates the current sort state. * @param string $sort the column to sort on. * @param string $title the link text. * @param string $tip the link tool-tip text. If empty, defaults to title. * @param bool $defaultreverse whether the default sort order for this column is descending, rather than ascending. * @return string */ protected function make_sort_link($sort, $title, $tip, $defaultreverse = false): string { global $PAGE; $sortdata = []; $currentsort = $this->qbank->get_primary_sort_order($sort); $newsortreverse = $defaultreverse; if ($currentsort) { $newsortreverse = $currentsort > 0; } if (!$tip) { $tip = $title; } if ($newsortreverse) { $tip = get_string('sortbyxreverse', '', $tip); } else { $tip = get_string('sortbyx', '', $tip); } $link = $title; if ($currentsort) { $link .= $this->get_sort_icon($currentsort < 0); } $sortdata['sorturl'] = $this->qbank->new_sort_url($sort, $newsortreverse); $sortdata['sortcontent'] = $link; $sortdata['sorttip'] = $tip; $renderer = $PAGE->get_renderer('core_question', 'bank'); return $renderer->render_column_sort($sortdata); } /** * Get an icon representing the corrent sort state. * @param bool $reverse sort is descending, not ascending. * @return string HTML image tag. */ protected function get_sort_icon($reverse): string { global $OUTPUT; if ($reverse) { return $OUTPUT->pix_icon('t/sort_desc', get_string('desc'), '', ['class' => 'iconsort']); } else { return $OUTPUT->pix_icon('t/sort_asc', get_string('asc'), '', ['class' => 'iconsort']); } } /** * Output this column. * @param object $question the row from the $question table, augmented with extra information. * @param string $rowclasses CSS class names that should be applied to this row of output. */ public function display($question, $rowclasses): void { $this->display_start($question, $rowclasses); $this->display_content($question, $rowclasses); $this->display_end($question, $rowclasses); } /** * Output the opening column tag. If it is set as heading, it will use <th> tag instead of <td> * * @param \stdClass $question * @param string $rowclasses */ protected function display_start($question, $rowclasses): void { $tag = 'td'; $attr = ['class' => $this->get_classes()]; if ($this->isheading) { $tag = 'th'; $attr['scope'] = 'row'; } echo \html_writer::start_tag($tag, $attr); } /** * The CSS classes to apply to every cell in this column. * * @return string */ protected function get_classes(): string { $classes = $this->get_extra_classes(); $classes[] = $this->get_name(); return implode(' ', $classes); } /** * Get the internal name for this column. Used as a CSS class name, * and to store information about the current sort. Must match PARAM_ALPHA. * * @return string column name. */ abstract public function get_name(); /** * Get the name of this column. This must be unique. * When using the inherited class to make many columns from one parent, * ensure each instance returns a unique value. * * @return string The unique name; */ public function get_column_name() { return (new \ReflectionClass($this))->getShortName(); } /** * Any extra class names you would like applied to every cell in this column. * * @return array */ public function get_extra_classes(): array { return []; } /** * Output the contents of this column. * @param object $question the row from the $question table, augmented with extra information. * @param string $rowclasses CSS class names that should be applied to this row of output. */ abstract protected function display_content($question, $rowclasses); /** * Output the closing column tag * * @param object $question * @param string $rowclasses */ protected function display_end($question, $rowclasses): void { $tag = 'td'; if ($this->isheading) { $tag = 'th'; } echo \html_writer::end_tag($tag); } /** * Return an array 'table_alias' => 'JOIN clause' to bring in any data that * this column required. * * The return values for all the columns will be checked. It is OK if two * columns join in the same table with the same alias and identical JOIN clauses. * If to columns try to use the same alias with different joins, you get an error. * The only table included by default is the question table, which is aliased to 'q'. * * It is importnat that your join simply adds additional data (or NULLs) to the * existing rows of the query. It must not cause additional rows. * * @return array 'table_alias' => 'JOIN clause' */ public function get_extra_joins(): array { return []; } /** * Use table alias 'q' for the question table, or one of the * ones from get_extra_joins. Every field requested must specify a table prefix. * * @return array fields required. */ public function get_required_fields(): array { return []; } /** * If this column needs extra data (e.g. tags) then load that here. * * The extra data should be added to the question object in the array. * Probably a good idea to check that another column has not already * loaded the data you want. * * @param \stdClass[] $questions the questions that will be displayed. */ public function load_additional_data(array $questions) { } /** * Load the tags for each question. * * Helper that can be used from {@see load_additional_data()}; * * @param array $questions */ public function load_question_tags(array $questions): void { $firstquestion = reset($questions); if (isset($firstquestion->tags)) { // Looks like tags are already loaded, so don't do it again. return; } // Load the tags. $tagdata = \core_tag_tag::get_items_tags('core_question', 'question', array_keys($questions)); // Add them to the question objects. foreach ($tagdata as $questionid => $tags) { $questions[$questionid]->tags = $tags; } } /** * Can this column be sorted on? You can return either: * + false for no (the default), * + a field name, if sorting this column corresponds to sorting on that datbase field. * + an array of subnames to sort on as follows * return [ * 'firstname' => ['field' => 'uc.firstname', 'title' => get_string('firstname')], * 'lastname' => ['field' => 'uc.lastname', 'title' => get_string('lastname')], * ]; * As well as field, and field, you can also add 'revers' => 1 if you want the default sort * order to be DESC. * @return mixed as above. */ public function is_sortable() { return false; } /** * Helper method for building sort clauses. * @param bool $reverse whether the normal direction should be reversed. * @return string 'ASC' or 'DESC' */ protected function sortorder($reverse): string { if ($reverse) { return ' DESC'; } else { return ' ASC'; } } /** * Sorts the expressions. * * @param bool $reverse Whether to sort in the reverse of the default sort order. * @param string $subsort if is_sortable returns an array of subnames, then this will be * one of those. Otherwise will be empty. * @return string some SQL to go in the order by clause. */ public function sort_expression($reverse, $subsort): string { $sortable = $this->is_sortable(); if (is_array($sortable)) { if (array_key_exists($subsort, $sortable)) { return $sortable[$subsort]['field'] . $this->sortorder($reverse); } else { throw new \coding_exception('Unexpected $subsort type: ' . $subsort); } } else if ($sortable) { return $sortable . $this->sortorder($reverse); } else { throw new \coding_exception('sort_expression called on a non-sortable column.'); } } }