ILIAS  Release_4_4_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilSkillUsage.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
5 include_once("./Services/Skill/interfaces/interface.ilSkillUsageInfo.php");
6 
27 {
28  const TYPE_GENERAL = "gen";
29  const USER_ASSIGNED = "user";
30  const PERSONAL_SKILL = "pers";
31  const USER_MATERIAL = "mat";
32  const SELF_EVAL = "seval";
33  const PROFILE = "prof";
34  const RESOURCE = "res";
35 
36  // these classes implement the ilSkillUsageInfo interface
37  // currently this array is ok, we do not need any subscription model here
38  /*protected $classes = array("ilBasicSkill", "ilPersonalSkill",
39  "ilSkillSelfEvaluation", "ilSkillProfile", "ilSkillResources", "ilSkillUsage");*/
40  protected $classes = array("ilBasicSkill", "ilPersonalSkill", "ilSkillProfile", "ilSkillResources", "ilSkillUsage");
41 
50  static function setUsage($a_obj_id, $a_skill_id, $a_tref_id, $a_use = true)
51  {
52  global $ilDB;
53 
54  if ($a_use)
55  {
56  $ilDB->replace("skl_usage",
57  array(
58  "obj_id" => array("integer", $a_obj_id),
59  "skill_id" => array("integer", $a_skill_id),
60  "tref_id" => array("integer", $a_tref_id)
61  ),
62  array()
63  );
64  }
65  else
66  {
67  $ilDB->manipulate($q = "DELETE FROM skl_usage WHERE ".
68  " obj_id = ".$ilDB->quote($a_obj_id, "integer").
69  " AND skill_id = ".$ilDB->quote($a_skill_id, "integer").
70  " AND tref_id = ".$ilDB->quote($a_tref_id, "integer")
71  );
72 //echo $q; exit;
73  }
74  }
75 
83  static function getUsages($a_skill_id, $a_tref_id)
84  {
85  global $ilDB;
86 
87  $set = $ilDB->query("SELECT obj_id FROM skl_usage ".
88  " WHERE skill_id = ".$ilDB->quote($a_skill_id, "integer").
89  " AND tref_id = ".$ilDB->quote($a_tref_id, "integer")
90  );
91  $obj_ids = array();
92  while ($rec = $ilDB->fetchAssoc($set))
93  {
94  $obj_ids[] = $rec["obj_id"];
95  }
96 
97  return $obj_ids;
98  }
99 
106  static public function getUsageInfo($a_cskill_ids, &$a_usages)
107  {
108  global $ilDB;
109 
110  self::getUsageInfoGeneric($a_cskill_ids, $a_usages, ilSkillUsage::TYPE_GENERAL,
111  "skl_usage", "obj_id");
112  }
113 
120  static function getUsageInfoGeneric($a_cskill_ids, &$a_usages, $a_usage_type, $a_table, $a_key_field,
121  $a_skill_field = "skill_id", $a_tref_field = "tref_id")
122  {
123  global $ilDB;
124 
125  $w = "WHERE";
126  $q = "SELECT ".$a_key_field.", ".$a_skill_field.", ".$a_tref_field." FROM ".$a_table." ";
127  foreach ($a_cskill_ids as $sk)
128  {
129  $q.= $w." (".$a_skill_field." = ".$ilDB->quote($sk["skill_id"], "integer").
130  " AND ".$a_tref_field." = ".$ilDB->quote($sk["tref_id"], "integer").") ";
131  $w = "OR";
132  }
133  $q.= " GROUP BY ".$a_key_field.", ".$a_skill_field.", ".$a_tref_field;
134 
135  $set = $ilDB->query($q);
136  while ($rec = $ilDB->fetchAssoc($set))
137  {
138  $a_usages[$rec[$a_skill_field].":".$rec[$a_tref_field]][$a_usage_type][] =
139  array("key" => $rec[$a_key_field]);
140  }
141  }
142 
143 
150  function getAllUsagesInfo($a_cskill_ids)
151  {
153 
154  $usages = array();
155  foreach ($classes as $class)
156  {
157  // make static call
158  include_once("./Services/Skill/classes/class.".$class.".php");
159  //call_user_func($class.'::getUsageInfo', $a_cskill_ids, $usages);
160  $class::getUsageInfo($a_cskill_ids, $usages);
161  }
162  return $usages;
163  }
164 
172  function getAllUsagesInfoOfSubtree($a_skill_id, $a_tref_id = 0)
173  {
174  // get nodes
175  include_once("./Services/Skill/classes/class.ilVirtualSkillTree.php");
176  $vtree = new ilVirtualSkillTree();
177  $nodes = $vtree->getSubTreeForCSkillId($a_skill_id.":".$a_tref_id);
178 
179  return $this->getAllUsagesInfo($nodes);
180  }
181 
188  function getAllUsagesInfoOfSubtrees($a_cskill_ids)
189  {
190  // get nodes
191  include_once("./Services/Skill/classes/class.ilVirtualSkillTree.php");
192  $vtree = new ilVirtualSkillTree();
193  $allnodes = array();
194  foreach ($a_cskill_ids as $s)
195  {
196  $nodes = $vtree->getSubTreeForCSkillId($s["skill_id"].":".$s["tref_id"]);
197  foreach ($nodes as $n)
198  {
199  $allnodes[] = $n;
200  }
201  }
202 
203  return $this->getAllUsagesInfo($allnodes);
204  }
205 
206 
213  static function getTypeInfoString($a_type)
214  {
215  global $lng;
216 
217  return $lng->txt("skmg_usage_type_info_".$a_type);
218  }
219 
226  static function getObjTypeString($a_type)
227  {
228  global $lng;
229 
230  switch ($a_type)
231  {
232  case self::TYPE_GENERAL:
233  case self::RESOURCE:
234  return $lng->txt("skmg_usage_obj_objects");
235  break;
236 
237  case self::USER_ASSIGNED:
238  case self::PERSONAL_SKILL:
239  case self::USER_MATERIAL:
240  case self::SELF_EVAL:
241  return $lng->txt("skmg_usage_obj_users");
242  break;
243 
244  case self::PROFILE:
245  return $lng->txt("skmg_usage_obj_profiles");
246  break;
247  }
248 
249  return $lng->txt("skmg_usage_type_info_".$a_type);
250  }
251 
252 }
253 
254 ?>