2013-10-30 22:49:01 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Represents the view for the administration dashboard.
|
|
|
|
*
|
|
|
|
* This includes the header, options, and other information that should provide
|
|
|
|
* The User Interface to the end user.
|
|
|
|
*
|
|
|
|
* @package Plugin_Name
|
|
|
|
* @author Your Name <email@example.com>
|
|
|
|
* @license GPL-2.0+
|
|
|
|
* @link http://example.com
|
2014-01-02 23:42:35 +02:00
|
|
|
* @copyright 2014 Your Name or Company Name
|
2013-10-30 22:49:01 +02:00
|
|
|
*/
|
|
|
|
?>
|
|
|
|
|
|
|
|
<div class="wrap">
|
|
|
|
|
|
|
|
<h2><?php echo esc_html( get_admin_page_title() ); ?></h2>
|
|
|
|
|
2013-11-16 19:30:18 +02:00
|
|
|
<!-- @TODO: Provide markup for your options page here. -->
|
2013-10-30 22:49:01 +02:00
|
|
|
|
|
|
|
</div>
|