mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-11-05 05:12:57 +02:00
37 lines
853 B
PHP
37 lines
853 B
PHP
<?php
|
|
|
|
/**
|
|
* Short description (no period for file headers)
|
|
*
|
|
* Long description.
|
|
*
|
|
* @package Plugin_Name
|
|
* @subpackage Plugin_Name/includes
|
|
* @author Your Name <email@example.com>
|
|
*/
|
|
|
|
/**
|
|
* Short description (no period for file headers)
|
|
*
|
|
* Long description.
|
|
*
|
|
* @author Your Name <email@example.com>
|
|
* @license GPL-2.0+
|
|
* @link http://example.com
|
|
* @copyright 2014 Your Name or Company Name
|
|
*/
|
|
class Plugin_Name {
|
|
|
|
/**
|
|
* This class is used to define common functionality that exists between
|
|
* both the dashboard and the public-facing side of the website.
|
|
*
|
|
* If any hooks are defined in this class, then they should be defined
|
|
* in their respective Loader classes (that is, Plugin_Name_Admin_Loader
|
|
* or Plugin_Name_Loader).
|
|
*
|
|
* An instance of this class should then be passed to the loader
|
|
*/
|
|
|
|
}
|