mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-12-22 20:03:53 +02:00
adding docblocks to the views
This commit is contained in:
parent
849c147bd1
commit
45f6b3e691
2 changed files with 34 additions and 2 deletions
|
@ -1,8 +1,24 @@
|
||||||
|
<?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 PluginName
|
||||||
|
* @subpackage views
|
||||||
|
* @author TODO
|
||||||
|
* @license GPL-2.0+
|
||||||
|
* @link TODO
|
||||||
|
* @version 1.0.0
|
||||||
|
* @since 1.0.0
|
||||||
|
*/
|
||||||
|
?>
|
||||||
<div class="wrap">
|
<div class="wrap">
|
||||||
|
|
||||||
<?php screen_icon(); ?>
|
<?php screen_icon(); ?>
|
||||||
<h2><?php echo esc_html( get_admin_page_title() ); ?></h2>
|
<h2><?php echo esc_html( get_admin_page_title() ); ?></h2>
|
||||||
|
|
||||||
<!-- TODO: Provide markup for your options page here. -->
|
<!-- TODO: Provide markup for your options page here. -->
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1 +1,17 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Represents the view for the public-facing component of the plugin.
|
||||||
|
*
|
||||||
|
* This typically includes any information, if any, that is rendered to the
|
||||||
|
* frontend of the theme when the plugin is activated.
|
||||||
|
*
|
||||||
|
* @package PluginName
|
||||||
|
* @subpackage views
|
||||||
|
* @author TODO
|
||||||
|
* @license GPL-2.0+
|
||||||
|
* @link TODO
|
||||||
|
* @version 1.0.0
|
||||||
|
* @since 1.0.0
|
||||||
|
*/
|
||||||
|
?>
|
||||||
<!-- This file is used to markup the public facing aspect of the plugin. -->
|
<!-- This file is used to markup the public facing aspect of the plugin. -->
|
Loading…
Reference in a new issue