19 declare(strict_types=1);
34 protected \ILIAS\Notes\Service
$notes;
49 $this->
lng = $DIC->language();
50 $this->
ctrl = $DIC->ctrl();
51 $this->
user = $DIC->user();
52 $this->
access = $DIC->access();
56 $this->
lng->loadLanguageModule(
"poll");
59 $this->container_view_manager = $DIC
65 $this->
http = $DIC->http();
67 $this->notes = $DIC->notes();
72 return self::$block_type;
85 return "ilobjpollgui";
91 $this->poll_block = $a_block;
96 $next_class = $this->
ctrl->getNextClass();
97 $cmd = $this->
ctrl->getCmd(
"getHTML");
99 switch ($next_class) {
113 $mess = $this->poll_block->getMessage($this->
user->getId());
115 $this->tpl->setVariable(
"TXT_QUESTION", $mess);
121 if (!$this->container_view_manager->isAdminView()) {
124 if ($this->poll_block->maySeeQuestion($this->user->getId())) {
125 $this->tpl->setCurrentBlock(
"mode_info_bl");
126 if ($this->poll_block->getPoll()->getNonAnonymous()) {
127 $mode_info = $this->
lng->txt(
"poll_non_anonymous_warning");
129 $mode_info = $this->
lng->txt(
"poll_anonymous_warning");
131 $this->tpl->setVariable(
"MODE_INFO", $mode_info);
132 $this->tpl->parseCurrentBlock();
134 $is_multi_answer = ($this->poll_block->getPoll()->getMaxNumberOfAnswers() > 1);
137 if (isset($session_last_poll_vote[$this->poll_block->getPoll()->getId()])) {
138 $last_vote = $session_last_poll_vote[$this->poll_block->getPoll()->getId()];
139 unset($session_last_poll_vote[$this->poll_block->getPoll()->getId()]);
142 if ($is_multi_answer) {
144 $this->
lng->txt(
"poll_vote_error_multi"),
145 $this->poll_block->getPoll()->getMaxNumberOfAnswers()
148 $error = $this->
lng->txt(
"poll_vote_error_single");
151 $this->tpl->setCurrentBlock(
"error_bl");
152 $this->tpl->setVariable(
"FORM_ERROR", $error);
153 $this->tpl->parseCurrentBlock();
156 $this->tpl->setCurrentBlock(
"answer");
157 foreach ($a_set->getAnswers() as $item) {
159 $id = (
int) ($item[
'id'] ?? 0);
160 $answer = (string) ($item[
'answer'] ?? 0);
161 if (!$is_multi_answer) {
162 $this->tpl->setVariable(
"ANSWER_INPUT",
"radio");
163 $this->tpl->setVariable(
"ANSWER_NAME",
"aw");
165 $this->tpl->setVariable(
"ANSWER_INPUT",
"checkbox");
166 $this->tpl->setVariable(
"ANSWER_NAME",
"aw[]");
168 if (!empty($last_vote) && is_array($last_vote) && in_array(
$id, $last_vote)) {
169 $status[] =
'checked="checked"';
173 if (!$this->poll_block->mayVote($this->user->getId())) {
174 $status[] =
'disabled';
177 if (!empty($status)) {
178 $this->tpl->setVariable(
"ANSWER_STATUS", implode(
' ', $status));
181 $this->tpl->setVariable(
"VALUE_ANSWER",
$id);
183 $this->tpl->parseCurrentBlock();
186 if ($this->poll_block->mayVote($this->user->getId())) {
187 $this->
ctrl->setParameterByClass(
192 $url = $this->
ctrl->getLinkTargetByClass(
198 $url .=
"#poll" . $a_set->getID();
200 $this->tpl->setVariable(
"URL_FORM",
$url);
201 $this->tpl->setVariable(
"CMD_FORM",
"vote");
202 $this->tpl->setVariable(
"TXT_SUBMIT", $this->
lng->txt(
"poll_vote"));
205 if ($this->poll_block->getPoll()->getVotingPeriod()) {
206 $this->tpl->setVariable(
207 "TXT_VOTING_END_PERIOD",
209 $this->
lng->txt(
"poll_voting_period_info"),
218 if ($this->poll_block->maySeeResults($this->user->getId())) {
219 if (!$this->poll_block->mayNotResultsYet()) {
221 foreach ($a_set->getAnswers() as $item) {
222 $id = (
int) ($item[
'id'] ?? 0);
223 $answers[
$id] = (string) ($item[
'answer'] ?? 0);
226 $perc = $this->poll_block->getPoll()->getVotePercentages();
227 $total = (
int) ($perc[
'total'] ?? 0);
228 $perc = (array) ($perc[
'perc'] ?? []);
230 $this->tpl->setVariable(
"TOTAL_ANSWERS", sprintf($this->
lng->txt(
"poll_population"), $total));
234 if ($this->poll_block->getPoll()->getSortResultByVotes()) {
237 foreach (array_keys($answers) as $answer_id) {
238 if (!in_array($answer_id, $order)) {
239 $order[] = $answer_id;
243 $order = array_keys($answers);
249 $chart->setSize(
"400",
"200");
250 $chart->setAutoResize(
true);
252 $chart_data = $chart->getDataInstance();
254 foreach ($order as $answer_id) {
255 $chart_data->addPiePoint(
256 (
int) round((
float) ($perc[$answer_id][
"perc"] ?? 0)),
257 nl2br((
string) ($answers[$answer_id] ??
''))
264 $chart->addData($chart_data);
266 $pie_legend_id =
"poll_legend_" . $this->
getRefId();
268 $legend->setContainer($pie_legend_id);
269 $chart->setLegend($legend);
271 $this->tpl->setVariable(
"PIE_LEGEND_ID", $pie_legend_id);
272 $this->tpl->setVariable(
"PIE_CHART", $chart->getHTML());
275 $this->tpl->setCurrentBlock(
"answer_result");
276 foreach ($order as $answer_id) {
278 $pbar->setCurrent(round((
float) ($perc[$answer_id][
"perc"] ?? 0)));
279 $this->tpl->setVariable(
"PERC_ANSWER_RESULT", $pbar->render());
280 $this->tpl->setVariable(
"TXT_ANSWER_RESULT", nl2br((
string) ($answers[$answer_id] ??
'')));
281 $this->tpl->parseCurrentBlock();
288 $end = $this->poll_block->getPoll()->getVotingPeriodEnd();
294 if ($this->poll_block->getPoll()->hasUserVoted($this->
user->getId())) {
295 $info .= $this->
lng->txt(
"poll_block_message_already_voted") .
" ";
298 $this->tpl->setVariable(
"TOTAL_ANSWERS", $info .
299 sprintf($this->
lng->txt(
"poll_block_results_available_on"), $end));
301 } elseif ($this->poll_block->getPoll()->hasUserVoted($this->
user->getId())) {
302 $this->tpl->setVariable(
"TOTAL_ANSWERS", $this->
lng->txt(
"poll_block_message_already_voted"));
306 if (!$this->poll_block->maySeeQuestion($this->user->getId()) && !$this->poll_block->getPoll()->hasUserVoted($this->
user->getId())) {
307 if ($this->poll_block->getPoll()->getVotingPeriod()) {
308 $this->tpl->setVariable(
311 $this->
lng->txt(
"poll_voting_period_full_info"),
318 $this->tpl->setVariable(
"TXT_QUESTION", $this->
specialCharsAsEntities(nl2br(trim($a_set->getQuestion()))));
320 $img = $a_set->getImageFullPath();
327 $this->tpl->setVariable(
"ANCHOR_ID", $a_set->getID());
329 $desc = trim($a_set->getDescription());
336 $this->tpl->setCurrentBlock(
"anon_warning");
337 $this->tpl->setVariable(
"ANON_WARNING", $this->
lng->txt(
'no_access_item_public'));
338 $this->tpl->parseCurrentBlock();
342 if ($this->poll_block->showComments()) {
343 $this->tpl->setCurrentBlock(
"comment_link");
344 $this->tpl->setVariable(
"LANG_COMMENTS", $this->
lng->txt(
'poll_comments'));
345 $this->tpl->setVariable(
"COMMENT_JSCALL", $this->
commentJSCall());
346 $this->tpl->setVariable(
"COMMENTS_COUNT_ID", $this->
getRefId());
350 if ($comments_count > 0) {
351 $this->tpl->setVariable(
"COMMENTS_COUNT",
"(" . $comments_count .
")");
354 if (!self::$js_init) {
355 $redraw_url = $this->
ctrl->getLinkTarget(
357 "getNumberOfCommentsForRedraw",
361 $this->tpl->setVariable(
"COMMENTS_REDRAW_URL", $redraw_url);
363 $this->main_tpl->addJavaScript(
"Modules/Poll/js/ilPoll.js");
364 self::$js_init =
true;
371 $this->poll_block->setRefId($this->
getRefId());
372 $may_write = $this->
access->checkAccess(
"write",
"", $this->
getRefId());
373 $has_content = $this->poll_block->hasAnyContent($this->
user->getId(), $this->
getRefId());
375 #22078 and 22079 it always contains something. 381 $poll_obj = $this->poll_block->getPoll();
382 $this->
setTitle($poll_obj->getTitle());
383 $this->
setData(array(array($poll_obj)));
385 $this->
ctrl->setParameterByClass(
392 !$this->poll_block->getMessage($this->user->getId()) &&
393 !$this->
user->isAnonymous()
398 $this->
ctrl->getLinkTargetByClass(
402 $this->
lng->txt(
"poll_notification_unsubscribe")
406 $this->
ctrl->getLinkTargetByClass(
410 $this->
lng->txt(
"poll_notification_subscribe")
418 $this->
ctrl->getLinkTargetByClass(
422 $this->
lng->txt(
"edit_content")
425 $this->
ctrl->getLinkTargetByClass(
429 $this->
lng->txt(
"settings")
435 return parent::getHTML();
462 if ($this->
http->wrapper()->query()->has(
'poll_id')) {
463 $poll_id = $this->
http->wrapper()->query()->retrieve(
472 echo
"(" . $number .
")";
483 $context = $this->notes->data()->context($obj_id, 0,
"poll");
484 return $this->notes->domain()->getNrOfCommentsForContext(
$context);
508 return $this->tpl->get();
Interface GlobalHttpState.
static get(string $a_var)
commentJSCall()
Builds JavaScript Call to open CommentLayer via html link.
setBlock(ilPollBlock $a_block)
static string $block_type
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setBlockId(string $a_block_id="0")
setDataSection(string $a_content)
Call this from overwritten fillDataSection(), if standard row based data is not used.
const SHOW_RESULTS_AS_PIECHART
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false)
getRepositoryObjectGUIName()
specialCharsAsEntities(string $string)
ILIAS Notes Service $notes
getNumberOfComments(int $ref_id)
static useRelativeDates()
setRowTemplate(string $a_rowtemplatename, string $a_rowtemplatedir="")
Set Row Template Name.
static http()
Fetches the global http state from ILIAS.
ViewManager $container_view_manager
static _lookupObjectId(int $ref_id)
static buildAjaxHash(int $node_type, ?int $node_id, string $obj_type, int $obj_id, string $sub_type=null, int $sub_id=null, int $news_id=0)
Build ajax hash.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
BlockGUI class for polls.
__construct(Container $dic, ilPlugin $plugin)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
setTitle(string $a_title)
static hasNotification(int $type, int $user_id, int $id)
Check notification status for object and user.
static signFile(string $path_to_file)
getNumberOfCommentsForRedraw()
This class represents a block method of a block.
static getListCommentsJSCall(string $a_hash, string $a_update_code=null)
Get list comments js call.
addBlockCommand(string $a_href, string $a_text, string $a_onclick="")
static setUseRelativeDates(bool $a_status)
set use relative dates
static set(string $a_var, $a_val)
Set a value.
static getInstanceByType(int $a_type, string $a_id)
static sortArray(array $array, string $a_array_sortby_key, string $a_array_sortorder="asc", bool $a_numeric=false, bool $a_keep_keys=false)