ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
class.ilMDGeneral.php
Go to the documentation of this file.
1 <?php
2 /*
3  +-----------------------------------------------------------------------------+
4  | ILIAS open source |
5  +-----------------------------------------------------------------------------+
6  | Copyright (c) 1998-2001 ILIAS open source, University of Cologne |
7  | |
8  | This program is free software; you can redistribute it and/or |
9  | modify it under the terms of the GNU General Public License |
10  | as published by the Free Software Foundation; either version 2 |
11  | of the License, or (at your option) any later version. |
12  | |
13  | This program is distributed in the hope that it will be useful, |
14  | but WITHOUT ANY WARRANTY; without even the implied warranty of |
15  | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16  | GNU General Public License for more details. |
17  | |
18  | You should have received a copy of the GNU General Public License |
19  | along with this program; if not, write to the Free Software |
20  | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
21  +-----------------------------------------------------------------------------+
22 */
23 
24 
32 include_once 'class.ilMDBase.php';
33 
34 class ilMDGeneral extends ilMDBase
35 {
36  public function getPossibleSubelements()
37  {
38  $subs['Identifier'] = 'meta_identifier';
39  $subs['Language'] = 'meta_language';
40  $subs['Description'] = 'meta_description';
41  $subs['Keyword'] = 'meta_keyword';
42 
43  return $subs;
44  }
45 
46 
47  // Subelements (Identifier, Language, Description, Keyword)
48  public function &getIdentifierIds()
49  {
50  include_once 'Services/Migration/DBUpdate_426/classes/class.ilMDIdentifier.php';
51 
52  return ilMDIdentifier::_getIds($this->getRBACId(), $this->getObjId(), $this->getMetaId(), 'meta_general');
53  }
54  public function &getIdentifier($a_identifier_id)
55  {
56  include_once 'Services/Migration/DBUpdate_426/classes/class.ilMDIdentifier.php';
57 
58  if (!$a_identifier_id) {
59  return false;
60  }
61  $ide = new ilMDIdentifier();
62  $ide->setMetaId($a_identifier_id);
63 
64  return $ide;
65  }
66  public function &addIdentifier()
67  {
68  include_once 'Services/Migration/DBUpdate_426/classes/class.ilMDIdentifier.php';
69 
70  $ide = new ilMDIdentifier($this->getRBACId(), $this->getObjId(), $this->getObjType());
71  $ide->setParentId($this->getMetaId());
72  $ide->setParentType('meta_general');
73 
74  return $ide;
75  }
76  public function &getLanguageIds()
77  {
78  include_once 'Services/Migration/DBUpdate_426/classes/class.ilMDLanguage.php';
79 
80  return ilMDLanguage::_getIds($this->getRBACId(), $this->getObjId(), $this->getMetaId(), 'meta_general');
81  }
82  public function &getLanguage($a_language_id)
83  {
84  include_once 'Services/Migration/DBUpdate_426/classes/class.ilMDLanguage.php';
85 
86  if (!$a_language_id) {
87  return false;
88  }
89  $lan = new ilMDLanguage();
90  $lan->setMetaId($a_language_id);
91 
92  return $lan;
93  }
94  public function &addLanguage()
95  {
96  include_once 'Services/Migration/DBUpdate_426/classes/class.ilMDLanguage.php';
97 
98  $lan = new ilMDLanguage($this->getRBACId(), $this->getObjId(), $this->getObjType());
99  $lan->setParentId($this->getMetaId());
100  $lan->setParentType('meta_general');
101 
102  return $lan;
103  }
104  public function &getDescriptionIds()
105  {
106  include_once 'Services/Migration/DBUpdate_426/classes/class.ilMDDescription.php';
107 
108  return ilMDDescription::_getIds($this->getRBACId(), $this->getObjId(), $this->getMetaId(), 'meta_general');
109  }
110  public function &getDescription($a_description_id)
111  {
112  include_once 'Services/Migration/DBUpdate_426/classes/class.ilMDDescription.php';
113 
114 
115  if (!$a_description_id) {
116  return false;
117  }
118  $des = new ilMDDescription();
119  $des->setMetaId($a_description_id);
120 
121  return $des;
122  }
123  public function &addDescription()
124  {
125  include_once 'Services/Migration/DBUpdate_426/classes/class.ilMDDescription.php';
126 
127  $des = new ilMDDescription($this->getRBACId(), $this->getObjId(), $this->getObjType());
128  $des->setParentId($this->getMetaId());
129  $des->setParentType('meta_general');
130 
131  return $des;
132  }
133  public function &getKeywordIds()
134  {
135  include_once 'Services/Migration/DBUpdate_426/classes/class.ilMDKeyword.php';
136 
137  return ilMDKeyword::_getIds($this->getRBACId(), $this->getObjId(), $this->getMetaId(), 'meta_general');
138  }
139  public function &getKeyword($a_keyword_id)
140  {
141  include_once 'Services/Migration/DBUpdate_426/classes/class.ilMDKeyword.php';
142 
143  if (!$a_keyword_id) {
144  return false;
145  }
146  $key = new ilMDKeyword();
147  $key->setMetaId($a_keyword_id);
148 
149  return $key;
150  }
151  public function &addKeyword()
152  {
153  include_once 'Services/Migration/DBUpdate_426/classes/class.ilMDKeyword.php';
154 
155  $key = new ilMDKeyword($this->getRBACId(), $this->getObjId(), $this->getObjType());
156  $key->setParentId($this->getMetaId());
157  $key->setParentType('meta_general');
158 
159  return $key;
160  }
161 
162 
163 
164  // SET/GET
165  public function setStructure($a_structure)
166  {
167  switch ($a_structure) {
168  case 'Atomic':
169  case 'Collection':
170  case 'Networked':
171  case 'Hierarchical':
172  case 'Linear':
173  $this->structure = $a_structure;
174  return true;
175 
176  default:
177  return false;
178  }
179  }
180  public function getStructure()
181  {
182  return $this->structure;
183  }
184  public function setTitle($a_title)
185  {
186  $this->title = $a_title;
187  }
188  public function getTitle()
189  {
190  return $this->title;
191  }
192  public function setTitleLanguage(&$lng_obj)
193  {
194  if (is_object($lng_obj)) {
195  $this->title_language = $lng_obj;
196  }
197  }
198  public function &getTitleLanguage()
199  {
200  return is_object($this->title_language) ? $this->title_language : false;
201  }
202  public function getTitleLanguageCode()
203  {
204  return is_object($this->title_language) ? $this->title_language->getLanguageCode() : false;
205  }
206 
207  public function setCoverage($a_coverage)
208  {
209  $this->coverage = $a_coverage;
210  }
211  public function getCoverage()
212  {
213  return $this->coverage;
214  }
215 
216  public function setCoverageLanguage(&$lng_obj)
217  {
218  if (is_object($lng_obj)) {
219  $this->coverage_language = &$lng_obj;
220  }
221  }
222  public function &getCoverageLanguage()
223  {
224  return is_object($this->coverage_language) ? $this->coverage_language : false;
225  }
226  public function getCoverageLanguageCode()
227  {
228  return is_object($this->coverage_language) ? $this->coverage_language->getLanguageCode() : false;
229  }
230 
231 
232  public function save()
233  {
234  if ($this->db->autoExecute(
235  'il_meta_general',
236  $this->__getFields(),
238  )) {
239  $this->setMetaId($this->db->getLastInsertId());
240 
241  return $this->getMetaId();
242  }
243  return false;
244  }
245 
246  public function update()
247  {
248  global $ilDB;
249 
250  if ($this->getMetaId()) {
251  if ($this->db->autoExecute(
252  'il_meta_general',
253  $this->__getFields(),
255  "meta_general_id = " . $ilDB->quote($this->getMetaId())
256  )) {
257  return true;
258  }
259  }
260  return false;
261  }
262 
263  public function delete()
264  {
265  global $ilDB;
266 
267  if (!$this->getMetaId()) {
268  return false;
269  }
270  // Identifier
271  foreach ($this->getIdentifierIds() as $id) {
272  $ide = $this->getIdentifier($id);
273  $ide->delete();
274  }
275 
276  // Language
277  foreach ($this->getLanguageIds() as $id) {
278  $lan = $this->getLanguage($id);
279  $lan->delete();
280  }
281 
282  // Description
283  foreach ($this->getDescriptionIds() as $id) {
284  $des = $this->getDescription($id);
285  $des->delete();
286  }
287 
288  // Keyword
289  foreach ($this->getKeywordIds() as $id) {
290  $key = $this->getKeyword($id);
291  $key->delete();
292  }
293 
294  if ($this->getMetaId()) {
295  $query = "DELETE FROM il_meta_general " .
296  "WHERE meta_general_id = " . $ilDB->quote($this->getMetaId());
297 
298  $this->db->query($query);
299 
300  return true;
301  }
302 
303 
304  return false;
305  }
306 
307 
308  public function __getFields()
309  {
310  return array('rbac_id' => $this->getRBACId(),
311  'obj_id' => $this->getObjId(),
312  'obj_type' => ilUtil::prepareDBString($this->getObjType()),
313  'general_structure' => ilUtil::prepareDBString($this->getStructure()),
314  'title' => ilUtil::prepareDBString($this->getTitle()),
315  'title_language' => ilUtil::prepareDBString($this->getTitleLanguageCode()),
316  'coverage' => ilUtil::prepareDBString($this->getCoverage()),
317  'coverage_language' => ilUtil::prepareDBString($this->getCoverageLanguageCode()));
318  }
319 
320  public function read()
321  {
322  global $ilDB;
323 
324  include_once 'Services/Migration/DBUpdate_426/classes/class.ilMDLanguageItem.php';
325 
326  if ($this->getMetaId()) {
327  $query = "SELECT * FROM il_meta_general " .
328  "WHERE meta_general_id = " . $ilDB->quote($this->getMetaId());
329 
330  $res = $this->db->query($query);
331  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
332  $this->setRBACId($row->rbac_id);
333  $this->setObjId($row->obj_id);
334  $this->setObjType($row->obj_type);
335  $this->setStructure(ilUtil::stripSlashes($row->general_structure));
336  $this->setTitle(ilUtil::stripSlashes($row->title));
337  $this->setTitleLanguage(new ilMDLanguageItem($row->title_language));
338  $this->setCoverage(ilUtil::stripSlashes($row->coverage));
339  $this->setCoverageLanguage(new ilMDLanguageItem($row->coverage_language));
340  }
341  }
342  return true;
343  }
344 
345  /*
346  * XML Export of all meta data
347  * @param object (xml writer) see class.ilMD2XML.php
348  *
349  */
350  public function toXML(&$writer)
351  {
352  $writer->xmlStartTag('General', array('Structure' => $this->getStructure()));
353 
354  // Identifier
355  foreach ($this->getIdentifierIds() as $id) {
356  $ide = &$this->getIdentifier($id);
357  $ide->toXML($writer);
358  }
359 
360  // TItle
361  $writer->xmlElement('Title', array('Language' => $this->getTitleLanguageCode()), $this->getTitle());
362 
363  // Language
364  foreach ($this->getLanguageIds() as $id) {
365  $lan = &$this->getLanguage($id);
366  $lan->toXML($writer);
367  }
368 
369  // Description
370  foreach ($this->getDescriptionIds() as $id) {
371  $des = &$this->getDescription($id);
372  $des->toXML($writer);
373  }
374 
375  // Keyword
376  foreach ($this->getKeywordIds() as $id) {
377  $key = &$this->getKeyword($id);
378  $key->toXML($writer);
379  }
380 
381  // Copverage
382  if (strlen($this->getCoverage())) {
383  $writer->xmlElement('Coverage', array('Language' => $this->getCoverageLanguageCode()), $this->getCoverage());
384  }
385  $writer->xmlEndTag('General');
386  }
387 
388 
389 
390  // STATIC
391  public function _getId($a_rbac_id, $a_obj_id)
392  {
393  global $ilDB;
394 
395  $query = "SELECT meta_general_id FROM il_meta_general " .
396  "WHERE rbac_id = " . $ilDB->quote($a_rbac_id) . " " .
397  "AND obj_id = " . $ilDB->quote($a_obj_id);
398 
399 
400  $res = $ilDB->query($query);
401  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
402  return $row->meta_general_id;
403  }
404  return false;
405  }
406 }
setCoverageLanguage(&$lng_obj)
setStructure($a_structure)
& getLanguage($a_language_id)
static _getIds($a_rbac_id, $a_obj_id, $a_parent_id, $a_parent_type)
& getKeyword($a_keyword_id)
setObjType($a_type)
_getId($a_rbac_id, $a_obj_id)
static _getIds($a_rbac_id, $a_obj_id, $a_parent_id, $a_parent_type)
static _getIds($a_rbac_id, $a_obj_id, $a_parent_id, $a_parent_type)
if(!array_key_exists('StateId', $_REQUEST)) $id
setTitle($a_title)
setMetaId($a_meta_id, $a_read_data=true)
foreach($_POST as $key=> $value) $res
& getIdentifier($a_identifier_id)
setObjId($a_id)
setRBACId($a_id)
setCoverage($a_coverage)
$query
setTitleLanguage(&$lng_obj)
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
& getDescription($a_description_id)
$row
static _getIds($a_rbac_id, $a_obj_id, $a_parent_id, $a_parent_type)
static prepareDBString($a_str)
prepare a string for db writing (insert/update)
global $ilDB
$key
Definition: croninfo.php:18