PluginProbe
Falcon – Cache, Performance, Security, Cleanup, and Tweaks / 2.0.3
Falcon – Cache, Performance, Security, Cleanup, and Tweaks v2.0.3
2.11.2 2.11.1 2.11.0 2.10.1 trunk 1.0.1 1.0.2 1.0.3 1.1 1.2 1.2.1 1.2.2 1.2.3 1.2.4 1.3.0 1.3.3 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.1.0 2.10.0 2.2.0 All 45 releases
falcon / falcon.php

falcon.php in Falcon – Cache, Performance, Security, Cleanup, and Tweaks 2.0.3, at falcon.php

32 lines 717 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: Falcon
4 * Plugin URI: https://elightup.com/products/
5 * Description: A WordPress cleanup and performance optimization plugin.
6 * Version: 2.0.3
7 * Author: eLightUp
8 * Author URI: https://elightup.com
9 * License: GPL2+
10 * Text Domain: falcon
11 * Domain Path: /languages/
12 */
13
14 namespace Falcon;
15 require __DIR__ . '/vendor/autoload.php';
16
17 new General;
18 new Settings;
19
20 if ( Settings::is_feature_active( 'no_embeds' ) ) {
21 require __DIR__ . '/vendor/disable-embeds/disable-embeds.php';
22 }
23
24 if ( ! is_admin() ) {
25 new Header;
26 } else {
27 new Recommendation;
28 }
29
30 add_action( 'init', function () {
31 load_plugin_textdomain( 'falcon', false, plugin_basename( __DIR__ ) . '/languages/' );
32 } );