| 1 |
<?php |
| 2 |
|
| 3 |
use WPCoder\Dashboard\DashboardInitializer; |
| 4 |
use WPCoder\Dashboard\SaveGlobal; |
| 5 |
|
| 6 |
defined( 'ABSPATH' ) || exit; |
| 7 |
|
| 8 |
if ( ! current_user_can( 'unfiltered_html' ) ) { |
| 9 |
wp_die( __( 'You do not have sufficient permissions to access this page.', 'wpcoder' ) ); |
| 10 |
} |
| 11 |
|
| 12 |
|
| 13 |
?> |
| 14 |
|
| 15 |
<div class="wowp-header-wrapper"> |
| 16 |
<?php DashboardInitializer::header(); ?> |
| 17 |
|
| 18 |
<div class="wowp-header-title"> |
| 19 |
<h2><?php esc_html_e( 'Global PHP', 'wpcoder' ); ?></h2> |
| 20 |
</div> |
| 21 |
|
| 22 |
</div> |
| 23 |
|
| 24 |
<?php SaveGlobal::init(); |