ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilExternalAuthUserAttributeMappingRule.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2016 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
9 {
13  protected $attribute = '';
14 
18  protected $external_attribute = '';
19 
23  protected $update_automatically = false;
24 
28  public function getExternalAttribute()
29  {
31  }
32 
37  {
38  $this->external_attribute = $external_attribute;
39  }
40 
44  public function getAttribute()
45  {
46  return $this->attribute;
47  }
48 
52  public function setAttribute($attribute)
53  {
54  $this->attribute = $attribute;
55  }
56 
60  public function isAutomaticallyUpdated()
61  {
63  }
64 
69  {
70  $this->update_automatically = $update_automatically;
71  }
72 }