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_textarea_form extends feedback_item_form {
  20      protected $type = "textarea";
  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                              'itemwidth',
  44                              get_string('textarea_width', 'feedback').'&nbsp;',
  45                              array_slice(range(0, 80), 5, 80, true));
  46  
  47          $mform->addElement('select',
  48                              'itemheight',
  49                              get_string('textarea_height', 'feedback').'&nbsp;',
  50                              array_slice(range(0, 40), 5, 40, true));
  51  
  52          parent::definition();
  53          $this->set_data($item);
  54  
  55      }
  56  
  57      public function get_data() {
  58          if (!$item = parent::get_data()) {
  59              return false;
  60          }
  61  
  62          $item->presentation = $item->itemwidth . '|'. $item->itemheight;
  63          return $item;
  64      }
  65  }
  66