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