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


PHP Criterion::__construct方法代码示例

本文整理汇总了PHP中Criterion::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP Criterion::__construct方法的具体用法?PHP Criterion::__construct怎么用?PHP Criterion::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Criterion的用法示例。


在下文中一共展示了Criterion::__construct方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 public function __construct($id = null, $type = null, $CriterionType = null)
 {
     parent::__construct();
     $this->id = $id;
     $this->type = $type;
     $this->CriterionType = $CriterionType;
 }
开发者ID:sonicgd,项目名称:google-adwords-api-light,代码行数:7,代码来源:BusinessHour.php

示例2: __construct

 public function __construct($conditions = null, $text = null, $id = null, $type = null, $CriterionType = null)
 {
     parent::__construct();
     $this->conditions = $conditions;
     $this->text = $text;
     $this->id = $id;
     $this->type = $type;
     $this->CriterionType = $CriterionType;
 }
开发者ID:anton-github,项目名称:google-adwords-api-light,代码行数:9,代码来源:Product.php

示例3: __construct

 public function __construct($channelId = null, $channelName = null, $id = null, $type = null, $CriterionType = null)
 {
     parent::__construct();
     $this->channelId = $channelId;
     $this->channelName = $channelName;
     $this->id = $id;
     $this->type = $type;
     $this->CriterionType = $CriterionType;
 }
开发者ID:sonicgd,项目名称:google-adwords-api-light,代码行数:9,代码来源:YouTubeChannel.php

示例4: __construct

 public function __construct($feedId = null, $matchingFunction = null, $id = null, $type = null, $CriterionType = null)
 {
     parent::__construct();
     $this->feedId = $feedId;
     $this->matchingFunction = $matchingFunction;
     $this->id = $id;
     $this->type = $type;
     $this->CriterionType = $CriterionType;
 }
开发者ID:antonsmolin,项目名称:google-ads-api-namespaced,代码行数:9,代码来源:LocationGroups.php

示例5: __construct

 public function __construct($appId = null, $displayName = null, $id = null, $type = null, $CriterionType = null)
 {
     parent::__construct();
     $this->appId = $appId;
     $this->displayName = $displayName;
     $this->id = $id;
     $this->type = $type;
     $this->CriterionType = $CriterionType;
 }
开发者ID:anton-github,项目名称:google-adwords-api-light,代码行数:9,代码来源:MobileApplication.php

示例6: __construct

 public function __construct($mobileAppCategoryId = null, $displayName = null, $id = null, $type = null, $CriterionType = null)
 {
     parent::__construct();
     $this->mobileAppCategoryId = $mobileAppCategoryId;
     $this->displayName = $displayName;
     $this->id = $id;
     $this->type = $type;
     $this->CriterionType = $CriterionType;
 }
开发者ID:anton-github,项目名称:google-adwords-api-light,代码行数:9,代码来源:MobileAppCategory.php

示例7: __construct

 public function __construct($text = null, $locale = null, $id = null, $type = null, $CriterionType = null)
 {
     parent::__construct();
     $this->text = $text;
     $this->locale = $locale;
     $this->id = $id;
     $this->type = $type;
     $this->CriterionType = $CriterionType;
 }
开发者ID:nediam,项目名称:adwords-lib,代码行数:9,代码来源:ProductService.php

示例8: __construct

 public function __construct($name = null, $countryCode = null, $id = null, $type = null, $CriterionType = null)
 {
     parent::__construct();
     $this->name = $name;
     $this->countryCode = $countryCode;
     $this->id = $id;
     $this->type = $type;
     $this->CriterionType = $CriterionType;
 }
开发者ID:anton-github,项目名称:google-adwords-api-light,代码行数:9,代码来源:Carrier.php

示例9: __construct

 public function __construct($userInterestId = null, $userInterestName = null, $id = null, $type = null, $CriterionType = null)
 {
     parent::__construct();
     $this->userInterestId = $userInterestId;
     $this->userInterestName = $userInterestName;
     $this->id = $id;
     $this->type = $type;
     $this->CriterionType = $CriterionType;
 }
开发者ID:anton-github,项目名称:google-adwords-api-light,代码行数:9,代码来源:CriterionUserInterest.php

示例10: __construct

 public function __construct($keywordSetId = null, $name = null, $deprecated = null, $id = null, $type = null, $CriterionType = null)
 {
     parent::__construct();
     $this->keywordSetId = $keywordSetId;
     $this->name = $name;
     $this->deprecated = $deprecated;
     $this->id = $id;
     $this->type = $type;
     $this->CriterionType = $CriterionType;
 }
开发者ID:nediam,项目名称:adwords-lib,代码行数:10,代码来源:KeywordSet.php

示例11: __construct

 public function __construct($verticalId = null, $verticalParentId = null, $path = null, $id = null, $type = null, $CriterionType = null)
 {
     parent::__construct();
     $this->verticalId = $verticalId;
     $this->verticalParentId = $verticalParentId;
     $this->path = $path;
     $this->id = $id;
     $this->type = $type;
     $this->CriterionType = $CriterionType;
 }
开发者ID:nediam,项目名称:adwords-lib,代码行数:10,代码来源:Vertical.php

示例12: __construct

 public function __construct($parameter = null, $criteriaCoverage = null, $criteriaSamples = null, $id = null, $type = null, $CriterionType = null)
 {
     parent::__construct();
     $this->parameter = $parameter;
     $this->criteriaCoverage = $criteriaCoverage;
     $this->criteriaSamples = $criteriaSamples;
     $this->id = $id;
     $this->type = $type;
     $this->CriterionType = $CriterionType;
 }
开发者ID:antonsmolin,项目名称:google-ads-api-namespaced,代码行数:10,代码来源:Webpage.php

示例13: __construct

 public function __construct($userListId = null, $userListName = null, $userListMembershipStatus = null, $id = null, $type = null, $CriterionType = null)
 {
     parent::__construct();
     $this->userListId = $userListId;
     $this->userListName = $userListName;
     $this->userListMembershipStatus = $userListMembershipStatus;
     $this->id = $id;
     $this->type = $type;
     $this->CriterionType = $CriterionType;
 }
开发者ID:antonsmolin,项目名称:google-ads-api-namespaced,代码行数:10,代码来源:CriterionUserList.php

示例14: __construct

 public function __construct($partitionType = null, $parentCriterionId = null, $caseValue = null, $id = null, $type = null, $CriterionType = null)
 {
     parent::__construct();
     $this->partitionType = $partitionType;
     $this->parentCriterionId = $parentCriterionId;
     $this->caseValue = $caseValue;
     $this->id = $id;
     $this->type = $type;
     $this->CriterionType = $CriterionType;
 }
开发者ID:anton-github,项目名称:google-adwords-api-light,代码行数:10,代码来源:ProductPartition.php

示例15: __construct

 public function __construct($locationName = null, $displayType = null, $targetingStatus = null, $parentLocations = null, $id = null, $type = null, $CriterionType = null)
 {
     parent::__construct();
     $this->locationName = $locationName;
     $this->displayType = $displayType;
     $this->targetingStatus = $targetingStatus;
     $this->parentLocations = $parentLocations;
     $this->id = $id;
     $this->type = $type;
     $this->CriterionType = $CriterionType;
 }
开发者ID:anton-github,项目名称:google-adwords-api-light,代码行数:11,代码来源:Location.php


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