mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-11-05 13:22:58 +02:00
a4fc32fa59
eventually, this class will be responsible for defining all of the hooks for the admin-facing side of the plugin
29 lines
477 B
PHP
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() {
|
|
|
|
}
|
|
|
|
} |