private function addAnswer($query, $data, $relation) { $userId = OW::getUser()->getId(); $questionId = $data['questionId']; $uniqId = $data['uniqId']; $text = strip_tags(trim($query['text'])); $option = $this->service->findOptionByText($questionId, $text); $new = false; if ($option === null) { $new = true; $option = $this->service->addOption($questionId, $userId, $text); } $cmp = new QUESTIONS_CMP_Answer($option, $uniqId); $cmp->setIsMultiple(!$data['poll']); $voteCount = 0; $checked = false; $users = array(); if ($new) { $cmp->setEditMode(); $data['optionTotal']++; } else { $canEdit = $option->userId == $userId; $answerCount = $data['poll'] ? $this->service->findTotalAnswersCount($questionId) : $this->service->findMaxAnswersCount($questionId); if ($answerCount) { $voteCount = $this->service->findAnswerCountByOptionId($option->id); if ($voteCount) { $checked = $this->service->findAnswer($userId, $option->id) !== null; $users = $this->service->findAnsweredUserIdList($option->id, $data['userContext'], $checked ? 4 : 3); $cmp->setVoteCount($voteCount); $cmp->setVoted($checked); $cmp->setUsers($users); $cmp->setPercents($voteCount * 100 / $answerCount); $canEdit = $canEdit && ($voteCount == 0 || $voteCount == 1 && $checked); } } $cmp->setEditMode($data['editMode'] || $canEdit); } $data['displayedCount']++; $options = array(); $options[] = array('markup' => $cmp->render(), 'data' => array('newOption' => $new, 'checked' => $checked, 'users' => $users, 'voteCount' => $voteCount, 'id' => $option->id)); if (!empty($relation)) { $relation = $this->reload(array(), $relation['data']); } return array('options' => $options, 'data' => $data, 'relation' => $relation); }