1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2024-04-29 09:53:16 +03:00

providing a first pass at the docblocks for the admin loader

eventually, this class will be responsible for defining all of the hooks for the admin-facing side of the plugin
This commit is contained in:
Tom McFarlin 2014-04-30 22:34:19 -04:00
parent 284dc26054
commit a4fc32fa59

View file

@ -0,0 +1,29 @@
<?php
/**
* @TODO
* Define a short description for what this class does.
*
* @since x.x.x
* @package TODO
*/
/**
* @TODO:
* Define a short description for what this class does.
*
* Define a longer description for the purpose of this class.
*
* @package TODO
* @author Your Name <your@email.com>
* @license GPL-2.0+
* @link URL
* @copyright 2014 Your Name of Your Company Name
*/
class Plugin_Name_Admin_Loader {
public function run() {
}
}