# wp-coder/4.2/includes/pages/5.global-php.php

WP Coder – Insert &amp; Manage Code Snippets, version 4.2. 29 lines.

- Page: https://pluginprobe.com/plugins/wp-coder/4.2/code/includes/pages/5.global-php.php
- Raw: https://pluginprobe.com/plugins/wp-coder/4.2/raw/includes/pages/5.global-php.php
- Modified: 2025-08-15T10:41:44+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wp-coder/4.2/code/includes/pages/5.global-php.php#L10-L20`.

```php
<?php

use WPCoder\Dashboard\DashboardInitializer;
use WPCoder\Dashboard\SaveGlobal;

defined( 'ABSPATH' ) || exit;

if ( ! current_user_can( 'unfiltered_html' ) ) {
	wp_die( esc_attr__( 'You do not have sufficient permissions to access this page.', 'wp-coder' ) );
}


?>

    <div class="wowp">
	    <?php DashboardInitializer::header(); ?>

        <div class="wowp-page-header">
            <h2 class="wowp-page-header__title">
			    <?php esc_html_e( 'Global PHP', 'wp-coder' ); ?>
            </h2>
        </div>

        <?php SaveGlobal::init(); ?>

    </div>

<?php

```
