| 1 |
<?php |
| 2 |
/** |
| 3 |
* the view for the debug page |
| 4 |
*/ |
| 5 |
?> |
| 6 |
|
| 7 |
<div class="wrap"> |
| 8 |
<h2 style="color:red;"><?php _e('Work in progress', ADVADS_SLUG); ?></h2> |
| 9 |
<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> |
| 10 |
<?php screen_icon(); ?> |
| 11 |
<h1><?php echo esc_html(get_admin_page_title()); ?></h1> |
| 12 |
|
| 13 |
<h2><?php _e('Settings', ADVADS_SLUG); ?></h2> |
| 14 |
<pre><?php print_r($plugin_options); ?></pre> |
| 15 |
|
| 16 |
<h2><?php _e('Ad Condition Overview', ADVADS_SLUG); ?></h2> |
| 17 |
<pre><?php print_r($ads_by_conditions); ?></pre> |
| 18 |
|
| 19 |
<h2><?php _e('Ad Placements', ADVADS_SLUG); ?></h2> |
| 20 |
<pre><?php print_r($ad_placements); ?></pre> |
| 21 |
|
| 22 |
</div> |
| 23 |
|