ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilDclPluginFieldRepresentation.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 {
23  protected function buildFieldCreationInput(ilObjDataCollection $dcl, string $mode = 'create'): ?ilRadioOption
24  {
25  $opt = parent::buildFieldCreationInput($dcl, $mode);
26 
27  // only show, when element is created
28  if (get_called_class() == 'ilDclPluginFieldRepresentation') {
29  $plugins = $this->component_repository->getPluginSlotById(ilDclFieldTypePlugin::SLOT_ID)->getActivePlugins();
30  $options = [];
31  foreach ($plugins as $plugin) {
32  $plugin_data = $this->component_factory->getPlugin($plugin->getId());
33  $options[$plugin_data->getPluginName()] = $plugin_data->getPluginName();
34  }
35 
36  if (count($options) > 0) {
37  $plugin_selection = new ilSelectInputGUI(
38  $this->lng->txt('dcl_plugin_hooks'),
40  );
41  $plugin_selection->setOptions($options);
42  $opt->addSubItem($plugin_selection);
43  if ($mode == "edit") {
44  $plugin_selection->setDisabled(true);
45  } else {
46  }
47  } else {
48  return null;
49  }
50  }
51 
52  return $opt;
53  }
54 }
This class represents an option in a radio group.
This class represents a selection list property in a property form.
setOptions(array $a_options)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
buildFieldCreationInput(ilObjDataCollection $dcl, string $mode='create')