PluginProbe
FlyWP Helper – Page Cache, Page Optimization, Emails for FlyWP Server Control Panel / v1.3
FlyWP Helper – Page Cache, Page Optimization, Emails for FlyWP Server Control Panel vv1.3
1.7.1 1.7.0 1.6.0 1.5.2 trunk 0.1 0.2.0 0.2.1 0.3 0.3.1 0.3.2 0.3.3 0.3.4 0.4 0.4.1 0.4.2 0.4.3 1.0 1.1 1.2 1.3.1 1.4.0 1.4.1 1.5.0 1.5.1 All 26 releases
← All changes | flywp.php +10 -26 1.0v1.3 View file →
@@ -2,9 +2,9 @@
2 2 /**
3 3 * Plugin Name: FlyWP
4 4 * Plugin URI: https://flywp.com
5 5 * Description: Helper plugin for FlyWP
6 - * Version: 1.0
6 + * Version: 1.3
7 7 * Author: FlyWP
8 8 * Author URI: https://flywp.com/?utm_source=wporg&utm_medium=banner&utm_campaign=author-uri
9 9 * License: GPL2
10 10 */
@@ -40,9 +40,9 @@
40 40 * Plugin version.
41 41 *
42 42 * @var string
43 43 */
44 - public $version = '1.0';
44 + public $version = '1.3';
45 45
46 46 /**
47 47 * Plugin Constructor.
48 48 *
@@ -101,14 +101,16 @@
101 101 } else {
102 102 $this->frontend = new FlyWP\Frontend();
103 103 }
104 104
105 - $this->router = new FlyWP\Router();
106 - $this->rest = new FlyWP\Api();
107 - $this->fastcgi = new FlyWP\Fastcgi_Cache();
108 - $this->opcache = new FlyWP\Opcache();
109 - $this->flyapi = new FlyWP\FlyApi();
110 - $this->email = new FlyWP\Email();
105 + $this->router = new FlyWP\Router();
106 + $this->rest = new FlyWP\Api();
107 + $this->fastcgi = new FlyWP\Fastcgi_Cache();
108 + $this->opcache = new FlyWP\Opcache();
109 + $this->flyapi = new FlyWP\FlyApi();
110 + $this->email = new FlyWP\Email();
111 + $this->optimize = new FlyWP\Optimizations();
112 + $this->litespeed = new FlyWP\Litespeed();
111 113 }
112 114
113 115 /**
114 116 * Show admin notice if API key is not set.
@@ -136,26 +138,8 @@
136 138 * @return string
137 139 */
138 140 public function get_key() {
139 141 return FLYWP_API_KEY;
140 - }
141 -
142 - /**
143 - * Debugging helper.
144 - *
145 - * @param mixed $value
146 - * @param bool $die
147 - *
148 - * @return void
149 - */
150 - public function debug( $value, $die = false ) {
151 - echo '<pre>';
152 - print_r( $value );
153 - echo '</pre>';
154 -
155 - if ( $die ) {
156 - die();
157 - }
158 142 }
159 143 }
160 144
161 145 /**