d25f770bc5
- Update: Easier usage of the public plugin name in translations - Update: New Layout for the settings page to group similar settings to get a better overview - Update: Display settings submit button only if there is at least 1 editable setting in the current tab - Add: setting where the reference container appears on public pages (needs some corrections!) - Bugfix: displays only one reference container in front of the footer on category pages git-svn-id: https://plugins.svn.wordpress.org/footnotes/trunk@918851 b8457f37-d9ea-0310-8a92-e5e31aec5664
38 lines
No EOL
932 B
PHP
38 lines
No EOL
932 B
PHP
<?php
|
|
/**
|
|
* Created by Stefan Herndler.
|
|
* User: Stefan
|
|
* Date: 15.05.14
|
|
* Time: 16:21
|
|
* Version: 1.0.6
|
|
* Since: 1.0
|
|
*/
|
|
|
|
/* check if the wordpress function to uninstall plugins is active */
|
|
if (!defined('WP_UNINSTALL_PLUGIN')) {
|
|
header('Status: 403 Forbidden');
|
|
header('HTTP/1.1 403 Forbidden');
|
|
exit();
|
|
}
|
|
|
|
/*
|
|
* requires the defines of the plugin
|
|
* @since 1.0.6
|
|
*/
|
|
require_once(dirname(__FILE__) . '/defines.php');
|
|
|
|
/* uninstalling the plugin is only allowed for logged in users */
|
|
if (!is_user_logged_in()) {
|
|
wp_die(__('You must be logged in to run this script.', FOOTNOTES_PLUGIN_NAME));
|
|
}
|
|
|
|
/* current user needs the permission to (un)install plugins */
|
|
if (!current_user_can('install_plugins')) {
|
|
wp_die(__('You do not have permission to run this script.', FOOTNOTES_PLUGIN_NAME));
|
|
}
|
|
|
|
/*
|
|
* delete the settings container in the database
|
|
* @since 1.0.6
|
|
*/
|
|
delete_option(FOOTNOTE_SETTINGS_CONTAINER); |