TYPO3 CMS  TYPO3_6-2
Demand.php
Go to the documentation of this file.
1 <?php
3 
23 
27  const ALL = 0;
31  const USERTYPE_ADMINONLY = 1;
35  const USERTYPE_USERONLY = 2;
39  const STATUS_ACTIVE = 1;
43  const STATUS_INACTIVE = 2;
47  const LOGIN_SOME = 1;
51  const LOGIN_NONE = 2;
55  protected $userName = '';
56 
60  protected $userType = self::ALL;
61 
65  protected $status = self::ALL;
66 
70  protected $logins = 0;
71 
75  protected $backendUserGroup;
76 
81  public function setUserName($userName) {
82  $this->userName = $userName;
83  }
84 
88  public function getUserName() {
89  return $this->userName;
90  }
91 
96  public function setUserType($userType) {
97  $this->userType = $userType;
98  }
99 
103  public function getUserType() {
104  return $this->userType;
105  }
106 
111  public function setStatus($status) {
112  $this->status = $status;
113  }
114 
118  public function getStatus() {
119  return $this->status;
120  }
121 
126  public function setLogins($logins) {
127  $this->logins = $logins;
128  }
129 
133  public function getLogins() {
134  return $this->logins;
135  }
136 
141  $this->backendUserGroup = $backendUserGroup;
142  }
143 
147  public function getBackendUserGroup() {
149  }
150 
151 }
setBackendUserGroup($backendUserGroup)
Definition: Demand.php:140