/**
  * Creates a new ModerationPostsPage object.
  */
 public function __construct()
 {
     if ($this->postList === null) {
         $this->postList = new ModerationPostList();
     }
     $this->postList->sqlConditions .= $this->sqlConditions;
     parent::__construct();
 }
 /**
  * Creates a new UserGroupMembersListPage object.
  * 
  * @param	integer 	$groupID
  */
 public function __construct($groupID)
 {
     $this->groupID = $groupID;
     parent::__construct();
 }
 public function __construct()
 {
     parent::__construct();
 }
 /**
  * Creates a new SearchResultPage object.
  * 
  * @param	integer		$searchID
  */
 public function __construct($searchID)
 {
     $this->searchID = $searchID;
     parent::__construct();
 }
 /**
  * Creates a new AvatarListPage object.
  */
 public function __construct($avatarID)
 {
     $this->avatarID = $avatarID;
     $this->sqlConditions = "userID = 0 AND groupID IN (0," . implode(',', WCF::getUser()->getGroupIDs()) . ") AND neededPoints <= " . intval(WCF::getUser()->activityPoints);
     parent::__construct();
 }