コード例 #1
0
 public function __construct($isCreation = false, CollectionEntity $parent = null, $allowTemporaryUploadCollection = false)
 {
     parent::__construct();
     $this->isCreation = $isCreation;
     $this->parent = $parent;
     $this->allowTemporaryUploadCollection = $allowTemporaryUploadCollection;
 }
コード例 #2
0
ファイル: CollectionType.php プロジェクト: shefik/MediaModule
 public function __construct(TemplateCollection $templateCollection, CollectionEntity $parent = null)
 {
     parent::__construct();
     $this->parent = $parent;
     $this->templateCollection = $templateCollection;
 }
コード例 #3
0
ファイル: LicenseType.php プロジェクト: shefik/MediaModule
 public function __construct($isEdit)
 {
     parent::__construct();
     $this->isEdit = $isEdit;
 }