19 declare(strict_types=1);
44 public function __construct(
protected int $target_ref_id,
protected ?
string $content =
null)
48 $this->definition = $DIC[
'objDefinition'];
50 $this->
language->loadLanguageModule(
'file');
51 $this->
access = $DIC->access();
52 $this->
ctrl = $DIC->ctrl();
53 $this->
ui = $DIC->ui();
55 $this->lom_services = $DIC->learningObjectMetadata();
63 if ($active ===
null) {
64 $active = $this->lom_services->copyrightHelper()->isCopyrightSelectionActive();
69 public function getDropzone(): FileDropzone
71 $this->
ctrl->setParameterByClass(
76 $this->
ctrl->setParameterByClass(
81 $this->
ctrl->setParameterByClass(
88 $post_url = $this->
ctrl->getFormActionByClass(
89 [ilRepositoryGUI::class, ilObjFileGUI::class],
93 $this->
ctrl->clearParameterByClass(ilObjFileGUI::class,
'new_type');
95 $additional_input =
null;
97 $additional_input = $this->getCopyrightSelectionInput(
'set_license_for_all_files');
101 $dropzone = $this->
ui->factory()->dropzone()->file()->wrapper(
102 $this->
language->txt(
'upload_files'),
104 $this->
ui->factory()->legacy()->content($this->content ??
''),
105 $this->
ui->factory()->input()->field()->file(
106 $this->upload_handler,
107 $this->
language->txt(
'upload_files'),
109 $this->
ui->factory()->input()->field()->group([
113 $this->getEmptyStringToNullTransformation()
118 $this->getEmptyStringToNullTransformation()
128 $this->
language->txt(
'upload_files')
136 if ($this->definition->isContainer($obj_type) && $obj_type !==
"orgu") {
137 return $this->
access->checkAccess(
'create_file',
'', $this->target_ref_id,
'file');
145 return $this->
ui->renderer()->render($this->getDropzone());
150 return $this->
ui->factory();
Interface Observer Contains several chained tasks and infos about them.
UploadHandler $upload_handler
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(protected int $target_ref_id, protected ?string $content=null)
Provides fluid interface to RBAC services.
isUploadAllowed(string $obj_type)
language()
description: > Example for rendring a language glyph.
const UPLOAD_ORIGIN_DROPZONE
const PARAM_UPLOAD_ORIGIN
isCopyrightSelectionActive()
LOMServices $lom_services
ilObjectDefinition $definition