ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilObjectMetaDataGUI Class Reference

Class ilObjectMetaDataGUI. More...

+ Collaboration diagram for ilObjectMetaDataGUI:

Public Member Functions

 __construct (?ilObject $object=null, $sub_type=null, ?int $sub_id=null, bool $in_repository=true)
 
 executeCommand ()
 
 setTaxonomySettings (Closure $form_manipulator, Closure $form_saver)
 
 setRecordFilter (?array $filter=null)
 Set advanced record filter. More...
 
 enableTaxonomyDefinition (bool $enable)
 Enable taxonomy definition. More...
 
 getTaxonomyObjGUI ()
 
 addMDObserver (object $class, string $method, string $section)
 
 setAdvMdRecordObject (int $adv_id, string $adv_type, string $adv_subtype="-")
 Set object, that defines the adv md records being used. More...
 
 getAdvMdRecordObject ()
 Get adv md record type. More...
 
 getTab (?string $base_class=null)
 Get tab link if available. More...
 
 setSubTabs (string $active)
 
 getBlockHTML (?array $commands=null, ?array $callback=null)
 Takes as an optional second input an array consisting of the object that the method that should be called back to belongs to, and a string with the name of the method. More...
 
 getKeyValueList ()
 

Protected Member Functions

 getLOMType ()
 
 isAdvMDAvailable ()
 
 isLOMAvailable ()
 
 hasAdvancedMDSettings ()
 
 hasActiveRecords ()
 check if active records exist in current path anf for object type More...
 
 canEdit ()
 
 initEditForm ()
 
 edit (?ilPropertyFormGUI $a_form=null)
 
 update ()
 
 checkFilter (int $record_id)
 
 editTaxonomySettings ()
 
 initTaxonomySettingsForm ()
 
 saveTaxonomySettings ()
 

Protected Attributes

ilCtrl $ctrl
 
ilTabsGUI $tabs
 
ilLanguage $lng
 
ilGlobalTemplateInterface $tpl
 
ilLogger $logger = null
 
bool $in_workspace
 
 $sub_type
 
int $sub_id
 
bool $in_repository = true
 
ilObject $object
 
int $obj_id = 0
 
string $obj_type = ""
 
int $ref_id = 0
 
array $md_observers = null
 
ilTaxMDGUI $tax_md_gui = null
 
ilObjTaxonomyGUI $tax_obj_gui = null
 
Closure $taxonomy_settings_form_manipulator = null
 
Closure $taxonomy_settings_form_saver = null
 
ilAdvancedMDRecordGUI $record_gui = null
 
int $adv_id = null
 
string $adv_type = null
 
string $adv_subtype = null
 
array $record_filter = null
 

Private Attributes

ilObjectRequestRetriever $retriever
 

Detailed Description

Constructor & Destructor Documentation

◆ __construct()

ilObjectMetaDataGUI::__construct ( ?ilObject  $object = null,
  $sub_type = null,
?int  $sub_id = null,
bool  $in_repository = true 
)

Definition at line 72 of file class.ilObjectMetaDataGUI.php.

References $DIC, $GLOBALS, $in_repository, $object, $sub_id, $sub_type, ILIAS\Repository\ctrl(), ilObject\getId(), getLOMType(), ilObject\getRefId(), ilObject\getType(), ILIAS\Repository\int(), ILIAS\Repository\lng(), ILIAS\Repository\logger(), null, ILIAS\Repository\tabs(), ilLogLevel\WARNING, and ilObject\withReferences().

