本文整理汇总了PHP中UserList::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP UserList::__construct方法的具体用法?PHP UserList::__construct怎么用?PHP UserList::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UserList
的用法示例。
在下文中一共展示了UserList::__construct方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
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: __construct
/**
* @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: __construct
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: __construct
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;
}