settings delete button
git-svn-id: http://plugins.svn.wordpress.org/wp-ffpc/trunk@677978 b8457f37-d9ea-0310-8a92-e5e31aec5664
This commit is contained in:
parent
e054f5870b
commit
3c193b2523
1 changed files with 45 additions and 3 deletions
48
wp-ffpc.php
48
wp-ffpc.php
|
@ -11,8 +11,6 @@ License: GPL2
|
|||
|
||||
/* Copyright 2010-2013 Peter Molnar (email : hello@petermolnar.eu )
|
||||
|
||||
Many thanks to contributor Mark Costlow <cheeks@swcp.com>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License, version 2, as
|
||||
published by the Free Software Foundation.
|
||||
|
@ -68,6 +66,7 @@ define ( 'WP_FFPC_SERVER_SEPARATOR', ':' );
|
|||
define ( 'WP_FFPC_DONATION_LINK', 'https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=XU3DG7LLA76WC' );
|
||||
define ( 'WP_FFPC_FILE' , plugin_basename(__FILE__) );
|
||||
define ( 'WP_FFPC_PLUGIN' , 'wp-ffpc/wp-ffpc.php' );
|
||||
define ( 'WP_FFPC_VERSION' , '0.5' );
|
||||
|
||||
if ( ! function_exists( 'is_plugin_active_for_network' ) )
|
||||
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
||||
|
@ -191,6 +190,14 @@ if (!class_exists('WPFFPC')) {
|
|||
|
||||
header( "Location: ". $this->settingslink ."&saved=true" );
|
||||
}
|
||||
|
||||
/* save parameter updates, if there are any */
|
||||
if ( isset($_POST[WP_FFPC_PARAM . '-delete']) )
|
||||
{
|
||||
$this->delete_options();
|
||||
$this->status = 2;
|
||||
header( "Location: ". $this->settingslink ."&deleted=true" );
|
||||
}
|
||||
|
||||
if ( $this->network )
|
||||
$optionspage = 'settings.php';
|
||||
|
@ -221,6 +228,13 @@ if (!class_exists('WPFFPC')) {
|
|||
<div id='setting-error-settings_updated' class='updated settings-error'><p><strong>Settings saved.</strong></p></div>
|
||||
<?php endif;
|
||||
|
||||
/**
|
||||
* if options were saved
|
||||
*/
|
||||
if ($_GET['deleted']=='true' || $this->status == 2) : ?>
|
||||
<div id='setting-error-options_deleted' class='error'><p><strong>Plugin options deleted.</strong></p></div>
|
||||
<?php endif;
|
||||
|
||||
/**
|
||||
* the admin panel itself
|
||||
*/
|
||||
|
@ -516,7 +530,10 @@ if (!class_exists('WPFFPC')) {
|
|||
<pre><?php echo $nginx; ?></pre>
|
||||
</fieldset>
|
||||
|
||||
<p class="clearcolumns"><input class="button-primary" type="submit" name="<?php echo WP_FFPC_PARAM; ?>-save" id="<?php echo WP_FFPC_PARAM; ?>-save" value="Save Changes" /></p>
|
||||
<p class="clearcolumns">
|
||||
<input class="button-primary" type="submit" name="<?php echo WP_FFPC_PARAM; ?>-save" id="<?php echo WP_FFPC_PARAM; ?>-save" value="Save Changes" />
|
||||
<input class="button-secondary" style="float: right" type="submit" name="<?php echo WP_FFPC_PARAM; ?>-delete" id="<?php echo WP_FFPC_PARAM; ?>-delete" value="Delete options from DB" />
|
||||
</p>
|
||||
</form>
|
||||
<?php
|
||||
|
||||
|
@ -578,6 +595,15 @@ if (!class_exists('WPFFPC')) {
|
|||
$this->save_settings( false, true );
|
||||
//$this->generate_config ( true );
|
||||
}
|
||||
|
||||
/**
|
||||
* delete options from database
|
||||
*
|
||||
*/
|
||||
function delete_options () {
|
||||
delete_site_option( WP_FFPC_PARAM );
|
||||
wp_ffpc_log ( "plugin options deleted ");
|
||||
}
|
||||
|
||||
/**
|
||||
* invalidate cache
|
||||
|
@ -690,6 +716,20 @@ if (!class_exists('WPFFPC')) {
|
|||
else
|
||||
$this->options = $defaults;
|
||||
|
||||
/* check for version number, if none, we're upgrading from 0.5, therefore we need to copy the settings and remove them after
|
||||
this will run once only at all
|
||||
*/
|
||||
if ( empty ( $this->all_options['version'] ) )
|
||||
{
|
||||
foreach ( array_keys( $defaults ) as $key ) {
|
||||
if ( isset ( $this->all_options[$key] ) )
|
||||
{
|
||||
$this->options[$key] = $this->all_options[$key];
|
||||
unset ( $this->all_options[$key] );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -770,6 +810,8 @@ if (!class_exists('WPFFPC')) {
|
|||
else
|
||||
$this->update_settings( $firstrun );
|
||||
|
||||
$this->all_options['version'] = WP_FFPC_VERSION;
|
||||
|
||||
/* save options */
|
||||
update_site_option( WP_FFPC_PARAM , $this->all_options );
|
||||
|
||||
|
|
Loading…
Reference in a new issue