Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.11.x will end 14 Nov 2022 (12 months plus 6 months extension).
  • Bug fixes for security issues in 3.11.x will end 13 Nov 2023 (18 months plus 12 months extension).
  • PHP version: minimum PHP 7.3.0 Note: minimum PHP version has increased since Moodle 3.10. PHP 7.4.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  require_once($CFG->dirroot.'/mod/feedback/item/feedback_item_form_class.php');
  18  
  19  class feedback_textfield_form extends feedback_item_form {
  20      protected $type = "textfield";
  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          $mform->addElement('advcheckbox', 'required', get_string('required', 'feedback'), '' , null , array(0, 1));
  32  
  33          $mform->addElement('text',
  34                              'name',
  35                              get_string('item_name', 'feedback'),
  36                              array('size'=>FEEDBACK_ITEM_NAME_TEXTBOX_SIZE, 'maxlength'=>255));
  37          $mform->addElement('text',
  38                              'label',
  39                              get_string('item_label', 'feedback'),
  40                              array('size'=>FEEDBACK_ITEM_LABEL_TEXTBOX_SIZE, 'maxlength'=>255));
  41  
  42          $mform->addElement('select',
  43                              'itemsize',
  44                              get_string('textfield_size', 'feedback').'&nbsp;',
  45                              array_slice(range(0, 255), 5, 255, true));
  46  
  47          $mform->addElement('text',
  48                              'itemmaxlength',
  49                              get_string('textfield_maxlength', 'feedback'));
  50          $mform->setType('itemmaxlength', PARAM_INT);
  51          $mform->addRule('itemmaxlength', null, 'numeric', null, 'client');
  52  
  53          parent::definition();
  54          $this->set_data($item);
  55  
  56      }
  57  
  58      public function get_data() {
  59          if (!$item = parent::get_data()) {
  60              return false;
  61          }
  62  
  63          $item->presentation = $item->itemsize . '|'. $item->itemmaxlength;
  64          return $item;
  65      }
  66  }
  67