3 declare(strict_types=1);
52 $f = $this->
ui->factory();
53 $r = $this->
ui->renderer();
57 $js_function_legacy =
$f->legacy(
'<script>' 58 .
'il.UI.showMountInstructions = function (e, id){' 59 .
"obj = $(e['target']);" 60 .
"obj.siblings().removeClass('engaged disabled ilSubmitInactive').attr('aria-pressed', 'false');" 61 .
"obj.siblings().removeAttr('disabled');" 62 .
"obj.addClass('engaged ilSubmitInactive').attr('aria-pressed', 'true');" 63 .
'$(".instructions").hide();' 64 .
'$("#"+id).show();}</script>');
66 if (count($mount_instructions) === 1) {
67 $content =
$f->legacy(
"<div class='instructions'>" . array_shift($mount_instructions) .
"</div>");
69 return $render_async ? $r->renderAsync($content) : $r->render($content);
72 $view_control_actions = [];
74 $selected = array_key_first($mount_instructions);
76 foreach ($mount_instructions as $title => $text) {
77 foreach ($os as $os_string) {
78 if (stristr($title, $os_string) !==
false) {
85 foreach ($mount_instructions as $title => $text) {
86 if ($title == $selected) {
89 $hidden =
'style="display: none;"';
92 $legacy =
$f->legacy(
"<div id='$title' class='instructions' $hidden>$text</div>")
93 ->withCustomSignal($title,
"il.UI.showMountInstructions(event, '$title');");
95 $view_control_actions[$title] = $legacy->getCustomSignal($title);
97 $components[] = $legacy;
100 $view_control =
$f->viewControl()->mode($view_control_actions,
"mount-instruction-buttons")->withActive($selected);
103 $header_components = [
104 $f->legacy(
"<div class='webdav-view-control'>"),
106 $f->legacy(
"</div>"),
107 $js_function_legacy];
109 $components = array_merge($header_components, $components);
111 return $render_async ? $r->renderAsync($components) : $r->render($components);
117 $instructions = $this->mount_instruction->getMountInstructionsAsArray();
120 $instructions = $document_processor->processMountInstructions($this->lang->txt(
'webfolder_instructions_text'));
121 $instructions = $this->mount_instruction->getMountInstructionsAsArray($instructions);
122 if ($instructions ==
'' || $instructions ==
'-webfolder_instructions_text-') {
123 $instructions = [
"<div class='alert alert-danger'>" . $this->lang->txt(
'error') .
": " . $this->lang->txt(
'webdav_missing_lang') .
"</div>"];
133 $ua = $this->
http->request()->getHeader(
'User-Agent')[0];
135 if (stristr($ua,
'windows') !==
false 136 || strpos($ua,
'microsoft') !==
false) {
140 if (stristr($ua,
'darwin') !==
false 141 || stristr($ua,
'macintosh') !==
false) {
142 return [
'mac',
'osx'];
145 if (stristr($ua,
'linux') !==
false 146 || stristr($ua,
'solaris') !==
false 147 || stristr($ua,
'aix') !==
false 148 || stristr($ua,
'unix') !==
false 149 || stristr($ua,
'gvfs') !==
false This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilWebDAVUriBuilder $uri_builder
ilWebDAVBaseMountInstructions $mount_instruction
buildGUIFromGivenMountInstructions(array $mount_instructions, bool $render_async=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Provides fluid interface to RBAC services.
static http()
Fetches the global http state from ILIAS.
renderMountInstructionsContent()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(ilWebDAVBaseMountInstructions $mount_instruction, ilLanguage $lang, UIServices $ui, Services $http)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
determineOSfromUserAgent()