19 declare(strict_types=1);
63 public function __construct(
int $a_id = 0,
bool $a_reference =
true)
67 $this->db = $DIC->database();
72 $this->notes = $DIC->notes();
73 $this->poll_image_factory =
new PollImageFactory();
85 $this->access_type = $a_value;
95 $this->access_begin = $a_value;
105 $this->access_end = $a_value;
115 $this->access_visibility = $a_value;
125 $this->question = $a_value;
135 $this->view_results = $a_value;
145 $this->period = $a_value;
155 $this->period_begin = $a_value;
165 $this->period_end = $a_value;
175 $this->max_number_answers = $a_value;
185 $this->result_sort_by_votes = $a_value;
195 $this->mode_non_anonymous = $a_value;
205 $this->show_comments = $a_value;
215 $this->show_results_as = $a_value;
227 $set =
$ilDB->query(
"SELECT * FROM il_poll" .
228 " WHERE id = " .
$ilDB->quote($this->getId(),
"integer"));
229 $row =
$ilDB->fetchAssoc($set);
230 $this->
setQuestion((
string) ($row[
"question"] ??
''));
231 $this->
setViewResults((
int) ($row[
"view_results"] ?? self::VIEW_RESULTS_AFTER_VOTE));
238 $this->
setShowResultsAs((
int) ($row[
"show_results_as"] ?? self::SHOW_RESULTS_AS_BARCHART));
248 $this->
setAccessBegin((
int) ($activation[
"timing_start"] ?? time()));
249 $this->
setAccessEnd((
int) ($activation[
"timing_end"] ?? time()));
270 protected function doCreate(
bool $clone_mode =
false): void
274 if ($this->
getId()) {
276 $fields[
"id"] = array(
"integer", $this->
getId());
277 $fields[
"migrated"] = array(
"integer",
"1");
279 $ilDB->insert(
"il_poll", $fields);
287 $block->setType(
"poll");
288 $block->setContextObjId($this->
getId());
289 $block->setContextObjType(
"poll");
298 if ($this->
getId()) {
304 array(
"id" => array(
"integer", $this->
getId()))
316 $activation->update($this->ref_id);
325 if ($this->
getId()) {
326 $this->poll_image_factory->handler()->deleteImage(
327 $this->data_factory->objId($this->getId()),
336 $ilDB->manipulate(
"DELETE FROM il_poll" .
337 " WHERE id = " .
$ilDB->quote($this->id,
"integer"));
348 $this->poll_image_factory->handler()->cloneImage(
349 $this->data_factory->objId($this->id),
350 $this->data_factory->objId($new_obj->
getId()),
357 if ($cp_options->isRootNode($this->getRefId())) {
367 $new_obj->setViewResults($view_results);
378 foreach ($answers as $item) {
379 $new_obj->saveAnswer($item[
"answer"]);
384 public function uploadImage(
string $file_path,
string $file_name): void
386 if (!$this->
getId() or $file_path ===
"") {
389 $this->poll_image_factory->handler()->uploadImage(
390 $this->data_factory->objId($this->getId()),
414 $sql =
"SELECT * FROM il_poll_answer" .
415 " WHERE poll_id = " .
$ilDB->quote($this->
getId(),
"integer") .
417 $set =
$ilDB->query($sql);
418 while ($row =
$ilDB->fetchAssoc($set)) {
428 $sql =
"SELECT * FROM il_poll_answer" .
429 " WHERE id = " .
$ilDB->quote($a_id,
"integer");
430 $set =
$ilDB->query($sql);
431 return (array)
$ilDB->fetchAssoc($set);
438 if (!trim($a_text)) {
442 $id =
$ilDB->nextId(
"il_poll_answer");
446 $sql =
"SELECT max(pos) pos" .
447 " FROM il_poll_answer" .
448 " WHERE poll_id = " .
$ilDB->quote($this->
getId(),
"integer");
449 $set =
$ilDB->query($sql);
450 $a_pos =
$ilDB->fetchAssoc($set);
451 $a_pos = (
int) ($a_pos[
"pos"] ?? 0) + 10;
455 "id" => array(
"integer",
$id),
456 "poll_id" => array(
"integer", $this->
getId()),
457 "answer" => array(
"text", trim($a_text)),
458 "pos" => array(
"integer", $a_pos)
460 $ilDB->insert(
"il_poll_answer", $fields);
471 array(
"answer" => array(
"text", $a_text)),
472 array(
"id" => array(
"integer", $a_id))
481 foreach ($answers as $item) {
482 $id = (
int) ($item[
'id'] ?? 0);
483 $pos[
$id] = (
int) ($item[
"pos"] ?? 10);
496 foreach (array_keys($a_pos) as
$id) {
501 array(
"pos" => array(
"integer", $pos)),
502 array(
"id" => array(
"integer", $id))
512 $ilDB->manipulate(
"DELETE FROM il_poll_vote" .
513 " WHERE answer_id = " .
$ilDB->quote($this->getId(),
"integer"));
515 $ilDB->manipulate(
"DELETE FROM il_poll_answer" .
516 " WHERE id = " .
$ilDB->quote($a_id,
"integer"));
524 if ($this->
getId()) {
527 $ilDB->manipulate(
"DELETE FROM il_poll_answer" .
528 " WHERE poll_id = " .
$ilDB->quote($this->getId(),
"integer"));
536 if ($this->
getId()) {
537 $ilDB->manipulate(
"DELETE FROM il_poll_vote" .
538 " WHERE poll_id = " .
$ilDB->quote($this->getId(),
"integer"));
549 foreach ($a_answers as $answer) {
553 foreach ($existing as $idx => $item) {
554 if (trim($answer) === (
string) ($item[
"answer"] ??
'')) {
556 unset($existing[$idx]);
558 $id = (
int) ($item[
"id"] ?? 0);
568 if (isset(
$id) && is_int(
$id)) {
575 if (count($existing)) {
576 foreach ($existing as $item) {
577 if (isset($item[
"id"])) {
596 public function saveVote(
int $a_user_id, array $a_answers): void
602 foreach ($a_answers as $answer_id) {
603 $fields = array(
"user_id" => array(
"integer", $a_user_id),
604 "poll_id" => array(
"integer", $this->
getId()),
605 "answer_id" => array(
"integer", $answer_id));
606 $this->db->insert(
"il_poll_vote", $fields);
612 $sql =
"SELECT user_id" .
613 " FROM il_poll_vote" .
614 " WHERE poll_id = " . $this->db->quote($this->
getId(),
"integer") .
615 " AND user_id = " . $this->db->quote($a_user_id,
"integer");
616 $this->db->setLimit(1, 0);
617 $set = $this->db->query($sql);
618 return (
bool) $this->db->numRows($set);
623 $sql =
"SELECT COUNT(DISTINCT(user_id)) cnt" .
624 " FROM il_poll_vote" .
625 " WHERE poll_id = " . $this->db->quote($this->
getId(),
"integer");
626 $set = $this->db->query($sql);
627 $row = $this->db->fetchAssoc($set);
628 return (
int) $row[
"cnt"];
636 $sql =
"SELECT answer_id, count(*) cnt" .
637 " FROM il_poll_vote" .
638 " WHERE poll_id = " . $this->db->quote($this->
getId(),
"integer") .
639 " GROUP BY answer_id";
640 $set = $this->db->query($sql);
641 while ($row = $this->db->fetchAssoc($set)) {
642 $cnt += (
int) $row[
"cnt"];
643 $res[(
int) $row[
"answer_id"]] = array(
"abs" => (
int) $row[
"cnt"],
"perc" => 0);
646 foreach (
$res as
$id => $item) {
647 $abs = (
int) ($item[
'abs'] ?? 0);
652 $res[
$id][
"perc"] = $abs / $cnt * 100;
665 $sql =
"SELECT answer_id, user_id, firstname, lastname, login" .
666 " FROM il_poll_vote" .
667 " JOIN usr_data ON (usr_data.usr_id = il_poll_vote.user_id)" .
668 " WHERE poll_id = " .
$ilDB->quote($this->
getId(),
"integer");
669 $set =
$ilDB->query($sql);
670 while ($row =
$ilDB->fetchAssoc($set)) {
static deleteAllEntries(int $ref_id)
Delete all db entries for ref id.
setAccessBegin(int $a_value)
PollImageFactory $poll_image_factory
const int VIEW_RESULTS_ALWAYS
hasUserVoted(int $a_user_id)
setSortResultByVotes(bool $a_value)
bool $result_sort_by_votes
const int VIEW_RESULTS_AFTER_PERIOD
setAccessType(int $a_value)
const int SHOW_RESULTS_AS_BARCHART
const int SHOW_RESULTS_AS_STACKED_CHART
const TIMINGS_DEACTIVATED
uploadImage(string $file_path, string $file_name)
setAccessEnd(int $a_value)
setQuestion(string $a_value)
updateAnswer(int $a_id, string $a_text)
setShowComments(bool $a_value)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setVotingPeriod(bool $a_value)
setMaxNumberOfAnswers(int $a_value)
setShowResultsAs(int $a_value)
setNonAnonymous(bool $a_value)
setViewResults(int $a_value)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setVotingPeriodBegin(int $a_value)
updateAnswerPositions(array $a_pos)
__construct(int $a_id=0, bool $a_reference=true)
setOfflineStatus(bool $status)
saveAnswers(array $a_answers)
setAccessVisibility(bool $a_value)
static getItem(int $ref_id)
doCreate(bool $clone_mode=false)
const int VIEW_RESULTS_AFTER_VOTE
doCloneObject(ilObject2 $new_obj, int $a_target_id, ?int $a_copy_id=0)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(Container $dic, ilPlugin $plugin)
saveAnswer(string $a_text, ?int $a_pos=null)
static _getInstance(int $a_copy_id)
DataFactory $data_factory
Class ilObjectActivation.
const int VIEW_RESULTS_NEVER
saveVote(int $a_user_id, array $a_answers)
setVotingPeriodEnd(int $a_value)