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); /*// Horizontal or vertical $this->html .= '
'; $this->html .= ' '; $this->html .= '
'; $this->html .= ' html .= 'checked="checked"'; } $this->html .= '/>'.get_lang('Horizontal').'
'; $this->html .= ' html .= 'checked="checked"'; } $this->html .= ' />'.get_lang('Vertical').''; $this->html .= '
'; $this->html .= '
';*/ // The options $config = array('ToolbarSet' => 'Survey', 'Width' => '100%', 'Height' => '120'); $this->getForm()->addHtmlEditor('answers[0]', get_lang('AnswerOptions'), true, false, $config); $this->getForm()->addHtmlEditor('answers[1]', null, true, false, $config); /*$this->html .= '
'; $this->html .= ' '; $this->html .= '
'; $this->html .= ' '; $this->html .= ' '; $this->html .= ' '; $this->html .= ' '; $this->html .= ' '; $this->html .= ' '; $this->html .= ' '; $this->html .= ' '; //$this->html .= ' '; $this->html .= ' '; $this->html .= ' '; $this->html .= ' '; $this->html .= '
'.api_return_html_area('answers[0]', stripslashes($form_content['answers'][0]), '', '', null, array('ToolbarSet' => 'Survey', 'Width' => '100%', 'Height' => '120')).'
'.api_return_html_area('answers[1]', stripslashes($form_content['answers'][1]), '', '', null, array('ToolbarSet' => 'Survey', 'Width' => '100%', 'Height' => '120')).'
'; $this->html .= '
'; $this->html .= '
';*/ } /** * @param FormValidator $form * @param array $questionData * @param array $answers */ public function render(FormValidator $form, $questionData = array(), $answers = array()) { if (is_array($questionData['options'])) { if ($questionData['display'] == 'vertical') { $class = ''; } else { $class = 'inline'; } $form->addRadio( 'question' . $questionData['question_id'], null, $questionData['options'], array('label-class' => $class) ); } } }