| @@ -5,20 +5,24 @@ | ||
| 5 | 5 | |
| 6 | 6 | defined( 'ABSPATH' ) || exit; |
| 7 | 7 | |
| 8 | 8 | if ( ! current_user_can( 'unfiltered_html' ) ) { |
| 9 | - wp_die( __( 'You do not have sufficient permissions to access this page.', 'wpcoder' ) ); | |
| 9 | + wp_die( esc_attr__( 'You do not have sufficient permissions to access this page.', 'wp-coder' ) ); | |
| 10 | 10 | } |
| 11 | 11 | |
| 12 | 12 | ?> |
| 13 | 13 | |
| 14 | - <div class="wowp-header-wrapper"> | |
| 15 | - <?php | |
| 16 | - DashboardInitializer::header(); ?> | |
| 14 | + <div class="wowp"> | |
| 15 | + <?php DashboardInitializer::header(); ?> | |
| 17 | 16 | |
| 18 | - <div class="wowp-header-title"> | |
| 19 | - <h2><?php esc_html_e( 'Tools', 'wpcoder' ); ?></h2> | |
| 17 | + <div class="wowp-page-header"> | |
| 18 | + <h2 class="wowp-page-header__title"> | |
| 19 | + <?php esc_html_e( 'Tools', 'wp-coder' ); ?> | |
| 20 | + </h2> | |
| 20 | 21 | </div> |
| 21 | 22 | |
| 23 | + <?php ToolsManager::init(); ?> | |
| 24 | + | |
| 22 | 25 | </div> |
| 23 | 26 | |
| 24 | -<?php ToolsManager::init(); | |
| 27 | + | |
| 28 | +<?php | |