19 declare(strict_types=1);
37 $document = $this->
repository->getMountInstructionsByLanguage($this->
lng->getUserLanguage());
38 $title = $document->getTitle();
40 $title = $this->
lng->txt(
'webfolder_instructions_titletext');
43 $content_div =
'<div id="' . self::MOUNT_INSTRUCTIONS_CONTENT_ID .
'"></div>';
44 $page = $this->ui_factory->modal()->lightboxTextPage($content_div, $title);
45 $this->
modal = $this->ui_factory->modal()->lightbox($page);
50 return $this->ui_renderer->render($this->
modal);
55 return $this->
modal->getShowSignal()->getId();
62 if (self::$modal_already_rendered) {
70 $DIC->ui()->factory(),
71 $DIC->ui()->renderer(),
75 self::$modal_already_rendered =
true;
76 $js_function =
'<script>function triggerWebDAVModal(api_url){ $.ajax(api_url).done(function(data){ $(document).trigger("' . $instance->getModalShowSignalId(
77 ) .
'", "{}"); $("#' . self::MOUNT_INSTRUCTIONS_CONTENT_ID .
'").html(data);}) }</script>';
79 $webdav_modal_html = $instance->getRenderedModal() . $js_function;
81 $tpl = $DIC->ui()->mainTemplate();
82 $tpl->setVariable(
'WEBDAV_MODAL', $webdav_modal_html);
__construct(protected ilWebDAVMountInstructionsRepositoryImpl $repository, protected Factory $ui_factory, protected Renderer $ui_renderer, protected ilLanguage $lng)
static maybeRenderWebDAVModalInGlobalTpl()
const MOUNT_INSTRUCTIONS_CONTENT_ID
repository()
description: > Example for rendering a repository card
This is how the factory for UI elements looks.
modal(string $title="", string $cancel_label="")
static bool $modal_already_rendered