public function __construct()
 {
     parent::__construct();
 }
 public function __construct($CustomCriteriaNodeType = NULL)
 {
     if (get_parent_class('CustomCriteriaLeaf')) {
         parent::__construct();
     }
     $this->CustomCriteriaNodeType = $CustomCriteriaNodeType;
 }
示例#3
0
 public function __construct($CustomCriteriaNodeType = null)
 {
     parent::__construct();
     $this->CustomCriteriaNodeType = $CustomCriteriaNodeType;
 }
 public function __construct($logicalOperator = NULL, $children = NULL, $CustomCriteriaNodeType = NULL)
 {
     if (get_parent_class('CustomCriteriaSet')) {
         parent::__construct();
     }
     $this->logicalOperator = $logicalOperator;
     $this->children = $children;
     $this->CustomCriteriaNodeType = $CustomCriteriaNodeType;
 }