🗂️ File Manager Pro
🖥️ Tipo de Hospedagem:
Vps
📁 Diretório Raiz:
/home
🌐 Servidor:
www.apm-abl.com
👤 Usuário:
apmablcosr
🔐 Sessão:
🔑 Credenciais:
adm_8fdd8bdc / e41d****
📍 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: custom.js
/* Email Encoder */ /*global jQuery, window*/ jQuery(function ($) { 'use strict'; // encoding method function rot13(s) { // source: http://jsfromhell.com/string/rot13 return s.replace(/[a-zA-Z]/g, function (c) { return String.fromCharCode((c <= 'Z' ? 90 : 122) >= (c = c.charCodeAt(0) + 13) ? c : c - 26); }); } /** * EMAIL RELATED LOGIC */ // fetch email from data attribute function fetchEmail(el) { var email = el.getAttribute('data-enc-email'); if (!email) { return null; } // replace [at] sign email = email.replace(/\[at\]/g, '@'); // encode email = rot13(email); return email; } // replace email in title attribute function parseTitle(el) { var title = el.getAttribute('title'); var email = fetchEmail(el); if (title && email) { title = title.replace('{{email}}', email); el.setAttribute('title', title); } } // set input value attribute function setInputValue(el) { var email = fetchEmail(el); if (email) { el.setAttribute('value', email); } } // open mailto link function mailto(el) { var email = fetchEmail(el); if (email) { window.location.href = 'mailto:' + email; } } // revert function revert(el, rtl) { var email = fetchEmail(el); if (email) { rtl.text(email); rtl.removeClass('eeb-rtl'); } } // prepare for copying email document.addEventListener('copy', function(e){ $('a[data-enc-email]').each(function () { var rtl = $(this).find('.eeb-rtl'); if (rtl.text()) { revert(this, rtl); } }); console.log('copy'); }); // set mailto click $('body').on('click', 'a[data-enc-email]', function () { mailto(this); }); // parse title attirbute $('a[data-enc-email]').each(function () { parseTitle(this); }); // parse input fields $('input[data-enc-email]').each(function () { setInputValue(this); }); });
💾 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