19 declare(strict_types=1);
60 $this->
ctrl = $DIC->ctrl();
61 $this->
lng = $DIC->language();
62 $this->tpl = $DIC->ui()->mainTemplate();
63 $this->toolbar_gui = $DIC->toolbar();
64 $this->
http = $DIC->http();
66 $this->ui_factory = $DIC->ui()->factory();
67 $this->ui_renderer = $DIC->ui()->renderer();
68 $this->irss = $DIC->resourceStorage();
72 $this->parent_obj_gui->getRefId(),
76 $DIC->ui()->factory(),
77 $DIC->resourceStorage()
81 $this->
lng->loadLanguageModule(
"meta");
86 $next_class = $this->
ctrl->getNextClass($this);
87 $cmd = $this->
ctrl->getCmd();
90 !$this->access_service->hasCurrentUserVisibleAccess() ||
91 !$this->access_service->hasCurrentUserReadAccess()
96 switch ($next_class) {
97 case strtolower(ilMDCopyrightUsageGUI::class):
99 $this->
ctrl->setReturn($this,
'showCopyrightSelection');
102 $this->
ctrl->forwardCommand($gui);
105 case strtolower(ilMDCopyrightImageUploadHandlerGUI::class):
107 $file_id = empty($entry?->copyrightData()?->imageFile()) ?
'' : $entry?->copyrightData()?->imageFile();
113 if (!$cmd || $cmd ===
'view') {
114 $cmd =
'showCopyrightSelection';
126 $has_write = $this->access_service->hasCurrentUserWriteAccess();
132 'showCopyrightSelection',
135 $table_gui->setTitle($this->
lng->txt(
"md_copyright_selection"));
136 $table_gui->parseSelections();
140 foreach ($this->
repository->getAllEntries() as $entry) {
141 if ($entry->id() === $current_id) {
142 $modal = $current_modal;
146 $table_gui->setEditModalSignal($entry->id(), $modal->getShowSignal());
147 $edit_modals[] = $modal;
149 if ($current_id === 0 && !is_null($current_modal)) {
150 $add_modal = $current_modal;
154 $this->toolbar_gui->addComponent($this->ui_factory->button()->standard(
155 $this->
lng->txt(
'md_copyright_add'),
156 $add_modal->getShowSignal()
159 $table_gui->addMultiCommand(
"confirmDeleteEntries", $this->
lng->txt(
"delete"));
160 $table_gui->setSelectAllCheckbox(
"entry_id");
163 $this->tpl->setContent(
164 $table_gui->getHTML() .
165 (isset($add_modal) ? $this->ui_renderer->render($add_modal) :
'') .
166 $this->ui_renderer->render($edit_modals)
173 ->initCopyrightEditModal(
null,
true)
174 ->withRequest($this->
http->request());
176 if (
$data = $modal->getData()) {
179 $data[
'description'],
180 (
bool)
$data[
'outdated'],
181 $data[
'copyright'][
'full_name'],
182 $data[
'copyright'][
'link'],
184 $data[
'copyright'][
'alt_text']
186 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'),
true);
188 $this->
ctrl->redirect($this,
'showCopyrightSelection');
196 if (!count($entry_ids)) {
197 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'select_one'));
204 $c_gui->setFormAction($this->
ctrl->getFormAction($this,
"deleteEntries"));
205 $c_gui->setHeaderText($this->
lng->txt(
"md_delete_cp_sure"));
206 $c_gui->setCancel($this->
lng->txt(
"cancel"),
"showCopyrightSelection");
207 $c_gui->setConfirm($this->
lng->txt(
"confirm"),
"deleteEntries");
210 foreach ($entry_ids as $entry_id) {
211 $entry = $this->
repository->getEntry($entry_id);
212 $c_gui->addItem(
'entry_id[]', (
string) $entry_id, $entry->title());
214 $this->tpl->setContent($c_gui->getHTML());
220 if (!count($entry_ids)) {
221 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'select_one'));
226 foreach ($entry_ids as $entry_id) {
227 $entry = $this->
repository->getEntry($entry_id);
231 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'md_copyrights_deleted'));
240 ->initCopyrightEditModal($entry,
true)
241 ->withRequest($this->
http->request());
243 if (
$data = $modal->getData()) {
248 $data[
'description'],
249 (bool) $data[
'outdated'],
250 $data[
'copyright'][
'full_name'],
251 $data[
'copyright'][
'link'],
253 $data[
'copyright'][
'alt_text']
255 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'),
true);
257 $this->
ctrl->redirect($this,
'showCopyrightSelection');
264 bool $open_on_load =
false 267 $ff = $this->ui_factory->input()->field();
270 ->text($this->
lng->txt(
'title'))
273 ->withMaxLength(255);
277 ->textarea($this->
lng->txt(
'description'))
278 ->
withValue($entry?->description() ??
'');
282 ->radio($this->
lng->txt(
'meta_copyright_usage'))
283 ->withOption(
'0', $this->
lng->txt(
'meta_copyright_in_use'))
284 ->withOption(
'1', $this->
lng->txt(
'meta_copyright_outdated'))
285 ->
withValue((
int) $entry?->isOutdated());
288 $cp_data = $entry?->copyrightData();
291 ->text($this->
lng->txt(
'md_copyright_full_name'))
292 ->
withValue($cp_data?->fullName() ??
'');
296 $this->
lng->txt(
'md_copyright_link'),
297 $this->
lng->txt(
'md_copyright_link_info')
301 $this->
refinery->custom()->transformation(fn($v) => $v instanceof
URI ? $v :
null)
305 ->url($this->
lng->txt(
'md_copyright_image_link'))
306 ->
withValue((
string) $cp_data?->imageLink())
308 fn($v) => $v instanceof
URI ? $v : null
311 $file_id = empty($cp_data?->imageFile()) ?
'' : $cp_data?->imageFile();
315 $this->
lng->txt(
'md_copyright_image_file')
318 ->withAcceptedMimeTypes([MimeType::IMAGE__PNG, MimeType::IMAGE__JPEG]);
319 if ($file_id !==
'') {
320 $image_file = $image_file->withValue([$file_id]);
323 $image_value =
'link_group';
324 if (!is_null($cp_data) && !$cp_data->isImageLink()) {
325 $image_value =
'file_group';
330 'link_group' => $ff->group(
331 [
'image_link' => $image_link],
332 $this->lng->txt(
'md_copyright_image_is_link')
334 'file_group' => $ff->group(
335 [
'image_file' => $image_file],
336 $this->lng->txt(
'md_copyright_image_is_file')
339 $this->
lng->txt(
'md_copyright_image')
345 $this->
lng->txt(
'md_copyright_alt_text'),
346 $this->
lng->txt(
'md_copyright_alt_text_info')
353 'full_name' => $full_name,
356 'alt_text' => $alt_text
358 $this->
lng->txt(
'md_copyright_value')
362 if (!isset($entry)) {
363 $title = $this->
lng->txt(
'md_copyright_add');
364 $post_url = $this->
ctrl->getLinkTarget($this,
'saveEntry');
366 $title = $this->
lng->txt(
'md_copyright_edit');
367 $this->
ctrl->setParameter($this,
'entry_id', $entry->id());
368 $post_url = $this->
ctrl->getLinkTarget($this,
'updateEntry');
369 $this->
ctrl->clearParameters($this);
372 $modal = $this->ui_factory->modal()->roundtrip(
379 $modal = $modal->withOnLoad($modal->getShowSignal());
386 if (!$this->
http->wrapper()->post()->has(
'order')) {
387 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_select_one'),
true);
388 $this->
ctrl->redirect($this,
'showCopyrightSelection');
391 $positions = $this->
http->wrapper()->post()->retrieve(
393 $this->
refinery->kindlyTo()->dictOf(
394 $this->
refinery->kindlyTo()->string()
399 foreach ($positions as $entry_id => $position_ignored) {
400 $ids[] = (
int) $entry_id;
403 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'));
404 $this->
ctrl->redirect($this,
'showCopyrightSelection');
410 if (($image_file = $entry->
copyrightData()->imageFile()) ===
'') {
413 if (
$id = $this->irss->manage()->find($image_file)) {
422 if (($image_file = $entry->
copyrightData()->imageFile()) ===
'') {
426 $data[
'copyright'][
'image'][0] ===
'file_group' &&
427 $image_file === ($data[
'copyright'][
'image'][1][
'image_file'][0] ??
'')
436 $v = $data[
'copyright'][
'image'];
437 if ($v[0] ===
'link_group') {
438 return empty($link = $v[1][
'image_link']) ?
'' : $link;
440 if ($v[0] ===
'file_group') {
441 return $v[1][
'image_file'][0] ??
'';
449 if ($this->
http->wrapper()->query()->has(
'entry_id')) {
450 $entry_id = $this->
http->wrapper()->query()->retrieve(
461 if ($this->
http->wrapper()->post()->has(
'entry_id')) {
462 return $this->
http->wrapper()->post()->retrieve(
464 $this->
refinery->kindlyTo()->listOf(
deleteFile(EntryInterface $entry)
RendererInterface $renderer
repository()
description: > Example for rendering a repository card
extractImageFromData(array $data)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
ilToolbarGUI $toolbar_gui
ilGlobalTemplateInterface $tpl
static http()
Fetches the global http state from ILIAS.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
showCopyrightSelection(int $current_id=0, ?RoundTrip $current_modal=null)
ilObjMDSettingsGUI $parent_obj_gui
RepositoryInterface $repository
deleteFileIfChanged(EntryInterface $entry, array $data)
ilMDSettingsAccessService $access_service
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
initCopyrightEditModal(?EntryInterface $entry=null, bool $open_on_load=false)
__construct(ilObjMDSettingsGUI $parent_obj_gui)
ilMDCopyrightConfigurationGUI: ilMDCopyrightUsageGUI, ilMDCopyrightImageUploadHandlerGUI ...