__construct() public method

public __construct ( $operator = null, $OperationType = null )
コード例 #1
0
 public function __construct($operand = null, $operator = null, $OperationType = null)
 {
     parent::__construct();
     $this->operand = $operand;
     $this->operator = $operator;
     $this->OperationType = $OperationType;
 }
コード例 #2
0
 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;
 }
コード例 #3
0
 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;
 }
コード例 #4
0
 public function __construct($operand = NULL, $operator = NULL, $OperationType = NULL)
 {
     if (get_parent_class('CampaignTargetOperation')) {
         parent::__construct();
     }
     $this->operand = $operand;
     $this->operator = $operator;
     $this->OperationType = $OperationType;
 }
コード例 #5
0
 public function __construct($srcPath, $dstPath)
 {
     parent::__construct($srcPath, self::MOVE_NODE);
     $this->dstPath = $dstPath;
 }
コード例 #6
0
ファイル: Income.php プロジェクト: Nirnette/accounting
 public function __construct($id, $date, $amount, $type, $description)
 {
     $this->incomeType = $type;
     parent::__construct($id, $date, $amount, $description);
 }
コード例 #7
0
 public function __construct($operand = NULL, $operator = NULL, $OperationType = NULL)
 {
     if (get_parent_class('AdExtensionOverrideOperation')) {
         parent::__construct();
     }
     $this->operand = $operand;
     $this->operator = $operator;
     $this->OperationType = $OperationType;
 }
コード例 #8
0
 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;
 }
コード例 #9
0
 public function __construct($operand = NULL, $operator = NULL, $OperationType = NULL)
 {
     if (get_parent_class('ManagedCustomerOperation')) {
         parent::__construct();
     }
     $this->operand = $operand;
     $this->operator = $operator;
     $this->OperationType = $OperationType;
 }
コード例 #10
0
 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;
 }
コード例 #11
0
 /**
  * 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);
 }
コード例 #12
0
 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;
 }
コード例 #13
0
 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;
 }