PluginProbe
Seraphinite Accelerator / trunk
Seraphinite Accelerator vtrunk
2.29.24 2.29.23 2.29.22 2.29.21 2.29.20 2.29.19 2.29.18 2.29.17 2.29.16 2.29.15 2.29.14 2.29.13 2.29.12 2.29.11 2.29.10 2.29.9 2.20.18 2.20.19 2.20.2 2.20.20 2.20.21 2.20.22 2.20.23 2.20.24 2.20.25 All 418 releases
seraphinite-accelerator / plugin_root.php

plugin_root.php in Seraphinite Accelerator trunk, at plugin_root.php

34 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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