You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
2.1 KiB
76 lines
2.1 KiB
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
/**
|
|
* Class ch_multipleresponse.
|
|
*/
|
|
class ch_multipleresponse extends survey_question
|
|
{
|
|
/**
|
|
* @param array $surveyData
|
|
* @param array $formData
|
|
*/
|
|
public function createForm($surveyData, $formData)
|
|
{
|
|
parent::createForm($surveyData, $formData);
|
|
$options = [
|
|
'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 = ['ToolbarSet' => 'Survey', 'Width' => '100%', 'Height' => '120'];
|
|
if (is_array($formData['answers'])) {
|
|
foreach ($formData['answers'] as $key => $value) {
|
|
$this->getForm()->addHtmlEditor(
|
|
'answers['.$key.']',
|
|
null,
|
|
false,
|
|
false,
|
|
$config
|
|
);
|
|
}
|
|
}
|
|
|
|
parent::addRemoveButtons($formData);
|
|
}
|
|
|
|
/**
|
|
* @param FormValidator $form
|
|
* @param array $questionData
|
|
* @param array $answers
|
|
*/
|
|
public function render(
|
|
FormValidator $form,
|
|
$questionData = [],
|
|
$answers = []
|
|
) {
|
|
$class = 'checkbox-inline';
|
|
$labelClass = 'checkbox-inline';
|
|
if ($questionData['display'] == 'vertical') {
|
|
$class = 'checkbox-vertical';
|
|
}
|
|
|
|
$name = 'question'.$questionData['question_id'];
|
|
|
|
$form->addCheckBoxGroup(
|
|
$name,
|
|
null,
|
|
$questionData['options'],
|
|
['checkbox-class' => $class, 'label-class' => $labelClass]
|
|
);
|
|
|
|
$defaults = [];
|
|
|
|
if (!empty($answers)) {
|
|
foreach ($answers as $answer) {
|
|
$defaults[$name.'['.$answer.']'] = true;
|
|
}
|
|
}
|
|
|
|
$form->setDefaults($defaults);
|
|
}
|
|
}
|
|
|