PluginProbe
Falcon – Cache, Performance, Security, Cleanup, and Tweaks / 2.11.2
Falcon – Cache, Performance, Security, Cleanup, and Tweaks v2.11.2
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.11.2, at falcon.php

53 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: Falcon
4 * Plugin URI: https://wpfalcon.pro
5 * Description: WordPress optimizations & tweaks
6 * Version: 2.11.2
7 * Author: eLightUp
8 * Author URI: https://elightup.com
9 * License: GPL2+
10 * Text Domain: falcon
11 *
12 * Copyright (C) 2010-2025 Tran Ngoc Tuan Anh. All rights reserved.
13 *
14 * This program is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation, either version 2 of the License, or
17 * (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program. If not, see <http://www.gnu.org/licenses/>.
26 */
27
28 namespace Falcon;
29
30 defined( 'ABSPATH' ) || die;
31
32 define( 'FALCON_URL', plugin_dir_url( __FILE__ ) );
33 define( 'FALCON_DIR', __DIR__ );
34
35 require __DIR__ . '/vendor/autoload.php';
36
37 new Settings;
38
39 new General;
40 new Admin;
41 new Security;
42 new Email;
43 new Components\Cache\Manager;
44
45 if ( is_admin() ) {
46 new Core;
47 new Components\Cleanup;
48 } else {
49 new Header;
50 new Media;
51 new LazyLoadCSS;
52 }
53