Released under the terms of the GNU General Public License. You should have received a copy of the GNU General Public License, along with this software. In the main directory, see: /licensing/ If not, see: . */ /* Version: 2.0.4 Stable tag: 2.0.4 Framework: WS-W-3.0 SSL Compatible: yes WordPress Compatible: yes WP Multisite Compatible: yes Multisite Blog Farm Compatible: yes Tested up to: 3.0 Requires at least: 2.9.2 Requires: WordPress® 2.9.2+, PHP 5.2+ Copyright: © 2009 WebSharks, Inc. License: GNU General Public License Contributors: WebSharks, PriMoThemes Author URI: http://www.primothemes.com/ Author: PriMoThemes.com / WebSharks, Inc. Donate link: http://www.primothemes.com/donate/ Plugin Name: Ad Codes Widget Plugin URI: http://www.primothemes.com/post/ad-codes-widget/ Forum URI: http://www.primothemes.com/forums/viewforum.php?f=8 Description: The Ad Codes Widget allows you to place ANY size banner ( ad, ads, advertisements ) into a widget-ready bar for WordPress®. It supports AdSense®, Javascript, XHTML and more. Tags: widget, widgets, ad codes, ads, adsense, google, sponsors, advertise, advertisements, banners, ad networks, banner rotation, options panel included, websharks framework, w3c validated code, multi widget support, includes extensive documentation, highly extensible */ /* Direct access denial. */ if (realpath (__FILE__) === realpath ($_SERVER["SCRIPT_FILENAME"])) exit ("Do not access this file directly."); /* Define versions. */ define ("WS_WIDGET__AD_CODES_VERSION", "2.0.4"); /* Since 2.0.4. */ define ("WS_WIDGET__AD_CODES_MIN_PHP_VERSION", "5.2"); define ("WS_WIDGET__AD_CODES_MIN_WP_VERSION", "2.9.2"); define ("WS_WIDGET__AD_CODES_MIN_PRO_VERSION", "1.0"); /* Compatibility checks. */ if (version_compare (PHP_VERSION, WS_WIDGET__AD_CODES_MIN_PHP_VERSION, ">=") && version_compare (get_bloginfo ("version"), WS_WIDGET__AD_CODES_MIN_WP_VERSION, ">=") && !isset ($GLOBALS["WS_WIDGET__"]["ad_codes"])) { $GLOBALS["WS_WIDGET__"]["ad_codes"]["l"] = __FILE__; /* Hook before loaded. */ do_action ("ws_widget__ad_codes_before_loaded"); /* System configuraton. */ include_once dirname (__FILE__) . "/includes/syscon.inc.php"; /* Hooks and filters. */ include_once dirname (__FILE__) . "/includes/hooks.inc.php"; /* Hook after system config & hooks are loaded. */ do_action ("ws_widget__ad_codes_config_hooks_loaded"); /* Load a possible Pro module, if/when available. */ @include_once dirname (__FILE__) . "-pro/pro-module.php"; /* Function includes. */ include_once dirname (__FILE__) . "/includes/funcs.inc.php"; /* Hook after loaded. */ do_action ("ws_widget__ad_codes_after_loaded"); } else if (is_admin ()) /* Admin compatibility errors. */ { if (!version_compare (PHP_VERSION, WS_WIDGET__AD_CODES_MIN_PHP_VERSION, ">=")) { add_action ("admin_notices", create_function ('', 'echo \'

You need PHP v\' . WS_WIDGET__AD_CODES_MIN_PHP_VERSION . \'+ to use the Ad Codes widget.

\';')); } else if (!version_compare (get_bloginfo ("version"), WS_WIDGET__AD_CODES_MIN_WP_VERSION, ">=")) { add_action ("admin_notices", create_function ('', 'echo \'

You need WordPress® v\' . WS_WIDGET__AD_CODES_MIN_WP_VERSION . \'+ to use the Ad Codes widget.

\';')); } } ?>