123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * Class ch_multiplechoice
- */
- class ch_multiplechoice extends survey_question
- {
- /**
- * @param array $survey_data
- * @param array $formData
- * @return FormValidator
- */
- public function createForm($survey_data, $formData)
- {
- parent::createForm($survey_data, $formData);
- $options = array(
- 'horizontal' => get_lang('Horizontal'),
- 'vertical' => get_lang('Vertical')
- );
- $this->getForm()->addRadio('horizontalvertical', get_lang('DisplayAnswersHorVert'), $options);
- $formData['horizontalvertical'] = isset($formData['horizontalvertical']) ? $formData['horizontalvertical'] : 'horizontal';
- $this->getForm()->setDefaults($formData);
- $config = array('ToolbarSet' => 'Survey', 'Width' => '100%', 'Height' => '120');
- $total = count($formData['answers']);
- if (is_array($formData['answers'])) {
- foreach ($formData['answers'] as $key => $value) {
- $this->getForm()->addHtmlEditor('answers['.$key.']', null, false, false, $config);
- if ($key < $total-1) {
- //$this->getForm()->addButton("move_down[$key]", get_lang('Down'));
- }
- if ($key > 0) {
- //$this->getForm()->addButton("move_up[$key]", get_lang('Up'));
- }
- if ($total> 2) {
- $this->getForm()->addButton("delete_answer[$key]", get_lang('Delete'), 'trash', 'danger');
- }
- }
- }
- parent :: addRemoveButtons($formData);
- }
- /**
- * @param FormValidator $form
- * @param array $questionData
- * @param array $answers
- */
- public function render(FormValidator $form, $questionData = array(), $answers = array())
- {
- $question = new ch_yesno();
- $question->render($form, $questionData, $answers);
- }
- }
|