ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilDclPluginFieldModel.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 {
23  public function getValidFieldProperties(): array
24  {
26  }
27 
31  public function getCustomValidFieldProperties(): array
32  {
33  return [];
34  }
35 
39  public function allowFilterInListView(): bool
40  {
41  return false;
42  }
43 
44  public function getPresentationTitle(): string
45  {
46  global $DIC;
47  $plugin = $DIC["component.factory"]->getPlugin(ilDclFieldTypePlugin::getPluginId($this->getDatatype()->getTitle()));
48  if (str_ends_with($plugin->txt('field_type_name'), 'field_type_name-')) {
49  return $plugin->getPluginName();
50  }
51  return $plugin->txt('field_type_name');
52  }
53 
54  public function getPresentationDescription(): string
55  {
56  global $DIC;
57  $plugin = $DIC["component.factory"]->getPlugin(ilDclFieldTypePlugin::getPluginId($this->getDatatype()->getTitle()));
58  if (str_ends_with($plugin->txt('field_type_info'), 'field_type_info-')) {
59  return '';
60  }
61  return $plugin->txt('field_type_info');
62  }
63 }
getCustomValidFieldProperties()
Method for adding custom fields to plugins.
static getPluginId(string $datatype)
global $DIC
Definition: shib_login.php:22