ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilPortfolioDataSet.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/DataSet/classes/class.ilDataSet.php");
5 
20 {
21  protected $current_portfolio;
22 
26  public function getSupportedVersions()
27  {
28  return array("4.4.0");
29  }
30 
34  function getXmlNamespace($a_entity, $a_schema_version)
35  {
36  return "http://www.ilias.de/xml/Modules/Portfolio/".$a_entity;
37  }
38 
42  protected function getTypes($a_entity, $a_version)
43  {
44  if ($a_entity == "prtt")
45  {
46  switch ($a_version)
47  {
48  case "4.4.0":
49  return array(
50  "Id" => "integer",
51  "Title" => "text",
52  "Description" => "text",
53  "Comments" => "integer",
54  "BgColor" => "text",
55  "FontColor" => "text",
56  "Img" => "text",
57  "Ppic" => "integer",
58  "Dir" => "directory"
59  );
60  }
61  }
62 
63  if ($a_entity == "portfolio_page")
64  {
65  switch ($a_version)
66  {
67  case "4.4.0":
68  return array(
69  "Id" => "integer",
70  "PortfolioId" => "integer",
71  "Title" => "integer",
72  "OrderNr" => "integer",
73  "Type" => "text"
74  );
75  }
76  }
77  }
78 
85  function readData($a_entity, $a_version, $a_ids, $a_field = "")
86  {
87  global $ilDB;
88 
89  if (!is_array($a_ids))
90  {
91  $a_ids = array($a_ids);
92  }
93 
94  if ($a_entity == "prtt")
95  {
96  switch ($a_version)
97  {
98  case "4.4.0":
99  $this->getDirectDataFromQuery("SELECT prtf.id,od.title,od.description,".
100  "prtf.comments,prtf.bg_color,prtf.font_color,prtf.img,prtf.ppic".
101  " FROM usr_portfolio prtf".
102  " JOIN object_data od ON (od.obj_id = prtf.id)".
103  " WHERE ".$ilDB->in("prtf.id", $a_ids, false, "integer").
104  " AND od.type = ".$ilDB->quote("prtt", "text"));
105  break;
106  }
107  }
108 
109  if ($a_entity == "portfolio_page")
110  {
111  switch ($a_version)
112  {
113  case "4.4.0":
114  $this->getDirectDataFromQuery("SELECT id,portfolio_id,title,order_nr,type".
115  " FROM usr_portfolio_page".
116  " WHERE ".$ilDB->in("portfolio_id", $a_ids, false, "integer"));
117  break;
118  }
119  }
120  }
121 
125  protected function getDependencies($a_entity, $a_version, $a_rec, $a_ids)
126  {
127  switch ($a_entity)
128  {
129  case "prtt":
130  return array (
131  "portfolio_page" => array("ids" => $a_rec["Id"])
132  );
133  }
134  return false;
135  }
136 
143  function getXmlRecord($a_entity, $a_version, $a_set)
144  {
145  if ($a_entity == "prtt")
146  {
147  include_once("./Modules/Portfolio/classes/class.ilObjPortfolioTemplate.php");
148  $dir = ilObjPortfolioTemplate::initStorage($a_set["Id"]);
149  $a_set["Dir"] = $dir;
150  }
151 
152  return $a_set;
153  }
154 
161  function importRecord($a_entity, $a_types, $a_rec, $a_mapping, $a_schema_version)
162  {
163  switch ($a_entity)
164  {
165  case "prtt":
166  include_once("./Modules/Portfolio/classes/class.ilObjPortfolioTemplate.php");
167 
168  if($new_id = $a_mapping->getMapping("Services/Container", "objs", $a_rec["Id"]))
169  {
170  $newObj = ilObjectFactory::getInstanceByObjId($new_id, false);
171  }
172  else
173  {
174  $newObj = new ilObjPortfolioTemplate();
175  $newObj->create();
176  }
177 
178  $newObj->setTitle($a_rec["Title"]);
179  $newObj->setDescription($a_rec["Description"]);
180  $newObj->setPublicComments($a_rec["Notes"]);
181  $newObj->setBackgroundColor($a_rec["BgColor"]);
182  $newObj->setFontColor($a_rec["FontColor"]);
183  $newObj->setProfilePicture($a_rec["Ppic"]);
184  $newObj->setImage($a_rec["Img"]);
185  $newObj->update();
186 
187  // handle image(s)
188  if($a_rec["Img"])
189  {
190  $dir = str_replace("..", "", $a_rec["Dir"]);
191  if ($dir != "" && $this->getImportDirectory() != "")
192  {
193  $source_dir = $this->getImportDirectory()."/".$dir;
194  $target_dir = ilObjPortfolioTemplate::initStorage($newObj->getId());
195  ilUtil::rCopy($source_dir, $target_dir);
196  }
197  }
198 
199  $a_mapping->addMapping("Modules/Portfolio", "prtt", $a_rec["Id"], $newObj->getId());
200  break;
201 
202  case "portfolio_page":
203  $prtt_id = (int)$a_mapping->getMapping("Modules/Portfolio", "prtt", $a_rec["PortfolioId"]);
204  if($prtt_id)
205  {
206  include_once("./Modules/Portfolio/classes/class.ilPortfolioTemplatePage.php");
207  $newObj = new ilPortfolioTemplatePage();
208  $newObj->setPortfolioId($prtt_id);
209  $newObj->setTitle($a_rec["Title"]);
210  $newObj->setType($a_rec["Type"]);
211  $newObj->setOrderNr($a_rec["OrderNr"]);
212  $newObj->create(true);
213 
214  $a_mapping->addMapping("Services/COPage", "pg", "prtt:".$a_rec["Id"], "prtt:".$newObj->getId());
215  }
216  break;
217  }
218  }
219 }
220 
221 ?>
getXmlRecord($a_entity, $a_version, $a_set)
Get xml record.
getTypes($a_entity, $a_version)
Get field types for entity.
readData($a_entity, $a_version, $a_ids, $a_field="")
Read data.
static rCopy($a_sdir, $a_tdir, $preserveTimeAttributes=false)
Copies content of a directory $a_sdir recursively to a directory $a_tdir.
static initStorage($a_id, $a_subdir=null)
Init file system storage.
Portfolio Data set class.
getImportDirectory()
Get import directory.
getXmlNamespace($a_entity, $a_schema_version)
Get xml namespace.
getDirectDataFromQuery($a_query, $a_convert_to_leading_upper=true)
Get data from query.This is a standard procedure, all db field names are directly mapped to abstract ...
Page for portfolio template.
getInstanceByObjId($a_obj_id, $stop_on_error=true)
get an instance of an Ilias object by object id
getDependencies($a_entity, $a_version, $a_rec, $a_ids)
Determine the dependent sets of data.
importRecord($a_entity, $a_types, $a_rec, $a_mapping, $a_schema_version)
Import record.
getSupportedVersions()
Get supported versions.
A dataset contains in data in a common structure that can be shared and transformed for different pur...