ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
UserFieldAttributesChangeListener.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 
27 {
28  protected Language $lng;
29  protected Container $dic;
30 
31  public function __construct(Container $dic)
32  {
33  $this->dic = $dic;
34  $this->lng = $dic->language();
35  }
36 
44  abstract public function getDescriptionForField(string $fieldName, string $attribute): ?string;
45 
51  abstract public function getComponentName(): string;
52 }
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:35
getDescriptionForField(string $fieldName, string $attribute)
Should return a description for a user profile field if the listener is interested in a change of a f...
language()
Get interface to the i18n service.
Definition: Container.php:95