PluginProbe
Falcon – Cache, Performance, Security, Cleanup, and Tweaks / 2.11.1
Falcon – Cache, Performance, Security, Cleanup, and Tweaks v2.11.1
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 / src / Base.php

Base.php in Falcon – Cache, Performance, Security, Cleanup, and Tweaks 2.11.1, at src/Base.php

15 lines 232 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace Falcon;
3
4 class Base {
5 protected $features = [];
6
7 public function __construct() {
8 foreach ( $this->features as $feature ) {
9 if ( Settings::is_feature_active( $feature ) ) {
10 $this->$feature();
11 }
12 }
13 }
14 }
15