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_admin_css_js_in"))
{
class c_ws_widget__ad_squares_admin_css_js_in
{
/*
Function that outputs the css for menu pages.
Attach to: add_action("init");
*/
public static function menu_pages_css ()
{
do_action ("ws_widget__ad_squares_before_menu_pages_css", get_defined_vars ());
/**/
if ($_GET["ws_widget__ad_squares_menu_pages_css"] && is_user_logged_in () && current_user_can ("edit_plugins"))
{
header ("Content-Type: text/css; charset=utf-8");
header ("Expires: " . gmdate ("D, d M Y H:i:s", strtotime ("-1 week")) . " GMT");
header ("Last-Modified: " . gmdate ("D, d M Y H:i:s") . " GMT");
header ("Cache-Control: no-cache, must-revalidate, max-age=0");
header ("Pragma: no-cache");
/**/
$u = $GLOBALS["WS_WIDGET__"]["ad_squares"]["c"]["dir_url"];
$i = $GLOBALS["WS_WIDGET__"]["ad_squares"]["c"]["dir_url"] . "/images";
/**/
ob_start ("c_ws_widget__ad_squares_utils_css::compress_css");
/**/
include_once dirname (dirname (__FILE__)) . "/menu-pages/menu-pages.css";
/**/
echo "\n"; /* Add a line break before inclusion of this file. */
/**/
@include_once dirname (dirname (__FILE__)) . "/menu-pages/menu-pages-s.css";
/**/
do_action ("ws_widget__ad_squares_during_menu_pages_css", get_defined_vars ());
/**/
exit (); /* Clean exit. */
}
/**/
do_action ("ws_widget__ad_squares_after_menu_pages_css", get_defined_vars ());
}
/*
Function that outputs the js for menu pages.
Attach to: add_action("init");
*/
public static function menu_pages_js ()
{
do_action ("ws_widget__ad_squares_before_menu_pages_js", get_defined_vars ());
/**/
if ($_GET["ws_widget__ad_squares_menu_pages_js"] && is_user_logged_in () && current_user_can ("edit_plugins"))
{
header ("Content-Type: text/javascript; charset=utf-8");
header ("Expires: " . gmdate ("D, d M Y H:i:s", strtotime ("-1 week")) . " GMT");
header ("Last-Modified: " . gmdate ("D, d M Y H:i:s") . " GMT");
header ("Cache-Control: no-cache, must-revalidate, max-age=0");
header ("Pragma: no-cache");
/**/
$u = $GLOBALS["WS_WIDGET__"]["ad_squares"]["c"]["dir_url"];
$i = $GLOBALS["WS_WIDGET__"]["ad_squares"]["c"]["dir_url"] . "/images";
/**/
include_once dirname (dirname (__FILE__)) . "/menu-pages/menu-pages-min.js";
/**/
echo "\n"; /* Add a line break before inclusion of this file. */
/**/
@include_once dirname (dirname (__FILE__)) . "/menu-pages/menu-pages-s-min.js";
/**/
do_action ("ws_widget__ad_squares_during_menu_pages_js", get_defined_vars ());
/**/
exit (); /* Clean exit. */
}
/**/
do_action ("ws_widget__ad_squares_after_menu_pages_js", get_defined_vars ());
}
}
}
?>