ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilSurveySkillChangesTableGUI.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2011 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
5 
12 {
16  public function __construct($a_parent_obj, $a_parent_cmd, $a_survey, $a_appraisee)
17  {
18  global $DIC;
19 
20  $this->ctrl = $DIC->ctrl();
21  $this->lng = $DIC->language();
22  $ilCtrl = $DIC->ctrl();
23  $lng = $DIC->language();
24 
25  $this->survey = $a_survey;
26  $this->appraisee = $a_appraisee;
27 
28  $this->survey_skill = new ilSurveySkill($a_survey);
29  $this->thresholds = new ilSurveySkillThresholds($a_survey);
30 
31  parent::__construct($a_parent_obj, $a_parent_cmd);
33 
34  $this->setTitle($lng->txt(""));
35  $this->setLimit(9999);
36  $this->disable("footer");
37 
38  $this->addColumn($this->lng->txt("survey_skill"));
39  $this->addColumn($this->lng->txt("survey_sum_of_means"));
40  $this->addColumn($this->lng->txt("survey_reached_level"));
41 
42  $this->setFormAction($ilCtrl->getFormAction($a_parent_obj));
43  $this->setRowTemplate("tpl.survey_skill_change.html", "Modules/Survey");
44 
45  //$this->addMultiCommand("", $lng->txt(""));
46  //$this->addCommandButton("", $lng->txt(""));
47  }
48 
55  public function getSkillLevelsForAppraisee()
56  {
57  $sskill = new ilSurveySkill($this->survey);
58 
59  if ($this->survey->get360Mode()) {
60  $new_levels = $sskill->determineSkillLevelsForAppraisee($this->appraisee["user_id"]);
61  } else { //Svy self evaluation mode.
62  $new_levels = $sskill->determineSkillLevelsForAppraisee(ilObjUser::getUserIdByLogin($this->appraisee["login"]), true);
63  }
64 
65  $this->setData($new_levels);
66  }
67 
71  protected function fillRow($a_set)
72  {
73  $lng = $this->lng;
74  //var_dump($a_set);
75  $this->tpl->setVariable("SKILL", $a_set["skill_title"]);
76  $this->tpl->setVariable("MEAN_SUM", $a_set["mean_sum"]);
77  $this->tpl->setVariable("NEW_LEVEL", $a_set["new_level"]);
78  }
79 }
static getUserIdByLogin($a_login)
TableGUI class for survey skill changes.
__construct($a_parent_obj, $a_parent_cmd, $a_survey, $a_appraisee)
Constructor.
global $ilCtrl
Definition: ilias.php:18
Skill/Competence handling in surveys.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
Skill tresholds for 360 surveys.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
disable($a_module_name)
diesables particular modules of table
__construct(Container $dic, ilPlugin $plugin)
addColumn( $a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="", $a_tooltip_with_html=false)
Add a column to the header.
$DIC
Definition: xapitoken.php:46
setLimit($a_limit=0, $a_default_limit=0)