mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-12-22 11:53:53 +02:00
defining the basic code comments for the dashboard-specific
This commit is contained in:
parent
4b7dde5553
commit
c05ae57e91
1 changed files with 20 additions and 6 deletions
|
@ -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. -->
|
Loading…
Reference in a new issue