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.
61 lines
1.9 KiB
61 lines
1.9 KiB
<?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 = [
|
|
'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'];
|
|
$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 = [], $answers = [])
|
|
{
|
|
$question = new ch_yesno();
|
|
$question->render($form, $questionData, $answers);
|
|
}
|
|
}
|
|
|