PluginProbe
The Cache Purger / 2.2.86
The Cache Purger v2.2.86
2.3.59 2.3.40 2.3.39 2.3.21 2.3.03 2.2.97 trunk 1.0.27 1.1.01 1.2.66 1.2.79 1.3.11 1.4.02 1.5.12 1.5.22 1.5.99 1.6.03 1.6.04 1.7.11 1.7.33 1.8.01 1.9.27 1.9.89 2.0.11 2.1.01 All 31 releases
the-cache-purger / the-cache-purger.php

the-cache-purger.php in The Cache Purger 2.2.86, at the-cache-purger.php

29 lines 816 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 // We don't want to allow direct access to this
4 defined( 'ABSPATH' ) || die( 'No direct script access allowed' );
5
6 /*
7 Plugin Name: The Cache Purger
8 Plugin URI: https://kevinpirnie.com
9 Description: Plugin attemps to clear all plugin based and server based caches.
10 Version: 2.2.86
11 Requires PHP: 8.2
12 Author: Kevin C Pirnie
13 Text Domain: the-cache-purger
14 License: GPLv3
15 License URI: https://www.gnu.org/licenses/gpl-3.0.html
16 */
17
18 // setup the full page to this plugin
19 define( 'TCP_PATH', dirname( __FILE__ ) );
20
21 // setup the directory name
22 define( 'TCP_DIRNAME', basename( dirname( __FILE__ ) ) );
23
24 // setup the primary plugin file name
25 define( 'TCP_FILENAME', basename( __FILE__ ) );
26
27 // Include our "work"
28 require TCP_PATH . '/work/common.php';
29