ILIAS  Release_4_4_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilPollAnswerTableGUI.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 include_once("./Services/Table/classes/class.ilTable2GUI.php");
5 
15 {
19  function __construct($a_parent_obj, $a_parent_cmd)
20  {
21  global $ilCtrl, $lng;
22 
23  $this->setId("ilobjpollaw");
24 
25  parent::__construct($a_parent_obj, $a_parent_cmd);
26 
27  $this->addColumn($lng->txt("poll_sortorder"), "pos");
28  $this->addColumn($lng->txt("poll_answer"), "answer");
29  $this->addColumn($lng->txt("poll_absolute"), "votes");
30  $this->addColumn($lng->txt("poll_percentage"), "percentage");
31 
32  $total = $this->getItems();
33 
34  $this->setTitle($this->lng->txt("poll_question").": \"".
35  $a_parent_obj->object->getQuestion()."\"");
36  $this->setDescription(sprintf($lng->txt("poll_population"), $total));
37 
38  if($total)
39  {
40  $this->addCommandButton("confirmDeleteAllVotes", $lng->txt("poll_delete_votes"));
41  }
42 
43  $this->setFormAction($ilCtrl->getFormAction($a_parent_obj, $a_parent_cmd));
44  $this->setRowTemplate("tpl.answer_row.html", "Modules/Poll");
45  $this->setDefaultOrderField("pos");
46  $this->setDefaultOrderDirection("asc");
47 
48 
49  }
50 
51  public function numericOrdering($a_field)
52  {
53  if($a_field != "answer")
54  {
55  return true;
56  }
57  return false;
58  }
59 
60  function getItems()
61  {
62  $data = $this->parent_obj->object->getAnswers();
63  $perc = $this->parent_obj->object->getVotePercentages();
64  $total = $perc["total"];
65  $perc = $perc["perc"];
66 
67  // add current percentages
68  foreach($data as $idx => $item)
69  {
70  if(!isset($perc[$item["id"]]))
71  {
72  $data[$idx]["percentage"] = 0;
73  $data[$idx]["votes"] = 0;
74  }
75  else
76  {
77  $data[$idx]["percentage"] = round($perc[$item["id"]]["perc"]);
78  $data[$idx]["votes"] = $perc[$item["id"]]["abs"];
79  }
80  }
81 
82  $this->setData($data);
83 
84  return $total;
85  }
86 
87  protected function fillRow($a_set)
88  {
89  $this->tpl->setVariable("VALUE_POS", $a_set["pos"]/10);
90  $this->tpl->setVariable("TXT_ANSWER", nl2br($a_set["answer"]));
91  $this->tpl->setVariable("VALUE_VOTES", $a_set["votes"]);
92  $this->tpl->setVariable("VALUE_PERCENTAGE", $a_set["percentage"]);
93  }
94 }
95 
96 ?>