This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
footnotes/plugin.class.php
Mark Cheret 3321070f7e footnotes WordPress Plugin first alpha release
- Basic functionality is available
- Tested against WordPress 3.9.1

git-svn-id: https://plugins.svn.wordpress.org/footnotes/trunk@917799 b8457f37-d9ea-0310-8a92-e5e31aec5664
2014-05-20 11:23:45 +00:00

85 lines
1.6 KiB
PHP
Executable file

<?php
/**
* User: she
* Date: 30.04.14
* Time: 16:21
*/
/**
* Class footnotes_class_plugin
*/
class footnotes_class_plugin
{
var $settings, $options_page; /* class attributes */
/**
* @constructor
*/
function __construct()
{
/* load settings only if current wordpress user is admin */
if (is_admin()) {
/* create a new instance of the class settings */
$this->settings = new footnotes_class_settings();
}
/* execute class function: init, admin_init and admin_menu */
add_action('init', array($this, 'init'));
add_action('admin_init', array($this, 'admin_init'));
add_action('admin_menu', array($this, 'admin_menu'));
/* register hook for activating the plugin */
register_activation_hook(__FILE__, array($this, 'activate'));
/* register hook for deactivating the plugin */
register_deactivation_hook(__FILE__, array($this, 'deactivate'));
/* register hook for uninstalling the plugin */
register_uninstall_hook(__FILE__, array(__CLASS__, 'uninstall'));
}
/**
* activates the plugin
*/
function activate()
{
}
/**
* deactivates the plugin
*/
function deactivate()
{
}
/**
* uninstalls the plugin
*/
function uninstall()
{
require_once(PLUGIN_DIR . 'uninstall.php');
}
/**
* initialize function
* called in the class constructor
*/
function init()
{
}
/**
* do admin init stuff
* called in the class constructor
*/
function admin_init()
{
}
/**
* do admin menu stuff
* called in the class constructor
*/
function admin_menu()
{
}
} /* class footnotes_class_plugin */