~canonical-sysadmins/wordpress/5.1

« back to all changes in this revision

Viewing changes to wp-includes/js/tinymce/wp-tinymce.php

  • Committer: Barry Price
  • Date: 2019-02-22 03:51:26 UTC
  • mfrom: (1.2.12 upstream)
  • Revision ID: barry.price@canonical.com-20190222035126-o28k38qs8jfyjsxt
Merge WP5.1 from upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?php
2
2
/**
 
3
 * Not used in core since 5.1.
 
4
 * This is a back-compat for plugins that may be using this method of loading directly.
 
5
 */
 
6
 
 
7
/**
3
8
 * Disable error reporting
4
9
 *
5
10
 * Set this to error_reporting( -1 ) for debugging.
6
11
 */
7
 
error_reporting(0);
8
 
 
9
 
$basepath = dirname(__FILE__);
10
 
 
11
 
function get_file($path) {
12
 
 
13
 
        if ( function_exists('realpath') )
14
 
                $path = realpath($path);
15
 
 
16
 
        if ( ! $path || ! @is_file($path) )
 
12
error_reporting( 0 );
 
13
 
 
14
$basepath = dirname( __FILE__ );
 
15
 
 
16
function get_file( $path ) {
 
17
 
 
18
        if ( function_exists( 'realpath' ) ) {
 
19
                $path = realpath( $path );
 
20
        }
 
21
 
 
22
        if ( ! $path || ! @is_file( $path ) ) {
17
23
                return false;
 
24
        }
18
25
 
19
 
        return @file_get_contents($path);
 
26
        return @file_get_contents( $path );
20
27
}
21
28
 
22
29
$expires_offset = 31536000; // 1 year
23
30
 
24
 
header('Content-Type: application/javascript; charset=UTF-8');
25
 
header('Vary: Accept-Encoding'); // Handle proxies
26
 
header('Expires: ' . gmdate( "D, d M Y H:i:s", time() + $expires_offset ) . ' GMT');
27
 
header("Cache-Control: public, max-age=$expires_offset");
28
 
 
29
 
if ( isset($_GET['c']) && 1 == $_GET['c'] && isset($_SERVER['HTTP_ACCEPT_ENCODING'])
30
 
        && false !== stripos($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip') && ( $file = get_file($basepath . '/wp-tinymce.js.gz') ) ) {
31
 
 
32
 
        header('Content-Encoding: gzip');
 
31
header( 'Content-Type: application/javascript; charset=UTF-8' );
 
32
header( 'Vary: Accept-Encoding' ); // Handle proxies
 
33
header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', time() + $expires_offset ) . ' GMT' );
 
34
header( "Cache-Control: public, max-age=$expires_offset" );
 
35
 
 
36
if ( isset( $_GET['c'] ) && ( $file = get_file( $basepath . '/wp-tinymce.js' ) ) ) {
33
37
        echo $file;
34
38
} else {
35
 
        // Back compat. This file shouldn't be used if this condition can occur (as in, if gzip isn't accepted).
 
39
        // Even further back compat.
36
40
        echo get_file( $basepath . '/tinymce.min.js' );
37
41
        echo get_file( $basepath . '/plugins/compat3x/plugin.min.js' );
38
42
}