ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilRatingDataSet.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 include_once("./Services/DataSet/classes/class.ilDataSet.php");
5 
17 {
24  public function getSupportedVersions()
25  {
26  return array("4.3.0");
27  }
28 
35  public function getXmlNamespace($a_entity, $a_schema_version)
36  {
37  return "http://www.ilias.de/xml/Services/Rating/" . $a_entity;
38  }
39 
46  protected function getTypes($a_entity, $a_version)
47  {
48  if ($a_entity == "rating_category") {
49  switch ($a_version) {
50  case "4.3.0":
51  return array(
52  "Id" => "integer",
53  "ParentId" => "integer",
54  "Title" => "text",
55  "Description" => "text",
56  "Pos" => "integer");
57  }
58  }
59  }
60 
67  public function readData($a_entity, $a_version, $a_ids, $a_field = "")
68  {
69  $ilDB = $this->db;
70 
71  if (!is_array($a_ids)) {
72  $a_ids = array($a_ids);
73  }
74 
75  if ($a_entity == "rating_category") {
76  switch ($a_version) {
77  case "4.3.0":
78  $this->getDirectDataFromQuery("SELECT id, parent_id, title," .
79  " description, pos" .
80  " FROM il_rating_cat" .
81  " WHERE " . $ilDB->in("parent_id", $a_ids, false, "integer"));
82  break;
83  }
84  }
85  }
86 
90  protected function getDependencies($a_entity, $a_version, $a_rec, $a_ids)
91  {
92  return false;
93  }
94 
101  public function importRecord($a_entity, $a_types, $a_rec, $a_mapping, $a_schema_version)
102  {
103  $a_rec = $this->stripTags($a_rec);
104 
105  switch ($a_entity) {
106  case "rating_category":
107  if ($parent_id = $a_mapping->getMapping('Services/Rating', 'rating_category_parent_id', $a_rec['ParentId'])) {
108  include_once("./Services/Rating/classes/class.ilRatingCategory.php");
109  $newObj = new ilRatingCategory();
110  $newObj->setParentId($parent_id);
111  $newObj->save();
112 
113  $newObj->setTitle($a_rec["Title"]);
114  $newObj->setDescription($a_rec["Description"]);
115  $newObj->setPosition($a_rec["Pos"]);
116  $newObj->update();
117  }
118  break;
119  }
120  }
121 }
getDirectDataFromQuery($a_query, $a_convert_to_leading_upper=true, $a_set=true)
Get data from query.This is a standard procedure, all db field names are directly mapped to abstract ...
getXmlNamespace($a_entity, $a_schema_version)
Get xml namespace.
getDependencies($a_entity, $a_version, $a_rec, $a_ids)
Determine the dependent sets of data.
getSupportedVersions()
Get supported versions.
readData($a_entity, $a_version, $a_ids, $a_field="")
Read data.
importRecord($a_entity, $a_types, $a_rec, $a_mapping, $a_schema_version)
Import record.
getTypes($a_entity, $a_version)
Get field types for entity.
global $ilDB
Class ilRatingCategory.
stripTags(array $rec, array $omit_keys=[])
A dataset contains in data in a common structure that can be shared and transformed for different pur...
Rating Data set class.