1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2024-05-11 07:42:10 +03:00
WordPress-Plugin-Boilerplate/plugin-name/trunk/includes/class-plugin-name-loader.php
2014-05-05 00:18:13 -04:00

67 lines
1.5 KiB
PHP

<?php
/**
* Define a short description for what this class does (no period)
*
* @package Plugin_Name
* @subpackage Plugin_Name/includes
* @author Your Name <email@example.com>
* @license GPL-2.0+
* @link http://example.com
* @copyright 2014 Your Name or Company Name
* @since 1.0.0
*/
/**
* Define a short description for what this class does.
*
* Define a longer description for the purpose of this class.
*
* @package Plugin_Name
* @subpackage Plugin_Name/includes
* @author Your Name <email@example.com>
*/
class Plugin_Name_Loader {
protected $hooks;
public function __construct() {
$this->hooks = array();
}
public function add( $hook, $component, $callback ) {
$this->hooks[] = array(
'hook' => $hook,
'component' => $component,
'callback' => $callback
);
}
/**
* Short description. (use period)
*
* Long description.
*
* @since 1.0.0
*/
public function run() {
/**
* This function is used to define the various hooks that are shared in the
* both the dashboard and the public-facing areas of the plugin. This is
* achieved via dependency injection by passing an instance of Plugin_Name
* into this class.
*
* Each hook then corresponds to a public function defined within the Plugin_Name_Admin
* class.
*/
foreach ( $this->hooks as $plugin_name => $hook ) {
add_action( $hook['hook'], array( $hook['component'], $hook['callback'] ) );
}
}
}