# wp-coder/4.5/includes/pages/4.tools.php

WP Coder – Insert &amp; Manage Code Snippets, version 4.5. 28 lines.

- Page: https://pluginprobe.com/plugins/wp-coder/4.5/code/includes/pages/4.tools.php
- Raw: https://pluginprobe.com/plugins/wp-coder/4.5/raw/includes/pages/4.tools.php
- Modified: 2026-02-14T05:39:58+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.5/code/includes/pages/4.tools.php#L10-L20`.

```php
<?php

use WPCoder\Dashboard\DashboardInitializer;
use WPCoder\Tools\ToolsManager;

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( 'Tools', 'wp-coder' ); ?>
            </h2>
        </div>

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

    </div>


<?php
```