77  {
78  global $DIC;
79 
80  $this->ctrl = $DIC->ctrl();
81  $this->tabs = $DIC->tabs();
82  $this->lng = $DIC->language();
83  $this->tpl = $DIC["tpl"];
84  $this->logger = $GLOBALS['DIC']->logger()->obj();
85  $this->retriever = new ilObjectRequestRetriever($DIC->http()->wrapper(), $DIC->refinery());
86 
87  $this->in_workspace = ((int) $this->retriever->getMaybeInt("wsp_id")) > 0;
88 
89  $this->sub_type = $sub_type;
90  $this->sub_id = $sub_id;
91  $this->in_repository = $in_repository;
92 
93  if (!$this->sub_type) {
94  $this->sub_type = "-";
95  }
96 
97  if ($object) {
98  $this->object = $object;
99  $this->obj_id = $object->getId();
100  $this->obj_type = $object->getType();
101  if ($in_repository) {
102  $this->ref_id = $object->getRefId();
103  if (!$object->withReferences()) {
104  $this->logger->logStack(ilLogLevel::WARNING);
105  $this->logger->warning('ObjectMetaDataGUI called without valid reference id.');
106  }
107 
108  if (!$this->ref_id) {
109  $this->logger->logStack(ilLogLevel::WARNING);
110  $this->logger->warning('ObjectMetaDataGUI called without valid reference id.');
111  }
112  }
113 
114  if (!$this->in_workspace && $in_repository) {
115  // (parent) container taxonomies?
116  $this->tax_md_gui = new ilTaxMDGUI(
117  $this->obj_id,
118  (int) $this->sub_id === 0 ? $this->obj_id : (int) $this->sub_id,
119  $this->getLOMType(),
120  $this->ref_id
121  );
122  $tax_ids = $this->tax_md_gui->getSelectableTaxonomies();
123  if (!is_array($tax_ids) || count($tax_ids) == 0) {
124  $this->tax_md_gui = null;
125  }
126  }
127  }
128 
129  $this->lng->loadLanguageModule("meta");
130  $this->lng->loadLanguageModule("tax");
131  }
withReferences()
determines whether objects are referenced or not (got ref ids or not)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
$GLOBALS["DIC"]
Definition: wac.php:53
Taxonomies selection for metadata helper GUI.
global $DIC
Definition: shib_login.php:22
Base class for all sub item list gui's.
+ Here is the call graph for this function:

Member Function Documentation

◆ addMDObserver()

ilObjectMetaDataGUI::addMDObserver ( object  $class,
string  $method,
string  $section 
)

Definition at line 227 of file class.ilObjectMetaDataGUI.php.

Referenced by ilStructureObjectGUI\executeCommand(), and ilObjMediaObjectGUI\returnToContextObject().

227  : void
228  {
229  $this->md_observers[] = [
230  "class" => $class,
231  "method" => $method,
232  "section" => $section
233  ];
234  }
+ Here is the caller graph for this function:

◆ canEdit()

ilObjectMetaDataGUI::canEdit ( )
protected

Definition at line 355 of file class.ilObjectMetaDataGUI.php.

References hasActiveRecords().

Referenced by getTab(), and setSubTabs().

355  : bool
356  {
357  if (is_array($this->sub_type)) { // only settings
358  return false;
359  }
360 
361  if ($this->hasActiveRecords()) {
362  if ($this->sub_type == "-" || $this->sub_id) {
363  return true;
364  }
365  }
366  return false;
367  }
hasActiveRecords()
check if active records exist in current path anf for object type
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ checkFilter()

ilObjectMetaDataGUI::checkFilter ( int  $record_id)
protected

Definition at line 511 of file class.ilObjectMetaDataGUI.php.

Referenced by getBlockHTML().

511  : bool
512  {
513  return !(is_array($this->record_filter) && !in_array($record_id, $this->record_filter));
514  }
+ Here is the caller graph for this function:

◆ edit()

ilObjectMetaDataGUI::edit ( ?ilPropertyFormGUI  $a_form = null)
protected

Definition at line 482 of file class.ilObjectMetaDataGUI.php.

References initEditForm().

Referenced by update().

