Search moodle.org's
Developer Documentation

See Release Notes
Long Term Support Release

  • Bug fixes for general core bugs in 3.9.x will end* 10 May 2021 (12 months).
  • Bug fixes for security issues in 3.9.x will end* 8 May 2023 (36 months).
  • PHP version: minimum PHP 7.2.0 Note: minimum PHP version has increased since Moodle 3.8. PHP 7.3.x and 7.4.x are supported too.

Differences Between: [Versions 39 and 400] [Versions 39 and 401] [Versions 39 and 402] [Versions 39 and 403]

   1  <?php
   2  
   3  // This file is part of Moodle - http://moodle.org/
   4  //
   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.
   9  //
  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.
  14  //
  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/>.
  17  
  18  /**
  19   * Change the current phase of the workshop
  20   *
  21   * @package    mod_workshop
  22   * @copyright  2009 David Mudrak <david.mudrak@gmail.com>
  23   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  24   */
  25  
  26  require(__DIR__.'/../../config.php');
  27  require_once (__DIR__.'/locallib.php');
  28  
  29  $cmid       = required_param('cmid', PARAM_INT);            // course module
  30  $phase      = required_param('phase', PARAM_INT);           // the code of the new phase
  31  $confirm    = optional_param('confirm', false, PARAM_BOOL); // confirmation
  32  
  33  $cm         = get_coursemodule_from_id('workshop', $cmid, 0, false, MUST_EXIST);
  34  $course     = $DB->get_record('course', array('id' => $cm->course), '*', MUST_EXIST);
  35  $workshop   = $DB->get_record('workshop', array('id' => $cm->instance), '*', MUST_EXIST);
  36  $workshop   = new workshop($workshop, $cm, $course);
  37  
  38  $PAGE->set_url($workshop->switchphase_url($phase), array('cmid' => $cmid, 'phase' => $phase));
  39  
  40  require_login($course, false, $cm);
  41  require_capability('mod/workshop:switchphase', $PAGE->context);
  42  
  43  if ($confirm) {
  44      if (!confirm_sesskey()) {
  45          throw new moodle_exception('confirmsesskeybad');
  46      }
  47      if (!$workshop->switch_phase($phase)) {
  48          print_error('errorswitchingphase', 'workshop', $workshop->view_url());
  49      }
  50      redirect($workshop->view_url());
  51  }
  52  
  53  $PAGE->set_title($workshop->name);
  54  $PAGE->set_heading($course->fullname);
  55  $PAGE->navbar->add(get_string('switchingphase', 'workshop'));
  56  
  57  //
  58  // Output starts here
  59  //
  60  echo $OUTPUT->header();
  61  echo $OUTPUT->heading(format_string($workshop->name));
  62  echo $OUTPUT->confirm(get_string('switchphase' . $phase . 'info', 'workshop'),
  63                          new moodle_url($PAGE->url, array('confirm' => 1)), $workshop->view_url());
  64  echo $OUTPUT->footer();