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 ("Do not access this file directly."); /**/ if (!class_exists ("c_ws_widget__ad_squares_menu_pages")) { class c_ws_widget__ad_squares_menu_pages { /* Function that saves all options from any page. Options can also be passed in directly. Can also be self-verified. */ public static function update_all_options ($new_options = FALSE, $verified = FALSE, $update_other = TRUE, $display_notices = TRUE, $enqueue_notices = FALSE, $request_refresh = FALSE) { do_action ("ws_widget__ad_squares_before_update_all_options", get_defined_vars ()); /* If you use this Hook, be sure to use `wp_verify_nonce()`. */ /**/ if ($verified || ( ($nonce = $_POST["ws_widget__ad_squares_options_save"]) && wp_verify_nonce ($nonce, "ws-widget--ad-squares-options-save"))) { $options = $GLOBALS["WS_WIDGET__"]["ad_squares"]["o"]; /* Here we get all of the existing options. */ $new_options = (is_array ($new_options)) ? $new_options : (array)$_POST; /* Force array. */ $new_options = c_ws_widget__ad_squares_utils_strings::trim_deep (stripslashes_deep ($new_options)); /**/ foreach ((array)$new_options as $key => $value) /* Looking for relevant keys. */ if (preg_match ("/^" . preg_quote ("ws_widget__ad_squares_", "/") . "/", $key)) /**/ if ($key === "ws_widget__ad_squares_configured") /* Configured. */ { update_option ("ws_widget__ad_squares_configured", $value); $GLOBALS["WS_WIDGET__"]["ad_squares"]["c"]["configured"] = $value; } else /* Place this option into the array. Remove ws_widget__ad_squares_. */ { (is_array ($value)) ? array_shift ($value) : null; /* Arrays should be padded. */ $key = preg_replace ("/^" . preg_quote ("ws_widget__ad_squares_", "/") . "/", "", $key); $options[$key] = $value; /* Overriding a possible existing option. */ } /**/ $options["options_version"] = (string) ($options["options_version"] + 0.001); $options = ws_widget__ad_squares_configure_options_and_their_defaults ($options); /**/ eval ('foreach(array_keys(get_defined_vars())as$__v)$__refs[$__v]=&$$__v;'); do_action ("ws_widget__ad_squares_during_update_all_options", get_defined_vars ()); unset ($__refs, $__v); /* Unset defined __refs, __v. */ /**/ update_option ("ws_widget__ad_squares_options", $options); /**/ if (($display_notices === true || in_array ("success", (array)$display_notices)) && ($notice = 'Options saved.' . (($request_refresh) ? ' Please refresh.' : '') . '')) ($enqueue_notices === true || in_array ("success", (array)$enqueue_notices)) ? c_ws_widget__ad_squares_admin_notices::enqueue_admin_notice ($notice, "*:*") : c_ws_widget__ad_squares_admin_notices::display_admin_notice ($notice); /**/ $updated_all_options = true; /* Flag indicating this routine was indeed processed. */ } /**/ do_action ("ws_widget__ad_squares_after_update_all_options", get_defined_vars ()); /**/ return $updated_all_options; /* Return status update. */ } /* Add options, details, info, etc. Attach to: add_action("admin_menu"); */ public static function add_admin_options () { do_action ("ws_widget__ad_squares_before_add_admin_options", get_defined_vars ()); /**/ if (!c_ws_widget__ad_squares_utils_conds::is_multisite_farm ()) /* NOT on Multisite Farms. */ { add_filter ("plugin_action_links", "c_ws_widget__ad_squares_menu_pages::_add_details_link", 10, 2); /**/ if (apply_filters ("ws_widget__ad_squares_during_add_admin_options_create_menu_items", true, get_defined_vars ())) { if (apply_filters ("ws_widget__ad_squares_during_add_admin_options_add_info_page", true, get_defined_vars ())) add_theme_page ("Ad Squares / Widget Information", "Ad Squares Widget", "edit_plugins", "ws-widget--ad-squares-info", "c_ws_widget__ad_squares_menu_pages::info_page"); } } /**/ do_action ("ws_widget__ad_squares_after_add_admin_options", get_defined_vars ()); /**/ return; /* Return for uniformity. */ } /* A sort of callback function to add the details link. */ public static function _add_details_link ($links = array (), $file = "") { eval ('foreach(array_keys(get_defined_vars())as$__v)$__refs[$__v]=&$$__v;'); do_action ("_ws_widget__ad_squares_before_add_details_link", get_defined_vars ()); unset ($__refs, $__v); /* Unset defined __refs, __v. */ /**/ if (preg_match ("/" . preg_quote ($file, "/") . "$/", $GLOBALS["WS_WIDGET__"]["ad_squares"]["l"]) && is_array ($links)) { $details = 'Details'; array_unshift ($links, $details); /**/ eval ('foreach(array_keys(get_defined_vars())as$__v)$__refs[$__v]=&$$__v;'); do_action ("_ws_widget__ad_squares_during_add_details_link", get_defined_vars ()); unset ($__refs, $__v); /* Unset defined __refs, __v. */ } /**/ return apply_filters ("_ws_widget__ad_squares_add_details_link", $links, get_defined_vars ()); } /* Add scripts to admin panels. Attach to: add_action("admin_print_scripts"); */ public static function add_admin_scripts () { do_action ("ws_widget__ad_squares_before_add_admin_scripts", get_defined_vars ()); /**/ if ($_GET["page"] && preg_match ("/ws-widget--ad-squares-/", $_GET["page"])) { wp_enqueue_script ("jquery"); wp_enqueue_script ("thickbox"); wp_enqueue_script ("media-upload"); wp_enqueue_script ("jquery-ui-core"); wp_enqueue_script ("jquery-json-ps", $GLOBALS["WS_WIDGET__"]["ad_squares"]["c"]["dir_url"] . "/includes/menu-pages/jquery-json-ps-min.js", array ("jquery"), c_ws_widget__ad_squares_utilities::ver_checksum ()); wp_enqueue_script ("jquery-ui-effects", $GLOBALS["WS_WIDGET__"]["ad_squares"]["c"]["dir_url"] . "/includes/menu-pages/jquery-ui-effects.js", array ("jquery", "jquery-ui-core"), c_ws_widget__ad_squares_utilities::ver_checksum ()); wp_enqueue_script ("ws-widget--ad-squares-menu-pages", site_url ("/?ws_widget__ad_squares_menu_pages_js=" . urlencode (mt_rand ())), array ("jquery", "thickbox", "media-upload", "jquery-json-ps", "jquery-ui-core", "jquery-ui-effects"), c_ws_widget__ad_squares_utilities::ver_checksum ()); /**/ do_action ("ws_widget__ad_squares_during_add_admin_scripts", get_defined_vars ()); } /**/ do_action ("ws_widget__ad_squares_after_add_admin_scripts", get_defined_vars ()); /**/ return; /* Return for uniformity. */ } /* Add styles to admin panels. Attach to: add_action("admin_print_styles"); */ public static function add_admin_styles () { do_action ("ws_widget__ad_squares_before_add_admin_styles", get_defined_vars ()); /**/ if ($_GET["page"] && preg_match ("/ws-widget--ad-squares-/", $_GET["page"])) { wp_enqueue_style ("thickbox"); wp_enqueue_style ("ws-widget--ad-squares-menu-pages", site_url ("/?ws_widget__ad_squares_menu_pages_css=" . urlencode (mt_rand ())), array ("thickbox"), c_ws_widget__ad_squares_utilities::ver_checksum (), "all"); /**/ do_action ("ws_widget__ad_squares_during_add_admin_styles", get_defined_vars ()); } /**/ do_action ("ws_widget__ad_squares_after_add_admin_styles", get_defined_vars ()); /**/ return; /* Return for uniformity. */ } /* Function for building the info page. */ public static function info_page () { do_action ("ws_widget__ad_squares_before_info_page", get_defined_vars ()); /**/ include_once dirname (dirname (__FILE__)) . "/menu-pages/info.inc.php"; /**/ do_action ("ws_widget__ad_squares_after_info_page", get_defined_vars ()); /**/ return; /* Return for uniformity. */ } } } ?>