| 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.3.59 |
| 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 |
|