482  : void
483  {
484  if (!$a_form) {
485  $a_form = $this->initEditForm();
486  }
487 
488  $this->tpl->setContent($a_form->getHTML());
489  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ editTaxonomySettings()

ilObjectMetaDataGUI::editTaxonomySettings ( )
protected

Definition at line 602 of file class.ilObjectMetaDataGUI.php.

References initTaxonomySettingsForm(), and ILIAS\Repository\tabs().

602  : void
603  {
604  $this->tabs->activateSubTab("tax_settings");
605  $form = $this->initTaxonomySettingsForm();
606  $this->tpl->setContent($form->getHTML());
607  }
+ Here is the call graph for this function:

◆ enableTaxonomyDefinition()

ilObjectMetaDataGUI::enableTaxonomyDefinition ( bool  $enable)

Enable taxonomy definition.

Definition at line 212 of file class.ilObjectMetaDataGUI.php.

References null, and ILIAS\Repository\object().

212  : void
213  {
214  if ($enable) {
215  $this->tax_obj_gui = new ilObjTaxonomyGUI();
216  $this->tax_obj_gui->setAssignedObject($this->object->getId());
217  } else {
218  $this->tax_obj_gui = null;
219  }
220  }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
+ Here is the call graph for this function:

◆ executeCommand()

ilObjectMetaDataGUI::executeCommand ( )

Definition at line 133 of file class.ilObjectMetaDataGUI.php.

References ilAdvancedMDSettingsGUI\CONTEXT_OBJECT, ILIAS\Repository\ctrl(), getLOMType(), initEditForm(), and setSubTabs().

133  : void
134  {
135  $next_class = $this->ctrl->getNextClass($this);
136  $cmd = $this->ctrl->getCmd("edit");
137 
138  switch ($next_class) {
139  case 'ilmdeditorgui':
140  $this->setSubTabs("lom");
141  $md_gui = new ilMDEditorGUI($this->obj_id, (int) $this->sub_id, $this->getLOMType());
142  // custom observers?
143  if (is_array($this->md_observers)) {
144  foreach ($this->md_observers as $observer) {
145  $md_gui->addObserver($observer["class"], $observer["method"], $observer["section"]);
146  }
147  }
148  // "default" repository object observer
149  elseif (!$this->sub_id && $this->object) {
150  $md_gui->addObserver($this->object, 'MDUpdateListener', 'General');
151  }
152  $this->ctrl->forwardCommand($md_gui);
153  break;
154 
155  case 'iladvancedmdsettingsgui':
156  if ($this->in_repository) { // currently needs ref id
157  $this->setSubTabs("advmddef");
158  // TODO: needs ilAdvancedMDSettingsGUI::CONTEXT_ADMINISTRATION or
159  // ilAdvancedMDSettingsGUI::CONTEXT_OBJECT as first parameter
160  // fill in the weaker context for the moment
161  $advmdgui = new ilAdvancedMDSettingsGUI(
163  $this->ref_id,
164  $this->obj_type,
165  $this->sub_type
166  );
167  $this->ctrl->forwardCommand($advmdgui);
168  }
169  break;
170 
171  case 'iltaxmdgui':
172  $this->setSubTabs("tax_assignment");
173  $this->ctrl->forwardCommand($this->tax_md_gui);
174  break;
175 
176  case 'ilobjtaxonomygui':
177  $this->setSubTabs("tax_definition");
178  $this->ctrl->forwardCommand($this->tax_obj_gui);
179  break;
180 
181  case "ilpropertyformgui":
182  // only case is currently adv metadata internal link in info settings, see #24497
183  $form = $this->initEditForm();
184  $this->ctrl->forwardCommand($form);
185  break;
186 
187  default:
188  $this->setSubTabs("advmd");
189  $this->$cmd();
190  break;
191  }
192  }
+ Here is the call graph for this function:

◆ getAdvMdRecordObject()

ilObjectMetaDataGUI::getAdvMdRecordObject ( )

Get adv md record type.

Definition at line 258 of file class.ilObjectMetaDataGUI.php.

References $adv_id, $adv_subtype, $adv_type, $obj_id, $obj_type, $ref_id, $sub_type, and null.

Referenced by getBlockHTML(), getKeyValueList(), hasActiveRecords(), and isAdvMDAvailable().

258  : array
259  {
260  if ($this->adv_type == null) {
261  if ($this->in_repository) {
263  } else {
265  }
266  }
268  }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
+ Here is the caller graph for this function:

◆ getBlockHTML()

ilObjectMetaDataGUI::getBlockHTML ( ?array  $commands = null,
?array  $callback = null 
)

Takes as an optional second input an array consisting of the object that the method that should be called back to belongs to, and a string with the name of the method.

Parameters
array | null$commands
null|array{0ilObject, 1: string} $callback
Returns
string

Definition at line 524 of file class.ilObjectMetaDataGUI.php.

References $obj_id, $sub_type, $url, ilAdvancedMDRecord\_getSelectedRecordsByObject(), checkFilter(), getAdvMdRecordObject(), ILIAS\Repository\int(), and ILIAS\Repository\lng().

524  : string
525  {
526  $html = "";
527 
530  $adv_type,
531  $adv_id,
532  $adv_subtype,
533  $this->in_repository
534  );
535  foreach ($advanced_md_records as $record) {
536  if (!$this->checkFilter($record->getRecordId())) {
537  continue;
538  }
539  $block = new ilObjectMetaDataBlockGUI($record, $callback);
540  $block->setValues(new ilAdvancedMDValues(
541  $record->getRecordId(),
544  (int) $this->sub_id
545  ));
546  if ($commands) {
547  foreach ($commands as $caption => $url) {
548  $block->addBlockCommand($url, $this->lng->txt($caption));
549  }
550  }
551  $html .= $block->getHTML();
552  }
553 
554  return $html;
555  }
getAdvMdRecordObject()
Get adv md record type.
static _getSelectedRecordsByObject(string $a_obj_type, int $a_id, string $a_sub_type="", bool $is_ref_id=true)
$url
Definition: shib_logout.php:66
+ Here is the call graph for this function:

