ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
ChangedUserFieldAttribute.php
Go to the documentation of this file.
1 <?php
2 
3 declare(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  {
42  return $this->attributeName;
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 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(string $attributeName, string $oldValue, string $newValue)