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
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
settings.php
11 years ago
admin.php
26 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Represents the view for the administration dashboard. |
| 4 | * |
| 5 | * This includes the header, options, and other information that should provide |
| 6 | * The User Interface to the end user. |
| 7 | * |
| 8 | * @package Advanced_Ads_Admin |
| 9 | * @author Thomas Maier <thomas.maier@webgilde.com> |
| 10 | * @license GPL-2.0+ |
| 11 | * @link http://webgilde.com |
| 12 | * @copyright 2013 Thomas Maier, webgilde GmbH |
| 13 | */ |
| 14 | ?> |
| 15 | |
| 16 | <div class="wrap"> |
| 17 | <h2 style="color:red;"><?php _e('Work in progress', $this->plugin_slug); ?></h2> |
| 18 | <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.', $this->plugin_slug); ?></p> |
| 19 | <?php screen_icon(); ?> |
| 20 | <h1><?php echo esc_html(get_admin_page_title()); ?></h1> |
| 21 | |
| 22 | <h2><?php _e('Ad Condition Overview', $this->plugin_slug); ?></h2> |
| 23 | <pre><?php print_r($ads_by_conditions); ?></pre> |
| 24 | |
| 25 | </div> |
| 26 |