1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2025-04-19 05:35:36 +03:00

renaming 'plugin-boilerplate' to 'plugin-name' to be more consistent with the naming conventions of the class file

related #48
This commit is contained in:
Tom McFarlin 2013-05-15 09:46:06 -04:00
parent bc86970807
commit 373531d393
15 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,22 @@
<?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
* @author TODO
* @license GPL-2.0+
* @link TODO
* @since 1.0.0
*/
?>
<div class="wrap">
<?php screen_icon(); ?>
<h2><?php echo esc_html( get_admin_page_title() ); ?></h2>
<!-- TODO: Provide markup for your options page here. -->
</div>

View file

@ -0,0 +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. -->