MDL-11278 Implementation is complete, but grade_categories records in DB are not...
[moodle-pu.git] / mod / survey / mod_form.php
blob2c0f4696fe1f35835a16a46f2d50a29cfd389017
1 <?php
2 require_once ($CFG->dirroot.'/course/moodleform_mod.php');
4 class mod_survey_mod_form extends moodleform_mod {
6 function definition() {
8 global $CFG;
9 $mform =& $this->_form;
11 $strrequired = get_string('required');
13 //-------------------------------------------------------------------------------
14 $mform->addElement('header', 'general', get_string('general', 'form'));
16 $mform->addElement('text', 'name', get_string('name'), array('size'=>'64'));
17 $mform->setType('name', PARAM_TEXT);
18 $mform->addRule('name', null, 'required', null, 'client');
20 if (!$options = get_records_menu("survey", "template", 0, "name", "id, name")) {
21 error('No survey templates found!');
24 foreach ($options as $id => $name) {
25 $options[$id] = get_string($name, "survey");
27 $options = array(''=>get_string('choose').'...') + $options;
28 $mform->addElement('select', 'template', get_string("surveytype", "survey"), $options);
29 $mform->addRule('template', $strrequired, 'required', null, 'client');
30 $mform->setHelpButton('template', array('surveys', get_string('helpsurveys', 'survey')));
33 $mform->addElement('textarea', 'intro', get_string('customintro', 'survey'), 'wrap="virtual" rows="20" cols="75"');
34 $mform->setType('intro', PARAM_RAW);
36 $features = new stdClass;
37 $features->groups = true;
38 $features->groupings = true;
39 $features->groupmembersonly = true;
40 $this->standard_coursemodule_elements($features);
42 //-------------------------------------------------------------------------------
43 // buttons
44 $this->add_action_buttons();