[ Index ]

PHP Cross Reference of moodle-2.8

title

Body

[close]

/mod/feedback/item/multichoicerated/ -> multichoicerated_form.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  require_once($CFG->dirroot.'/mod/feedback/item/feedback_item_form_class.php');
  18  
  19  class feedback_multichoicerated_form extends feedback_item_form {
  20      protected $type = "multichoicerated";
  21  
  22      public function definition() {
  23          $item = $this->_customdata['item'];
  24          $common = $this->_customdata['common'];
  25          $positionlist = $this->_customdata['positionlist'];
  26          $position = $this->_customdata['position'];
  27  
  28          $mform =& $this->_form;
  29  
  30          $mform->addElement('header', 'general', get_string($this->type, 'feedback'));
  31  
  32          $mform->addElement('advcheckbox', 'required', get_string('required', 'feedback'), '' , null , array(0, 1));
  33  
  34          $mform->addElement('text',
  35                              'name',
  36                              get_string('item_name', 'feedback'),
  37                              array('size'=>FEEDBACK_ITEM_NAME_TEXTBOX_SIZE,
  38                                    'maxlength'=>255));
  39  
  40          $mform->addElement('text',
  41                              'label',
  42                              get_string('item_label', 'feedback'),
  43                              array('size'=>FEEDBACK_ITEM_LABEL_TEXTBOX_SIZE,
  44                                    'maxlength'=>255));
  45  
  46          $mform->addElement('select',
  47                              'horizontal',
  48                              get_string('adjustment', 'feedback').'&nbsp;',
  49                              array(0 => get_string('vertical', 'feedback'),
  50                                    1 => get_string('horizontal', 'feedback')));
  51  
  52          $mform->addElement('select',
  53                              'subtype',
  54                              get_string('multichoicetype', 'feedback').'&nbsp;',
  55                              array('r'=>get_string('radio', 'feedback'),
  56                                    'd'=>get_string('dropdown', 'feedback')));
  57  
  58          $mform->addElement('selectyesno',
  59                             'ignoreempty',
  60                             get_string('do_not_analyse_empty_submits', 'feedback'));
  61  
  62          $mform->addElement('selectyesno',
  63                             'hidenoselect',
  64                             get_string('hide_no_select_option', 'feedback'));
  65  
  66          $mform->addElement('static',
  67                             'hint',
  68                             get_string('multichoice_values', 'feedback'),
  69                             get_string('use_one_line_for_each_value', 'feedback'));
  70  
  71          $this->values = $mform->addElement('textarea',
  72                              'values',
  73                              '',
  74                              'wrap="virtual" rows="10" cols="65"');
  75  
  76          parent::definition();
  77          $this->set_data($item);
  78  
  79      }
  80  
  81      public function set_data($item) {
  82          $info = $this->_customdata['info'];
  83  
  84          $item->horizontal = $info->horizontal;
  85  
  86          $item->subtype = $info->subtype;
  87  
  88          $item->values = $info->values;
  89  
  90          return parent::set_data($item);
  91      }
  92  
  93      public function get_data() {
  94          if (!$item = parent::get_data()) {
  95              return false;
  96          }
  97  
  98          $itemobj = new feedback_item_multichoicerated();
  99  
 100          $presentation = $itemobj->prepare_presentation_values_save(trim($item->values),
 101                                                  FEEDBACK_MULTICHOICERATED_VALUE_SEP2,
 102                                                  FEEDBACK_MULTICHOICERATED_VALUE_SEP);
 103          if (!isset($item->subtype)) {
 104              $subtype = 'r';
 105          } else {
 106              $subtype = substr($item->subtype, 0, 1);
 107          }
 108          if (isset($item->horizontal) AND $item->horizontal == 1 AND $subtype != 'd') {
 109              $presentation .= FEEDBACK_MULTICHOICERATED_ADJUST_SEP.'1';
 110          }
 111          $item->presentation = $subtype.FEEDBACK_MULTICHOICERATED_TYPE_SEP.$presentation;
 112          return $item;
 113      }
 114  }


Generated: Fri Nov 28 20:29:05 2014 Cross-referenced by PHPXref 0.7.1