Last active
December 30, 2015 03:29
-
-
Save gfazioli/7769405 to your computer and use it in GitHub Desktop.
Patch for MailChimp Widget
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: MailChimp Widget | |
Plugin URI: https://github.com/kalchas | |
Description: | |
Author: James Lafferty | |
Version: 0.8.12 | |
Author URI: https://github.com/kalchas | |
License: GPL2 | |
*/ | |
/* Copyright 2010 James Lafferty (email : [email protected]) | |
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. | |
This program is distributed in the hope that it will be useful, | |
but WITHOUT ANY WARRANTY; without even the implied warranty of | |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
GNU General Public License for more details. | |
You should have received a copy of the GNU General Public License | |
along with this program; if not, write to the Free Software | |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
*/ | |
/** | |
* Set up the autoloader. | |
*/ | |
/** | |
* The code below has been commented by wpXtreme (https://wpxtre.me) to avoid a plugin bugs | |
set_include_path(get_include_path() . PATH_SEPARATOR . realpath(dirname(__FILE__) . '/lib/')); | |
spl_autoload_extensions('.class.php'); | |
if (! function_exists('buffered_autoloader')) { | |
function buffered_autoloader ($c) { | |
try { | |
spl_autoload($c); | |
} catch (Exception $e) { | |
$message = $e->getMessage(); | |
return $message; | |
} | |
} | |
} | |
spl_autoload_register('buffered_autoloader'); | |
*/ | |
// The code below added by wpXtreme (https://wpxtre.me) to avoid a plugin bug | |
// Avoid directly access | |
if ( !defined( 'ABSPATH' ) ) { | |
exit; | |
} | |
require_once( trailingslashit( dirname( __FILE__ ) ) . 'lib/mcapi.class.php' ); | |
require_once( trailingslashit( dirname( __FILE__ ) ) . 'lib/ns_mc_plugin.class.php' ); | |
require_once( trailingslashit( dirname( __FILE__ ) ) . 'lib/ns_widget_mailchimp.class.php' ); | |
/** | |
* Get the plugin object. All the bookkeeping and other setup stuff happens here. | |
*/ | |
$ns_mc_plugin = NS_MC_Plugin::get_instance(); | |
register_deactivation_hook( __FILE__, array( &$ns_mc_plugin, 'remove_options' ) ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment