1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2024-05-15 01:32:11 +03:00
WordPress-Plugin-Boilerplate/plugin-name/trunk/admin/class-plugin-name-admin-loader.php
Tom McFarlin a4fc32fa59 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
2014-04-30 22:34:19 -04:00

29 lines
477 B
PHP

<?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() {
}
}