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.
   1  <?php
   2  // This file is part of Moodle - http://moodle.org/
   3  //
   4  // Moodle is free software: you can redistribute it and/or modify
   5  // it under the terms of the GNU General Public License as published by
   6  // the Free Software Foundation, either version 3 of the License, or
   7  // (at your option) any later version.
   8  //
   9  // Moodle is distributed in the hope that it will be useful,
  10  // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12  // GNU General Public License for more details.
  13  //
  14  // You should have received a copy of the GNU General Public License
  15  // along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
  16  
  17  /**
  18   * Ad hoc task list.
  19   *
  20   * @package    tool_task
  21   * @copyright  Catalyst IT
  22   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  23   */
  24  
  25  require_once(__DIR__ . '/../../../config.php');
  26  require_once($CFG->libdir.'/adminlib.php');
  27  
  28  admin_externalpage_setup('adhoctasks');
  29  
  30  $failedonly = optional_param('failedonly', false, PARAM_BOOL);
  31  $classname = optional_param('classname', null, PARAM_RAW);
  32  
  33  $renderer = $PAGE->get_renderer('tool_task');
  34  
  35  if ($classname) {
  36      $pageurl = new moodle_url('/admin/tool/task/adhoctasks.php');
  37      $PAGE->navbar->add(get_string('adhoctasks', 'tool_task'), $pageurl);
  38      $PAGE->navbar->add(s($classname), $PAGE->url);
  39  
  40      $tasks = core\task\manager::get_adhoc_tasks($classname, $failedonly);
  41  
  42      echo $OUTPUT->header();
  43  
  44      if (!get_config('core', 'cron_enabled')) {
  45          echo $renderer->cron_disabled();
  46      }
  47  
  48      echo $renderer->adhoc_tasks_class_table($classname, $tasks, ['failedonly' => $failedonly]);
  49  } else {
  50      $summary = core\task\manager::get_adhoc_tasks_summary();
  51  
  52      echo $OUTPUT->header();
  53  
  54      if (!get_config('core', 'cron_enabled')) {
  55          echo $renderer->cron_disabled();
  56      }
  57  
  58      echo $renderer->adhoc_tasks_summary_table($summary);
  59  }
  60  echo $OUTPUT->footer();