Trial::__construct PHP Method

__construct() public method

public __construct ( $id = null, $baseCampaignId = null, $draftId = null, $budgetId = null, $name = null, $startDate = null, $endDate = null, $trafficSplitPercent = null, $status = null, $trialCampaignId = null )
        public function __construct($id = null, $baseCampaignId = null, $draftId = null, $budgetId = null, $name = null, $startDate = null, $endDate = null, $trafficSplitPercent = null, $status = null, $trialCampaignId = null)
        {
            $this->id = $id;
            $this->baseCampaignId = $baseCampaignId;
            $this->draftId = $draftId;
            $this->budgetId = $budgetId;
            $this->name = $name;
            $this->startDate = $startDate;
            $this->endDate = $endDate;
            $this->trafficSplitPercent = $trafficSplitPercent;
            $this->status = $status;
            $this->trialCampaignId = $trialCampaignId;
        }

Usage Example

コード例 #1
0
ファイル: ecrflib.php プロジェクト: uhtoff/eCRF
 public function __construct($page)
 {
     parent::__construct($page);
 }