当前位置: 首页>>代码示例>>PHP>>正文


PHP UserList::__construct方法代码示例

本文整理汇总了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;
 }
开发者ID:sonicgd,项目名称:google-adwords-api-light,代码行数:26,代码来源:SimilarUserList.php

示例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)";
 }
开发者ID:nick-strohm,项目名称:WCF,代码行数:19,代码来源:UserProfileList.class.php

示例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;
 }
开发者ID:anton-github,项目名称:google-adwords-api-light,代码行数:20,代码来源:BasicUserList.php

示例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;
 }
开发者ID:sambavade,项目名称:google-api-adwords-php,代码行数:19,代码来源:UserListService.php


注:本文中的UserList::__construct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。