PHP 8.1.33
Preview: wp-tinymce.php Size: 1.02 KB
/home/jambtst2015/public_html/www.securiskbrokers.com/wp-includes/js/tinymce/wp-tinymce.php

<?php
/**
 * Not used in core since 5.1.
 * This is a back-compat for plugins that may be using this method of loading directly.
 */

/**
 * Disable error reporting
 *
 * Set this to error_reporting( -1 ) for debugging.
 */
error_reporting( 0 );

$basepath = __DIR__;

function get_file( $path ) {

	if ( function_exists( 'realpath' ) ) {
		$path = realpath( $path );
	}

	if ( ! $path || ! @is_file( $path ) ) {
		return false;
	}

	return @file_get_contents( $path );
}

$expires_offset = 31536000; // 1 year.

header( 'Content-Type: application/javascript; charset=UTF-8' );
header( 'Vary: Accept-Encoding' ); // Handle proxies.
header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', time() + $expires_offset ) . ' GMT' );
header( "Cache-Control: public, max-age=$expires_offset" );

$file = get_file( $basepath . '/wp-tinymce.js' );
if ( isset( $_GET['c'] ) && $file ) {
	echo $file;
} else {
	// Even further back compat.
	echo get_file( $basepath . '/tinymce.min.js' );
	echo get_file( $basepath . '/plugins/compat3x/plugin.min.js' );
}
exit;

Directory Contents

Dirs: 5 × Files: 5

Name Size Perms Modified Actions
langs DIR
- drwxr-xr-x 2024-12-09 13:54:38
Edit Download
plugins DIR
- drwxr-xr-x 2024-12-09 13:54:38
Edit Download
skins DIR
- drwxr-xr-x 2024-12-09 13:54:38
Edit Download
themes DIR
- drwxr-xr-x 2024-12-09 13:54:38
Edit Download
utils DIR
- drwxr-xr-x 2024-12-09 13:54:38
Edit Download
25.82 KB lrw-r--r-- 2017-05-08 09:32:46
Edit Download
357.00 KB lrw-r--r-- 2020-11-10 15:44:08
Edit Download
15.61 KB lrw-r--r-- 2017-09-27 01:15:48
Edit Download
655.73 KB lrw-r--r-- 2024-09-30 09:19:16
Edit Download
1.02 KB lrw-r--r-- 2020-02-06 11:33:12
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).