ad-display-metabox.php
11 years ago
ad-group-ads-inline-form.php
11 years ago
ad-group-edit.php
11 years ago
ad-group.php
11 years ago
ad-inject-metabox.php
11 years ago
ad-main-metabox.php
11 years ago
ad-output-metabox.php
11 years ago
ad-parameters-metabox.php
11 years ago
ad-visitor-metabox.php
11 years ago
ad_info.php
11 years ago
ad_list_details_column.php
11 years ago
admin.php
12 years ago
debug.php
11 years ago
index.php
12 years ago
overview.php
11 years ago
placements.php
11 years ago
post_ad_settings_metabox.php
11 years ago
settings.php
11 years ago
settings_disable_ads.php
11 years ago
debug.php
23 lines
| 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 |