public function fillRequiredQuestions($params) { parent::fillRequiredQuestions($params); $this->setTemplate(OW::getPluginManager()->getPlugin('base')->getMobileCtrlViewDir() . 'complete_profile_fill_required_questions.html'); $form = $this->getForm('requiredQuestionsForm'); $questions = $this->questionService->getEmptyRequiredQuestionsList(OW::getUser()->getId()); BASE_MCLASS_JoinFormUtlis::setLabels($form, $questions); BASE_MCLASS_JoinFormUtlis::setInvitations($form, $questions); BASE_MCLASS_JoinFormUtlis::setColumnCount($form); $this->assign('presentationToClass', BASE_MCLASS_JoinFormUtlis::presentationToCssClass()); BASE_MCLASS_JoinFormUtlis::addOnloadJs($form->getName()); }
protected function presentationToCssClass() { return BASE_MCLASS_JoinFormUtlis::presentationToCssClass(); }