PluginProbe
SureForms – Contact Form Builder, AI Forms, Payment Form, Survey & Quiz / 2.8.0
SureForms – Contact Form Builder, AI Forms, Payment Form, Survey & Quiz v2.8.0
2.12.6 2.12.5 2.12.4 2.12.3 2.12.2 2.12.1 2.12.0 2.11.1 2.11.0 2.10.1 2.10.0 2.9.1 2.9.0 2.8.2 2.8.1 2.7.0 2.7.1 2.8.0 trunk 0.0.10 0.0.11 0.0.12 0.0.13 0.0.2 0.0.3 All 96 releases
← All changes | plugin-loader.php +135 -79 0.0.22.8.0 View file →
@@ -7,27 +7,44 @@
7 7 */
8 8
9 9 namespace SRFM;
10 10
11 -use SRFM\Inc\Post_Types;
12 -use SRFM\Inc\Form_Submit;
13 -use SRFM\Inc\Gutenberg_Hooks;
14 -use SRFM\API\Block_Patterns;
15 -use SRFM\Inc\Forms_Data;
16 11 use SRFM\Admin\Admin;
17 -use SRFM\Inc\Blocks\Register;
18 -use SRFM\Inc\Frontend_Assets;
19 -use SRFM\Inc\Helper;
12 +use SRFM\Admin\Analytics;
13 +use SRFM\Admin\Notice_Manager;
14 +use SRFM\Inc\Abilities\Abilities_Registrar;
20 15 use SRFM\Inc\Activator;
21 16 use SRFM\Inc\Admin_Ajax;
17 +use SRFM\Inc\AI_Form_Builder\AI_Auth;
18 +use SRFM\Inc\AI_Form_Builder\AI_Form_Builder;
19 +use SRFM\Inc\AI_Form_Builder\AI_Helper;
20 +use SRFM\Inc\AI_Form_Builder\Field_Mapping;
21 +use SRFM\Inc\Background_Process;
22 +use SRFM\Inc\Blocks\Register;
23 +use SRFM\Inc\Compatibility\Themes\Astra;
24 +use SRFM\Inc\Create_New_Form;
25 +use SRFM\Inc\Database\Register as DatabaseRegister;
26 +use SRFM\Inc\Duplicate_Form;
27 +use SRFM\Inc\Events_Scheduler;
22 28 use SRFM\Inc\Export;
23 -use SRFM\Inc\Smart_Tags;
29 +use SRFM\Inc\Form_Restriction;
30 +use SRFM\Inc\Form_Submit;
31 +use SRFM\Inc\Forms_Data;
32 +use SRFM\Inc\Frontend_Assets;
24 33 use SRFM\Inc\Generate_Form_Markup;
25 -use SRFM\Inc\Create_New_Form;
34 +use SRFM\Inc\Global_Settings\Email_Summary;
26 35 use SRFM\Inc\Global_Settings\Global_Settings;
27 -use SRFM\Inc\Global_Settings\Email_Summary;
36 +use SRFM\Inc\Gutenberg_Hooks;
37 +use SRFM\Inc\Helper;
38 +use SRFM\Inc\Learn;
39 +use SRFM\Inc\Onboarding;
40 +use SRFM\Inc\Page_Builders\Page_Builders;
41 +use SRFM\Inc\Payments\Payments;
42 +use SRFM\Inc\Post_Types;
43 +use SRFM\Inc\Rest_Api;
28 44 use SRFM\Inc\Single_Form_Settings\Compliance_Settings;
29 -use SRFM\Inc\Events_Scheduler;
45 +use SRFM\Inc\Smart_Tags;
46 +use SRFM\Inc\Updater;
30 47
31 48 if ( ! defined( 'ABSPATH' ) ) {
32 49 exit; // Exit if accessed directly.
33 50 }
@@ -37,9 +54,8 @@
37 54 *
38 55 * @since 0.0.1
39 56 */
40 57 class Plugin_Loader {
41 -
42 58 /**
43 59 * Instance
44 60 *
45 61 * @access private
@@ -48,8 +64,47 @@
48 64 */
49 65 private static $instance = null;
50 66
51 67 /**
68 + * Constructor
69 + *
70 + * @since 0.0.1
71 + */
72 + public function __construct() {
73 + if ( ! defined( 'SRFM_DIR' ) || ! defined( 'SRFM_FILE' ) ) {
74 + return;
75 + }
76 + // Load the action scheduler before plugin loads.
77 + require_once SRFM_DIR . 'inc/lib/action-scheduler/action-scheduler.php';
78 +
79 + spl_autoload_register( [ $this, 'autoload' ] );
80 +
81 + add_action( 'plugins_loaded', [ $this, 'load_textdomain' ] );
82 + add_action( 'plugins_loaded', [ $this, 'load_plugin' ], 99 );
83 + add_action( 'init', [ $this, 'load_classes' ] );
84 + add_action( 'admin_init', [ $this, 'activation_redirect' ] );
85 + Analytics::get_instance();
86 + /**
87 + * The code that runs during plugin activation
88 + */
89 + register_activation_hook(
90 + SRFM_FILE,
91 + static function () {
92 + Activator::activate();
93 + }
94 + );
95 +
96 + register_deactivation_hook(
97 + SRFM_FILE,
98 + static function () {
99 + update_option( '__sureforms_do_redirect', false );
100 + Events_Scheduler::unschedule_events( 'srfm_weekly_scheduled_events' );
101 + Events_Scheduler::unschedule_events( 'srfm_daily_scheduled_action' );
102 + }
103 + );
104 + }
105 +
106 + /**
52 107 * Initiator
53 108 *
54 109 * @since 0.0.1
55 110 * @return object initialized object of class.
@@ -86,74 +141,25 @@
86 141 [ '', '$1-$2', '-', DIRECTORY_SEPARATOR ],
87 142 $class
88 143 );
89 144
90 - if ( is_string( $filename ) ) {
145 + if ( ! is_string( $filename ) ) {
146 + return;
147 + }
91 148
92 - $filename = strtolower( $filename );
93 -
94 - $file = SRFM_DIR . $filename . '.php';
95 -
96 - // if the file is readable, include it.
97 - if ( is_readable( $file ) ) {
98 - require_once $file;
99 - }
149 + // Check for directory traversal.
150 + if ( strpos( $filename, '..' ) !== false ) {
151 + return;
100 152 }
101 153
102 - }
154 + $filename = strtolower( $filename );
103 155
104 - /**
105 - * Constructor
106 - *
107 - * @since 0.0.1
108 - */
109 - public function __construct() {
110 - // Load the action scheduler before plugin loads.
111 - require_once SRFM_DIR . 'inc/lib/action-scheduler/action-scheduler.php';
156 + $file = SRFM_DIR . $filename . '.php';
112 157
113 - spl_autoload_register( [ $this, 'autoload' ] );
114 -
115 - add_action( 'plugins_loaded', [ $this, 'load_textdomain' ] );
116 - add_action( 'plugins_loaded', [ $this, 'load_plugin' ], 99 );
117 - add_action( 'init', [ $this, 'load_classes' ] );
118 - add_action( 'admin_init', [ $this, 'activation_redirect' ] );
119 - Post_Types::get_instance();
120 - Form_Submit::get_instance();
121 - Block_Patterns::get_instance();
122 - Gutenberg_Hooks::get_instance();
123 - Register::get_instance();
124 - Frontend_Assets::get_instance();
125 - Helper::get_instance();
126 - Activator::get_instance();
127 - Admin_Ajax::get_instance();
128 - Forms_Data::get_instance();
129 - Export::get_instance();
130 - Smart_Tags::get_instance();
131 - Generate_Form_Markup::get_instance();
132 - Create_New_Form::get_instance();
133 - Global_Settings::get_instance();
134 - Email_Summary::get_instance();
135 - Compliance_Settings::get_instance();
136 - Events_Scheduler::get_instance();
137 -
138 - /**
139 - * The code that runs during plugin activation
140 - */
141 - register_activation_hook(
142 - SRFM_FILE,
143 - function () {
144 - Activator::activate();
145 - }
146 - );
147 -
148 - register_deactivation_hook(
149 - SRFM_FILE,
150 - function () {
151 - update_option( '__sureforms_do_redirect', false );
152 - Events_Scheduler::unschedule_events( 'srfm_weekly_scheduled_events' );
153 - Events_Scheduler::unschedule_events( 'srfm_daily_scheduled_action' );
154 - }
155 - );
158 + // if the file is readable, include it.
159 + if ( is_readable( $file ) ) {
160 + require_once $file;
161 + }
156 162 }
157 163
158 164 /**
159 165 * Activation Reset
@@ -161,9 +167,18 @@
161 167 * @return void
162 168 * @since 0.0.1
163 169 */
164 170 public function activation_redirect() {
171 + // Avoid redirection in case of WP_CLI calls.
172 + if ( defined( 'WP_CLI' ) && \WP_CLI ) {
173 + return;
174 + }
165 175
176 + // Avoid redirection in case of ajax calls.
177 + if ( wp_doing_ajax() ) {
178 + return;
179 + }
180 +
166 181 $do_redirect = apply_filters( 'srfm_enable_redirect_activation', get_option( '__srfm_do_redirect' ) );
167 182
168 183 if ( $do_redirect ) {
169 184
@@ -178,9 +193,9 @@
178 193 ],
179 194 admin_url( 'admin.php' )
180 195 )
181 196 );
182 - exit();
197 + exit;
183 198 }
184 199 }
185 200 }
186 201
@@ -190,11 +205,18 @@
190 205 * @return void
191 206 * @since 0.0.1
192 207 */
193 208 public function load_classes() {
209 +
210 + Register::get_instance();
194 211 if ( is_admin() ) {
195 212 Admin::get_instance();
213 + // phpcs:ignore /** @phpstan-ignore-next-line */ -- Class is loaded dynamically in WordPress
214 + Notice_Manager::get_instance();
196 215 }
216 + Payments::get_instance();
217 + Duplicate_Form::get_instance();
218 + Learn::get_instance();
197 219 }
198 220
199 221 /**
200 222 * Load Plugin Text Domain.
@@ -227,9 +249,8 @@
227 249
228 250 /**
229 251 * Language Locale for plugin
230 252 *
231 - * @var string $get_locale The locale to use.
232 253 * Uses get_user_locale()` in WordPress 4.7 or greater,
233 254 * otherwise uses `get_locale()`.
234 255 */
235 256 $locale = apply_filters( 'plugin_locale', $get_locale, 'sureforms' );//phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound -- wordpress hook
@@ -250,9 +271,8 @@
250 271 load_plugin_textdomain( 'sureforms', false, $lang_dir );
251 272 }
252 273 }
253 274
254 -
255 275 /**
256 276 * Loads plugin files.
257 277 *
258 278 * @since 0.0.1
@@ -259,8 +279,46 @@
259 279 *
260 280 * @return void
261 281 */
262 282 public function load_plugin() {
283 + Post_Types::get_instance();
284 + Form_Submit::get_instance();
285 + Gutenberg_Hooks::get_instance();
286 + Frontend_Assets::get_instance();
287 + Helper::get_instance();
288 + Activator::get_instance();
289 + Admin_Ajax::get_instance();
290 + Forms_Data::get_instance();
291 + Export::get_instance();
292 + Smart_Tags::get_instance();
293 + Generate_Form_Markup::get_instance();
294 + Create_New_Form::get_instance();
295 + Global_Settings::get_instance();
296 + Email_Summary::get_instance();
297 + Compliance_Settings::get_instance();
298 + Events_Scheduler::get_instance();
299 + AI_Form_Builder::get_instance();
300 + Field_Mapping::get_instance();
301 + Background_Process::get_instance();
302 + Page_Builders::get_instance();
303 + Rest_Api::get_instance();
304 + AI_Helper::get_instance();
305 + AI_Auth::get_instance();
306 + Updater::get_instance();
307 + Onboarding::get_instance();
308 + DatabaseRegister::init();
309 + Form_Restriction::get_instance();
310 + Abilities_Registrar::get_instance();
311 + // Initializing Compatibilities.
312 + Astra::get_instance();
313 +
314 + /**
315 + * Load core files necessary for the Spectra block.
316 + * This method is called in the Spectra block loader to ensure core files are loaded during the 'plugins_loaded' action.
317 + *
318 + * Note: This code is added at the bottom to ensure the form block is loaded first,
319 + * followed by the Spectra blocks such as heading, image, and icon blocks.
320 + */
263 321 $this->load_core_files();
264 322 }
265 323
266 324 /**
@@ -273,10 +331,8 @@
273 331 public function load_core_files() {
274 332 include_once SRFM_DIR . 'modules/gutenberg/classes/class-spec-block-loader.php';
275 333 }
276 334 }
277 -
278 -
279 335
280 336 /**
281 337 * Kicking this off by calling 'get_instance()' method
282 338 */