TYPO3 CMS  TYPO3_6-2
ModuleData.php
Go to the documentation of this file.
1 <?php
3 
23 class ModuleData {
24 
29  protected $demand;
30 
34  protected $compareUserList = array();
35 
39  public function getDemand() {
40  return $this->demand;
41  }
42 
47  public function setDemand(\TYPO3\CMS\Beuser\Domain\Model\Demand $demand) {
48  $this->demand = $demand;
49  }
50 
56  public function getCompareUserList() {
57  return array_keys($this->compareUserList);
58  }
59 
67  public function attachUidCompareUser($uid) {
68  $this->compareUserList[$uid] = TRUE;
69  }
70 
77  public function detachUidCompareUser($uid) {
78  unset($this->compareUserList[$uid]);
79  }
80 
81 }
setDemand(\TYPO3\CMS\Beuser\Domain\Model\Demand $demand)
Definition: ModuleData.php:47
$uid
Definition: server.php:36