2009-01-14 15:18:51 +01:00
|
|
|
<?php
|
|
|
|
|
2009-04-20 20:18:39 +02:00
|
|
|
/**
|
2009-04-15 21:55:41 +02:00
|
|
|
* Disable error reporting
|
2009-04-20 20:18:39 +02:00
|
|
|
*
|
2014-07-07 18:42:16 +02:00
|
|
|
* Set this to error_reporting( -1 ) for debugging.
|
2009-04-15 21:55:41 +02:00
|
|
|
*/
|
|
|
|
error_reporting(0);
|
|
|
|
|
2009-01-14 15:18:51 +01:00
|
|
|
/** Set ABSPATH for execution */
|
2009-04-05 05:32:49 +02:00
|
|
|
define( 'ABSPATH', dirname(dirname(__FILE__)) . '/' );
|
|
|
|
define( 'WPINC', 'wp-includes' );
|
2009-01-14 15:18:51 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @ignore
|
|
|
|
*/
|
|
|
|
function __() {}
|
|
|
|
|
2009-03-13 04:53:39 +01:00
|
|
|
/**
|
|
|
|
* @ignore
|
|
|
|
*/
|
|
|
|
function _x() {}
|
|
|
|
|
2009-01-14 15:18:51 +01:00
|
|
|
/**
|
|
|
|
* @ignore
|
|
|
|
*/
|
|
|
|
function add_filter() {}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ignore
|
|
|
|
*/
|
2009-05-05 21:43:53 +02:00
|
|
|
function esc_attr() {}
|
2009-01-14 15:18:51 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @ignore
|
|
|
|
*/
|
|
|
|
function apply_filters() {}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ignore
|
|
|
|
*/
|
|
|
|
function get_option() {}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ignore
|
|
|
|
*/
|
|
|
|
function is_lighttpd_before_150() {}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ignore
|
|
|
|
*/
|
|
|
|
function add_action() {}
|
|
|
|
|
2012-06-26 07:33:19 +02:00
|
|
|
/**
|
|
|
|
* @ignore
|
|
|
|
*/
|
|
|
|
function did_action() {}
|
|
|
|
|
2009-01-14 15:18:51 +01:00
|
|
|
/**
|
|
|
|
* @ignore
|
|
|
|
*/
|
|
|
|
function do_action_ref_array() {}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ignore
|
|
|
|
*/
|
|
|
|
function get_bloginfo() {}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ignore
|
|
|
|
*/
|
|
|
|
function is_admin() {return true;}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ignore
|
|
|
|
*/
|
|
|
|
function site_url() {}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @ignore
|
|
|
|
*/
|
|
|
|
function admin_url() {}
|
|
|
|
|
2010-05-04 19:08:28 +02:00
|
|
|
/**
|
|
|
|
* @ignore
|
|
|
|
*/
|
|
|
|
function home_url() {}
|
|
|
|
|
2011-04-06 02:42:07 +02:00
|
|
|
/**
|
|
|
|
* @ignore
|
|
|
|
*/
|
|
|
|
function includes_url() {}
|
|
|
|
|
2009-01-14 15:18:51 +01:00
|
|
|
/**
|
|
|
|
* @ignore
|
|
|
|
*/
|
|
|
|
function wp_guess_url() {}
|
|
|
|
|
2011-12-15 00:02:42 +01:00
|
|
|
if ( ! function_exists( 'json_encode' ) ) :
|
|
|
|
/**
|
|
|
|
* @ignore
|
|
|
|
*/
|
|
|
|
function json_encode() {}
|
|
|
|
endif;
|
|
|
|
|
2009-01-14 15:18:51 +01:00
|
|
|
function get_file($path) {
|
|
|
|
|
|
|
|
if ( function_exists('realpath') )
|
|
|
|
$path = realpath($path);
|
|
|
|
|
|
|
|
if ( ! $path || ! @is_file($path) )
|
|
|
|
return '';
|
|
|
|
|
|
|
|
return @file_get_contents($path);
|
|
|
|
}
|
|
|
|
|
2012-12-05 19:57:56 +01:00
|
|
|
$load = $_GET['load'];
|
|
|
|
if ( is_array( $load ) )
|
|
|
|
$load = implode( '', $load );
|
|
|
|
|
|
|
|
$load = preg_replace( '/[^a-z0-9,_-]+/i', '', $load );
|
2013-07-29 19:57:04 +02:00
|
|
|
$load = array_unique( explode( ',', $load ) );
|
2009-01-14 15:18:51 +01:00
|
|
|
|
|
|
|
if ( empty($load) )
|
|
|
|
exit;
|
|
|
|
|
2009-04-05 05:32:49 +02:00
|
|
|
require(ABSPATH . WPINC . '/script-loader.php');
|
|
|
|
require(ABSPATH . WPINC . '/version.php');
|
2009-01-14 15:18:51 +01:00
|
|
|
|
2009-01-26 13:59:10 +01:00
|
|
|
$compress = ( isset($_GET['c']) && $_GET['c'] );
|
|
|
|
$force_gzip = ( $compress && 'gzip' == $_GET['c'] );
|
2012-11-10 19:13:09 +01:00
|
|
|
$expires_offset = 31536000; // 1 year
|
2009-01-14 15:18:51 +01:00
|
|
|
$out = '';
|
|
|
|
|
|
|
|
$wp_scripts = new WP_Scripts();
|
|
|
|
wp_default_scripts($wp_scripts);
|
|
|
|
|
|
|
|
foreach( $load as $handle ) {
|
|
|
|
if ( !array_key_exists($handle, $wp_scripts->registered) )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
$path = ABSPATH . $wp_scripts->registered[$handle]->src;
|
|
|
|
$out .= get_file($path) . "\n";
|
|
|
|
}
|
|
|
|
|
2015-01-03 03:57:21 +01:00
|
|
|
header('Content-Type: application/javascript; charset=UTF-8');
|
2009-01-14 15:18:51 +01:00
|
|
|
header('Expires: ' . gmdate( "D, d M Y H:i:s", time() + $expires_offset ) . ' GMT');
|
|
|
|
header("Cache-Control: public, max-age=$expires_offset");
|
2009-02-01 10:45:24 +01:00
|
|
|
|
2009-11-19 10:46:07 +01:00
|
|
|
if ( $compress && ! ini_get('zlib.output_compression') && 'ob_gzhandler' != ini_get('output_handler') && isset($_SERVER['HTTP_ACCEPT_ENCODING']) ) {
|
2009-01-17 15:08:15 +01:00
|
|
|
header('Vary: Accept-Encoding'); // Handle proxies
|
2011-04-11 20:55:11 +02:00
|
|
|
if ( false !== stripos($_SERVER['HTTP_ACCEPT_ENCODING'], 'deflate') && function_exists('gzdeflate') && ! $force_gzip ) {
|
2009-01-26 13:59:10 +01:00
|
|
|
header('Content-Encoding: deflate');
|
|
|
|
$out = gzdeflate( $out, 3 );
|
2011-04-11 20:55:11 +02:00
|
|
|
} elseif ( false !== stripos($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip') && function_exists('gzencode') ) {
|
2009-01-14 15:18:51 +01:00
|
|
|
header('Content-Encoding: gzip');
|
|
|
|
$out = gzencode( $out, 3 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
echo $out;
|
|
|
|
exit;
|