1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2024-04-28 17:33:16 +03:00

defining the basic code comments for the dashboard-specific

This commit is contained in:
Tom McFarlin 2014-04-30 22:55:06 -04:00
parent 4b7dde5553
commit c05ae57e91

View file

@ -1,10 +1,24 @@
<?php
/**
* @TEAM http://make.wordpress.org/core/handbook/inline-documentation-standards/php-documentation-standards/#1-functions-and-class-methods
* @TODO
* Define a short description for what this file does.
*
* @package Plugin_Name
* @author Your Name <email@example.com>
* @since x.x.x
* @package TODO
*/
/**
* @TODO
* Define a short description for what this file does.
*
* Define a longer description for the purpose of this file.
*
* @package TODO
* @author Your Name <your@email.com>
* @license GPL-2.0+
* @link http://example.com
* @copyright 2014 Your Name or Company Name
*/
* @link URL
* @copyright 2014 Your Name of Your Company Name
*/
?>
<!-- This file is used to markup the dashboard-specific aspects of the plugin. -->