ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilCategoryExporter.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/Export/classes/class.ilXmlExporter.php';
5 
13 {
22  public function getXmlExportHeadDependencies($a_entity, $a_target_release, $a_ids)
23  {
24  include_once './Services/Export/classes/class.ilExportOptions.php';
26 
27  $obj_id = end($a_ids);
28 
29 
30  $GLOBALS['ilLog']->write(__METHOD__.': '.$obj_id);
31  if($eo->getOption(ilExportOptions::KEY_ROOT) != $obj_id)
32  {
33  return array();
34  }
35  if(count(ilExportOptions::getInstance()->getSubitemsForExport()) > 1)
36  {
37  return array(
38  array(
39  'component' => 'Services/Container',
40  'entity' => 'struct',
41  'ids' => $a_ids
42  )
43  );
44  }
45  return array();
46  }
47 
48 
56  public function getXmlRepresentation($a_entity, $a_schema_version, $a_id)
57  {
58  $cat_ref_id = end(ilObject::_getAllReferences($a_id));
59  $category = ilObjectFactory::getInstanceByRefId($cat_ref_id,false);
60 
61  if(!$category instanceof ilObjCategory)
62  {
63  $GLOBALS['ilLog']->write(__METHOD__. $a_id . ' is not instance of type category!');
64  return '';
65  }
66 
67  include_once './Modules/Category/classes/class.ilCategoryXmlWriter.php';
68 
69  $writer = new ilCategoryXmlWriter($category);
70  $writer->setMode(ilCategoryXmlWriter::MODE_EXPORT);
71  $writer->export(false);
72  return $writer->getXml();
73  }
74 
82  public function getValidSchemaVersions($a_entity)
83  {
84  return array (
85  "4.3.0" => array(
86  "namespace" => "http://www.ilias.de/Modules/Category/cat/4_3",
87  "xsd_file" => "ilias_cat_4_3.xsd",
88  "uses_dataset" => false,
89  "min" => "4.3.0",
90  "max" => "")
91  );
92  }
93 
97  public function init() {
98 
99  }
100 
101 }
102 ?>
getValidSchemaVersions($a_entity)
Returns schema versions that the component can export to.
Class for category export.
getInstanceByRefId($a_ref_id, $stop_on_error=true)
get an instance of an Ilias object by reference id
getXmlExportHeadDependencies($a_entity, $a_target_release, $a_ids)
Get head dependencies.
getXmlRepresentation($a_entity, $a_schema_version, $a_id)
Get xml.
static getInstance()
Get singelton instance.
Class for category export.
static _getAllReferences($a_id)
get all reference ids of object
Xml Exporter class.
$GLOBALS['ct_recipient']
Class ilObjCategory.