當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。