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


PHP Operation::__construct方法代码示例

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


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

示例1: __construct

 public function __construct($operand = null, $operator = null, $OperationType = null)
 {
     parent::__construct();
     $this->operand = $operand;
     $this->operator = $operator;
     $this->OperationType = $OperationType;
 }
开发者ID:nediam,项目名称:adwords-lib,代码行数:7,代码来源:FeedItemOperation.php

示例2: __construct

 public function __construct($operand = null, $exemptionRequests = null, $operator = null, $OperationType = null)
 {
     parent::__construct();
     $this->operand = $operand;
     $this->exemptionRequests = $exemptionRequests;
     $this->operator = $operator;
     $this->OperationType = $OperationType;
 }
开发者ID:sonicgd,项目名称:google-adwords-api-light,代码行数:8,代码来源:AdGroupCriterionOperation.php

示例3: __construct

 public function __construct($operand = NULL, $operator = NULL, $OperationType = NULL)
 {
     if (get_parent_class('ConversionTrackerOperation')) {
         parent::__construct();
     }
     $this->operand = $operand;
     $this->operator = $operator;
     $this->OperationType = $OperationType;
 }
开发者ID:sambavade,项目名称:google-api-adwords-php,代码行数:9,代码来源:ConversionTrackerService.php

示例4: __construct

 public function __construct($srcPath, $dstPath)
 {
     parent::__construct($srcPath, self::MOVE_NODE);
     $this->dstPath = $dstPath;
 }
开发者ID:frogriotcom,项目名称:jackalope,代码行数:5,代码来源:MoveNodeOperation.php

示例5: __construct

 public function __construct($id, $date, $amount, $type, $description)
 {
     $this->incomeType = $type;
     parent::__construct($id, $date, $amount, $description);
 }
开发者ID:Nirnette,项目名称:accounting,代码行数:5,代码来源:Income.php

示例6: __construct

 public function __construct($operand = NULL, $exemptionRequests = NULL, $operator = NULL, $OperationType = NULL)
 {
     if (get_parent_class('AdGroupAdOperation')) {
         parent::__construct();
     }
     $this->operand = $operand;
     $this->exemptionRequests = $exemptionRequests;
     $this->operator = $operator;
     $this->OperationType = $OperationType;
 }
开发者ID:fertandil87,项目名称:adwords-php-client,代码行数:10,代码来源:AdGroupAdService.php

示例7: __construct

 public function __construct($operand = NULL, $descriptiveName = NULL, $operator = NULL, $OperationType = NULL)
 {
     if (get_parent_class('CreateAccountOperation')) {
         parent::__construct();
     }
     $this->operand = $operand;
     $this->descriptiveName = $descriptiveName;
     $this->operator = $operator;
     $this->OperationType = $OperationType;
 }
开发者ID:sambavade,项目名称:google-api-adwords-php,代码行数:10,代码来源:CreateAccountService.php

示例8: __construct

 /**
  * Creates a new test operation
  *
  * @param  string $from The source path
  * @param  string $to The target path
  */
 public function __construct($from, $to)
 {
     parent::__construct($to);
     $this->from = new Pointer($from);
 }
开发者ID:xp-forge,项目名称:json-patch,代码行数:11,代码来源:MoveOperation.class.php

示例9: __construct

 public function __construct($biddingTransition = NULL, $operand = NULL, $operator = NULL, $OperationType = NULL)
 {
     if (get_parent_class('CampaignOperation')) {
         parent::__construct();
     }
     $this->biddingTransition = $biddingTransition;
     $this->operand = $operand;
     $this->operator = $operator;
     $this->OperationType = $OperationType;
 }
开发者ID:sambavade,项目名称:google-api-adwords-php,代码行数:10,代码来源:CampaignService.php

示例10: __construct

 public function __construct($biddingTransition = NULL, $operand = NULL, $operator = NULL, $OperationType = NULL)
 {
     parent::__construct();
     $this->biddingTransition = $biddingTransition;
     $this->operand = $operand;
     $this->operator = $operator;
     $this->OperationType = $OperationType;
 }
开发者ID:fertandil87,项目名称:adwords-php-client,代码行数:8,代码来源:CampaignService.php


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