__construct() public method

public __construct ( $id = null, $isReadOnly = null, $name = null, $description = null, $status = null, $integrationCode = null, $accessReason = null, $accountUserListStatus = null, $membershipLifeSpan = null, $size = null, $sizeRange = null, $sizeForSearch = null, $sizeRangeForSearch = null, $listType = null, $isEligibleForSearch = null, $isEligibleForDisplay = null, $UserListType = null )
コード例 #1
0
 public function __construct($seedUserListId = null, $seedUserListName = null, $seedUserListDescription = null, $seedUserListStatus = null, $seedListSize = null, $id = null, $isReadOnly = null, $name = null, $description = null, $status = null, $integrationCode = null, $accessReason = null, $accountUserListStatus = null, $membershipLifeSpan = null, $size = null, $sizeRange = null, $sizeForSearch = null, $sizeRangeForSearch = null, $listType = null, $isEligibleForSearch = null, $isEligibleForDisplay = null, $UserListType = null)
 {
     parent::__construct();
     $this->seedUserListId = $seedUserListId;
     $this->seedUserListName = $seedUserListName;
     $this->seedUserListDescription = $seedUserListDescription;
     $this->seedUserListStatus = $seedUserListStatus;
     $this->seedListSize = $seedListSize;
     $this->id = $id;
     $this->isReadOnly = $isReadOnly;
     $this->name = $name;
     $this->description = $description;
     $this->status = $status;
     $this->integrationCode = $integrationCode;
     $this->accessReason = $accessReason;
     $this->accountUserListStatus = $accountUserListStatus;
     $this->membershipLifeSpan = $membershipLifeSpan;
     $this->size = $size;
     $this->sizeRange = $sizeRange;
     $this->sizeForSearch = $sizeForSearch;
     $this->sizeRangeForSearch = $sizeRangeForSearch;
     $this->listType = $listType;
     $this->isEligibleForSearch = $isEligibleForSearch;
     $this->isEligibleForDisplay = $isEligibleForDisplay;
     $this->UserListType = $UserListType;
 }
コード例 #2
0
 /**
  * @see	\wcf\data\DatabaseObjectList::__construct()
  */
 public function __construct()
 {
     parent::__construct();
     if (!empty($this->sqlSelects)) {
         $this->sqlSelects .= ',';
     }
     $this->sqlSelects .= "user_avatar.*";
     $this->sqlJoins .= " LEFT JOIN wcf" . WCF_N . "_user_avatar user_avatar ON (user_avatar.avatarID = user_table.avatarID)";
     if (MODULE_USER_RANK) {
         $this->sqlSelects .= ",user_rank.*";
         $this->sqlJoins .= " LEFT JOIN wcf" . WCF_N . "_user_rank user_rank ON (user_rank.rankID = user_table.rankID)";
     }
     // get current location
     $this->sqlSelects .= ", session.controller, session.objectID AS locationObjectID, session.lastActivityTime AS sessionLastActivityTime";
     $this->sqlJoins .= " LEFT JOIN wcf" . WCF_N . "_session session ON (session.userID = user_table.userID)";
 }
コード例 #3
0
 public function __construct($conversionTypes = null, $id = null, $isReadOnly = null, $name = null, $description = null, $status = null, $integrationCode = null, $accessReason = null, $accountUserListStatus = null, $membershipLifeSpan = null, $size = null, $sizeRange = null, $sizeForSearch = null, $sizeRangeForSearch = null, $type = null, $UserListType = null)
 {
     parent::__construct();
     $this->conversionTypes = $conversionTypes;
     $this->id = $id;
     $this->isReadOnly = $isReadOnly;
     $this->name = $name;
     $this->description = $description;
     $this->status = $status;
     $this->integrationCode = $integrationCode;
     $this->accessReason = $accessReason;
     $this->accountUserListStatus = $accountUserListStatus;
     $this->membershipLifeSpan = $membershipLifeSpan;
     $this->size = $size;
     $this->sizeRange = $sizeRange;
     $this->sizeForSearch = $sizeForSearch;
     $this->sizeRangeForSearch = $sizeRangeForSearch;
     $this->type = $type;
     $this->UserListType = $UserListType;
 }
コード例 #4
0
 public function __construct($conversionTypes = NULL, $id = NULL, $isReadOnly = NULL, $name = NULL, $description = NULL, $status = NULL, $accessReason = NULL, $accountUserListStatus = NULL, $membershipLifeSpan = NULL, $size = NULL, $sizeRange = NULL, $type = NULL, $UserListType = NULL)
 {
     if (get_parent_class('RemarketingUserList')) {
         parent::__construct();
     }
     $this->conversionTypes = $conversionTypes;
     $this->id = $id;
     $this->isReadOnly = $isReadOnly;
     $this->name = $name;
     $this->description = $description;
     $this->status = $status;
     $this->accessReason = $accessReason;
     $this->accountUserListStatus = $accountUserListStatus;
     $this->membershipLifeSpan = $membershipLifeSpan;
     $this->size = $size;
     $this->sizeRange = $sizeRange;
     $this->type = $type;
     $this->UserListType = $UserListType;
 }