| 1 |
<?php |
| 2 |
/* |
| 3 |
Plugin Name: Seraphinite Accelerator (Base, cache only) |
| 4 |
Plugin URI: http://wordpress.org/plugins/seraphinite-accelerator |
| 5 |
Description: Turns on site high speed to be attractive for people and search engines. |
| 6 |
Text Domain: seraphinite-accelerator |
| 7 |
Domain Path: /languages |
| 8 |
Version: 2.29.24 |
| 9 |
Author: Seraphinite Solutions |
| 10 |
Author URI: https://www.s-sols.com |
| 11 |
License: GPLv2 or later (if another license is not provided) |
| 12 |
Requires PHP: 7.1 |
| 13 |
Requires at least: 4.5 |
| 14 |
*/ |
| 15 |
|
| 16 |
|
| 17 |
|
| 18 |
// ####################################################################### |
| 19 |
|
| 20 |
if( !defined( 'SERAPH_ACCEL_PLUGIN_DIR' ) ) define( 'SERAPH_ACCEL_PLUGIN_DIR', __DIR__ ); else if( SERAPH_ACCEL_PLUGIN_DIR != __DIR__ ) return; |
| 21 |
|
| 22 |
// ####################################################################### |
| 23 |
|
| 24 |
include( __DIR__ . '/main.php' ); |
| 25 |
|
| 26 |
// ####################################################################### |
| 27 |
|
| 28 |
register_activation_hook( __FILE__, 'seraph_accel\\Plugin::OnActivate' ); |
| 29 |
register_deactivation_hook( __FILE__, 'seraph_accel\\Plugin::OnDeactivate' ); |
| 30 |
//register_uninstall_hook( __FILE__, 'seraph_accel\\Plugin::OnUninstall' ); |
| 31 |
|
| 32 |
// ####################################################################### |
| 33 |
// ####################################################################### |
| 34 |
|