3 // This file is part of Moodle - http://moodle.org/
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
19 * Output rendering for the plugin.
22 * @copyright 2014 Damyon Wiese
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 defined('MOODLE_INTERNAL') || die();
29 * Implements the plugin renderer
31 * @copyright 2014 Damyon Wiese
32 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
34 class tool_task_renderer extends plugin_renderer_base {
36 * This function will render one beautiful table with all the scheduled tasks.
38 * @param \core\task\scheduled_task[] $tasks - list of all scheduled tasks.
39 * @return string HTML to output.
41 public function scheduled_tasks_table($tasks) {
44 $table = new html_table();
45 $table->head = array(get_string('name'),
46 get_string('component', 'tool_task'),
48 get_string('lastruntime', 'tool_task'),
49 get_string('nextruntime', 'tool_task'),
50 get_string('taskscheduleminute', 'tool_task'),
51 get_string('taskschedulehour', 'tool_task'),
52 get_string('taskscheduleday', 'tool_task'),
53 get_string('taskscheduledayofweek', 'tool_task'),
54 get_string('taskschedulemonth', 'tool_task'),
55 get_string('faildelay', 'tool_task'),
56 get_string('default', 'tool_task'));
57 $table->attributes['class'] = 'admintable generaltable';
59 $yes = get_string('yes');
60 $no = get_string('no');
61 $never = get_string('never');
62 $asap = get_string('asap', 'tool_task');
63 $disabledstr = get_string('taskdisabled', 'tool_task');
64 $plugindisabledstr = get_string('plugindisabled', 'tool_task');
65 foreach ($tasks as $task) {
66 $customised = $task->is_customised() ? $no : $yes;
67 if (empty($CFG->preventscheduledtaskchanges)) {
68 $configureurl = new moodle_url('/admin/tool/task/scheduledtasks.php', array('action'=>'edit', 'task' => get_class($task)));
69 $editlink = $this->action_icon($configureurl, new pix_icon('t/edit', get_string('edittaskschedule', 'tool_task', $task->get_name())));
71 $editlink = $this->render(new pix_icon('t/locked', get_string('scheduledtaskchangesdisabled', 'tool_task')));
74 $namecell = new html_table_cell($task->get_name() . "\n" . html_writer::tag('span', '\\'.get_class($task),
75 array('class' => 'task-class text-ltr')));
76 $namecell->header = true;
78 $component = $task->get_component();
80 list($type, $plugin) = core_component::normalize_component($component);
81 if ($type === 'core') {
82 $componentcell = new html_table_cell(get_string('corecomponent', 'tool_task'));
84 if ($plugininfo = core_plugin_manager::instance()->get_plugin_info($component)) {
85 $plugininfo->init_display_name();
86 $componentcell = new html_table_cell($plugininfo->displayname);
88 $componentcell = new html_table_cell($component);
92 $lastrun = $task->get_last_run_time() ? userdate($task->get_last_run_time()) : $never;
93 $nextrun = $task->get_next_run_time();
95 if ($plugininfo && $plugininfo->is_enabled() === false && !$task->get_run_if_component_disabled()) {
97 $nextrun = $plugindisabledstr;
98 } else if ($task->get_disabled()) {
100 $nextrun = $disabledstr;
101 } else if ($nextrun > time()) {
102 $nextrun = userdate($nextrun);
107 $row = new html_table_row(array(
110 new html_table_cell($editlink),
111 new html_table_cell($lastrun),
112 new html_table_cell($nextrun),
113 new html_table_cell($task->get_minute()),
114 new html_table_cell($task->get_hour()),
115 new html_table_cell($task->get_day()),
116 new html_table_cell($task->get_day_of_week()),
117 new html_table_cell($task->get_month()),
118 new html_table_cell($task->get_fail_delay()),
119 new html_table_cell($customised)));
121 // Cron-style values must always be LTR.
122 $row->cells[5]->attributes['class'] = 'text-ltr';
123 $row->cells[6]->attributes['class'] = 'text-ltr';
124 $row->cells[7]->attributes['class'] = 'text-ltr';
125 $row->cells[8]->attributes['class'] = 'text-ltr';
126 $row->cells[9]->attributes['class'] = 'text-ltr';
129 $row->attributes['class'] = 'disabled';
133 $table->data = $data;
134 return html_writer::table($table);