public function __construct($isCreation = false, CollectionEntity $parent = null, $allowTemporaryUploadCollection = false)
 {
     parent::__construct();
     $this->isCreation = $isCreation;
     $this->parent = $parent;
     $this->allowTemporaryUploadCollection = $allowTemporaryUploadCollection;
 }
Exemplo n.º 2
0
 public function __construct(TemplateCollection $templateCollection, CollectionEntity $parent = null)
 {
     parent::__construct();
     $this->parent = $parent;
     $this->templateCollection = $templateCollection;
 }
Exemplo n.º 3
0
 public function __construct($isEdit)
 {
     parent::__construct();
     $this->isEdit = $isEdit;
 }