TYPO3 CMS  TYPO3_6-2
BackendUser.php
Go to the documentation of this file.
1 <?php
3 
23 
30  protected $allowedLanguages = '';
31 
35  protected $dbMountPoints = '';
36 
40  protected $fileMountPoints = '';
41 
45  protected $backendUserGroups;
46 
52  $this->allowedLanguages = $allowedLanguages;
53  }
54 
58  public function getAllowedLanguages() {
60  }
61 
66  public function setDbMountPoints($dbMountPoints) {
67  $this->dbMountPoints = $dbMountPoints;
68  }
69 
73  public function getDbMountPoints() {
74  return $this->dbMountPoints;
75  }
76 
82  $this->fileMountPoints = $fileMountPoints;
83  }
84 
88  public function getFileMountPoints() {
90  }
91 
97  public function isActive() {
98  if ($this->getIsDisabled()) {
99  return FALSE;
100  }
101  $now = new \DateTime('now');
102  return !$this->getStartDateAndTime() && !$this->getEndDateAndTime() || $this->getStartDateAndTime() <= $now && (!$this->getEndDateAndTime() || $this->getEndDateAndTime() > $now);
103  }
104 
109  $this->backendUserGroups = $backendUserGroups;
110  }
111 
115  public function getBackendUserGroups() {
117  }
118 
119 }