3 declare(strict_types=1);
40 public function __construct(
int $target_ref_id,
string $content = null)
44 $this->definition = $DIC[
'objDefinition'];
46 $this->
access = $DIC->access();
47 $this->
ctrl = $DIC->ctrl();
48 $this->
ui = $DIC->ui();
55 public function getDropzone(): FileDropzone
57 $this->
ctrl->setParameterByClass(
62 $this->
ctrl->setParameterByClass(
67 $this->
ctrl->setParameterByClass(
74 $post_url = $this->
ctrl->getFormActionByClass(
75 [ilRepositoryGUI::class, ilObjFileGUI::class],
79 $this->
ctrl->clearParameterByClass(ilObjFileGUI::class,
'new_type');
82 $dropzone = $this->
ui->factory()->dropzone()->file()->wrapper(
83 $this->
language->txt(
'upload_files'),
85 $this->
ui->factory()->legacy($this->content ??
''),
86 $this->
ui->factory()->input()->field()->file(
87 $this->upload_handler,
90 $this->
ui->factory()->input()->field()->group([
103 )->withSubmitCaption(
104 $this->
language->txt(
'upload_files')
112 if ($this->definition->isContainer($obj_type) && $obj_type !==
"orgu") {
113 return $this->
access->checkAccess(
'create_file',
'', $this->target_ref_id,
'file');
121 return $this->
ui->renderer()->render($this->getDropzone());
UploadHandler $upload_handler
static getUploadSizeLimitBytes()
parses the objects.xml it handles the xml-description of all ilias objects
Provides fluid interface to RBAC services.
__construct(int $target_ref_id, string $content=null)
isUploadAllowed(string $obj_type)
const UPLOAD_ORIGIN_DROPZONE
const PARAM_UPLOAD_ORIGIN
ilObjectDefinition $definition