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: .
*/
/*
Direct access denial.
*/
if (realpath (__FILE__) === realpath ($_SERVER["SCRIPT_FILENAME"]))
exit;
/*
Function for handling activation routines.
This function should match the array key for this widget:
ws_widget__$widget_key_activate() is called by our themes.
We also initialize some option values here.
Initializing these options will force them to be
autoloaded into WordPress® instead of generating
extra queries before they are set.
*/
function ws_widget__ad_codes_activate ()
{
if (!is_numeric (get_option ("ws_widget__ad_codes_configured")))
update_option ("ws_widget__ad_codes_configured", "0");
/**/
if (!is_array (get_option ("ws_widget__ad_codes_notices")))
update_option ("ws_widget__ad_codes_notices", array ());
/**/
if (!is_array (get_option ("ws_widget__ad_codes_options")))
update_option ("ws_widget__ad_codes_options", array ());
}
/*
Function for handling de-activation cleanup routines.
This function should match the array key for this widget:
ws_widget__$widget_key_deactivate() is called by our themes.
*/
function ws_widget__ad_codes_deactivate ()
{
if ($GLOBALS["WS_WIDGET__"]["ad_codes"]["o"]["run_deactivation_routines"])
{
delete_option ("ws_widget__ad_codes_configured");
delete_option ("ws_widget__ad_codes_notices");
delete_option ("ws_widget__ad_codes_options");
delete_option ("widget_ws_widget__ad_codes");
delete_option ("ws_widget__ad_codes");
}
/**/
return;
}
?>