◆ getKeyValueList()

ilObjectMetaDataGUI::getKeyValueList ( )

Definition at line 557 of file class.ilObjectMetaDataGUI.php.

References $obj_id, $sub_type, ilAdvancedMDRecord\_getSelectedRecordsByObject(), getAdvMdRecordObject(), ilADTFactory\getInstance(), ILIAS\Repository\int(), ilDatePresentation\setUseRelativeDates(), and ilDatePresentation\useRelativeDates().

557  : string
558  {
559  $html = "";
560  $sep = "";
561 
564 
567  $adv_type,
568  $adv_id,
569  $adv_subtype,
570  $this->in_repository
571  );
572  foreach ($advanced_md_records as $record) {
573  $vals = new ilAdvancedMDValues($record->getRecordId(), $this->obj_id, $this->sub_type, (int) $this->sub_id);
574 
575  // this correctly binds group and definitions
576  $vals->read();
577 
578  $defs = $vals->getDefinitions();
579  foreach ($vals->getADTGroup()->getElements() as $element_id => $element) {
580  if ($element instanceof ilADTLocation) {
581  continue;
582  }
583 
584  $html .= $sep . $defs[$element_id]->getTitle() . ": ";
585 
586  if ($element->isNull()) {
587  $value = "-";
588  } else {
589  $value = ilADTFactory::getInstance()->getPresentationBridgeForInstance($element);
590 
591  $value = $value->getHTML();
592  }
593  $html .= $value;
594  $sep = ",    ";
595  }
596  }
597 
599  return $html;
600  }
getAdvMdRecordObject()
Get adv md record type.
static array static setUseRelativeDates(bool $a_status)
set use relative dates
static _getSelectedRecordsByObject(string $a_obj_type, int $a_id, string $a_sub_type="", bool $is_ref_id=true)
+ Here is the call graph for this function:

◆ getLOMType()

ilObjectMetaDataGUI::getLOMType ( )
protected

Definition at line 236 of file class.ilObjectMetaDataGUI.php.

References $obj_type, and $sub_type.

Referenced by __construct(), executeCommand(), and isLOMAvailable().

236  : string
237  {
238  if ($this->sub_type != "-" && $this->sub_id) {
239  return $this->sub_type;
240  }
241  return $this->obj_type;
242  }
+ Here is the caller graph for this function:

◆ getTab()

ilObjectMetaDataGUI::getTab ( ?string  $base_class = null)

Get tab link if available.

Definition at line 372 of file class.ilObjectMetaDataGUI.php.

References $path, canEdit(), ILIAS\Repository\ctrl(), hasAdvancedMDSettings(), isAdvMDAvailable(), isLOMAvailable(), and null.

Referenced by ilGlossaryTermGUI\getTabs(), ilObjMediaObjectGUI\getTabs(), and ilStructureObjectGUI\setTabs().

