ILIAS  release_8 Revision v8.24
ChangedUserFieldAttribute.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
22
28{
29 private string $attributeName;
30 private string $oldValue;
31 private string $newValue;
32
33 public function __construct(string $attributeName, string $oldValue, string $newValue)
34 {
35 $this->attributeName = $attributeName;
36 $this->oldValue = $oldValue;
37 $this->newValue = $newValue;
38 }
39
40 public function getAttributeName(): string
41 {
43 }
44
45 public function getOldValue(): string
46 {
47 return $this->oldValue;
48 }
49
50 public function getNewValue(): string
51 {
52 return $this->newValue;
53 }
54}
__construct(string $attributeName, string $oldValue, string $newValue)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...