mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-12-22 11:53:53 +02: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:
parent
284dc26054
commit
a4fc32fa59
1 changed files with 29 additions and 0 deletions
|
@ -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() {
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in a new issue