| 1 |
<?php |
| 2 |
/** |
| 3 |
* the view for the debug page |
| 4 |
*/ |
| 5 |
?><div class="wrap"> |
| 6 |
<h2 style="color:red;"><?php _e( 'Work in progress', ADVADS_SLUG ); ?></h2> |
| 7 |
<p><?php _e( 'This screen is work in progress. You can use the information if you understand them, but there is nothing to do here yet.', ADVADS_SLUG ); ?></p> |
| 8 |
<?php screen_icon(); ?> |
| 9 |
<h1><?php echo esc_html( get_admin_page_title() ); ?></h1> |
| 10 |
|
| 11 |
<h2><?php _e( 'Settings', ADVADS_SLUG ); ?></h2> |
| 12 |
<pre><?php print_r( $plugin_options ); ?></pre> |
| 13 |
|
| 14 |
<h2><?php _e( 'Ad Placements', ADVADS_SLUG ); ?></h2> |
| 15 |
<pre><?php print_r( $ad_placements ); ?></pre> |
| 16 |
|
| 17 |
<?php do_action('advanced-ads-debug-after', $plugin_options); ?> |
| 18 |
</div> |