ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilAdvancedMetaDataExporter.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/Export/classes/class.ilXmlExporter.php");
5 
14 {
15  private $ds;
16 
20  function init()
21  {
22 
23  }
24 
33  function getXmlExportHeadDependencies($a_entity, $a_target_release, $a_ids)
34  {
35  return array();
36  }
37 
38 
47  function getXmlExportTailDependencies($a_entity, $a_target_release, $a_ids)
48  {
49  return array();
50  }
51 
60  public function getXmlRepresentation($a_entity, $a_schema_version, $a_id)
61  {
62  global $ilDB;
63 
64  $parts = explode(":", $a_id);
65  if(sizeof($parts) != 2)
66  {
67  return;
68  }
69  $obj_id = $parts[0];
70  $rec_id = $parts[1];
71 
72  include_once('Services/AdvancedMetaData/classes/class.ilAdvancedMDFieldDefinition.php');
73  $field_ids = array();
75  {
76  $field_ids[] = $def->getFieldId();
77  }
78 
79  if(!sizeof($field_ids))
80  {
81  return;
82  }
83 
84  $xml = new ilXmlWriter;
85  $xml->xmlStartTag('AdvancedMetaData');
86 
87  $query = "SELECT field_id,value,sub_id,sub_type".
88  " FROM adv_md_values ".
89  " WHERE obj_id = ".$ilDB->quote($a_id, "integer").
90  " AND ".$ilDB->in("field_id", $field_ids, "", "integer");
91  $set = $ilDB->query($query);
92  while($row = $ilDB->fetchAssoc($set))
93  {
94  if(trim($row['value']) != "")
95  {
96  $xml->xmlElement('Value',
97  array(
99  'sub_id' => $row['sub_id'],
100  'sub_type' => $row['sub_type'],
101  ),
102  $row['value']);
103  }
104  }
105 
106  $xml->xmlEndTag('AdvancedMetaData');
107 
108  return $xml->xmlDumpMem(false);
109  }
110 
118  function getValidSchemaVersions($a_entity)
119  {
120  return array (
121  "4.4.0" => array(
122  "namespace" => "http://www.ilias.de/Services/AdvancedMetaData/advmd/4_4",
123  "xsd_file" => "ilias_advmd_4_4.xsd",
124  "uses_dataset" => true,
125  "min" => "4.4.0",
126  "max" => "")
127  );
128  }
129 
130 }
131 
132 ?>
static _getDefinitionsByRecordId($a_record_id)
get definitions
xmlStartTag($tag, $attrs=NULL, $empty=FALSE, $encode=TRUE, $escape=TRUE)
Writes a starttag.
XML writer class.
getXmlExportTailDependencies($a_entity, $a_target_release, $a_ids)
Get tail dependencies.
Xml Exporter class.
getValidSchemaVersions($a_entity)
Returns schema versions that the component can export to.
getXmlExportHeadDependencies($a_entity, $a_target_release, $a_ids)
Get head dependencies.
static _lookupImportId($a_field_id)
Lookup import id.
getXmlRepresentation($a_entity, $a_schema_version, $a_id)
Get xml representation.