Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 4.2.x will end 22 April 2024 (12 months).
  • Bug fixes for security issues in 4.2.x will end 7 October 2024 (18 months).
  • PHP version: minimum PHP 8.0.0 Note: minimum PHP version has increased since Moodle 4.1. PHP 8.1.x is supported too.
<?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/>.

/**
 * Output rendering for the plugin.
 *
 * @package     tool_task
 * @copyright   2014 Damyon Wiese
 * @license     http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
 */

defined('MOODLE_INTERNAL') || die();

use core\task\scheduled_task;


/**
 * Implements the plugin renderer
 *
 * @copyright 2014 Damyon Wiese
 * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
 */
class tool_task_renderer extends plugin_renderer_base {
> /** > /** * This function will render one beautiful table with all the scheduled tasks. > * This function will render a table with the summary of all adhoc tasks. * > * * @param \core\task\scheduled_task[] $tasks - list of all scheduled tasks. > * @param array $summary * @param string $lastchanged (optional) the last task edited. Gets highlighted in teh table. > * @return string HTML to output. * @return string HTML to output. > */ */ > public function adhoc_tasks_summary_table(array $summary): string { public function scheduled_tasks_table($tasks, $lastchanged = '') { > $adhocurl = '/admin/tool/task/adhoctasks.php'; global $CFG; > $adhocrunurl = '/admin/tool/task/run_adhoctasks.php'; > $showloglink = \core\task\logmanager::has_log_report(); > // Main tasks table. > $table = new html_table(); $table = new html_table(); > $table->caption = get_string('adhoctasks', 'tool_task'); $table->caption = get_string('scheduledtasks', 'tool_task'); > $table->head = [ $table->head = [ > get_string('component', 'tool_task') . ' / ' . get_string('classname', 'tool_task'), get_string('name'), > get_string('adhoctasksrunning', 'tool_task'), get_string('component', 'tool_task'), > get_string('adhoctasksdue', 'tool_task'), get_string('edit'), > get_string('adhoctasksfuture', 'tool_task'), get_string('logs'), > get_string('adhoctasksfailed', 'tool_task'), get_string('lastruntime', 'tool_task'), > get_string('nextruntime', 'tool_task'), get_string('nextruntime', 'tool_task'), > ]; get_string('taskscheduleminute', 'tool_task'), > get_string('taskschedulehour', 'tool_task'), > $table->attributes['class'] = 'admintable generaltable'; get_string('taskscheduleday', 'tool_task'), > $table->colclasses = []; get_string('taskscheduledayofweek', 'tool_task'), > get_string('taskschedulemonth', 'tool_task'), > // For each task entry (row) show action buttons/logs link depending on the user permissions. get_string('faildelay', 'tool_task'), > $data = []; get_string('default', 'tool_task'), > $canruntasks = \core\task\manager::is_runnable() && get_config('tool_task', 'enablerunnow'); ]; > foreach ($summary as $component => $classes) { > // Component cell. $table->attributes['class'] = 'admintable generaltable'; > $componentcell = new html_table_cell($component); $table->colclasses = []; > $componentcell->header = true; > $componentcell->id = "tasks-$component"; if (!$showloglink) { > $componentcell->colspan = 6; // Hide the log links. > $table->colclasses['3'] = 'hidden'; > $data[] = new html_table_row([$componentcell]); } > > foreach ($classes as $classname => $stats) { $data = []; > // Task class cell. $yes = get_string('yes'); > $classbits = explode('\\', $classname); $no = get_string('no'); > $classcontent = html_writer::link( $canruntasks = \core\task\manager::is_runnable() && get_config('tool_task', 'enablerunnow'); > new moodle_url($adhocurl, ['classname' => $classname]), foreach ($tasks as $task) { > end($classbits) $classname = get_class($task); > ); $defaulttask = \core\task\manager::get_default_scheduled_task($classname, false); > $classcell = new html_table_cell($classcontent); > $classcell->header = true; $customised = $task->is_customised() ? $no : $yes; > $classcell->attributes['class'] = "task-class-summary text-ltr"; if (empty($CFG->preventscheduledtaskchanges) && !$task->is_overridden()) { > $configureurl = new moodle_url('/admin/tool/task/scheduledtasks.php', > $duecontent = $stats['due']; ['action' => 'edit', 'task' => $classname]); > if ($canruntasks && ($stats['due'] > 0 || $stats['failed'] > 0)) { $editlink = $this->output->action_icon($configureurl, new pix_icon('t/edit', > $duecontent .= html_writer::div( get_string('edittaskschedule', 'tool_task', $task->get_name()))); > html_writer::link( } else { > new moodle_url( $editlink = $this->render(new pix_icon('t/locked', > $adhocrunurl, get_string('scheduledtaskchangesdisabled', 'tool_task'))); > ['classname' => $classname] } > ), > get_string('runclassname', 'tool_task') $loglink = ''; > ), if ($showloglink) { > 'task-runnow' $loglink = $this->output->action_icon( > ); \core\task\logmanager::get_url_for_task_class($classname), > } new pix_icon('e/file-text', get_string('viewlogs', 'tool_task', $task->get_name()) > )); > // Mark cell if has failed tasks. } > $failed = $stats['failed']; > if ($canruntasks && $failed > 0) { $namecellcontent = $task->get_name() . "\n" . > $failed .= html_writer::div( html_writer::span('\\' . $classname, 'task-class text-ltr'); > html_writer::link( if ($task->is_overridden()) { > new moodle_url( // Let the user know the scheduled task is defined in config. > $adhocrunurl, $namecellcontent .= "\n" . html_writer::div(get_string('configoverride', 'admin'), 'alert-info'); > ['classname' => $classname, 'failedonly' => 1] } > ), $namecell = new html_table_cell($namecellcontent); > get_string('runclassnamefailedonly', 'tool_task') $namecell->header = true; > ), $namecell->id = scheduled_task::get_html_id($classname); > 'task-runnow' > ); $runnow = ''; > } $canrunthistask = $canruntasks && $task->can_run(); > $failedcell = new html_table_cell($failed); if ($canrunthistask) { > if ($failed > 0) { $runnow = html_writer::div(html_writer::link( > $failedcell->attributes['class'] = 'table-danger'; new moodle_url('/admin/tool/task/schedule_task.php', > } ['task' => $classname]), > get_string('runnow', 'tool_task')), 'task-runnow'); > // Prepares the next run time cell contents. } > $nextrun = ''; > if ($stats['due'] > 0) { $faildelaycell = new html_table_cell($task->get_fail_delay()); > $nextrun = get_string('asap', 'tool_task'); if ($task->get_fail_delay()) { > } else if ($stats['nextruntime']) { $faildelaycell->text .= html_writer::div(html_writer::link( > $nextrun = userdate($stats['nextruntime']); new moodle_url('/admin/tool/task/clear_fail_delay.php', > } ['task' => $classname, 'sesskey' => sesskey()]), > get_string('clear')), 'task-clearfaildelay'); > $data[] = new html_table_row([ $faildelaycell->attributes['class'] = 'table-danger'; > $classcell, } > new html_table_cell($stats['running']), > new html_table_cell($duecontent), $row = new html_table_row([ > new html_table_cell($stats['count'] - $stats['running'] - $stats['due']), $namecell, > $failedcell, new html_table_cell($this->component_name($task->get_component())), > new html_table_cell($nextrun), new html_table_cell($editlink), > ]); new html_table_cell($loglink), > } new html_table_cell($this->last_run_time($task) . $runnow), > } new html_table_cell($this->next_run_time($task)), > $table->data = $data; $this->time_cell($task->get_minute(), $defaulttask->get_minute()), > return html_writer::table($table); $this->time_cell($task->get_hour(), $defaulttask->get_hour()), > } $this->time_cell($task->get_day(), $defaulttask->get_day()), > $this->time_cell($task->get_day_of_week(), $defaulttask->get_day_of_week()), > /** $this->time_cell($task->get_month(), $defaulttask->get_month()), > * This function will render a table with all the adhoc tasks for the class. $faildelaycell, > * new html_table_cell($customised)]); > * @param string $classname > * @param array $tasks - list of all adhoc tasks. $classes = []; > * @param array|null $params if (!$task->is_enabled()) { > * @return string HTML to output. $classes[] = 'disabled'; > */ } > public function adhoc_tasks_class_table(string $classname, array $tasks, ?array $params = []): string { if (get_class($task) == $lastchanged) { > $adhocurl = '/admin/tool/task/adhoctasks.php'; $classes[] = 'table-primary'; > $adhocrunurl = '/admin/tool/task/run_adhoctasks.php'; } > $showloglink = \core\task\logmanager::has_log_report(); $row->attributes['class'] = implode(' ', $classes); > $failedonly = !empty($params['failedonly']); $data[] = $row; > $canruntasks = \core\task\manager::is_runnable() && get_config('tool_task', 'enablerunnow'); } > $table->data = $data; > // Depending on the currently set parameters, set up toggle buttons. if ($lastchanged) { > $failedorall = html_writer::link( // IE does not support this, and the ancient version of Firefox we use for Behat > new moodle_url( // has the method, but then errors on 'centre'. So, just try to scroll, and if it fails, don't care. > $adhocurl, $this->page->requires->js_init_code( > array_merge($params, ['classname' => $classname, 'failedonly' => !$failedonly]) 'try{document.querySelector("tr.table-primary").scrollIntoView({block: "center"});}catch(e){}'); > ), } > get_string($failedonly ? 'showall' : 'showfailedonly', 'tool_task') return html_writer::table($table); > ); } > > // Main tasks table. /** > $table = $this->generate_adhoc_tasks_simple_table($tasks, $canruntasks); * Nicely display the name of a component, with its disabled status and internal name. > * > $table->caption = s($classname) . " " * @param string $component component name, e.g. 'core' or 'mod_forum'. > . get_string($failedonly ? 'adhoctasksfailed' : 'adhoctasks', 'tool_task'); * @return string HTML. > $table->head[3] .= " $failedorall"; // Spice up faildelay heading. */ > public function component_name(string $component): string { > if ($showloglink) { list($type) = core_component::normalize_component($component); > // Insert logs as the second col. if ($type === 'core') { > array_splice($table->head, 1, 0, [get_string('logs')]); return get_string('corecomponent', 'tool_task'); > array_walk($table->data, function ($row, $idx) use ($classname) { } > $loglink = ''; > $faildelaycell = $row->cells[3]; $plugininfo = core_plugin_manager::instance()->get_plugin_info($component); > if ($faildelaycell->attributes['class'] == 'table-danger') { if (!$plugininfo) { > // Failed task. return $component; > $loglink = $this->output->action_icon( } > \core\task\logmanager::get_url_for_task_class($classname), > new pix_icon('e/file-text', get_string('viewlogs', 'tool_task', $classname) $plugininfo->init_display_name(); > )); > } $componentname = $plugininfo->displayname; > if ($plugininfo->is_enabled() === false) { > array_splice($row->cells, 1, 0, [new html_table_cell($loglink)]); $componentname .= ' ' . html_writer::span( > }); get_string('disabled', 'tool_task'), 'badge badge-secondary'); > } } > $componentname .= "\n" . html_writer::span($plugininfo->component, 'task-class text-ltr'); > return html_writer::table($table) > . html_writer::div( return $componentname; > html_writer::link( } > new moodle_url( > $adhocrunurl, /** > array_merge($params, ['classname' => $classname]) * Standard display of a tasks last run time. > ), * > get_string('runclassname', 'tool_task') * @param scheduled_task $task > ), * @return string HTML. > 'task-runnow' */ > ) public function last_run_time(scheduled_task $task): string { > . html_writer::div( if ($task->get_last_run_time()) { > html_writer::link( return userdate($task->get_last_run_time()); > new moodle_url( } else { > $adhocurl return get_string('never'); > ), } > get_string('showsummary', 'tool_task') } > ), > 'task-show-summary' /** > ); * Standard display of a tasks next run time. > } * > * @param scheduled_task $task > /** * @return string HTML. > * This function will render a plain adhoc tasks table. */ > * public function next_run_time(scheduled_task $task): string { > * @param array $tasks - list of adhoc tasks. $nextrun = $task->get_next_run_time(); > * @return string HTML to output. > */ if (!$task->is_component_enabled() && !$task->get_run_if_component_disabled()) { > public function adhoc_tasks_simple_table(array $tasks): string { $nextrun = get_string('plugindisabled', 'tool_task'); > $table = $this->generate_adhoc_tasks_simple_table($tasks); } else if ($task->get_disabled()) { > $nextrun = get_string('taskdisabled', 'tool_task'); > return html_writer::table($table); } else if ($nextrun > time()) { > } $nextrun = userdate($nextrun); > } else { > /** $nextrun = get_string('asap', 'tool_task'); > * This function will render a plain adhoc tasks table. } > * > * @param array $tasks - list of adhoc tasks. return $nextrun; > * @param bool $wantruntasks add 'Run now' link } > * @return html_table > */ /** > private function generate_adhoc_tasks_simple_table(array $tasks, bool $wantruntasks = false): html_table { * Get a table cell to show one time, comparing it to the default. > $adhocrunurl = '/admin/tool/task/run_adhoctasks.php'; * > $now = time(); * @param string $current the current setting. > $failedstr = get_string('failed', 'tool_task'); * @param string $default the default setting from the db/tasks.php file. > * @return html_table_cell for use in the table. > // Main tasks table. */ > $table = new html_table(); protected function time_cell(string $current, string $default): html_table_cell { > $table->caption = get_string('adhoctasks', 'tool_task'); $cell = new html_table_cell($current); > $table->head = [ // Cron-style values must always be LTR. > get_string('taskid', 'tool_task'), $cell->attributes['class'] = 'text-ltr'; > get_string('nextruntime', 'tool_task'), > get_string('payload', 'tool_task'), // If the current value is default, that is all we want to do. > $failedstr if ($default === '*') { > ]; if ($current === '*') { > return $cell; > $table->attributes['class'] = 'generaltable'; } > $table->colclasses = []; } else if ($default === 'R' ) { > if (is_numeric($current)) { > // For each task entry (row) show action buttons/logs link depending on the user permissions. return $cell; > $data = []; } > foreach ($tasks as $task) { } else { > $taskid = $task->get_id(); if ($default === $current) { > $started = $task->get_timestarted(); return $cell; > } > // Task id cell. } > $taskidcellcontent = html_writer::span($taskid, 'task-id'); > $taskidcell = new html_table_cell($taskidcellcontent); // Otherwise, highlight and show the default. > $taskidcell->header = true; $cell->attributes['class'] .= ' table-warning'; > $taskidcell->id = "task-$taskid"; $cell->text .= ' ' . html_writer::span( > get_string('defaultx', 'tool_task', $default), 'task-class'); > // Mark cell if task has failed. return $cell; > $faildelay = $task->get_fail_delay(); } > $faildelaycell = new html_table_cell($faildelay ? $failedstr : ''); > if ($faildelay) { /** > $faildelaycell->attributes['class'] = 'table-danger'; * Displays a warning on the page if cron is disabled. > } * > * @return string HTML code for information about cron being disabled > // Prepares the next run time cell contents. * @throws moodle_exception > $nextrun = get_string('started', 'tool_task'); */ > if (!$started) { public function cron_disabled(): string { > $nextruntime = $task->get_next_run_time(); return $this->output->notification(get_string('crondisabled', 'tool_task'), 'warning'); > $due = $nextruntime < $now; } > $nextrun = $due ? userdate($nextruntime) : get_string('asap', 'tool_task'); > /** > if ($wantruntasks && ($faildelay || $due)) { * Renders a link back to the scheduled tasks page (used from the 'run now' screen). > $nextrun .= ' '.html_writer::div( * > html_writer::link( * @param string $taskclassname if specified, the list of tasks will scroll to show this task. > new moodle_url( * @return string HTML code > $adhocrunurl, */ > ['id' => $taskid] public function link_back($taskclassname = '') { > ), $url = new moodle_url('/admin/tool/task/scheduledtasks.php'); > get_string('runnow', 'tool_task') if ($taskclassname) { > ), $url->param('lastchanged', $taskclassname); > 'task-runnow' } > ); return $this->render_from_template('tool_task/link_back', ['url' => $url]); > } } > } } > > $data[] = new html_table_row([ > $taskidcell, > new html_table_cell($nextrun), > new html_table_cell($task->get_custom_data_as_string()), > $faildelaycell, > ]); > } > $table->data = $data; > > return $table; > } > > /** > * Displays a notification on ad hoc task run request. > * > * @return string HTML notification block for task initiated message > */ > public function adhoc_task_run(): string { > return $this->output->notification(get_string('adhoctaskrun', 'tool_task'), 'info'); > } >
< $faildelaycell->text .= html_writer::div(html_writer::link(
> $faildelaycell->text .= html_writer::div( > $this->output->single_button(
< ['task' => $classname, 'sesskey' => sesskey()]), < get_string('clear')), 'task-clearfaildelay');
> ['task' => $classname]), > get_string('clear') > ), > 'task-runnow' > );