-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwpr-redis.php
53 lines (46 loc) · 1.59 KB
/
wpr-redis.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
/**
* Plugin Name: WP Rocket Redis
* Plugin URI: https://github.com/naxvog/wpr-redis/
* Description: Addon to WP Rocket that allows storage of cache files in Redis.
* Version: 1.0.2
* Author: naxvog <[email protected]>
* Author URI: https://github.com/naxvog/
* Text Domain: wpr-redis
* Domain Path: languages
* Requires PHP: 7.0
* Licence: GPLv3 or later
*
* @author naxvog <[email protected]>
* @wordpress-plugin
*/
defined( '\\ABSPATH' ) || exit;
define( 'WPR_REDIS_FILE', __FILE__ );
define( 'WPR_REDIS_BASENAME', plugin_basename( WPR_REDIS_FILE ) );
define( 'WPR_REDIS_PATH', realpath( plugin_dir_path( WPR_REDIS_FILE ) ) );
define( 'WPR_REDIS_URL', plugin_dir_url( WPR_REDIS_FILE ) );
define( 'WPR_REDIS_INCLUDE_PATH', WPR_REDIS_PATH . '/includes' );
define( 'WPR_REDIS_OVERRIDE_PATH', WPR_REDIS_PATH . '/overrides' );
define( 'WPR_REDIS_VENDOR_PATH', WPR_REDIS_PATH . '/vendor' );
define( 'WPR_REDIS_VIEW_PATH', WPR_REDIS_PATH . '/views' );
require_once WPR_REDIS_VENDOR_PATH . '/autoload.php';
$loader = require WPR_REDIS_INCLUDE_PATH . '/class-autoloader.php';
$loader->register();
$loader->add_namespace( 'WPR_Redis', WPR_REDIS_INCLUDE_PATH );
$loader->add_namespace( 'WP_Rocket', WPR_REDIS_OVERRIDE_PATH . '/wp-rocket' );
if ( ! function_exists( 'wpr_redis' ) ) :
/**
* Instance function to initialize and/or retrieve the plugin instance.
*
* @since 1.0.0
* @return \WPR_Redis\WPR_Redis
*/
function wpr_redis() {
static $instance;
if ( ! isset( $instance ) ) {
$instance = new WPR_Redis\WPR_Redis();
}
return $instance;
}
endif;
wpr_redis();