372  : ?string
373  {
374  if (!$base_class) {
375  $path = [];
376  } else {
377  $path = [$base_class];
378  }
379  $path[] = "ilobjectmetadatagui";
380 
381  $link = null;
382  if ($this->isLOMAvailable()) {
383  $path[] = "ilmdeditorgui";
384  $link = $this->ctrl->getLinkTargetByClass($path, "listSection");
385  } elseif ($this->isAdvMDAvailable()) {
386  if ($this->canEdit()) {
387  $link = $this->ctrl->getLinkTarget($this, "edit");
388  } elseif ($this->hasAdvancedMDSettings()) {
389  $path[] = "iladvancedmdsettingsgui";
390  $link = $this->ctrl->getLinkTargetByClass($path, "showRecords");
391  }
392  }
393  if ($link == null && is_object($this->tax_obj_gui)) { // taxonomy definition available?
394  $path[] = "ilobjtaxonomygui";
395  $link = $this->ctrl->getLinkTargetByClass($path, "");
396  }
397  return $link;
398  }
$path
Definition: ltiservices.php:29
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getTaxonomyObjGUI()

ilObjectMetaDataGUI::getTaxonomyObjGUI ( )

Definition at line 222 of file class.ilObjectMetaDataGUI.php.

References $tax_obj_gui.

223  {
224  return $this->tax_obj_gui;
225  }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...

◆ hasActiveRecords()

ilObjectMetaDataGUI::hasActiveRecords ( )
protected

check if active records exist in current path anf for object type

Definition at line 343 of file class.ilObjectMetaDataGUI.php.

References ilAdvancedMDRecord\_getSelectedRecordsByObject(), and getAdvMdRecordObject().

Referenced by canEdit().

343  : bool
344  {
346 
348  $adv_type,
349  $adv_id,
350  $adv_subtype,
351  $this->in_repository
352  ));
353  }
getAdvMdRecordObject()
Get adv md record type.
static _getSelectedRecordsByObject(string $a_obj_type, int $a_id, string $a_sub_type="", bool $is_ref_id=true)
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ hasAdvancedMDSettings()

ilObjectMetaDataGUI::hasAdvancedMDSettings ( )
protected

Definition at line 328 of file class.ilObjectMetaDataGUI.php.

References ilContainer\_lookupContainerSetting(), and ilObjectServiceSettingsGUI\CUSTOM_METADATA.

Referenced by getTab(), and setSubTabs().

328  : bool
329  {
330  if ($this->sub_id) {
331  return false;
332  }
333 
335  $this->obj_id,
337  );
338  }
static _lookupContainerSetting(int $a_id, string $a_keyword, ?string $a_default_value=null)
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ initEditForm()

ilObjectMetaDataGUI::initEditForm ( )
protected

Definition at line 455 of file class.ilObjectMetaDataGUI.php.

References ILIAS\Repository\ctrl(), ILIAS\Repository\lng(), and ilAdvancedMDRecordGUI\MODE_EDITOR.

Referenced by edit(), executeCommand(), and update().

