Done !
Server IP : 162.0.217.223 / Your IP : 216.73.216.168 Web Server : LiteSpeed System : Linux premium269.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : mypckeys ( 1539) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/mypckeys/www/wp-content/plugins/seo-by-rank-math/includes/admin/views/ |
Upload File : |
<?php /** * Dashboard page template. * * @package RankMath * @subpackage RankMath\Admin */ use RankMath\Helpers\Param; use RankMath\Admin\Admin_Helper; defined( 'ABSPATH' ) || exit; $is_network_admin = is_network_admin(); $is_network_active = RankMath\Helper::is_plugin_active_for_network(); $current_tab = $is_network_active && $is_network_admin ? 'help' : Param::get( 'view', 'modules' ); // Header. rank_math()->admin->display_admin_header(); ?> <div class="wrap rank-math-wrap dashboard"> <span class="wp-header-end"></span> <?php rank_math()->admin->display_dashboard_nav(); ?> <?php if ( $is_network_active && ! $is_network_admin && 'help' === $current_tab ) { return; } // phpcs:disable // Display modules activation and deactivation form. if ( 'modules' === $current_tab ) { rank_math()->manager->display_form(); // Others. } else { $file = apply_filters( 'rank_math/admin/dashboard_view', Admin_Helper::get_view( "dashboard-{$current_tab}" ), $current_tab ); if ( file_exists( $file ) ) { include_once $file; } } // phpcs:enable ?> </div>