31 $this->db = $DIC->database();
43 return array(
"5.1.0",
"5.4.0");
54 return "http://www.ilias.de/xml/Modules/Glossary/" . $a_entity;
64 protected function getTypes($a_entity, $a_version)
66 if ($a_entity ==
"glo") {
73 "Description" =>
"text",
76 "SnippetLength" =>
"integer",
77 "GloMenuActive" =>
"text",
78 "ShowTax" =>
"integer" 83 if ($a_entity ==
"glo_term") {
97 if ($a_entity ==
"glo_definition") {
103 "TermId" =>
"integer",
104 "ShortText" =>
"text",
106 "ShortTextDirty" =>
"integer" 111 if ($a_entity ==
"glo_advmd_col_order") {
112 switch ($a_version) {
116 "GloId" =>
"integer",
118 "OrderNr" =>
"integer" 123 if ($a_entity ==
"glo_auto_glossaries") {
124 switch ($a_version) {
127 "GloId" =>
"integer",
128 "AutoGloId" =>
"text" 140 public function readData($a_entity, $a_version, $a_ids, $a_field =
"")
144 if (!is_array($a_ids)) {
145 $a_ids = array($a_ids);
148 if ($a_entity ==
"glo") {
149 switch ($a_version) {
152 $this->
getDirectDataFromQuery(
"SELECT o.title, o.description, g.id, g.virtual, pres_mode, snippet_length, show_tax, glo_menu_active" .
153 " FROM glossary g JOIN object_data o " .
154 " ON (g.id = o.obj_id) " .
155 " WHERE " .
$ilDB->in(
"g.id", $a_ids,
false,
"integer"));
160 if ($a_entity ==
"glo_term") {
161 switch ($a_version) {
164 " FROM glossary_term " .
165 " WHERE " .
$ilDB->in(
"glo_id", $a_ids,
false,
"integer"));
170 " FROM glossary_term " .
171 " WHERE " .
$ilDB->in(
"glo_id", $a_ids,
false,
"integer"));
173 $set =
$ilDB->query(
"SELECT r.term_id, r.glo_id, t.term, t.language " .
174 "FROM glo_term_reference r JOIN glossary_term t ON (r.term_id = t.id) " .
175 " WHERE " .
$ilDB->in(
"r.glo_id", $a_ids,
false,
"integer"));
176 while ($rec =
$ilDB->fetchAssoc($set)) {
178 "Id" => $rec[
"term_id"],
179 "GloId" => $rec[
"glo_id"],
180 "Term" => $rec[
"term"],
181 "Language" => $rec[
"language"],
188 if ($a_entity ==
"glo_definition") {
189 switch ($a_version) {
193 " FROM glossary_definition " .
194 " WHERE " .
$ilDB->in(
"term_id", $a_ids,
false,
"integer"));
199 if ($a_entity ==
"glo_advmd_col_order") {
200 switch ($a_version) {
204 " FROM glo_advmd_col_order " .
205 " WHERE " .
$ilDB->in(
"glo_id", $a_ids,
false,
"integer"));
210 if ($a_entity ==
"glo_auto_glossaries") {
211 switch ($a_version) {
213 $set =
$ilDB->query(
"SELECT * FROM glo_glossaries " .
214 " WHERE " .
$ilDB->in(
"id", $a_ids,
false,
"integer"));
216 while ($rec =
$ilDB->fetchAssoc($set)) {
218 "GloId" => $rec[
"id"],
219 "AutoGloId" =>
"il_" . IL_INST_ID .
"_glo_" . $rec[
"glo_id"]
235 "glo_term" => array(
"ids" => $a_rec[
"Id"]),
236 "glo_advmd_col_order" => array(
"ids" => $a_rec[
"Id"]),
237 "glo_auto_glossaries" => array(
"ids" => $a_rec[
"Id"])
242 "glo_definition" => array(
"ids" => $a_rec[
"Id"])
256 public function importRecord($a_entity, $a_types, $a_rec, $a_mapping, $a_schema_version)
261 if ($new_id = $a_mapping->getMapping(
'Services/Container',
'objs', $a_rec[
'Id'])) {
265 $newObj->create(
true);
268 $newObj->setTitle($a_rec[
"Title"]);
269 $newObj->setDescription($a_rec[
"Description"]);
270 $newObj->setVirtualMode($a_rec[
"Virtual"]);
271 $newObj->setPresentationMode($a_rec[
"PresMode"]);
272 $newObj->setSnippetLength($a_rec[
"SnippetLength"]);
273 $newObj->setActiveGlossaryMenu($a_rec[
"GloMenuActive"]);
274 $newObj->setShowTaxonomy($a_rec[
"ShowTax"]);
278 $newObj->update(
true);
280 $this->current_obj = $newObj;
281 $this->old_glo_id = $a_rec[
"Id"];
282 $a_mapping->addMapping(
"Modules/Glossary",
"glo", $a_rec[
"Id"], $newObj->getId());
283 $a_mapping->addMapping(
"Services/Object",
"obj", $a_rec[
"Id"], $newObj->getId());
284 $a_mapping->addMapping(
287 $a_rec[
"Id"] .
":0:glo",
288 $newObj->getId() .
":0:glo" 290 $a_mapping->addMapping(
"Services/AdvancedMetaData",
"parent", $a_rec[
"Id"], $newObj->getId());
297 $glo_id = (int) $a_mapping->getMapping(
"Modules/Glossary",
"glo", $a_rec[
"GloId"]);
299 $term->setGlossaryId($glo_id);
300 $term->setTerm($a_rec[
"Term"]);
301 $term->setLanguage($a_rec[
"Language"]);
306 $term_id = $term->getId();
307 $this->log->debug(
"glo_term, import id: " . $term->getImportId() .
", term id: " . $term_id);
309 $a_mapping->addMapping(
316 $a_mapping->addMapping(
319 "glo:term:" . $a_rec[
"Id"],
323 $a_mapping->addMapping(
326 "glo:term:" . $a_rec[
"Id"],
330 $a_mapping->addMapping(
331 "Services/AdvancedMetaData",
333 "advmd:term:" . $a_rec[
"Id"],
338 case "glo_definition":
342 $term_id = (int) $a_mapping->getMapping(
"Modules/Glossary",
"term", $a_rec[
"TermId"]);
343 if ((
int) $term_id == 0) {
344 $this->log->debug(
"ERROR: Did not find glossary term glo_term id '" . $a_rec[
"TermId"] .
"' for definition id '" . $a_rec[
"Id"] .
"'.");
347 $def->setTermId($term_id);
348 $def->setShortText($a_rec[
"ShortText"]);
349 $def->setNr($a_rec[
"Nr"]);
350 $def->setShortTextDirty($a_rec[
"ShortTextDirty"]);
352 $def->create(
true,
true);
354 $a_mapping->addMapping(
"Modules/Glossary",
"def", $a_rec[
"Id"], $def->getId());
355 $a_mapping->addMapping(
358 "gdf:" . $a_rec[
"Id"],
359 "gdf:" . $def->getId()
361 $a_mapping->addMapping(
364 $this->old_glo_id .
":" . $a_rec[
"Id"] .
":gdf",
365 $this->current_obj->getId() .
":" . $def->getId() .
":gdf" 370 case "glo_advmd_col_order":
374 $a_mapping->addMapping(
"Modules/Glossary",
"advmd_col_order", $a_rec[
"GloId"] .
":" . $a_rec[
"FieldId"], $a_rec[
"OrderNr"]);
377 case "glo_auto_glossaries":
379 $glo_id = (int) $a_mapping->getMapping(
"Modules/Glossary",
"glo", $a_rec[
"GloId"]);
382 $glo->addAutoGlossary($auto_glo_id);
383 $glo->updateAutoGlossaries();
readData($a_entity, $a_version, $a_ids, $a_field="")
Read data.
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 ...
getDependencies($a_entity, $a_version, $a_rec, $a_ids)
Determine the dependent sets of data.
getSupportedVersions()
Get supported versions.
getCurrentInstallationId()
Get current installation id.
static getInstanceByObjId($a_obj_id, $stop_on_error=true)
get an instance of an Ilias object by object id
static _lookupType($a_id, $a_reference=false)
lookup object type
getXmlNamespace($a_entity, $a_schema_version)
Get xml namespace.
Class ilGlossaryDefinition.
__construct(Container $dic, ilPlugin $plugin)
__construct()
Constructor.
importRecord($a_entity, $a_types, $a_rec, $a_mapping, $a_schema_version)
Import record.
static getLogger($a_component_id)
Get component logger.
A dataset contains in data in a common structure that can be shared and transformed for different pur...
getTypes($a_entity, $a_version)
Get field types for entity.
static _lookupObjIdByImportId($a_import_id)