PluginProbe
FlyWP Helper – Page Cache, Page Optimization, Emails for FlyWP Server Control Panel / 0.3
FlyWP Helper – Page Cache, Page Optimization, Emails for FlyWP Server Control Panel v0.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 | includes/Helper.php +0 -18 trunk0.3 View file →
@@ -23,23 +23,5 @@
23 23 public static function dd( $var = null ) {
24 24 self::print_r( $var );
25 25 die();
26 26 }
27 -
28 - /**
29 - * Check if server is running Nginx.
30 - *
31 - * @return bool
32 - */
33 - public static function is_nginx() {
34 - return isset( $_SERVER['SERVER_SOFTWARE'] ) && false !== strpos( wp_unslash( $_SERVER['SERVER_SOFTWARE'] ), 'nginx' );
35 - }
36 -
37 - /**
38 - * Check if server is running LiteSpeed.
39 - *
40 - * @return bool
41 - */
42 - public static function is_litespeed() {
43 - return isset( $_SERVER['SERVER_SOFTWARE'] ) && false !== strpos( wp_unslash( $_SERVER['SERVER_SOFTWARE'] ), 'LiteSpeed' );
44 - }
45 27 }