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
17require_once($CFG->dirroot.'/mod/feedback/item/feedback_item_form_class.php');
18
19class feedback_captcha_form extends feedback_item_form {
20    protected $type = "captcha";
21
22    public function definition() {
23
24        $item = $this->_customdata['item'];
25        $common = $this->_customdata['common'];
26        $positionlist = $this->_customdata['positionlist'];
27        $position = $this->_customdata['position'];
28
29        $mform =& $this->_form;
30
31        $mform->addElement('header', 'general', get_string($this->type, 'feedback'));
32        $mform->addElement('advcheckbox', 'required', get_string('required', 'feedback'), '' , null , array(0, 1));
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                            'presentation',
44                            get_string('count_of_nums', 'feedback').'&nbsp;',
45                            array_slice(range(0, 10), 3, 10, true));
46
47        parent::definition();
48        $this->set_data($item);
49
50    }
51}
52
53