PluginProbe
SureForms – Contact Form Builder, AI Forms, Payment Form, Survey & Quiz / 2.0.2
SureForms – Contact Form Builder, AI Forms, Payment Form, Survey & Quiz v2.0.2
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 +136 -92 0.0.102.0.2 View file →
@@ -7,34 +7,42 @@
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;
20 13 use SRFM\Inc\Activator;
21 14 use SRFM\Inc\Admin_Ajax;
15 +use SRFM\Inc\AI_Form_Builder\AI_Auth;
16 +use SRFM\Inc\AI_Form_Builder\AI_Form_Builder;
17 +use SRFM\Inc\AI_Form_Builder\AI_Helper;
18 +use SRFM\Inc\AI_Form_Builder\Field_Mapping;
19 +use SRFM\Inc\Background_Process;
20 +use SRFM\Inc\Blocks\Register;
21 +use SRFM\Inc\Compatibility\Themes\Astra;
22 +use SRFM\Inc\Create_New_Form;
23 +use SRFM\Inc\Database\Register as DatabaseRegister;
24 +use SRFM\Inc\Events_Scheduler;
22 25 use SRFM\Inc\Export;
23 -use SRFM\Inc\Smart_Tags;
26 +use SRFM\Inc\Form_Restriction;
27 +use SRFM\Inc\Form_Submit;
28 +use SRFM\Inc\Forms_Data;
29 +use SRFM\Inc\Frontend_Assets;
24 30 use SRFM\Inc\Generate_Form_Markup;
25 -use SRFM\Inc\Create_New_Form;
31 +use SRFM\Inc\Global_Settings\Email_Summary;
26 32 use SRFM\Inc\Global_Settings\Global_Settings;
27 -use SRFM\Inc\Global_Settings\Email_Summary;
28 -use SRFM\Inc\Single_Form_Settings\Compliance_Settings;
29 -use SRFM\Inc\Events_Scheduler;
30 -use SRFM\Inc\AI_Form_Builder\AI_Form_Builder;
31 -use SRFM\Inc\AI_Form_Builder\Field_Mapping;
32 -use SRFM\Inc\Background_Process;
33 +use SRFM\Inc\Gutenberg_Hooks;
34 +use SRFM\Inc\Helper;
35 +use SRFM\Inc\Lib\SRFM_Nps_Survey;
36 +use SRFM\Inc\Nps_Notice;
37 +use SRFM\Inc\Onboarding;
33 38 use SRFM\Inc\Page_Builders\Page_Builders;
39 +use SRFM\Inc\Payments\Payments;
40 +use SRFM\Inc\Post_Types;
34 41 use SRFM\Inc\Rest_Api;
35 -use SRFM\Inc\AI_Form_Builder\AI_Helper;
36 -use SRFM\Inc\AI_Form_Builder\AI_Auth;
42 +use SRFM\Inc\Single_Form_Settings\Compliance_Settings;
43 +use SRFM\Inc\Smart_Tags;
44 +use SRFM\Inc\Updater;
37 45
38 46 if ( ! defined( 'ABSPATH' ) ) {
39 47 exit; // Exit if accessed directly.
40 48 }
@@ -44,9 +52,8 @@
44 52 *
45 53 * @since 0.0.1
46 54 */
47 55 class Plugin_Loader {
48 -
49 56 /**
50 57 * Instance
51 58 *
52 59 * @access private
@@ -55,8 +62,47 @@
55 62 */
56 63 private static $instance = null;
57 64
58 65 /**
66 + * Constructor
67 + *
68 + * @since 0.0.1
69 + */
70 + public function __construct() {
71 + if ( ! defined( 'SRFM_DIR' ) || ! defined( 'SRFM_FILE' ) ) {
72 + return;
73 + }
74 + // Load the action scheduler before plugin loads.
75 + require_once SRFM_DIR . 'inc/lib/action-scheduler/action-scheduler.php';
76 +
77 + spl_autoload_register( [ $this, 'autoload' ] );
78 +
79 + add_action( 'plugins_loaded', [ $this, 'load_textdomain' ] );
80 + add_action( 'plugins_loaded', [ $this, 'load_plugin' ], 99 );
81 + add_action( 'init', [ $this, 'load_classes' ] );
82 + add_action( 'admin_init', [ $this, 'activation_redirect' ] );
83 + Analytics::get_instance();
84 + /**
85 + * The code that runs during plugin activation
86 + */
87 + register_activation_hook(
88 + SRFM_FILE,
89 + static function () {
90 + Activator::activate();
91 + }
92 + );
93 +
94 + register_deactivation_hook(
95 + SRFM_FILE,
96 + static function () {
97 + update_option( '__sureforms_do_redirect', false );
98 + Events_Scheduler::unschedule_events( 'srfm_weekly_scheduled_events' );
99 + Events_Scheduler::unschedule_events( 'srfm_daily_scheduled_action' );
100 + }
101 + );
102 + }
103 +
104 + /**
59 105 * Initiator
60 106 *
61 107 * @since 0.0.1
62 108 * @return object initialized object of class.
@@ -93,81 +139,25 @@
93 139 [ '', '$1-$2', '-', DIRECTORY_SEPARATOR ],
94 140 $class
95 141 );
96 142
97 - if ( is_string( $filename ) ) {
143 + if ( ! is_string( $filename ) ) {
144 + return;
145 + }
98 146
99 - $filename = strtolower( $filename );
100 -
101 - $file = SRFM_DIR . $filename . '.php';
102 -
103 - // if the file is readable, include it.
104 - if ( is_readable( $file ) ) {
105 - require_once $file;
106 - }
147 + // Check for directory traversal.
148 + if ( strpos( $filename, '..' ) !== false ) {
149 + return;
107 150 }
108 151
109 - }
152 + $filename = strtolower( $filename );
110 153
111 - /**
112 - * Constructor
113 - *
114 - * @since 0.0.1
115 - */
116 - public function __construct() {
117 - // Load the action scheduler before plugin loads.
118 - require_once SRFM_DIR . 'inc/lib/action-scheduler/action-scheduler.php';
154 + $file = SRFM_DIR . $filename . '.php';
119 155
120 - spl_autoload_register( [ $this, 'autoload' ] );
121 -
122 - add_action( 'plugins_loaded', [ $this, 'load_textdomain' ] );
123 - add_action( 'plugins_loaded', [ $this, 'load_plugin' ], 99 );
124 - add_action( 'init', [ $this, 'load_classes' ] );
125 - add_action( 'admin_init', [ $this, 'activation_redirect' ] );
126 - Post_Types::get_instance();
127 - Form_Submit::get_instance();
128 - Block_Patterns::get_instance();
129 - Gutenberg_Hooks::get_instance();
130 - Register::get_instance();
131 - Frontend_Assets::get_instance();
132 - Helper::get_instance();
133 - Activator::get_instance();
134 - Admin_Ajax::get_instance();
135 - Forms_Data::get_instance();
136 - Export::get_instance();
137 - Smart_Tags::get_instance();
138 - Generate_Form_Markup::get_instance();
139 - Create_New_Form::get_instance();
140 - Global_Settings::get_instance();
141 - Email_Summary::get_instance();
142 - Compliance_Settings::get_instance();
143 - Events_Scheduler::get_instance();
144 - AI_Form_Builder::get_instance();
145 - Field_Mapping::get_instance();
146 - Background_Process::get_instance();
147 - Page_Builders::get_instance();
148 - Rest_Api::get_instance();
149 - AI_Helper::get_instance();
150 - AI_Auth::get_instance();
151 -
152 - /**
153 - * The code that runs during plugin activation
154 - */
155 - register_activation_hook(
156 - SRFM_FILE,
157 - function () {
158 - Activator::activate();
159 - }
160 - );
161 -
162 - register_deactivation_hook(
163 - SRFM_FILE,
164 - function () {
165 - update_option( '__sureforms_do_redirect', false );
166 - Events_Scheduler::unschedule_events( 'srfm_weekly_scheduled_events' );
167 - Events_Scheduler::unschedule_events( 'srfm_daily_scheduled_action' );
168 - }
169 - );
156 + // if the file is readable, include it.
157 + if ( is_readable( $file ) ) {
158 + require_once $file;
159 + }
170 160 }
171 161
172 162 /**
173 163 * Activation Reset
@@ -175,9 +165,18 @@
175 165 * @return void
176 166 * @since 0.0.1
177 167 */
178 168 public function activation_redirect() {
169 + // Avoid redirection in case of WP_CLI calls.
170 + if ( defined( 'WP_CLI' ) && \WP_CLI ) {
171 + return;
172 + }
179 173
174 + // Avoid redirection in case of ajax calls.
175 + if ( wp_doing_ajax() ) {
176 + return;
177 + }
178 +
180 179 $do_redirect = apply_filters( 'srfm_enable_redirect_activation', get_option( '__srfm_do_redirect' ) );
181 180
182 181 if ( $do_redirect ) {
183 182
@@ -192,9 +191,9 @@
192 191 ],
193 192 admin_url( 'admin.php' )
194 193 )
195 194 );
196 - exit();
195 + exit;
197 196 }
198 197 }
199 198 }
200 199
@@ -204,11 +203,14 @@
204 203 * @return void
205 204 * @since 0.0.1
206 205 */
207 206 public function load_classes() {
207 +
208 + Register::get_instance();
208 209 if ( is_admin() ) {
209 210 Admin::get_instance();
210 211 }
212 + Payments::get_instance();
211 213 }
212 214
213 215 /**
214 216 * Load Plugin Text Domain.
@@ -241,9 +243,8 @@
241 243
242 244 /**
243 245 * Language Locale for plugin
244 246 *
245 - * @var string $get_locale The locale to use.
246 247 * Uses get_user_locale()` in WordPress 4.7 or greater,
247 248 * otherwise uses `get_locale()`.
248 249 */
249 250 $locale = apply_filters( 'plugin_locale', $get_locale, 'sureforms' );//phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound -- wordpress hook
@@ -264,9 +265,8 @@
264 265 load_plugin_textdomain( 'sureforms', false, $lang_dir );
265 266 }
266 267 }
267 268
268 -
269 269 /**
270 270 * Loads plugin files.
271 271 *
272 272 * @since 0.0.1
@@ -273,8 +273,54 @@
273 273 *
274 274 * @return void
275 275 */
276 276 public function load_plugin() {
277 + Post_Types::get_instance();
278 + Form_Submit::get_instance();
279 + Gutenberg_Hooks::get_instance();
280 + Frontend_Assets::get_instance();
281 + Helper::get_instance();
282 + Activator::get_instance();
283 + Admin_Ajax::get_instance();
284 + Forms_Data::get_instance();
285 + Export::get_instance();
286 + Smart_Tags::get_instance();
287 + Generate_Form_Markup::get_instance();
288 + Create_New_Form::get_instance();
289 + Global_Settings::get_instance();
290 + Email_Summary::get_instance();
291 + Compliance_Settings::get_instance();
292 + Events_Scheduler::get_instance();
293 + AI_Form_Builder::get_instance();
294 + Field_Mapping::get_instance();
295 + Background_Process::get_instance();
296 + Page_Builders::get_instance();
297 + Rest_Api::get_instance();
298 + AI_Helper::get_instance();
299 + AI_Auth::get_instance();
300 + Updater::get_instance();
301 + Onboarding::get_instance();
302 + DatabaseRegister::init();
303 + Form_Restriction::get_instance();
304 + // Initializing Compatibilities.
305 + Astra::get_instance();
306 + /**
307 + * Required to add the if check for the class existence to resolve phpstan error,
308 + * as the phpstan configuration ignores the inc/lib directory which gives error
309 + * unknown class.
310 + */
311 + if ( class_exists( 'SRFM\Inc\Lib\SRFM_Nps_Survey' ) && ! apply_filters( 'srfm_disable_nps_survey', false ) ) {
312 + SRFM_Nps_Survey::get_instance(); // Inits the NPS Survey class for which inits the NPS Survey plugin.
313 + Nps_Notice::get_instance(); // Responsible for displaying the NPS Survey: keeping the line out of the check will also work.
314 + }
315 +
316 + /**
317 + * Load core files necessary for the Spectra block.
318 + * This method is called in the Spectra block loader to ensure core files are loaded during the 'plugins_loaded' action.
319 + *
320 + * Note: This code is added at the bottom to ensure the form block is loaded first,
321 + * followed by the Spectra blocks such as heading, image, and icon blocks.
322 + */
277 323 $this->load_core_files();
278 324 }
279 325
280 326 /**
@@ -287,10 +333,8 @@
287 333 public function load_core_files() {
288 334 include_once SRFM_DIR . 'modules/gutenberg/classes/class-spec-block-loader.php';
289 335 }
290 336 }
291 -
292 -
293 337
294 338 /**
295 339 * Kicking this off by calling 'get_instance()' method
296 340 */