456  {
457  $form = new ilPropertyFormGUI();
458  $form->setFormAction($this->ctrl->getFormAction($this, "update"));
459  $form->setTitle($this->lng->txt("meta_tab_advmd"));
460 
461  $this->record_gui = new ilAdvancedMDRecordGUI(
463  $this->obj_type,
464  $this->obj_id,
465  $this->sub_type,
466  (int) $this->sub_id,
467  $this->in_repository
468  );
469 
470  if ($this->adv_type != "") {
471  $this->record_gui->setAdvMdRecordObject($this->adv_id, $this->adv_type, $this->adv_subtype);
472  }
473 
474  $this->record_gui->setPropertyForm($form);
475  $this->record_gui->parse();
476 
477  $form->addCommandButton("update", $this->lng->txt("save"));
478 
479  return $form;
480  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ initTaxonomySettingsForm()

ilObjectMetaDataGUI::initTaxonomySettingsForm ( )
protected

Definition at line 609 of file class.ilObjectMetaDataGUI.php.

References ILIAS\Repository\ctrl(), and ILIAS\Repository\lng().

Referenced by editTaxonomySettings(), and saveTaxonomySettings().

610  {
611  $form = new ilPropertyFormGUI();
612  $form->setFormAction($this->ctrl->getFormAction($this));
613  $form->setTitle($this->lng->txt("tax_tax_settings"));
614  $this->taxonomy_settings_form_manipulator->bindTo($this);
615  call_user_func_array($this->taxonomy_settings_form_manipulator, [$form]);
616  $form->addCommandButton("saveTaxonomySettings", $this->lng->txt("save"));
617 
618  return $form;
619  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ isAdvMDAvailable()

ilObjectMetaDataGUI::isAdvMDAvailable ( )
protected

Definition at line 270 of file class.ilObjectMetaDataGUI.php.

References ilAdvancedMDRecord\_getAssignableObjectTypes(), and getAdvMdRecordObject().

Referenced by getTab(), and setSubTabs().

270  : bool
271  {
272  foreach (ilAdvancedMDRecord::_getAssignableObjectTypes() as $item) {
273  list(, $adv_type, $adv_subtype) = $this->getAdvMdRecordObject();
274 
275  if ($item["obj_type"] == $adv_type) {
276  if ((!$item["sub_type"] && $adv_subtype == "-") ||
277  ($item["sub_type"] == $adv_subtype) ||
278  (is_array($adv_subtype) && in_array($item["sub_type"], $adv_subtype))
279  ) {
280  return true;
281  }
282  }
283  }
284  return false;
285  }
getAdvMdRecordObject()
Get adv md record type.
static _getAssignableObjectTypes(bool $a_include_text=false)
Get assignable object type public.
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ isLOMAvailable()

ilObjectMetaDataGUI::isLOMAvailable ( )
protected

Definition at line 287 of file class.ilObjectMetaDataGUI.php.

References getLOMType().

Referenced by getTab(), and setSubTabs().

287  : bool
288  {
289  $type = $this->getLOMType();
290  if ($type == $this->sub_type) {
291  $type = $this->obj_type . ":" . $type;
292  }
293 
294  return (
295  ($this->obj_id || !$this->obj_type) &&
296  in_array($type, [
297  'blog',
298  "crs",
299  'grp',
300  "file",
301  'dcl',
302  "glo",
303  "svy",
304  "spl",
305  "tst",
306  "qpl",
307  ":mob",
308  'mcst',
309  "webr",
310  "htlm",
311  "lm",
312  "lm:st",
313  "lm:pg",
314  "sahs",
315  "sahs:sco",
316  "sahs:page",
317  'sess',
318  "iass",
319  'exc',
320  'lti',
321  'cmix',
322  'mep',
323  'mep:mpg'
324  ])
325  );
326  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ saveTaxonomySettings()

ilObjectMetaDataGUI::saveTaxonomySettings ( )
protected

Definition at line 621 of file class.ilObjectMetaDataGUI.php.

References ILIAS\Repository\ctrl(), initTaxonomySettingsForm(), and ILIAS\Repository\lng().

621  : void
622  {
623  $form = $this->initTaxonomySettingsForm();
624  if ($form->checkInput()) {
625  $this->taxonomy_settings_form_saver->bindTo($this);
626  call_user_func_array($this->taxonomy_settings_form_saver, [$form]);
627  $this->tpl->setOnScreenMessage('success', $this->lng->txt("msg_obj_modified"), true);
628  $this->ctrl->redirect($this, "editTaxonomySettings");
629  } else {
630  $form->setValuesByPost();
631  $this->tpl->setContent($form->getHTML());
632  }
633  }
+ Here is the call graph for this function:

◆ setAdvMdRecordObject()

ilObjectMetaDataGUI::setAdvMdRecordObject ( int  $adv_id,
string  $adv_type,
string  $adv_subtype = "-" 
)

Set object, that defines the adv md records being used.

Default is $this->object, but the context may set another object (e.g. media pool for media objects)

Definition at line 248 of file class.ilObjectMetaDataGUI.php.

References $adv_id, $adv_subtype, and $adv_type.

248  : void
249  {
250  $this->adv_id = $adv_id;
251  $this->adv_type = $adv_type;
252  $this->adv_subtype = $adv_subtype;
253  }

◆ setRecordFilter()

ilObjectMetaDataGUI::setRecordFilter ( ?array  $filter = null)

Set advanced record filter.

Parameters
?int[]$filter

Definition at line 204 of file class.ilObjectMetaDataGUI.php.

204  : void
205  {
206  $this->record_filter = $filter;
207  }

◆ setSubTabs()

ilObjectMetaDataGUI::setSubTabs ( string  $active)

Definition at line 400 of file class.ilObjectMetaDataGUI.php.

References canEdit(), ILIAS\Repository\ctrl(), hasAdvancedMDSettings(), isAdvMDAvailable(), isLOMAvailable(), ILIAS\Repository\lng(), null, and ILIAS\Repository\tabs().

Referenced by executeCommand().

400  : void
401  {
402  if ($this->isLOMAvailable()) {
403  $this->tabs->addSubTab(
404  "lom",
405  $this->lng->txt("meta_tab_lom"),
406  $this->ctrl->getLinkTargetByClass("ilmdeditorgui", "listSection")
407  );
408  }
409  if ($this->isAdvMDAvailable()) {
410  if ($this->canEdit()) {
411  $this->tabs->addSubTab(
412  "advmd",
413  $this->lng->txt("meta_tab_advmd"),
414  $this->ctrl->getLinkTarget($this, "edit")
415  );
416  }
417  if ($this->hasAdvancedMDSettings()) {
418  $this->tabs->addSubTab(
419  "advmddef",
420  $this->lng->txt("meta_tab_advmd_def"),
421  $this->ctrl->getLinkTargetByClass("iladvancedmdsettingsgui", "showRecords")
422  );
423 
424  $this->tabs->addSubTab(
425  "md_adv_file_list",
426  $this->lng->txt("md_adv_file_list"),
427  $this->ctrl->getLinkTargetByClass("iladvancedmdsettingsgui", "showFiles")
428  );
429  }
430  }
431 
432  if ($this->tax_md_gui != null) {
433  $this->tax_md_gui->addSubTab();
434  }
435 
436  if ($this->tax_obj_gui != null) {
437  $this->tabs->addSubTab(
438  "tax_definition",
439  $this->lng->txt("cntr_taxonomy_definitions"),
440  $this->ctrl->getLinkTargetByClass("ilobjtaxonomygui", "")
441  );
442  }
443 
444  if ($this->taxonomy_settings_form_manipulator != null) {
445  $this->tabs->addSubTab(
446  "tax_settings",
447  $this->lng->txt("tax_tax_settings"),
448  $this->ctrl->getLinkTarget($this, "editTaxonomySettings")
449  );
450  }
451 
452  $this->tabs->activateSubTab($active);
453  }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ setTaxonomySettings()

ilObjectMetaDataGUI::setTaxonomySettings ( Closure  $form_manipulator,
Closure  $form_saver 
)

Definition at line 194 of file class.ilObjectMetaDataGUI.php.

194  : void
195  {
196  $this->taxonomy_settings_form_manipulator = $form_manipulator;
197  $this->taxonomy_settings_form_saver = $form_saver;
198  }

◆ update()

ilObjectMetaDataGUI::update ( )
protected

Definition at line 491 of file class.ilObjectMetaDataGUI.php.

References ILIAS\Repository\ctrl(), edit(), initEditForm(), and ILIAS\Repository\lng().

491  : void
492  {
493  $form = $this->initEditForm();
494  if ($form->checkInput() && $this->record_gui->importEditFormPostValues()) {
495  $this->record_gui->writeEditForm();
496 
497  // Update ECS content
498  if ($this->obj_type == "crs") {
499  $ecs = new ilECSCourseSettings($this->object);
500  $ecs->handleContentUpdate();
501  }
502 
503  $this->tpl->setOnScreenMessage('success', $this->lng->txt("settings_saved"), true);
504  $this->ctrl->redirect($this, "edit");
505  }
506 
507  $form->setValuesByPost();
508  $this->edit($form);
509  }
edit(?ilPropertyFormGUI $a_form=null)
Class ilECSCourseSettings.
+ Here is the call graph for this function:

Field Documentation

◆ $adv_id

int ilObjectMetaDataGUI::$adv_id = null
protected

Definition at line 62 of file class.ilObjectMetaDataGUI.php.

Referenced by getAdvMdRecordObject(), and setAdvMdRecordObject().

◆ $adv_subtype

string ilObjectMetaDataGUI::$adv_subtype = null
protected

Definition at line 64 of file class.ilObjectMetaDataGUI.php.

Referenced by getAdvMdRecordObject(), and setAdvMdRecordObject().

◆ $adv_type

string ilObjectMetaDataGUI::$adv_type = null
protected

Definition at line 63 of file class.ilObjectMetaDataGUI.php.

Referenced by getAdvMdRecordObject(), and setAdvMdRecordObject().

◆ $ctrl

ilCtrl ilObjectMetaDataGUI::$ctrl
protected

Definition at line 31 of file class.ilObjectMetaDataGUI.php.

◆ $in_repository

int ref id or obj id depending on ilObjectMetaDataGUI::$in_repository = true
protected

Definition at line 44 of file class.ilObjectMetaDataGUI.php.

Referenced by __construct().

◆ $in_workspace

bool ilObjectMetaDataGUI::$in_workspace
protected

Definition at line 37 of file class.ilObjectMetaDataGUI.php.

◆ $lng

ilLanguage ilObjectMetaDataGUI::$lng
protected

Definition at line 33 of file class.ilObjectMetaDataGUI.php.

◆ $logger

ilLogger ilObjectMetaDataGUI::$logger = null
protected

Definition at line 35 of file class.ilObjectMetaDataGUI.php.

◆ $md_observers

array ilObjectMetaDataGUI::$md_observers = null
protected

Definition at line 49 of file class.ilObjectMetaDataGUI.php.

◆ $obj_id

int ilObjectMetaDataGUI::$obj_id = 0
protected

◆ $obj_type

string ilObjectMetaDataGUI::$obj_type = ""
protected

Definition at line 47 of file class.ilObjectMetaDataGUI.php.

Referenced by getAdvMdRecordObject(), and getLOMType().

◆ $object

ilObject ilObjectMetaDataGUI::$object
protected

Definition at line 45 of file class.ilObjectMetaDataGUI.php.

Referenced by __construct().

◆ $record_filter

array ilObjectMetaDataGUI::$record_filter = null
protected

Definition at line 69 of file class.ilObjectMetaDataGUI.php.

◆ $record_gui

ilAdvancedMDRecordGUI ilObjectMetaDataGUI::$record_gui = null
protected

Definition at line 54 of file class.ilObjectMetaDataGUI.php.

◆ $ref_id

int ilObjectMetaDataGUI::$ref_id = 0
protected

Definition at line 48 of file class.ilObjectMetaDataGUI.php.

Referenced by getAdvMdRecordObject().

◆ $retriever

ilObjectRequestRetriever ilObjectMetaDataGUI::$retriever
private

Definition at line 70 of file class.ilObjectMetaDataGUI.php.

◆ $sub_id

int ilObjectMetaDataGUI::$sub_id
protected

Definition at line 40 of file class.ilObjectMetaDataGUI.php.

Referenced by __construct().

◆ $sub_type

ilObjectMetaDataGUI::$sub_type
protected

◆ $tabs

ilTabsGUI ilObjectMetaDataGUI::$tabs
protected

Definition at line 32 of file class.ilObjectMetaDataGUI.php.

◆ $tax_md_gui

ilTaxMDGUI ilObjectMetaDataGUI::$tax_md_gui = null
protected

Definition at line 50 of file class.ilObjectMetaDataGUI.php.

◆ $tax_obj_gui

ilObjTaxonomyGUI ilObjectMetaDataGUI::$tax_obj_gui = null
protected

Definition at line 51 of file class.ilObjectMetaDataGUI.php.

Referenced by getTaxonomyObjGUI().

◆ $taxonomy_settings_form_manipulator

Closure ilObjectMetaDataGUI::$taxonomy_settings_form_manipulator = null
protected

Definition at line 52 of file class.ilObjectMetaDataGUI.php.

◆ $taxonomy_settings_form_saver

Closure ilObjectMetaDataGUI::$taxonomy_settings_form_saver = null
protected

Definition at line 53 of file class.ilObjectMetaDataGUI.php.

◆ $tpl

ilGlobalTemplateInterface ilObjectMetaDataGUI::$tpl
protected

Definition at line 34 of file class.ilObjectMetaDataGUI.php.


The documentation for this class was generated from the following file: