[ Index ]

PHP Cross Reference of Unnamed Project

title

Body

[close]

/question/ -> category.php (source)

   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   * This script allows a teacher to create, edit and delete question categories.
  19   *
  20   * @package    moodlecore
  21   * @subpackage questionbank
  22   * @copyright  1999 onwards Martin Dougiamas {@link http://moodle.com}
  23   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  24   */
  25  
  26  
  27  require_once("../config.php");
  28  require_once($CFG->dirroot."/question/editlib.php");
  29  require_once($CFG->dirroot."/question/category_class.php");
  30  
  31  list($thispageurl, $contexts, $cmid, $cm, $module, $pagevars) =
  32          question_edit_setup('categories', '/question/category.php');
  33  
  34  // Get values from form for actions on this page.
  35  $param = new stdClass();
  36  $param->moveup = optional_param('moveup', 0, PARAM_INT);
  37  $param->movedown = optional_param('movedown', 0, PARAM_INT);
  38  $param->moveupcontext = optional_param('moveupcontext', 0, PARAM_INT);
  39  $param->movedowncontext = optional_param('movedowncontext', 0, PARAM_INT);
  40  $param->tocontext = optional_param('tocontext', 0, PARAM_INT);
  41  $param->left = optional_param('left', 0, PARAM_INT);
  42  $param->right = optional_param('right', 0, PARAM_INT);
  43  $param->delete = optional_param('delete', 0, PARAM_INT);
  44  $param->confirm = optional_param('confirm', 0, PARAM_INT);
  45  $param->cancel = optional_param('cancel', '', PARAM_ALPHA);
  46  $param->move = optional_param('move', 0, PARAM_INT);
  47  $param->moveto = optional_param('moveto', 0, PARAM_INT);
  48  $param->edit = optional_param('edit', 0, PARAM_INT);
  49  
  50  $url = new moodle_url($thispageurl);
  51  foreach ((array)$param as $key=>$value) {
  52      if (($key !== 'cancel' && $value !== 0) || ($key === 'cancel' && $value !== '')) {
  53          $url->param($key, $value);
  54      }
  55  }
  56  $PAGE->set_url($url);
  57  
  58  $qcobject = new question_category_object($pagevars['cpage'], $thispageurl,
  59          $contexts->having_one_edit_tab_cap('categories'), $param->edit,
  60          $pagevars['cat'], $param->delete, $contexts->having_cap('moodle/question:add'));
  61  
  62  if ($param->left || $param->right || $param->moveup || $param->movedown) {
  63      require_sesskey();
  64  
  65      foreach ($qcobject->editlists as $list) {
  66          // Processing of these actions is handled in the method where appropriate and page redirects.
  67          $list->process_actions($param->left, $param->right, $param->moveup, $param->movedown);
  68      }
  69  }
  70  
  71  if ($param->moveupcontext || $param->movedowncontext) {
  72      require_sesskey();
  73  
  74      if ($param->moveupcontext) {
  75          $catid = $param->moveupcontext;
  76      } else {
  77          $catid = $param->movedowncontext;
  78      }
  79      $oldcat = $DB->get_record('question_categories', array('id' => $catid), '*', MUST_EXIST);
  80      $qcobject->update_category($catid, '0,'.$param->tocontext, $oldcat->name, $oldcat->info);
  81      // The previous line does a redirect().
  82  }
  83  
  84  if ($param->delete) {
  85      if (!$category = $DB->get_record("question_categories", array("id" => $param->delete))) {
  86          print_error('nocate', 'question', $thispageurl->out(), $param->delete);
  87      }
  88  
  89      question_remove_stale_questions_from_category($param->delete);
  90      $questionstomove = $DB->count_records("question", array("category" => $param->delete));
  91  
  92      // Second pass, if we still have questions to move, setup the form.
  93      if ($questionstomove) {
  94          $categorycontext = context::instance_by_id($category->contextid);
  95          $qcobject->moveform = new question_move_form($thispageurl,
  96              array('contexts' => array($categorycontext), 'currentcat' => $param->delete));
  97          if ($qcobject->moveform->is_cancelled()) {
  98              redirect($thispageurl);
  99          } else if ($formdata = $qcobject->moveform->get_data()) {
 100              list($tocategoryid, $tocontextid) = explode(',', $formdata->category);
 101              $qcobject->move_questions_and_delete_category($formdata->delete, $tocategoryid);
 102              $thispageurl->remove_params('cat', 'category');
 103              redirect($thispageurl);
 104          }
 105      }
 106  } else {
 107      $questionstomove = 0;
 108  }
 109  
 110  if ($qcobject->catform->is_cancelled()) {
 111      redirect($thispageurl);
 112  } else if ($catformdata = $qcobject->catform->get_data()) {
 113      $catformdata->infoformat = $catformdata->info['format'];
 114      $catformdata->info       = $catformdata->info['text'];
 115      if (!$catformdata->id) {//new category
 116          $qcobject->add_category($catformdata->parent, $catformdata->name,
 117                  $catformdata->info, false, $catformdata->infoformat);
 118      } else {
 119          $qcobject->update_category($catformdata->id, $catformdata->parent,
 120                  $catformdata->name, $catformdata->info, $catformdata->infoformat);
 121      }
 122      redirect($thispageurl);
 123  } else if ((!empty($param->delete) and (!$questionstomove) and confirm_sesskey())) {
 124      $qcobject->delete_category($param->delete);//delete the category now no questions to move
 125      $thispageurl->remove_params('cat', 'category');
 126      redirect($thispageurl);
 127  }
 128  
 129  if ($param->edit) {
 130      $PAGE->navbar->add(get_string('editingcategory', 'question'));
 131  }
 132  
 133  $PAGE->set_title(get_string('editcategories', 'question'));
 134  $PAGE->set_heading($COURSE->fullname);
 135  echo $OUTPUT->header();
 136  
 137  // Display the UI.
 138  if (!empty($param->edit)) {
 139      $qcobject->edit_single_category($param->edit);
 140  } else if ($questionstomove){
 141      $qcobject->display_move_form($questionstomove, $category);
 142  } else {
 143      // Display the user interface.
 144      $qcobject->display_user_interface();
 145  }
 146  echo $OUTPUT->footer();


Generated: Thu Aug 11 10:00:09 2016 Cross-referenced by PHPXref 0.7.1