📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 11:28:07
📂
/ (Root)
/
home
/
supecsoq
/
public_html
/
domains
/
migalexpark.com
/
wp-content
/
plugins
/
user-registration
/
includes
/
admin
/
views
📍 /home/supecsoq/public_html/domains/migalexpark.com/wp-content/plugins/user-registration/includes/admin/views
🔄 Refresh
✏️
Editing: html-admin-page-status.php
Writable
<?php /** * Admin View: Page - Status */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } $current_tab = ! empty( $_REQUEST['tab'] ) ? sanitize_title( $_REQUEST['tab'] ) : 'logs'; $tabs = array( 'logs' => __( 'Logs', 'user-registration' ), ); $tabs = apply_filters( 'user-registration_admin_status_tabs', $tabs ); ?> <div class="wrap user-registration"> <nav class="nav-tab-wrapper woo-nav-tab-wrapper"> <?php foreach ( $tabs as $name => $label ) { echo '<a href="' . admin_url( 'admin.php?page=user-registration-status&tab=' . $name ) . '" class="nav-tab '; if ( $current_tab == $name ) { echo 'nav-tab-active'; } echo '">' . $label . '</a>'; } ?> </nav> <h1 class="screen-reader-text"><?php echo esc_html( $tabs[ $current_tab ] ); ?></h1> <?php UR_Admin_Status::status_logs(); ?> </div>
💾 Save Changes
❌ Cancel