ILIAS  trunk Revision v11.0_alpha-2662-g519ff7d528f
class.ilExternalAuthUserAttributeMappingRule.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 {
23  protected string $attribute = '';
24  protected string $external_attribute = '';
25  protected bool $update_automatically = false;
26 
27  public function getExternalAttribute(): string
28  {
30  }
31 
32  public function setExternalAttribute(string $external_attribute): void
33  {
34  $this->external_attribute = $external_attribute;
35  }
36 
37  public function getAttribute(): string
38  {
39  return $this->attribute;
40  }
41 
42  public function setAttribute(string $attribute): void
43  {
44  $this->attribute = $attribute;
45  }
46 
47  public function isAutomaticallyUpdated(): bool
48  {
50  }
51 
52  public function updateAutomatically(bool $update_automatically): void
53  {
54  $this->update_automatically = $update_automatically;
55  }
56 }