Completed
Branch FET/reg-form-v2 (3e0966)
by
unknown
26:36 queued 17:01
created
admin_pages/registrations/Registrations_Admin_Page_Init.core.php 2 patches
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -23,15 +23,15 @@
 block discarded – undo
23 23
     public function __construct()
24 24
     {
25 25
         do_action('AHEE_log', __FILE__, __FUNCTION__, '');
26
-        if (! defined('REG_PG_SLUG')) {
26
+        if ( ! defined('REG_PG_SLUG')) {
27 27
             define('REG_PG_SLUG', 'espresso_registrations');
28 28
             define('REG_PG_NAME', ucwords(str_replace('_', '', REG_PG_SLUG)));
29
-            define('REG_ADMIN', EE_ADMIN_PAGES . 'registrations/');
30
-            define('REG_ADMIN_URL', admin_url('admin.php?page=' . REG_PG_SLUG));
31
-            define('REG_ASSETS_PATH', REG_ADMIN . 'assets/');
32
-            define('REG_ASSETS_URL', EE_ADMIN_PAGES_URL . 'registrations/assets/');
33
-            define('REG_TEMPLATE_PATH', REG_ADMIN . 'templates/');
34
-            define('REG_TEMPLATE_URL', EE_ADMIN_PAGES_URL . 'registrations/templates/');
29
+            define('REG_ADMIN', EE_ADMIN_PAGES.'registrations/');
30
+            define('REG_ADMIN_URL', admin_url('admin.php?page='.REG_PG_SLUG));
31
+            define('REG_ASSETS_PATH', REG_ADMIN.'assets/');
32
+            define('REG_ASSETS_URL', EE_ADMIN_PAGES_URL.'registrations/assets/');
33
+            define('REG_TEMPLATE_PATH', REG_ADMIN.'templates/');
34
+            define('REG_TEMPLATE_URL', EE_ADMIN_PAGES_URL.'registrations/templates/');
35 35
         }
36 36
 
37 37
         parent::__construct();
Please login to merge, or discard this patch.
Indentation   +39 added lines, -39 removed lines patch added patch discarded remove patch
@@ -11,48 +11,48 @@
 block discarded – undo
11 11
  */
12 12
 class Registrations_Admin_Page_Init extends EE_Admin_Page_CPT_Init
13 13
 {
14
-    /**
15
-     *        constructor
16
-     *
17
-     * @Constructor
18
-     * @access public
19
-     * @return void
20
-     */
21
-    public function __construct()
22
-    {
23
-        do_action('AHEE_log', __FILE__, __FUNCTION__, '');
24
-        if (! defined('REG_PG_SLUG')) {
25
-            define('REG_PG_SLUG', 'espresso_registrations');
26
-            define('REG_PG_NAME', ucwords(str_replace('_', '', REG_PG_SLUG)));
27
-            define('REG_ADMIN', EE_ADMIN_PAGES . 'registrations/');
28
-            define('REG_ADMIN_URL', admin_url('admin.php?page=' . REG_PG_SLUG));
29
-            define('REG_ASSETS_PATH', REG_ADMIN . 'assets/');
30
-            define('REG_ASSETS_URL', EE_ADMIN_PAGES_URL . 'registrations/assets/');
31
-            define('REG_TEMPLATE_PATH', REG_ADMIN . 'templates/');
32
-            define('REG_TEMPLATE_URL', EE_ADMIN_PAGES_URL . 'registrations/templates/');
33
-        }
14
+	/**
15
+	 *        constructor
16
+	 *
17
+	 * @Constructor
18
+	 * @access public
19
+	 * @return void
20
+	 */
21
+	public function __construct()
22
+	{
23
+		do_action('AHEE_log', __FILE__, __FUNCTION__, '');
24
+		if (! defined('REG_PG_SLUG')) {
25
+			define('REG_PG_SLUG', 'espresso_registrations');
26
+			define('REG_PG_NAME', ucwords(str_replace('_', '', REG_PG_SLUG)));
27
+			define('REG_ADMIN', EE_ADMIN_PAGES . 'registrations/');
28
+			define('REG_ADMIN_URL', admin_url('admin.php?page=' . REG_PG_SLUG));
29
+			define('REG_ASSETS_PATH', REG_ADMIN . 'assets/');
30
+			define('REG_ASSETS_URL', EE_ADMIN_PAGES_URL . 'registrations/assets/');
31
+			define('REG_TEMPLATE_PATH', REG_ADMIN . 'templates/');
32
+			define('REG_TEMPLATE_URL', EE_ADMIN_PAGES_URL . 'registrations/templates/');
33
+		}
34 34
 
35
-        parent::__construct();
36
-    }
35
+		parent::__construct();
36
+	}
37 37
 
38 38
 
39
-    protected function _set_init_properties()
40
-    {
41
-        $this->label = esc_html__('Registrations Overview', 'event_espresso');
42
-    }
39
+	protected function _set_init_properties()
40
+	{
41
+		$this->label = esc_html__('Registrations Overview', 'event_espresso');
42
+	}
43 43
 
44 44
 
45
-    public function getMenuProperties(): array
46
-    {
47
-        return [
48
-            'menu_type'       => AdminMenuItem::TYPE_MENU_SUB_ITEM,
49
-            'menu_group'      => 'main',
50
-            'menu_order'      => 40,
51
-            'show_on_menu'    => AdminMenuItem::DISPLAY_BLOG_ONLY,
52
-            'parent_slug'     => 'espresso_events',
53
-            'menu_slug'       => REG_PG_SLUG,
54
-            'menu_label'      => esc_html__('Registrations', 'event_espresso'),
55
-            'capability'      => 'ee_read_registrations',
56
-        ];
57
-    }
45
+	public function getMenuProperties(): array
46
+	{
47
+		return [
48
+			'menu_type'       => AdminMenuItem::TYPE_MENU_SUB_ITEM,
49
+			'menu_group'      => 'main',
50
+			'menu_order'      => 40,
51
+			'show_on_menu'    => AdminMenuItem::DISPLAY_BLOG_ONLY,
52
+			'parent_slug'     => 'espresso_events',
53
+			'menu_slug'       => REG_PG_SLUG,
54
+			'menu_label'      => esc_html__('Registrations', 'event_espresso'),
55
+			'capability'      => 'ee_read_registrations',
56
+		];
57
+	}
58 58
 }
Please login to merge, or discard this patch.
payment_methods/Paypal_Express/EE_PMT_Paypal_Express.pm.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,18 +20,18 @@
 block discarded – undo
20 20
      */
21 21
     public function __construct($pm_instance = null)
22 22
     {
23
-        require_once($this->file_folder() . 'EEG_Paypal_Express.gateway.php');
23
+        require_once($this->file_folder().'EEG_Paypal_Express.gateway.php');
24 24
         $this->_gateway = new EEG_Paypal_Express();
25 25
 
26 26
         $this->_pretty_name = esc_html__('PayPal Express', 'event_espresso');
27
-        $this->_template_path = $this->file_folder() . 'templates/';
27
+        $this->_template_path = $this->file_folder().'templates/';
28 28
         $this->_default_description = esc_html__(
29 29
             // @codingStandardsIgnoreStart
30 30
             'After clicking \'Finalize Registration\', you will be forwarded to PayPal website to Login and make your payment.',
31 31
             // @codingStandardsIgnoreEnd
32 32
             'event_espresso'
33 33
         );
34
-        $this->_default_button_url = $this->file_url() . 'lib/paypal-express-checkout-logo-gold-160.png';
34
+        $this->_default_button_url = $this->file_url().'lib/paypal-express-checkout-logo-gold-160.png';
35 35
 
36 36
         parent::__construct($pm_instance);
37 37
     }
Please login to merge, or discard this patch.
Indentation   +76 added lines, -76 removed lines patch added patch discarded remove patch
@@ -14,89 +14,89 @@
 block discarded – undo
14 14
  */
15 15
 class EE_PMT_Paypal_Express extends EE_PMT_Base
16 16
 {
17
-    /**
18
-     * EE_PMT_Paypal_Express constructor.
19
-     */
20
-    public function __construct($pm_instance = null)
21
-    {
22
-        require_once($this->file_folder() . 'EEG_Paypal_Express.gateway.php');
23
-        $this->_gateway = new EEG_Paypal_Express();
17
+	/**
18
+	 * EE_PMT_Paypal_Express constructor.
19
+	 */
20
+	public function __construct($pm_instance = null)
21
+	{
22
+		require_once($this->file_folder() . 'EEG_Paypal_Express.gateway.php');
23
+		$this->_gateway = new EEG_Paypal_Express();
24 24
 
25
-        $this->_pretty_name = esc_html__('PayPal Express', 'event_espresso');
26
-        $this->_template_path = $this->file_folder() . 'templates/';
27
-        $this->_default_description = esc_html__(
28
-            // @codingStandardsIgnoreStart
29
-            'After clicking \'Finalize Registration\', you will be forwarded to PayPal website to Login and make your payment.',
30
-            // @codingStandardsIgnoreEnd
31
-            'event_espresso'
32
-        );
33
-        $this->_default_button_url = $this->file_url() . 'lib/paypal-express-checkout-logo-gold-160.png';
25
+		$this->_pretty_name = esc_html__('PayPal Express', 'event_espresso');
26
+		$this->_template_path = $this->file_folder() . 'templates/';
27
+		$this->_default_description = esc_html__(
28
+			// @codingStandardsIgnoreStart
29
+			'After clicking \'Finalize Registration\', you will be forwarded to PayPal website to Login and make your payment.',
30
+			// @codingStandardsIgnoreEnd
31
+			'event_espresso'
32
+		);
33
+		$this->_default_button_url = $this->file_url() . 'lib/paypal-express-checkout-logo-gold-160.png';
34 34
 
35
-        parent::__construct($pm_instance);
36
-    }
35
+		parent::__construct($pm_instance);
36
+	}
37 37
 
38 38
 
39
-    /**
40
-     * Adds the help tab.
41
-     *
42
-     * @see EE_PMT_Base::help_tabs_config()
43
-     * @return array
44
-     */
45
-    public function help_tabs_config()
46
-    {
47
-        return array(
48
-            $this->get_help_tab_name() => array(
49
-                'title'    => esc_html__('PayPal Express Settings', 'event_espresso'),
50
-                'filename' => 'payment_methods_overview_paypal_express'
51
-            )
52
-        );
53
-    }
39
+	/**
40
+	 * Adds the help tab.
41
+	 *
42
+	 * @see EE_PMT_Base::help_tabs_config()
43
+	 * @return array
44
+	 */
45
+	public function help_tabs_config()
46
+	{
47
+		return array(
48
+			$this->get_help_tab_name() => array(
49
+				'title'    => esc_html__('PayPal Express Settings', 'event_espresso'),
50
+				'filename' => 'payment_methods_overview_paypal_express'
51
+			)
52
+		);
53
+	}
54 54
 
55 55
 
56
-    /**
57
-     * Gets the form for all the settings related to this payment method type.
58
-     *
59
-     * @return EE_Payment_Method_Form
60
-     */
61
-    public function generate_new_settings_form()
62
-    {
63
-        return new SettingsForm(array(), $this->get_help_tab_link());
64
-    }
56
+	/**
57
+	 * Gets the form for all the settings related to this payment method type.
58
+	 *
59
+	 * @return EE_Payment_Method_Form
60
+	 */
61
+	public function generate_new_settings_form()
62
+	{
63
+		return new SettingsForm(array(), $this->get_help_tab_link());
64
+	}
65 65
 
66 66
 
67
-    /**
68
-     * Creates a billing form for this payment method type.
69
-     *
70
-     * @param \EE_Transaction $transaction
71
-     * @return \EE_Billing_Info_Form
72
-     */
73
-    public function generate_new_billing_form(EE_Transaction $transaction = null)
74
-    {
75
-        if ($this->_pm_instance->debug_mode()) {
76
-            $form = new EE_Billing_Info_Form(
77
-                $this->_pm_instance,
78
-                array(
79
-                    'name' => 'paypal_express_Info_Form',
80
-                    'subsections' => array(
81
-                        'paypal_express_debug_info' => new EE_Form_Section_Proper(
82
-                            array(
83
-                                'layout_strategy' => new EE_Template_Layout(
84
-                                    array(
85
-                                        'layout_template_file' => $this->_template_path
86
-                                                                    . 'paypal_express_debug_info.template.php',
87
-                                        'template_args'        => array(
88
-                                            'debug_mode' => $this->_pm_instance->debug_mode()
89
-                                        )
90
-                                    )
91
-                                )
92
-                            )
93
-                        )
94
-                    )
95
-                )
96
-            );
97
-            return $form;
98
-        }
67
+	/**
68
+	 * Creates a billing form for this payment method type.
69
+	 *
70
+	 * @param \EE_Transaction $transaction
71
+	 * @return \EE_Billing_Info_Form
72
+	 */
73
+	public function generate_new_billing_form(EE_Transaction $transaction = null)
74
+	{
75
+		if ($this->_pm_instance->debug_mode()) {
76
+			$form = new EE_Billing_Info_Form(
77
+				$this->_pm_instance,
78
+				array(
79
+					'name' => 'paypal_express_Info_Form',
80
+					'subsections' => array(
81
+						'paypal_express_debug_info' => new EE_Form_Section_Proper(
82
+							array(
83
+								'layout_strategy' => new EE_Template_Layout(
84
+									array(
85
+										'layout_template_file' => $this->_template_path
86
+																	. 'paypal_express_debug_info.template.php',
87
+										'template_args'        => array(
88
+											'debug_mode' => $this->_pm_instance->debug_mode()
89
+										)
90
+									)
91
+								)
92
+							)
93
+						)
94
+					)
95
+				)
96
+			);
97
+			return $form;
98
+		}
99 99
 
100
-        return false;
101
-    }
100
+		return false;
101
+	}
102 102
 }
Please login to merge, or discard this patch.
core/services/bootstrap/BootstrapRequestResponseObjects.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@
 block discarded – undo
90 90
     {
91 91
         espresso_load_required(
92 92
             'EE_Request',
93
-            EE_CORE . 'request_stack/EE_Request.core.php'
93
+            EE_CORE.'request_stack/EE_Request.core.php'
94 94
         );
95 95
         $this->legacy_request = new EE_Request($_GET, $_POST, $_COOKIE, $_SERVER);
96 96
         $this->legacy_request->setRequest($this->request);
Please login to merge, or discard this patch.
Indentation   +69 added lines, -69 removed lines patch added patch discarded remove patch
@@ -28,84 +28,84 @@
 block discarded – undo
28 28
  */
29 29
 class BootstrapRequestResponseObjects
30 30
 {
31
-    /**
32
-     * @type LegacyRequestInterface $legacy_request
33
-     */
34
-    protected $legacy_request;
31
+	/**
32
+	 * @type LegacyRequestInterface $legacy_request
33
+	 */
34
+	protected $legacy_request;
35 35
 
36
-    /**
37
-     * @type LoaderInterface $loader
38
-     */
39
-    protected $loader;
36
+	/**
37
+	 * @type LoaderInterface $loader
38
+	 */
39
+	protected $loader;
40 40
 
41
-    /**
42
-     * @var RequestInterface $request
43
-     */
44
-    protected $request;
41
+	/**
42
+	 * @var RequestInterface $request
43
+	 */
44
+	protected $request;
45 45
 
46
-    /**
47
-     * @var ResponseInterface $response
48
-     */
49
-    protected $response;
46
+	/**
47
+	 * @var ResponseInterface $response
48
+	 */
49
+	protected $response;
50 50
 
51 51
 
52
-    /**
53
-     * BootstrapRequestResponseObjects constructor.
54
-     *
55
-     * @param LoaderInterface $loader
56
-     */
57
-    public function __construct(LoaderInterface $loader)
58
-    {
59
-        $this->loader = $loader;
60
-    }
52
+	/**
53
+	 * BootstrapRequestResponseObjects constructor.
54
+	 *
55
+	 * @param LoaderInterface $loader
56
+	 */
57
+	public function __construct(LoaderInterface $loader)
58
+	{
59
+		$this->loader = $loader;
60
+	}
61 61
 
62 62
 
63
-    /**
64
-     * @return void
65
-     */
66
-    public function buildRequestResponse()
67
-    {
68
-        $request_params = new RequestParams(new RequestSanitizer());
69
-        $server_params = new ServerParams(new ServerSanitizer());
70
-        // load our Request and Response objects
71
-        $this->request = new Request($request_params, $server_params);
72
-        $this->response = new Response();
73
-        $this->loader->share(RequestParams::class, $request_params);
74
-        $this->loader->share(ServerParams::class, $server_params);
75
-    }
63
+	/**
64
+	 * @return void
65
+	 */
66
+	public function buildRequestResponse()
67
+	{
68
+		$request_params = new RequestParams(new RequestSanitizer());
69
+		$server_params = new ServerParams(new ServerSanitizer());
70
+		// load our Request and Response objects
71
+		$this->request = new Request($request_params, $server_params);
72
+		$this->response = new Response();
73
+		$this->loader->share(RequestParams::class, $request_params);
74
+		$this->loader->share(ServerParams::class, $server_params);
75
+	}
76 76
 
77 77
 
78
-    /**
79
-     * @return void
80
-     * @throws InvalidArgumentException
81
-     */
82
-    public function shareRequestResponse()
83
-    {
84
-        $this->loader->share('EventEspresso\core\services\request\Request', $this->request);
85
-        $this->loader->share('EventEspresso\core\services\request\Response', $this->response);
86
-        EE_Dependency_Map::instance()->setRequest($this->request);
87
-        EE_Dependency_Map::instance()->setResponse($this->response);
88
-    }
78
+	/**
79
+	 * @return void
80
+	 * @throws InvalidArgumentException
81
+	 */
82
+	public function shareRequestResponse()
83
+	{
84
+		$this->loader->share('EventEspresso\core\services\request\Request', $this->request);
85
+		$this->loader->share('EventEspresso\core\services\request\Response', $this->response);
86
+		EE_Dependency_Map::instance()->setRequest($this->request);
87
+		EE_Dependency_Map::instance()->setResponse($this->response);
88
+	}
89 89
 
90 90
 
91
-    /**
92
-     * @return void
93
-     * @throws InvalidArgumentException
94
-     * @throws EE_Error
95
-     */
96
-    public function setupLegacyRequest()
97
-    {
98
-        espresso_load_required(
99
-            'EE_Request',
100
-            EE_CORE . 'request_stack/EE_Request.core.php'
101
-        );
102
-        $this->legacy_request = new EE_Request($_GET, $_POST, $_COOKIE, $_SERVER);
103
-        $this->legacy_request->setRequest($this->request);
104
-        $this->legacy_request->admin = $this->request->isAdmin();
105
-        $this->legacy_request->ajax = $this->request->isAjax();
106
-        $this->legacy_request->front_ajax = $this->request->isFrontAjax();
107
-        EE_Dependency_Map::instance()->setLegacyRequest($this->legacy_request);
108
-        $this->loader->share('EE_Request', $this->legacy_request);
109
-        $this->loader->share('EventEspresso\core\services\request\LegacyRequestInterface', $this->legacy_request);
110
-    }
91
+	/**
92
+	 * @return void
93
+	 * @throws InvalidArgumentException
94
+	 * @throws EE_Error
95
+	 */
96
+	public function setupLegacyRequest()
97
+	{
98
+		espresso_load_required(
99
+			'EE_Request',
100
+			EE_CORE . 'request_stack/EE_Request.core.php'
101
+		);
102
+		$this->legacy_request = new EE_Request($_GET, $_POST, $_COOKIE, $_SERVER);
103
+		$this->legacy_request->setRequest($this->request);
104
+		$this->legacy_request->admin = $this->request->isAdmin();
105
+		$this->legacy_request->ajax = $this->request->isAjax();
106
+		$this->legacy_request->front_ajax = $this->request->isFrontAjax();
107
+		EE_Dependency_Map::instance()->setLegacyRequest($this->legacy_request);
108
+		$this->loader->share('EE_Request', $this->legacy_request);
109
+		$this->loader->share('EventEspresso\core\services\request\LegacyRequestInterface', $this->legacy_request);
110
+	}
111 111
 }
Please login to merge, or discard this patch.
core/services/bootstrap/BootstrapCore.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
         // load interfaces
200 200
         espresso_load_required(
201 201
             'EEH_Autoloader',
202
-            EE_CORE . 'helpers/EEH_Autoloader.helper.php'
202
+            EE_CORE.'helpers/EEH_Autoloader.helper.php'
203 203
         );
204 204
         EEH_Autoloader::instance();
205 205
     }
@@ -213,13 +213,13 @@  discard block
 block discarded – undo
213 213
     protected function setAutoloadersForRequiredFiles()
214 214
     {
215 215
         // load interfaces
216
-        EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_CORE . 'interfaces', true);
216
+        EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_CORE.'interfaces', true);
217 217
         // load helpers
218 218
         EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_HELPERS);
219 219
         // register legacy request stack classes just in case
220
-        EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_CORE . 'request_stack/');
220
+        EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_CORE.'request_stack/');
221 221
         // register legacy middleware classes just in case
222
-        EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_CORE . 'middleware/');
222
+        EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_CORE.'middleware/');
223 223
     }
224 224
 
225 225
 
Please login to merge, or discard this patch.
Indentation   +199 added lines, -199 removed lines patch added patch discarded remove patch
@@ -46,225 +46,225 @@
 block discarded – undo
46 46
  */
47 47
 class BootstrapCore
48 48
 {
49
-    /**
50
-     * @type LoaderInterface $loader
51
-     */
52
-    private $loader;
49
+	/**
50
+	 * @type LoaderInterface $loader
51
+	 */
52
+	private $loader;
53 53
 
54
-    /**
55
-     * @var RequestInterface $request
56
-     */
57
-    protected $request;
54
+	/**
55
+	 * @var RequestInterface $request
56
+	 */
57
+	protected $request;
58 58
 
59
-    /**
60
-     * @var ResponseInterface $response
61
-     */
62
-    protected $response;
59
+	/**
60
+	 * @var ResponseInterface $response
61
+	 */
62
+	protected $response;
63 63
 
64
-    /**
65
-     * @var RequestStackBuilder $request_stack_builder
66
-     */
67
-    protected $request_stack_builder;
64
+	/**
65
+	 * @var RequestStackBuilder $request_stack_builder
66
+	 */
67
+	protected $request_stack_builder;
68 68
 
69
-    /**
70
-     * @var RequestStack $request_stack
71
-     */
72
-    protected $request_stack;
69
+	/**
70
+	 * @var RequestStack $request_stack
71
+	 */
72
+	protected $request_stack;
73 73
 
74 74
 
75
-    /**
76
-     * BootstrapCore constructor.
77
-     */
78
-    public function __construct()
79
-    {
80
-        do_action('AHEE__EventEspresso_core_services_bootstrap_BootstrapCore___construct');
81
-        // construct request stack and run middleware apps as soon as all WP plugins are loaded
82
-        add_action('plugins_loaded', array($this, 'initialize'), 0);
83
-    }
75
+	/**
76
+	 * BootstrapCore constructor.
77
+	 */
78
+	public function __construct()
79
+	{
80
+		do_action('AHEE__EventEspresso_core_services_bootstrap_BootstrapCore___construct');
81
+		// construct request stack and run middleware apps as soon as all WP plugins are loaded
82
+		add_action('plugins_loaded', array($this, 'initialize'), 0);
83
+	}
84 84
 
85 85
 
86
-    /**
87
-     * @throws DomainException
88
-     * @throws EE_Error
89
-     * @throws Exception
90
-     * @throws InvalidArgumentException
91
-     * @throws InvalidClassException
92
-     * @throws InvalidDataTypeException
93
-     * @throws InvalidFilePathException
94
-     * @throws InvalidInterfaceException
95
-     * @throws InvalidRequestStackMiddlewareException
96
-     * @throws OutOfBoundsException
97
-     * @throws ReflectionException
98
-     */
99
-    public function initialize()
100
-    {
101
-        $this->bootstrapDependencyInjectionContainer();
102
-        $this->bootstrapDomain();
103
-        $bootstrap_request = $this->bootstrapRequestResponseObjects();
104
-        add_action(
105
-            'EE_Load_Espresso_Core__handle_request__initialize_core_loading',
106
-            array($bootstrap_request, 'setupLegacyRequest')
107
-        );
108
-        $this->runRequestStack();
109
-    }
86
+	/**
87
+	 * @throws DomainException
88
+	 * @throws EE_Error
89
+	 * @throws Exception
90
+	 * @throws InvalidArgumentException
91
+	 * @throws InvalidClassException
92
+	 * @throws InvalidDataTypeException
93
+	 * @throws InvalidFilePathException
94
+	 * @throws InvalidInterfaceException
95
+	 * @throws InvalidRequestStackMiddlewareException
96
+	 * @throws OutOfBoundsException
97
+	 * @throws ReflectionException
98
+	 */
99
+	public function initialize()
100
+	{
101
+		$this->bootstrapDependencyInjectionContainer();
102
+		$this->bootstrapDomain();
103
+		$bootstrap_request = $this->bootstrapRequestResponseObjects();
104
+		add_action(
105
+			'EE_Load_Espresso_Core__handle_request__initialize_core_loading',
106
+			array($bootstrap_request, 'setupLegacyRequest')
107
+		);
108
+		$this->runRequestStack();
109
+	}
110 110
 
111 111
 
112
-    /**
113
-     * @throws ReflectionException
114
-     * @throws EE_Error
115
-     * @throws InvalidArgumentException
116
-     * @throws InvalidDataTypeException
117
-     * @throws InvalidInterfaceException
118
-     * @throws OutOfBoundsException
119
-     */
120
-    private function bootstrapDependencyInjectionContainer()
121
-    {
122
-        $bootstrap_di = new BootstrapDependencyInjectionContainer();
123
-        $bootstrap_di->buildLegacyDependencyInjectionContainer();
124
-        $bootstrap_di->buildLoader();
125
-        $registry = $bootstrap_di->getRegistry();
126
-        $dependency_map = $bootstrap_di->getDependencyMap();
127
-        $dependency_map->initialize();
128
-        $registry->initialize();
129
-        $this->loader = $bootstrap_di->getLoader();
130
-    }
112
+	/**
113
+	 * @throws ReflectionException
114
+	 * @throws EE_Error
115
+	 * @throws InvalidArgumentException
116
+	 * @throws InvalidDataTypeException
117
+	 * @throws InvalidInterfaceException
118
+	 * @throws OutOfBoundsException
119
+	 */
120
+	private function bootstrapDependencyInjectionContainer()
121
+	{
122
+		$bootstrap_di = new BootstrapDependencyInjectionContainer();
123
+		$bootstrap_di->buildLegacyDependencyInjectionContainer();
124
+		$bootstrap_di->buildLoader();
125
+		$registry = $bootstrap_di->getRegistry();
126
+		$dependency_map = $bootstrap_di->getDependencyMap();
127
+		$dependency_map->initialize();
128
+		$registry->initialize();
129
+		$this->loader = $bootstrap_di->getLoader();
130
+	}
131 131
 
132 132
 
133
-    /**
134
-     * configures the Domain object for core
135
-     *
136
-     * @return void
137
-     * @throws DomainException
138
-     * @throws InvalidArgumentException
139
-     * @throws InvalidDataTypeException
140
-     * @throws InvalidClassException
141
-     * @throws InvalidFilePathException
142
-     * @throws InvalidInterfaceException
143
-     */
144
-    private function bootstrapDomain()
145
-    {
146
-        DomainFactory::getEventEspressoCoreDomain();
147
-    }
133
+	/**
134
+	 * configures the Domain object for core
135
+	 *
136
+	 * @return void
137
+	 * @throws DomainException
138
+	 * @throws InvalidArgumentException
139
+	 * @throws InvalidDataTypeException
140
+	 * @throws InvalidClassException
141
+	 * @throws InvalidFilePathException
142
+	 * @throws InvalidInterfaceException
143
+	 */
144
+	private function bootstrapDomain()
145
+	{
146
+		DomainFactory::getEventEspressoCoreDomain();
147
+	}
148 148
 
149 149
 
150
-    /**
151
-     * sets up the request and response objects
152
-     *
153
-     * @return BootstrapRequestResponseObjects
154
-     * @throws InvalidArgumentException
155
-     */
156
-    private function bootstrapRequestResponseObjects()
157
-    {
158
-        /** @var BootstrapRequestResponseObjects $bootstrap_request */
159
-        $bootstrap_request = $this->loader->getShared(
160
-            'EventEspresso\core\services\bootstrap\BootstrapRequestResponseObjects',
161
-            array($this->loader)
162
-        );
163
-        $bootstrap_request->buildRequestResponse();
164
-        $bootstrap_request->shareRequestResponse();
165
-        $this->request = $this->loader->getShared('EventEspresso\core\services\request\Request');
166
-        $this->response = $this->loader->getShared('EventEspresso\core\services\request\Response');
167
-        return $bootstrap_request;
168
-    }
150
+	/**
151
+	 * sets up the request and response objects
152
+	 *
153
+	 * @return BootstrapRequestResponseObjects
154
+	 * @throws InvalidArgumentException
155
+	 */
156
+	private function bootstrapRequestResponseObjects()
157
+	{
158
+		/** @var BootstrapRequestResponseObjects $bootstrap_request */
159
+		$bootstrap_request = $this->loader->getShared(
160
+			'EventEspresso\core\services\bootstrap\BootstrapRequestResponseObjects',
161
+			array($this->loader)
162
+		);
163
+		$bootstrap_request->buildRequestResponse();
164
+		$bootstrap_request->shareRequestResponse();
165
+		$this->request = $this->loader->getShared('EventEspresso\core\services\request\Request');
166
+		$this->response = $this->loader->getShared('EventEspresso\core\services\request\Response');
167
+		return $bootstrap_request;
168
+	}
169 169
 
170 170
 
171
-    /**
172
-     * run_request_stack
173
-     * construct request stack and run middleware apps
174
-     *
175
-     * @throws EE_Error
176
-     * @throws Exception
177
-     */
178
-    public function runRequestStack()
179
-    {
180
-        $this->loadAutoloader();
181
-        $this->setAutoloadersForRequiredFiles();
182
-        $this->request_stack_builder = $this->buildRequestStack();
183
-        $this->request_stack = $this->request_stack_builder->resolve(
184
-            new RequestStackCoreApp()
185
-        );
186
-        $this->request_stack->handleRequest($this->request, $this->response);
187
-        $this->request_stack->handleResponse();
188
-    }
171
+	/**
172
+	 * run_request_stack
173
+	 * construct request stack and run middleware apps
174
+	 *
175
+	 * @throws EE_Error
176
+	 * @throws Exception
177
+	 */
178
+	public function runRequestStack()
179
+	{
180
+		$this->loadAutoloader();
181
+		$this->setAutoloadersForRequiredFiles();
182
+		$this->request_stack_builder = $this->buildRequestStack();
183
+		$this->request_stack = $this->request_stack_builder->resolve(
184
+			new RequestStackCoreApp()
185
+		);
186
+		$this->request_stack->handleRequest($this->request, $this->response);
187
+		$this->request_stack->handleResponse();
188
+	}
189 189
 
190 190
 
191
-    /**
192
-     * load_autoloader
193
-     *
194
-     * @throws EE_Error
195
-     */
196
-    protected function loadAutoloader()
197
-    {
198
-        // load interfaces
199
-        espresso_load_required(
200
-            'EEH_Autoloader',
201
-            EE_CORE . 'helpers/EEH_Autoloader.helper.php'
202
-        );
203
-        EEH_Autoloader::instance();
204
-    }
191
+	/**
192
+	 * load_autoloader
193
+	 *
194
+	 * @throws EE_Error
195
+	 */
196
+	protected function loadAutoloader()
197
+	{
198
+		// load interfaces
199
+		espresso_load_required(
200
+			'EEH_Autoloader',
201
+			EE_CORE . 'helpers/EEH_Autoloader.helper.php'
202
+		);
203
+		EEH_Autoloader::instance();
204
+	}
205 205
 
206 206
 
207
-    /**
208
-     * load_required_files
209
-     *
210
-     * @throws EE_Error
211
-     */
212
-    protected function setAutoloadersForRequiredFiles()
213
-    {
214
-        // load interfaces
215
-        EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_CORE . 'interfaces', true);
216
-        // load helpers
217
-        EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_HELPERS);
218
-        // register legacy request stack classes just in case
219
-        EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_CORE . 'request_stack/');
220
-        // register legacy middleware classes just in case
221
-        EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_CORE . 'middleware/');
222
-    }
207
+	/**
208
+	 * load_required_files
209
+	 *
210
+	 * @throws EE_Error
211
+	 */
212
+	protected function setAutoloadersForRequiredFiles()
213
+	{
214
+		// load interfaces
215
+		EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_CORE . 'interfaces', true);
216
+		// load helpers
217
+		EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_HELPERS);
218
+		// register legacy request stack classes just in case
219
+		EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_CORE . 'request_stack/');
220
+		// register legacy middleware classes just in case
221
+		EEH_Autoloader::register_autoloaders_for_each_file_in_folder(EE_CORE . 'middleware/');
222
+	}
223 223
 
224 224
 
225
-    /**
226
-     * build_request_stack
227
-     *
228
-     * @return RequestStackBuilder
229
-     */
230
-    public function buildRequestStack()
231
-    {
232
-        $request_stack_builder = new RequestStackBuilder($this->loader);
233
-        /**
234
-         * ! IMPORTANT ! The middleware stack operates FILO : FIRST IN LAST OUT
235
-         * so items at the beginning of the final middleware stack will run last.
236
-         * First parameter is the middleware classname, second is an array of arguments
237
-         */
238
-        $stack_apps = apply_filters(
239
-            'FHEE__EventEspresso_core_services_bootstrap_BootstrapCore__buildRequestStack__stack_apps',
240
-            array(
241
-                // first in last out
242
-                'EventEspresso\core\services\request\middleware\BotDetector'                 => array(),
243
-                'EventEspresso\core\services\request\middleware\DetectFileEditorRequest'     => array(),
244
-                'EventEspresso\core\services\request\middleware\PreProductionVersionWarning' => array(),
245
-                'EventEspresso\core\services\request\middleware\RecommendedVersions'         => array(),
246
-                // last in first out
247
-                'EventEspresso\core\services\request\middleware\DetectLogin'                 => array(),
248
-            )
249
-        );
250
-        // legacy filter for backwards compatibility
251
-        $stack_apps = apply_filters(
252
-            'FHEE__EE_Bootstrap__build_request_stack__stack_apps',
253
-            $stack_apps
254
-        );
255
-        // load middleware onto stack : FILO (First In Last Out)
256
-        // items at the beginning of the $stack_apps array will run last
257
-        foreach ((array) $stack_apps as $stack_app => $stack_app_args) {
258
-            $request_stack_builder->push(array($stack_app, $stack_app_args));
259
-        }
260
-        // finally, we'll add this on its own because we need it to always be part of the stack
261
-        // and we also need it to always run first because the rest of the system relies on it
262
-        $request_stack_builder->push(
263
-            array('EventEspresso\core\services\request\middleware\SetRequestTypeContextChecker', array())
264
-        );
265
-        return apply_filters(
266
-            'FHEE__EE_Bootstrap__build_request_stack__request_stack_builder',
267
-            $request_stack_builder
268
-        );
269
-    }
225
+	/**
226
+	 * build_request_stack
227
+	 *
228
+	 * @return RequestStackBuilder
229
+	 */
230
+	public function buildRequestStack()
231
+	{
232
+		$request_stack_builder = new RequestStackBuilder($this->loader);
233
+		/**
234
+		 * ! IMPORTANT ! The middleware stack operates FILO : FIRST IN LAST OUT
235
+		 * so items at the beginning of the final middleware stack will run last.
236
+		 * First parameter is the middleware classname, second is an array of arguments
237
+		 */
238
+		$stack_apps = apply_filters(
239
+			'FHEE__EventEspresso_core_services_bootstrap_BootstrapCore__buildRequestStack__stack_apps',
240
+			array(
241
+				// first in last out
242
+				'EventEspresso\core\services\request\middleware\BotDetector'                 => array(),
243
+				'EventEspresso\core\services\request\middleware\DetectFileEditorRequest'     => array(),
244
+				'EventEspresso\core\services\request\middleware\PreProductionVersionWarning' => array(),
245
+				'EventEspresso\core\services\request\middleware\RecommendedVersions'         => array(),
246
+				// last in first out
247
+				'EventEspresso\core\services\request\middleware\DetectLogin'                 => array(),
248
+			)
249
+		);
250
+		// legacy filter for backwards compatibility
251
+		$stack_apps = apply_filters(
252
+			'FHEE__EE_Bootstrap__build_request_stack__stack_apps',
253
+			$stack_apps
254
+		);
255
+		// load middleware onto stack : FILO (First In Last Out)
256
+		// items at the beginning of the $stack_apps array will run last
257
+		foreach ((array) $stack_apps as $stack_app => $stack_app_args) {
258
+			$request_stack_builder->push(array($stack_app, $stack_app_args));
259
+		}
260
+		// finally, we'll add this on its own because we need it to always be part of the stack
261
+		// and we also need it to always run first because the rest of the system relies on it
262
+		$request_stack_builder->push(
263
+			array('EventEspresso\core\services\request\middleware\SetRequestTypeContextChecker', array())
264
+		);
265
+		return apply_filters(
266
+			'FHEE__EE_Bootstrap__build_request_stack__request_stack_builder',
267
+			$request_stack_builder
268
+		);
269
+	}
270 270
 }
Please login to merge, or discard this patch.
core/services/container/OpenCoffeeShop.php 2 patches
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -129,8 +129,8 @@  discard block
 block discarded – undo
129 129
                 array(),
130 130
                 CoffeeMaker::BREW_LOAD_ONLY,
131 131
                 array(
132
-                    EE_INTERFACES . '*.php',
133
-                    EE_INTERFACES . '*.interfaces.php',
132
+                    EE_INTERFACES.'*.php',
133
+                    EE_INTERFACES.'*.interfaces.php',
134 134
                 )
135 135
             )
136 136
         );
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
                 array(),
143 143
                 array(),
144 144
                 CoffeeMaker::BREW_SHARED,
145
-                EE_MODELS . '*.model.php'
145
+                EE_MODELS.'*.model.php'
146 146
             )
147 147
         );
148 148
         // add a wildcard recipe for loading core classes
@@ -154,10 +154,10 @@  discard block
 block discarded – undo
154 154
                 array(),
155 155
                 CoffeeMaker::BREW_SHARED,
156 156
                 array(
157
-                    EE_CORE . '*.core.php',
158
-                    EE_ADMIN . '*.core.php',
159
-                    EE_CPTS . '*.core.php',
160
-                    EE_CORE . 'data_migration_scripts/*.core.php',
157
+                    EE_CORE.'*.core.php',
158
+                    EE_ADMIN.'*.core.php',
159
+                    EE_CPTS.'*.core.php',
160
+                    EE_CORE.'data_migration_scripts/*.core.php',
161 161
                 )
162 162
             )
163 163
         );
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
                 array(),
170 170
                 array(),
171 171
                 CoffeeMaker::BREW_LOAD_ONLY,
172
-                array(EE_ADMIN . '*.core.php')
172
+                array(EE_ADMIN.'*.core.php')
173 173
             )
174 174
         );
175 175
         // add a wildcard recipe for loading core classes
Please login to merge, or discard this patch.
Indentation   +178 added lines, -178 removed lines patch added patch discarded remove patch
@@ -19,192 +19,192 @@
 block discarded – undo
19 19
  */
20 20
 class OpenCoffeeShop
21 21
 {
22
-    /**
23
-     * @var CoffeeShop $CoffeeShop
24
-     */
25
-    private $CoffeeShop;
22
+	/**
23
+	 * @var CoffeeShop $CoffeeShop
24
+	 */
25
+	private $CoffeeShop;
26 26
 
27 27
 
28
-    /**
29
-     * OpenCoffeeShop constructor
30
-     *
31
-     * @throws InvalidInterfaceException
32
-     */
33
-    public function __construct()
34
-    {
35
-        // instantiate the DI container
36
-        $this->CoffeeShop = new CoffeeShop();
37
-    }
28
+	/**
29
+	 * OpenCoffeeShop constructor
30
+	 *
31
+	 * @throws InvalidInterfaceException
32
+	 */
33
+	public function __construct()
34
+	{
35
+		// instantiate the DI container
36
+		$this->CoffeeShop = new CoffeeShop();
37
+	}
38 38
 
39 39
 
40
-    // phpcs:disable PSR1.Methods.CamelCapsMethodName.NotCamelCaps
41
-    /**
42
-     * @return CoffeeShop
43
-     */
44
-    public function CoffeeShop()
45
-    {
46
-        return $this->CoffeeShop;
47
-    }
40
+	// phpcs:disable PSR1.Methods.CamelCapsMethodName.NotCamelCaps
41
+	/**
42
+	 * @return CoffeeShop
43
+	 */
44
+	public function CoffeeShop()
45
+	{
46
+		return $this->CoffeeShop;
47
+	}
48 48
 
49 49
 
50
-    /**
51
-     * configure coffee makers which control the different kinds of brews
52
-     * ( shared services, new factory objects, etc )
53
-     *
54
-     * @throws InvalidEntityException
55
-     */
56
-    public function setupCoffeeMakers()
57
-    {
58
-        // create a dependency injector class for resolving class constructor arguments
59
-        $DependencyInjector = new DependencyInjector(
60
-            $this->CoffeeShop,
61
-            new \EEH_Array()
62
-        );
63
-        // and some coffeemakers, one for creating new instances
64
-        $this->CoffeeShop->addCoffeeMaker(
65
-            new NewCoffeeMaker($this->CoffeeShop, $DependencyInjector),
66
-            CoffeeMaker::BREW_NEW
67
-        );
68
-        // one for shared services
69
-        $this->CoffeeShop->addCoffeeMaker(
70
-            new SharedCoffeeMaker($this->CoffeeShop, $DependencyInjector),
71
-            CoffeeMaker::BREW_SHARED
72
-        );
73
-        // and one for classes that only get loaded
74
-        $this->CoffeeShop->addCoffeeMaker(
75
-            new LoadOnlyCoffeeMaker($this->CoffeeShop, $DependencyInjector),
76
-            CoffeeMaker::BREW_LOAD_ONLY
77
-        );
78
-    }
50
+	/**
51
+	 * configure coffee makers which control the different kinds of brews
52
+	 * ( shared services, new factory objects, etc )
53
+	 *
54
+	 * @throws InvalidEntityException
55
+	 */
56
+	public function setupCoffeeMakers()
57
+	{
58
+		// create a dependency injector class for resolving class constructor arguments
59
+		$DependencyInjector = new DependencyInjector(
60
+			$this->CoffeeShop,
61
+			new \EEH_Array()
62
+		);
63
+		// and some coffeemakers, one for creating new instances
64
+		$this->CoffeeShop->addCoffeeMaker(
65
+			new NewCoffeeMaker($this->CoffeeShop, $DependencyInjector),
66
+			CoffeeMaker::BREW_NEW
67
+		);
68
+		// one for shared services
69
+		$this->CoffeeShop->addCoffeeMaker(
70
+			new SharedCoffeeMaker($this->CoffeeShop, $DependencyInjector),
71
+			CoffeeMaker::BREW_SHARED
72
+		);
73
+		// and one for classes that only get loaded
74
+		$this->CoffeeShop->addCoffeeMaker(
75
+			new LoadOnlyCoffeeMaker($this->CoffeeShop, $DependencyInjector),
76
+			CoffeeMaker::BREW_LOAD_ONLY
77
+		);
78
+	}
79 79
 
80 80
 
81
-    /**
82
-     * Recipes define how to load legacy classes
83
-     *
84
-     * @throws InvalidIdentifierException
85
-     */
86
-    public function addRecipes()
87
-    {
88
-        // add default recipe, which should handle loading for most PSR-4 compatible classes
89
-        // as long as they are not type hinting for interfaces
90
-        $this->CoffeeShop->addRecipe(
91
-            new Recipe(
92
-                Recipe::DEFAULT_ID
93
-            )
94
-        );
95
-        // PSR-4 compatible class with aliases
96
-        $this->CoffeeShop->addRecipe(
97
-            new Recipe(
98
-                'CommandHandlerManager',
99
-                'EventEspresso\core\services\commands\CommandHandlerManager',
100
-                array(
101
-                    'CommandHandlerManagerInterface',
102
-                    'EventEspresso\core\services\commands\CommandHandlerManagerInterface',
103
-                ),
104
-                array(),
105
-                CoffeeMaker::BREW_SHARED
106
-            )
107
-        );
108
-        // PSR-4 compatible class with aliases, which dependency on CommandHandlerManager
109
-        $this->CoffeeShop->addRecipe(
110
-            new Recipe(
111
-                'CommandBus',
112
-                'EventEspresso\core\services\commands\CommandBus',
113
-                array(
114
-                    'CommandBusInterface',
115
-                    'EventEspresso\core\services\commands\CommandBusInterface',
116
-                ),
117
-                array(),
118
-                CoffeeMaker::BREW_SHARED
119
-            )
120
-        );
121
-        // LEGACY classes that are NOT compatible with PSR-4 autoloading, and so must specify a filepath
122
-        // add a wildcard recipe for loading legacy core interfaces
123
-        $this->CoffeeShop->addRecipe(
124
-            new Recipe(
125
-                'EEI_*',
126
-                '',
127
-                array(),
128
-                array(),
129
-                CoffeeMaker::BREW_LOAD_ONLY,
130
-                array(
131
-                    EE_INTERFACES . '*.php',
132
-                    EE_INTERFACES . '*.interfaces.php',
133
-                )
134
-            )
135
-        );
136
-        // add a wildcard recipe for loading models
137
-        $this->CoffeeShop->addRecipe(
138
-            new Recipe(
139
-                'EEM_*',
140
-                '',
141
-                array(),
142
-                array(),
143
-                CoffeeMaker::BREW_SHARED,
144
-                EE_MODELS . '*.model.php'
145
-            )
146
-        );
147
-        // add a wildcard recipe for loading core classes
148
-        $this->CoffeeShop->addRecipe(
149
-            new Recipe(
150
-                'EE_*',
151
-                '',
152
-                array(),
153
-                array(),
154
-                CoffeeMaker::BREW_SHARED,
155
-                array(
156
-                    EE_CORE . '*.core.php',
157
-                    EE_ADMIN . '*.core.php',
158
-                    EE_CPTS . '*.core.php',
159
-                    EE_CORE . 'data_migration_scripts/*.core.php',
160
-                )
161
-            )
162
-        );
163
-        // load admin page parent class
164
-        $this->CoffeeShop->addRecipe(
165
-            new Recipe(
166
-                'EE_Admin_Page*',
167
-                '',
168
-                array(),
169
-                array(),
170
-                CoffeeMaker::BREW_LOAD_ONLY,
171
-                array(EE_ADMIN . '*.core.php')
172
-            )
173
-        );
174
-        // add a wildcard recipe for loading core classes
175
-        // $this->CoffeeShop->addRecipe(
176
-        //     new Recipe(
177
-        //         '*_Admin_Page',
178
-        //         '',
179
-        //         array(),
180
-        //         array(),
181
-        //         CoffeeMaker::BREW_SHARED,
182
-        //         array(
183
-        //             EE_ADMIN_PAGES . 'transactions/*.core.php',
184
-        //         )
185
-        //     )
186
-        // );
187
-    }
81
+	/**
82
+	 * Recipes define how to load legacy classes
83
+	 *
84
+	 * @throws InvalidIdentifierException
85
+	 */
86
+	public function addRecipes()
87
+	{
88
+		// add default recipe, which should handle loading for most PSR-4 compatible classes
89
+		// as long as they are not type hinting for interfaces
90
+		$this->CoffeeShop->addRecipe(
91
+			new Recipe(
92
+				Recipe::DEFAULT_ID
93
+			)
94
+		);
95
+		// PSR-4 compatible class with aliases
96
+		$this->CoffeeShop->addRecipe(
97
+			new Recipe(
98
+				'CommandHandlerManager',
99
+				'EventEspresso\core\services\commands\CommandHandlerManager',
100
+				array(
101
+					'CommandHandlerManagerInterface',
102
+					'EventEspresso\core\services\commands\CommandHandlerManagerInterface',
103
+				),
104
+				array(),
105
+				CoffeeMaker::BREW_SHARED
106
+			)
107
+		);
108
+		// PSR-4 compatible class with aliases, which dependency on CommandHandlerManager
109
+		$this->CoffeeShop->addRecipe(
110
+			new Recipe(
111
+				'CommandBus',
112
+				'EventEspresso\core\services\commands\CommandBus',
113
+				array(
114
+					'CommandBusInterface',
115
+					'EventEspresso\core\services\commands\CommandBusInterface',
116
+				),
117
+				array(),
118
+				CoffeeMaker::BREW_SHARED
119
+			)
120
+		);
121
+		// LEGACY classes that are NOT compatible with PSR-4 autoloading, and so must specify a filepath
122
+		// add a wildcard recipe for loading legacy core interfaces
123
+		$this->CoffeeShop->addRecipe(
124
+			new Recipe(
125
+				'EEI_*',
126
+				'',
127
+				array(),
128
+				array(),
129
+				CoffeeMaker::BREW_LOAD_ONLY,
130
+				array(
131
+					EE_INTERFACES . '*.php',
132
+					EE_INTERFACES . '*.interfaces.php',
133
+				)
134
+			)
135
+		);
136
+		// add a wildcard recipe for loading models
137
+		$this->CoffeeShop->addRecipe(
138
+			new Recipe(
139
+				'EEM_*',
140
+				'',
141
+				array(),
142
+				array(),
143
+				CoffeeMaker::BREW_SHARED,
144
+				EE_MODELS . '*.model.php'
145
+			)
146
+		);
147
+		// add a wildcard recipe for loading core classes
148
+		$this->CoffeeShop->addRecipe(
149
+			new Recipe(
150
+				'EE_*',
151
+				'',
152
+				array(),
153
+				array(),
154
+				CoffeeMaker::BREW_SHARED,
155
+				array(
156
+					EE_CORE . '*.core.php',
157
+					EE_ADMIN . '*.core.php',
158
+					EE_CPTS . '*.core.php',
159
+					EE_CORE . 'data_migration_scripts/*.core.php',
160
+				)
161
+			)
162
+		);
163
+		// load admin page parent class
164
+		$this->CoffeeShop->addRecipe(
165
+			new Recipe(
166
+				'EE_Admin_Page*',
167
+				'',
168
+				array(),
169
+				array(),
170
+				CoffeeMaker::BREW_LOAD_ONLY,
171
+				array(EE_ADMIN . '*.core.php')
172
+			)
173
+		);
174
+		// add a wildcard recipe for loading core classes
175
+		// $this->CoffeeShop->addRecipe(
176
+		//     new Recipe(
177
+		//         '*_Admin_Page',
178
+		//         '',
179
+		//         array(),
180
+		//         array(),
181
+		//         CoffeeMaker::BREW_SHARED,
182
+		//         array(
183
+		//             EE_ADMIN_PAGES . 'transactions/*.core.php',
184
+		//         )
185
+		//     )
186
+		// );
187
+	}
188 188
 
189 189
 
190
-    /**
191
-     * bootstrap EE and the request stack
192
-     *
193
-     * @throws ServiceNotFoundException
194
-     * @throws InvalidClassException
195
-     * @throws InvalidDataTypeException
196
-     * @throws InvalidIdentifierException
197
-     * @throws exceptions\ServiceExistsException
198
-     * @throws OutOfBoundsException
199
-     * @throws exceptions\InstantiationException
200
-     */
201
-    public function firstBrew()
202
-    {
203
-        $this->CoffeeShop->brew(
204
-            'EventEspresso\core\services\request\Request',
205
-            array($_GET, $_POST, $_COOKIE, $_SERVER)
206
-        );
207
-        $this->CoffeeShop->brew('EventEspresso\core\services\request\Response');
208
-        $this->CoffeeShop->brew('EE_Bootstrap');
209
-    }
190
+	/**
191
+	 * bootstrap EE and the request stack
192
+	 *
193
+	 * @throws ServiceNotFoundException
194
+	 * @throws InvalidClassException
195
+	 * @throws InvalidDataTypeException
196
+	 * @throws InvalidIdentifierException
197
+	 * @throws exceptions\ServiceExistsException
198
+	 * @throws OutOfBoundsException
199
+	 * @throws exceptions\InstantiationException
200
+	 */
201
+	public function firstBrew()
202
+	{
203
+		$this->CoffeeShop->brew(
204
+			'EventEspresso\core\services\request\Request',
205
+			array($_GET, $_POST, $_COOKIE, $_SERVER)
206
+		);
207
+		$this->CoffeeShop->brew('EventEspresso\core\services\request\Response');
208
+		$this->CoffeeShop->brew('EE_Bootstrap');
209
+	}
210 210
 }
Please login to merge, or discard this patch.
core/services/licensing/LicenseService.php 2 patches
Indentation   +90 added lines, -90 removed lines patch added patch discarded remove patch
@@ -15,94 +15,94 @@
 block discarded – undo
15 15
  */
16 16
 class LicenseService
17 17
 {
18
-    /**
19
-     * @var Config
20
-     */
21
-    private $config;
22
-
23
-
24
-    /**
25
-     * @var Stats
26
-     */
27
-    private $stats_collection;
28
-
29
-    public function __construct(Stats $stats_collection, Config $config)
30
-    {
31
-        $this->config = $config;
32
-        $this->stats_collection = $stats_collection;
33
-        $this->loadPueClient();
34
-    }
35
-
36
-    private function loadPueClient()
37
-    {
38
-        // PUE Auto Upgrades stuff
39
-        if (is_readable(EE_THIRD_PARTY . 'pue/pue-client.php')) { // include the file
40
-            require_once(EE_THIRD_PARTY . 'pue/pue-client.php');
41
-
42
-            // $options needs to be an array with the included keys as listed.
43
-            $options = array(
44
-                // 'optionName' => '', //(optional) - used as the reference for saving update information in the
45
-                // clients options table.  Will be automatically set if left blank.
46
-                'apikey'                => $this->config->siteLicenseKey(),
47
-                // (required), you will need to obtain the apikey that the client gets from your site and
48
-                // then saves in their sites options table (see 'getting an api-key' below)
49
-                'lang_domain'           => $this->config->i18nDomain(),
50
-                // (optional) - put here whatever reference you are using for the localization of your plugin (if it's
51
-                // localized).  That way strings in this file will be included in the translation for your plugin.
52
-                'checkPeriod'           => $this->config->checkPeriod(),
53
-                // (optional) - use this parameter to indicate how often you want the client's install to ping your
54
-                // server for update checks.  The integer indicates hours.  If you don't include this parameter it will
55
-                // default to 12 hours.
56
-                'option_key'            => $this->config->optionKey(),
57
-                // this is what is used to reference the api_key in your plugin options.  PUE uses this to trigger
58
-                // updating your information message whenever this option_key is modified.
59
-                'options_page_slug'     => $this->config->optionsPageSlug(),
60
-                'plugin_basename'       => EE_PLUGIN_BASENAME,
61
-                'use_wp_update'         => true,
62
-                // if TRUE then you want FREE versions of the plugin to be updated from WP
63
-                'extra_stats'           => $this->stats_collection->statsCallback(),
64
-                'turn_on_notices_saved' => true,
65
-            );
66
-            // initiate the class and start the plugin update engine!
67
-            new PluginUpdateEngineChecker(
68
-                $this->config->hostServerUrl(),
69
-                $this->config->pluginSlug(),
70
-                $options
71
-            );
72
-        }
73
-    }
74
-
75
-
76
-    /**
77
-     * This is a handy helper method for retrieving whether there is an update available for the given plugin.
78
-     *
79
-     * @param  string $basename Use the equivalent result from plugin_basename() for this param as WP uses that to
80
-     *                          identify plugins. Defaults to core update
81
-     * @return boolean           True if update available, false if not.
82
-     */
83
-    public static function isUpdateAvailable($basename = '')
84
-    {
85
-        $basename = ! empty($basename) ? $basename : EE_PLUGIN_BASENAME;
86
-
87
-        $update = false;
88
-
89
-        // should take "event-espresso-core/espresso.php" and change to "/event-espresso-core"
90
-        $folder = '/' . dirname($basename);
91
-
92
-        $plugins = get_plugins($folder);
93
-        $current = get_site_transient('update_plugins');
94
-
95
-        foreach ((array) $plugins as $plugin_file => $plugin_data) {
96
-            if (isset($current->response['plugin_file'])) {
97
-                $update = true;
98
-            }
99
-        }
100
-
101
-        // it's possible that there is an update but an invalid site-license-key is in use
102
-        if (get_site_option('pue_json_error_' . $basename)) {
103
-            $update = true;
104
-        }
105
-
106
-        return $update;
107
-    }
18
+	/**
19
+	 * @var Config
20
+	 */
21
+	private $config;
22
+
23
+
24
+	/**
25
+	 * @var Stats
26
+	 */
27
+	private $stats_collection;
28
+
29
+	public function __construct(Stats $stats_collection, Config $config)
30
+	{
31
+		$this->config = $config;
32
+		$this->stats_collection = $stats_collection;
33
+		$this->loadPueClient();
34
+	}
35
+
36
+	private function loadPueClient()
37
+	{
38
+		// PUE Auto Upgrades stuff
39
+		if (is_readable(EE_THIRD_PARTY . 'pue/pue-client.php')) { // include the file
40
+			require_once(EE_THIRD_PARTY . 'pue/pue-client.php');
41
+
42
+			// $options needs to be an array with the included keys as listed.
43
+			$options = array(
44
+				// 'optionName' => '', //(optional) - used as the reference for saving update information in the
45
+				// clients options table.  Will be automatically set if left blank.
46
+				'apikey'                => $this->config->siteLicenseKey(),
47
+				// (required), you will need to obtain the apikey that the client gets from your site and
48
+				// then saves in their sites options table (see 'getting an api-key' below)
49
+				'lang_domain'           => $this->config->i18nDomain(),
50
+				// (optional) - put here whatever reference you are using for the localization of your plugin (if it's
51
+				// localized).  That way strings in this file will be included in the translation for your plugin.
52
+				'checkPeriod'           => $this->config->checkPeriod(),
53
+				// (optional) - use this parameter to indicate how often you want the client's install to ping your
54
+				// server for update checks.  The integer indicates hours.  If you don't include this parameter it will
55
+				// default to 12 hours.
56
+				'option_key'            => $this->config->optionKey(),
57
+				// this is what is used to reference the api_key in your plugin options.  PUE uses this to trigger
58
+				// updating your information message whenever this option_key is modified.
59
+				'options_page_slug'     => $this->config->optionsPageSlug(),
60
+				'plugin_basename'       => EE_PLUGIN_BASENAME,
61
+				'use_wp_update'         => true,
62
+				// if TRUE then you want FREE versions of the plugin to be updated from WP
63
+				'extra_stats'           => $this->stats_collection->statsCallback(),
64
+				'turn_on_notices_saved' => true,
65
+			);
66
+			// initiate the class and start the plugin update engine!
67
+			new PluginUpdateEngineChecker(
68
+				$this->config->hostServerUrl(),
69
+				$this->config->pluginSlug(),
70
+				$options
71
+			);
72
+		}
73
+	}
74
+
75
+
76
+	/**
77
+	 * This is a handy helper method for retrieving whether there is an update available for the given plugin.
78
+	 *
79
+	 * @param  string $basename Use the equivalent result from plugin_basename() for this param as WP uses that to
80
+	 *                          identify plugins. Defaults to core update
81
+	 * @return boolean           True if update available, false if not.
82
+	 */
83
+	public static function isUpdateAvailable($basename = '')
84
+	{
85
+		$basename = ! empty($basename) ? $basename : EE_PLUGIN_BASENAME;
86
+
87
+		$update = false;
88
+
89
+		// should take "event-espresso-core/espresso.php" and change to "/event-espresso-core"
90
+		$folder = '/' . dirname($basename);
91
+
92
+		$plugins = get_plugins($folder);
93
+		$current = get_site_transient('update_plugins');
94
+
95
+		foreach ((array) $plugins as $plugin_file => $plugin_data) {
96
+			if (isset($current->response['plugin_file'])) {
97
+				$update = true;
98
+			}
99
+		}
100
+
101
+		// it's possible that there is an update but an invalid site-license-key is in use
102
+		if (get_site_option('pue_json_error_' . $basename)) {
103
+			$update = true;
104
+		}
105
+
106
+		return $update;
107
+	}
108 108
 }
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -36,8 +36,8 @@  discard block
 block discarded – undo
36 36
     private function loadPueClient()
37 37
     {
38 38
         // PUE Auto Upgrades stuff
39
-        if (is_readable(EE_THIRD_PARTY . 'pue/pue-client.php')) { // include the file
40
-            require_once(EE_THIRD_PARTY . 'pue/pue-client.php');
39
+        if (is_readable(EE_THIRD_PARTY.'pue/pue-client.php')) { // include the file
40
+            require_once(EE_THIRD_PARTY.'pue/pue-client.php');
41 41
 
42 42
             // $options needs to be an array with the included keys as listed.
43 43
             $options = array(
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
         $update = false;
88 88
 
89 89
         // should take "event-espresso-core/espresso.php" and change to "/event-espresso-core"
90
-        $folder = '/' . dirname($basename);
90
+        $folder = '/'.dirname($basename);
91 91
 
92 92
         $plugins = get_plugins($folder);
93 93
         $current = get_site_transient('update_plugins');
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
         }
100 100
 
101 101
         // it's possible that there is an update but an invalid site-license-key is in use
102
-        if (get_site_option('pue_json_error_' . $basename)) {
102
+        if (get_site_option('pue_json_error_'.$basename)) {
103 103
             $update = true;
104 104
         }
105 105
 
Please login to merge, or discard this patch.
display_strategies/number_bubbles/NumberBubblesProgressStepsDisplay.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
         // core/services/progress_steps/display_strategies/number_bubbles/number_bubbles.css
27 27
         wp_enqueue_style(
28 28
             'ee_progress_steps_display_number_bubbles',
29
-            plugin_dir_url(__FILE__) . 'number_bubbles.css'
29
+            plugin_dir_url(__FILE__).'number_bubbles.css'
30 30
         );
31 31
     }
32 32
 
@@ -39,6 +39,6 @@  discard block
 block discarded – undo
39 39
     public function getTemplate()
40 40
     {
41 41
         // return plugin_dir_path( __FILE__ ) . 'number_bubbles.template.php';
42
-        return __DIR__ . '/number_bubbles.template.php';
42
+        return __DIR__.'/number_bubbles.template.php';
43 43
     }
44 44
 }
Please login to merge, or discard this patch.
Indentation   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -14,29 +14,29 @@
 block discarded – undo
14 14
  */
15 15
 class NumberBubblesProgressStepsDisplay implements ProgressStepsDisplayInterface
16 16
 {
17
-    /**
18
-     * used for setting up css and js required for the display strategy
19
-     *
20
-     * @return void
21
-     */
22
-    public function enqueueStylesAndScripts()
23
-    {
24
-        // core/services/progress_steps/display_strategies/number_bubbles/number_bubbles.css
25
-        wp_enqueue_style(
26
-            'ee_progress_steps_display_number_bubbles',
27
-            plugin_dir_url(__FILE__) . 'number_bubbles.css'
28
-        );
29
-    }
17
+	/**
18
+	 * used for setting up css and js required for the display strategy
19
+	 *
20
+	 * @return void
21
+	 */
22
+	public function enqueueStylesAndScripts()
23
+	{
24
+		// core/services/progress_steps/display_strategies/number_bubbles/number_bubbles.css
25
+		wp_enqueue_style(
26
+			'ee_progress_steps_display_number_bubbles',
27
+			plugin_dir_url(__FILE__) . 'number_bubbles.css'
28
+		);
29
+	}
30 30
 
31 31
 
32
-    /**
33
-     * loads and returns a full server path to the template used for the display strategy
34
-     *
35
-     * @return string
36
-     */
37
-    public function getTemplate()
38
-    {
39
-        // return plugin_dir_path( __FILE__ ) . 'number_bubbles.template.php';
40
-        return __DIR__ . '/number_bubbles.template.php';
41
-    }
32
+	/**
33
+	 * loads and returns a full server path to the template used for the display strategy
34
+	 *
35
+	 * @return string
36
+	 */
37
+	public function getTemplate()
38
+	{
39
+		// return plugin_dir_path( __FILE__ ) . 'number_bubbles.template.php';
40
+		return __DIR__ . '/number_bubbles.template.php';
41
+	}
42 42
 }
Please login to merge, or discard this patch.
core/libraries/form_sections/base/EE_Form_Section_Proper.form.php 2 patches
Spacing   +38 added lines, -38 removed lines patch added patch discarded remove patch
@@ -111,8 +111,8 @@  discard block
 block discarded – undo
111 111
             // AND we are going to make sure they're in that specified order
112 112
             $reordered_subsections = array();
113 113
             foreach ($options_array['include'] as $input_name) {
114
-                if (isset($this->_subsections[ $input_name ])) {
115
-                    $reordered_subsections[ $input_name ] = $this->_subsections[ $input_name ];
114
+                if (isset($this->_subsections[$input_name])) {
115
+                    $reordered_subsections[$input_name] = $this->_subsections[$input_name];
116 116
                 }
117 117
             }
118 118
             $this->_subsections = $reordered_subsections;
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
         if (isset($options_array['layout_strategy'])) {
125 125
             $this->_layout_strategy = $options_array['layout_strategy'];
126 126
         }
127
-        if (! $this->_layout_strategy) {
127
+        if ( ! $this->_layout_strategy) {
128 128
             $this->_layout_strategy = is_admin() ? new EE_Admin_Two_Column_Layout() : new EE_Two_Column_Layout();
129 129
         }
130 130
         $this->_layout_strategy->_construct_finalize($this);
@@ -313,7 +313,7 @@  discard block
 block discarded – undo
313 313
         if ($validate) {
314 314
             $this->_validate();
315 315
             // if it's invalid, we're going to want to re-display so remember what they submitted
316
-            if (! $this->is_valid()) {
316
+            if ( ! $this->is_valid()) {
317 317
                 $this->store_submitted_form_data_in_session();
318 318
             }
319 319
         }
@@ -426,11 +426,11 @@  discard block
 block discarded – undo
426 426
     public function populate_defaults($default_data)
427 427
     {
428 428
         foreach ($this->subsections(false) as $subsection_name => $subsection) {
429
-            if (isset($default_data[ $subsection_name ])) {
429
+            if (isset($default_data[$subsection_name])) {
430 430
                 if ($subsection instanceof EE_Form_Input_Base) {
431
-                    $subsection->set_default($default_data[ $subsection_name ]);
431
+                    $subsection->set_default($default_data[$subsection_name]);
432 432
                 } elseif ($subsection instanceof EE_Form_Section_Proper) {
433
-                    $subsection->populate_defaults($default_data[ $subsection_name ]);
433
+                    $subsection->populate_defaults($default_data[$subsection_name]);
434 434
                 }
435 435
             }
436 436
         }
@@ -445,7 +445,7 @@  discard block
 block discarded – undo
445 445
      */
446 446
     public function subsection_exists($name)
447 447
     {
448
-        return isset($this->_subsections[ $name ]) ? true : false;
448
+        return isset($this->_subsections[$name]) ? true : false;
449 449
     }
450 450
 
451 451
 
@@ -467,7 +467,7 @@  discard block
 block discarded – undo
467 467
         if ($require_construction_to_be_finalized) {
468 468
             $this->ensure_construct_finalized_called();
469 469
         }
470
-        return $this->subsection_exists($name) ? $this->_subsections[ $name ] : null;
470
+        return $this->subsection_exists($name) ? $this->_subsections[$name] : null;
471 471
     }
472 472
 
473 473
 
@@ -482,7 +482,7 @@  discard block
 block discarded – undo
482 482
         $validatable_subsections = array();
483 483
         foreach ($this->subsections() as $name => $obj) {
484 484
             if ($obj instanceof EE_Form_Section_Validatable) {
485
-                $validatable_subsections[ $name ] = $obj;
485
+                $validatable_subsections[$name] = $obj;
486 486
             }
487 487
         }
488 488
         return $validatable_subsections;
@@ -509,7 +509,7 @@  discard block
 block discarded – undo
509 509
             $name,
510 510
             $require_construction_to_be_finalized
511 511
         );
512
-        if (! $subsection instanceof EE_Form_Input_Base) {
512
+        if ( ! $subsection instanceof EE_Form_Input_Base) {
513 513
             throw new EE_Error(
514 514
                 sprintf(
515 515
                     esc_html__(
@@ -546,7 +546,7 @@  discard block
 block discarded – undo
546 546
             $name,
547 547
             $require_construction_to_be_finalized
548 548
         );
549
-        if (! $subsection instanceof EE_Form_Section_Proper) {
549
+        if ( ! $subsection instanceof EE_Form_Section_Proper) {
550 550
             throw new EE_Error(
551 551
                 sprintf(
552 552
                     esc_html__(
@@ -586,7 +586,7 @@  discard block
 block discarded – undo
586 586
     public function is_valid()
587 587
     {
588 588
         if ($this->is_valid === null) {
589
-            if (! $this->has_received_submission()) {
589
+            if ( ! $this->has_received_submission()) {
590 590
                 throw new EE_Error(
591 591
                     sprintf(
592 592
                         esc_html__(
@@ -596,14 +596,14 @@  discard block
 block discarded – undo
596 596
                     )
597 597
                 );
598 598
             }
599
-            if (! parent::is_valid()) {
599
+            if ( ! parent::is_valid()) {
600 600
                 $this->is_valid = false;
601 601
             } else {
602 602
                 // ok so no general errors to this entire form section.
603 603
                 // so let's check the subsections, but only set errors if that hasn't been done yet
604 604
                 $this->is_valid = true;
605 605
                 foreach ($this->get_validatable_subsections() as $subsection) {
606
-                    if (! $subsection->is_valid()) {
606
+                    if ( ! $subsection->is_valid()) {
607 607
                         $this->is_valid = false;
608 608
                     }
609 609
                 }
@@ -620,7 +620,7 @@  discard block
 block discarded – undo
620 620
      */
621 621
     protected function _set_default_name_if_empty()
622 622
     {
623
-        if (! $this->_name) {
623
+        if ( ! $this->_name) {
624 624
             $classname    = get_class($this);
625 625
             $default_name = str_replace('EE_', '', $classname);
626 626
             $this->_name  = $default_name;
@@ -710,7 +710,7 @@  discard block
 block discarded – undo
710 710
     {
711 711
         wp_register_script(
712 712
             'ee_form_section_validation',
713
-            EE_GLOBAL_ASSETS_URL . 'scripts' . '/form_section_validation.js',
713
+            EE_GLOBAL_ASSETS_URL.'scripts'.'/form_section_validation.js',
714 714
             array('jquery-validate', 'jquery-ui-datepicker', 'jquery-validate-extra-methods'),
715 715
             EVENT_ESPRESSO_VERSION,
716 716
             true
@@ -754,13 +754,13 @@  discard block
 block discarded – undo
754 754
         // we only want to localize vars ONCE for the entire form,
755 755
         // so if the form section doesn't have a parent, then it must be the top dog
756 756
         if ($return_for_subsection || ! $this->parent_section()) {
757
-            EE_Form_Section_Proper::$_js_localization['form_data'][ $this->html_id() ] = array(
757
+            EE_Form_Section_Proper::$_js_localization['form_data'][$this->html_id()] = array(
758 758
                 'form_section_id'  => $this->html_id(true),
759 759
                 'validation_rules' => $this->get_jquery_validation_rules(),
760 760
                 'other_data'       => $this->get_other_js_data(),
761 761
                 'errors'           => $this->subsection_validation_errors_by_html_name(),
762 762
             );
763
-            EE_Form_Section_Proper::$_scripts_localized                                = true;
763
+            EE_Form_Section_Proper::$_scripts_localized = true;
764 764
         }
765 765
     }
766 766
 
@@ -795,7 +795,7 @@  discard block
 block discarded – undo
795 795
         $inputs = array();
796 796
         foreach ($this->subsections() as $subsection) {
797 797
             if ($subsection instanceof EE_Form_Input_Base) {
798
-                $inputs[ $subsection->html_name() ] = $subsection;
798
+                $inputs[$subsection->html_name()] = $subsection;
799 799
             } elseif ($subsection instanceof EE_Form_Section_Proper) {
800 800
                 $inputs += $subsection->inputs_in_subsections();
801 801
             }
@@ -818,7 +818,7 @@  discard block
 block discarded – undo
818 818
         $errors = array();
819 819
         foreach ($inputs as $form_input) {
820 820
             if ($form_input instanceof EE_Form_Input_Base && $form_input->get_validation_errors()) {
821
-                $errors[ $form_input->html_name() ] = $form_input->get_validation_error_string();
821
+                $errors[$form_input->html_name()] = $form_input->get_validation_error_string();
822 822
             }
823 823
         }
824 824
         return $errors;
@@ -841,7 +841,7 @@  discard block
 block discarded – undo
841 841
         $email_validation_level = isset(EE_Registry::instance()->CFG->registration->email_validation_level)
842 842
             ? EE_Registry::instance()->CFG->registration->email_validation_level
843 843
             : 'wp_default';
844
-        EE_Form_Section_Proper::$_js_localization['email_validation_level']   = $email_validation_level;
844
+        EE_Form_Section_Proper::$_js_localization['email_validation_level'] = $email_validation_level;
845 845
         wp_enqueue_script('ee_form_section_validation');
846 846
         wp_localize_script(
847 847
             'ee_form_section_validation',
@@ -858,7 +858,7 @@  discard block
 block discarded – undo
858 858
      */
859 859
     public function ensure_scripts_localized()
860 860
     {
861
-        if (! EE_Form_Section_Proper::$_scripts_localized) {
861
+        if ( ! EE_Form_Section_Proper::$_scripts_localized) {
862 862
             $this->_enqueue_and_localize_form_js();
863 863
         }
864 864
     }
@@ -954,8 +954,8 @@  discard block
 block discarded – undo
954 954
         // reset the cache of whether this form is valid or not- we're re-validating it now
955 955
         $this->is_valid = null;
956 956
         foreach ($this->get_validatable_subsections() as $subsection_name => $subsection) {
957
-            if (method_exists($this, '_validate_' . $subsection_name)) {
958
-                call_user_func_array(array($this, '_validate_' . $subsection_name), array($subsection));
957
+            if (method_exists($this, '_validate_'.$subsection_name)) {
958
+                call_user_func_array(array($this, '_validate_'.$subsection_name), array($subsection));
959 959
             }
960 960
             $subsection->_validate();
961 961
         }
@@ -973,9 +973,9 @@  discard block
 block discarded – undo
973 973
         $inputs = array();
974 974
         foreach ($this->subsections() as $subsection_name => $subsection) {
975 975
             if ($subsection instanceof EE_Form_Section_Proper) {
976
-                $inputs[ $subsection_name ] = $subsection->valid_data();
976
+                $inputs[$subsection_name] = $subsection->valid_data();
977 977
             } elseif ($subsection instanceof EE_Form_Input_Base) {
978
-                $inputs[ $subsection_name ] = $subsection->normalized_value();
978
+                $inputs[$subsection_name] = $subsection->normalized_value();
979 979
             }
980 980
         }
981 981
         return $inputs;
@@ -993,7 +993,7 @@  discard block
 block discarded – undo
993 993
         $inputs = array();
994 994
         foreach ($this->subsections() as $subsection_name => $subsection) {
995 995
             if ($subsection instanceof EE_Form_Input_Base) {
996
-                $inputs[ $subsection_name ] = $subsection;
996
+                $inputs[$subsection_name] = $subsection;
997 997
             }
998 998
         }
999 999
         return $inputs;
@@ -1011,7 +1011,7 @@  discard block
 block discarded – undo
1011 1011
         $form_sections = array();
1012 1012
         foreach ($this->subsections() as $name => $obj) {
1013 1013
             if ($obj instanceof EE_Form_Section_Proper) {
1014
-                $form_sections[ $name ] = $obj;
1014
+                $form_sections[$name] = $obj;
1015 1015
             }
1016 1016
         }
1017 1017
         return $form_sections;
@@ -1118,7 +1118,7 @@  discard block
 block discarded – undo
1118 1118
         $input_values = array();
1119 1119
         foreach ($this->subsections() as $subsection_name => $subsection) {
1120 1120
             if ($subsection instanceof EE_Form_Input_Base) {
1121
-                $input_values[ $subsection_name ] = $pretty
1121
+                $input_values[$subsection_name] = $pretty
1122 1122
                     ? $subsection->pretty_value()
1123 1123
                     : $subsection->normalized_value();
1124 1124
             } elseif ($subsection instanceof EE_Form_Section_Proper && $include_subform_inputs) {
@@ -1130,7 +1130,7 @@  discard block
 block discarded – undo
1130 1130
                 if ($flatten) {
1131 1131
                     $input_values = array_merge($input_values, $subform_input_values);
1132 1132
                 } else {
1133
-                    $input_values[ $subsection_name ] = $subform_input_values;
1133
+                    $input_values[$subsection_name] = $subform_input_values;
1134 1134
                 }
1135 1135
             }
1136 1136
         }
@@ -1158,7 +1158,7 @@  discard block
 block discarded – undo
1158 1158
             if ($subsection instanceof EE_Form_Input_Base) {
1159 1159
                 // is this input part of an array of inputs?
1160 1160
                 if (strpos($subsection->html_name(), '[') !== false) {
1161
-                    $full_input_name  = EEH_Array::convert_array_values_to_keys(
1161
+                    $full_input_name = EEH_Array::convert_array_values_to_keys(
1162 1162
                         explode(
1163 1163
                             '[',
1164 1164
                             str_replace(']', '', $subsection->html_name())
@@ -1167,7 +1167,7 @@  discard block
 block discarded – undo
1167 1167
                     );
1168 1168
                     $submitted_values = array_replace_recursive($submitted_values, $full_input_name);
1169 1169
                 } else {
1170
-                    $submitted_values[ $subsection->html_name() ] = $subsection->raw_value();
1170
+                    $submitted_values[$subsection->html_name()] = $subsection->raw_value();
1171 1171
                 }
1172 1172
             } elseif ($subsection instanceof EE_Form_Section_Proper && $include_subforms) {
1173 1173
                 $subform_input_values = $subsection->submitted_values($include_subforms);
@@ -1202,7 +1202,7 @@  discard block
 block discarded – undo
1202 1202
     public function exclude(array $inputs_to_exclude = array())
1203 1203
     {
1204 1204
         foreach ($inputs_to_exclude as $input_to_exclude_name) {
1205
-            unset($this->_subsections[ $input_to_exclude_name ]);
1205
+            unset($this->_subsections[$input_to_exclude_name]);
1206 1206
         }
1207 1207
     }
1208 1208
 
@@ -1245,7 +1245,7 @@  discard block
 block discarded – undo
1245 1245
     public function add_subsections($new_subsections, $subsection_name_to_target = null, $add_before = true)
1246 1246
     {
1247 1247
         foreach ($new_subsections as $subsection_name => $subsection) {
1248
-            if (! $subsection instanceof EE_Form_Section_Base) {
1248
+            if ( ! $subsection instanceof EE_Form_Section_Base) {
1249 1249
                 EE_Error::add_error(
1250 1250
                     sprintf(
1251 1251
                         esc_html__(
@@ -1257,7 +1257,7 @@  discard block
 block discarded – undo
1257 1257
                         $this->name()
1258 1258
                     )
1259 1259
                 );
1260
-                unset($new_subsections[ $subsection_name ]);
1260
+                unset($new_subsections[$subsection_name]);
1261 1261
             }
1262 1262
         }
1263 1263
         $this->_subsections = EEH_Array::insert_into_array(
@@ -1372,7 +1372,7 @@  discard block
 block discarded – undo
1372 1372
     public function html_name_prefix()
1373 1373
     {
1374 1374
         if ($this->parent_section() instanceof EE_Form_Section_Proper) {
1375
-            return $this->parent_section()->html_name_prefix() . '[' . $this->name() . ']';
1375
+            return $this->parent_section()->html_name_prefix().'['.$this->name().']';
1376 1376
         }
1377 1377
         return $this->name();
1378 1378
     }
@@ -1412,7 +1412,7 @@  discard block
 block discarded – undo
1412 1412
      */
1413 1413
     public function ensure_construct_finalized_called()
1414 1414
     {
1415
-        if (! $this->_construction_finalized) {
1415
+        if ( ! $this->_construction_finalized) {
1416 1416
             $this->_construct_finalize($this->_parent_section, $this->_name);
1417 1417
         }
1418 1418
     }
Please login to merge, or discard this patch.
Indentation   +1532 added lines, -1532 removed lines patch added patch discarded remove patch
@@ -14,1536 +14,1536 @@
 block discarded – undo
14 14
  */
15 15
 class EE_Form_Section_Proper extends EE_Form_Section_Validatable implements FormSectionProperInterface
16 16
 {
17
-    const SUBMITTED_FORM_DATA_SSN_KEY = 'submitted_form_data';
18
-
19
-    /**
20
-     * Subsections
21
-     *
22
-     * @var EE_Form_Section_Validatable[]
23
-     */
24
-    protected $_subsections = array();
25
-
26
-    /**
27
-     * Strategy for laying out the form
28
-     *
29
-     * @var EE_Form_Section_Layout_Base
30
-     */
31
-    protected $_layout_strategy;
32
-
33
-    /**
34
-     * Whether or not this form has received and validated a form submission yet
35
-     *
36
-     * @var boolean
37
-     */
38
-    protected $_received_submission = false;
39
-
40
-    /**
41
-     * message displayed to users upon successful form submission
42
-     *
43
-     * @var string
44
-     */
45
-    protected $_form_submission_success_message = '';
46
-
47
-    /**
48
-     * message displayed to users upon unsuccessful form submission
49
-     *
50
-     * @var string
51
-     */
52
-    protected $_form_submission_error_message = '';
53
-
54
-    /**
55
-     * @var array like post / request
56
-     */
57
-    protected $cached_request_data;
58
-
59
-    /**
60
-     * Stores whether this form (and its sub-sections) were found to be valid or not.
61
-     * Starts off as null, but once the form is validated, it set to either true or false
62
-     * @var boolean|null
63
-     */
64
-    protected $is_valid;
65
-
66
-    /**
67
-     * Stores all the data that will localized for form validation
68
-     *
69
-     * @var array
70
-     */
71
-    protected static $_js_localization = array();
72
-
73
-    /**
74
-     * whether or not the form's localized validation JS vars have been set
75
-     *
76
-     * @type boolean
77
-     */
78
-    protected static $_scripts_localized = false;
79
-
80
-
81
-    /**
82
-     * when constructing a proper form section, calls _construct_finalize on children
83
-     * so that they know who their parent is, and what name they've been given.
84
-     *
85
-     * @param array[] $options_array   {
86
-     * @type          $subsections     EE_Form_Section_Validatable[] where keys are the section's name
87
-     * @type          $include         string[] numerically-indexed where values are section names to be included,
88
-     *                                 and in that order. This is handy if you want
89
-     *                                 the subsections to be ordered differently than the default, and if you override
90
-     *                                 which fields are shown
91
-     * @type          $exclude         string[] values are subsections to be excluded. This is handy if you want
92
-     *                                 to remove certain default subsections (note: if you specify BOTH 'include' AND
93
-     *                                 'exclude', the inclusions will be applied first, and the exclusions will exclude
94
-     *                                 items from that list of inclusions)
95
-     * @type          $layout_strategy EE_Form_Section_Layout_Base strategy for laying out the form
96
-     *                                 } @see EE_Form_Section_Validatable::__construct()
97
-     * @throws EE_Error
98
-     */
99
-    public function __construct($options_array = array())
100
-    {
101
-        $options_array = (array) apply_filters(
102
-            'FHEE__EE_Form_Section_Proper___construct__options_array',
103
-            $options_array,
104
-            $this
105
-        );
106
-        // call parent first, as it may be setting the name
107
-        parent::__construct($options_array);
108
-        // if they've included subsections in the constructor, add them now
109
-        if (isset($options_array['include'])) {
110
-            // we are going to make sure we ONLY have those subsections to include
111
-            // AND we are going to make sure they're in that specified order
112
-            $reordered_subsections = array();
113
-            foreach ($options_array['include'] as $input_name) {
114
-                if (isset($this->_subsections[ $input_name ])) {
115
-                    $reordered_subsections[ $input_name ] = $this->_subsections[ $input_name ];
116
-                }
117
-            }
118
-            $this->_subsections = $reordered_subsections;
119
-        }
120
-        if (isset($options_array['exclude'])) {
121
-            $exclude            = $options_array['exclude'];
122
-            $this->_subsections = array_diff_key($this->_subsections, array_flip($exclude));
123
-        }
124
-        if (isset($options_array['layout_strategy'])) {
125
-            $this->_layout_strategy = $options_array['layout_strategy'];
126
-        }
127
-        if (! $this->_layout_strategy) {
128
-            $this->_layout_strategy = is_admin() ? new EE_Admin_Two_Column_Layout() : new EE_Two_Column_Layout();
129
-        }
130
-        $this->_layout_strategy->_construct_finalize($this);
131
-        // ok so we are definitely going to want the forms JS,
132
-        // so enqueue it or remember to enqueue it during wp_enqueue_scripts
133
-        if (did_action('wp_enqueue_scripts') || did_action('admin_enqueue_scripts')) {
134
-            // ok so they've constructed this object after when they should have.
135
-            // just enqueue the generic form scripts and initialize the form immediately in the JS
136
-            EE_Form_Section_Proper::wp_enqueue_scripts(true);
137
-        } else {
138
-            add_action('wp_enqueue_scripts', array('EE_Form_Section_Proper', 'wp_enqueue_scripts'));
139
-            add_action('admin_enqueue_scripts', array('EE_Form_Section_Proper', 'wp_enqueue_scripts'));
140
-        }
141
-        add_action('wp_footer', array($this, 'ensure_scripts_localized'), 1);
142
-        /**
143
-         * Gives other plugins a chance to hook in before construct finalize is called.
144
-         * The form probably doesn't yet have a parent form section.
145
-         * Since 4.9.32, when this action was introduced, this is the best place to add a subsection onto a form,
146
-         * assuming you don't care what the form section's name, HTML ID, or HTML name etc are.
147
-         * Also see AHEE__EE_Form_Section_Proper___construct_finalize__end
148
-         *
149
-         * @since 4.9.32
150
-         * @param EE_Form_Section_Proper $this          before __construct is done, but all of its logic,
151
-         *                                              except maybe calling _construct_finalize has been done
152
-         * @param array                  $options_array options passed into the constructor
153
-         */
154
-        do_action(
155
-            'AHEE__EE_Form_Input_Base___construct__before_construct_finalize_called',
156
-            $this,
157
-            $options_array
158
-        );
159
-        if (isset($options_array['name'])) {
160
-            $this->_construct_finalize(null, $options_array['name']);
161
-        }
162
-    }
163
-
164
-
165
-    /**
166
-     * Finishes construction given the parent form section and this form section's name
167
-     *
168
-     * @param EE_Form_Section_Proper $parent_form_section
169
-     * @param string                 $name
170
-     * @throws EE_Error
171
-     */
172
-    public function _construct_finalize($parent_form_section, $name)
173
-    {
174
-        parent::_construct_finalize($parent_form_section, $name);
175
-        $this->_set_default_name_if_empty();
176
-        $this->_set_default_html_id_if_empty();
177
-        foreach ($this->_subsections as $subsection_name => $subsection) {
178
-            if ($subsection instanceof EE_Form_Section_Base) {
179
-                $subsection->_construct_finalize($this, $subsection_name);
180
-            } else {
181
-                throw new EE_Error(
182
-                    sprintf(
183
-                        esc_html__(
184
-                            'Subsection "%s" is not an instanceof EE_Form_Section_Base on form "%s". It is a "%s"',
185
-                            'event_espresso'
186
-                        ),
187
-                        $subsection_name,
188
-                        get_class($this),
189
-                        $subsection ? get_class($subsection) : esc_html__('NULL', 'event_espresso')
190
-                    )
191
-                );
192
-            }
193
-        }
194
-        /**
195
-         * Action performed just after form has been given a name (and HTML ID etc) and is fully constructed.
196
-         * If you have code that should modify the form and needs it and its subsections to have a name, HTML ID
197
-         * (or other attributes derived from the name like the HTML label id, etc), this is where it should be done.
198
-         * This might only happen just before displaying the form, or just before it receives form submission data.
199
-         * If you need to modify the form or its subsections before _construct_finalize is called on it (and we've
200
-         * ensured it has a name, HTML IDs, etc
201
-         *
202
-         * @param EE_Form_Section_Proper      $this
203
-         * @param EE_Form_Section_Proper|null $parent_form_section
204
-         * @param string                      $name
205
-         */
206
-        do_action(
207
-            'AHEE__EE_Form_Section_Proper___construct_finalize__end',
208
-            $this,
209
-            $parent_form_section,
210
-            $name
211
-        );
212
-    }
213
-
214
-
215
-    /**
216
-     * Gets the layout strategy for this form section
217
-     *
218
-     * @return EE_Form_Section_Layout_Base
219
-     */
220
-    public function get_layout_strategy()
221
-    {
222
-        return $this->_layout_strategy;
223
-    }
224
-
225
-
226
-    /**
227
-     * Gets the HTML for a single input for this form section according
228
-     * to the layout strategy
229
-     *
230
-     * @param EE_Form_Input_Base $input
231
-     * @return string
232
-     */
233
-    public function get_html_for_input($input)
234
-    {
235
-        return $this->_layout_strategy->layout_input($input);
236
-    }
237
-
238
-
239
-    /**
240
-     * was_submitted - checks if form inputs are present in request data
241
-     * Basically an alias for form_data_present_in() (which is used by both
242
-     * proper form sections and form inputs)
243
-     *
244
-     * @param null $form_data
245
-     * @return boolean
246
-     * @throws EE_Error
247
-     */
248
-    public function was_submitted($form_data = null)
249
-    {
250
-        return $this->form_data_present_in($form_data);
251
-    }
252
-
253
-    /**
254
-     * Gets the cached request data; but if there is none, or $req_data was set with
255
-     * something different, refresh the cache, and then return it
256
-     * @param null $req_data
257
-     * @return array
258
-     */
259
-    protected function getCachedRequest($req_data = null)
260
-    {
261
-        if (
262
-            $this->cached_request_data === null
263
-            || (
264
-                $req_data !== null
265
-                && $req_data !== $this->cached_request_data
266
-            )
267
-        ) {
268
-            $req_data = apply_filters(
269
-                'FHEE__EE_Form_Section_Proper__receive_form_submission__req_data',
270
-                $req_data,
271
-                $this
272
-            );
273
-            if ($req_data === null) {
274
-                /** @var RequestInterface $request */
275
-                $request = LoaderFactory::getLoader()->getShared(RequestInterface::class);
276
-                $req_data = $request->requestParams();
277
-            }
278
-            $req_data = apply_filters(
279
-                'FHEE__EE_Form_Section_Proper__receive_form_submission__request_data',
280
-                $req_data,
281
-                $this
282
-            );
283
-            $this->cached_request_data = (array) $req_data;
284
-        }
285
-        return $this->cached_request_data;
286
-    }
287
-
288
-
289
-    /**
290
-     * After the form section is initially created, call this to sanitize the data in the submission
291
-     * which relates to this form section, validate it, and set it as properties on the form.
292
-     *
293
-     * @param array|null $req_data should usually be post data (the default).
294
-     *                             However, you CAN supply a different array.
295
-     *                             Consider using set_defaults() instead however.
296
-     *                             (If you rendered the form in the page using $form_x->get_html()
297
-     *                             the inputs will have the correct name in the request data for this function
298
-     *                             to find them and populate the form with them.
299
-     *                             If you have a flat form (with only input subsections),
300
-     *                             you can supply a flat array where keys
301
-     *                             are the form input names and values are their values)
302
-     * @param boolean    $validate whether or not to perform validation on this data. Default is,
303
-     *                             of course, to validate that data, and set errors on the invalid values.
304
-     *                             But if the data has already been validated
305
-     *                             (eg you validated the data then stored it in the DB)
306
-     *                             you may want to skip this step.
307
-     * @throws InvalidArgumentException
308
-     * @throws InvalidInterfaceException
309
-     * @throws InvalidDataTypeException
310
-     * @throws EE_Error
311
-     */
312
-    public function receive_form_submission($req_data = null, $validate = true)
313
-    {
314
-        $req_data = $this->getCachedRequest($req_data);
315
-        $this->_normalize($req_data);
316
-        if ($validate) {
317
-            $this->_validate();
318
-            // if it's invalid, we're going to want to re-display so remember what they submitted
319
-            if (! $this->is_valid()) {
320
-                $this->store_submitted_form_data_in_session();
321
-            }
322
-        }
323
-        if ($this->submission_error_message() === '' && ! $this->is_valid()) {
324
-            $this->set_submission_error_message();
325
-        }
326
-        do_action(
327
-            'AHEE__EE_Form_Section_Proper__receive_form_submission__end',
328
-            $req_data,
329
-            $this,
330
-            $validate
331
-        );
332
-    }
333
-
334
-
335
-    /**
336
-     * caches the originally submitted input values in the session
337
-     * so that they can be used to repopulate the form if it failed validation
338
-     *
339
-     * @return boolean whether or not the data was successfully stored in the session
340
-     * @throws InvalidArgumentException
341
-     * @throws InvalidInterfaceException
342
-     * @throws InvalidDataTypeException
343
-     * @throws EE_Error
344
-     */
345
-    protected function store_submitted_form_data_in_session()
346
-    {
347
-        $session = EE_Registry::instance()->SSN;
348
-        if ($session instanceof EE_Session) {
349
-            return EE_Registry::instance()->SSN->set_session_data(
350
-                [
351
-                    EE_Form_Section_Proper::SUBMITTED_FORM_DATA_SSN_KEY => $this->submitted_values(true),
352
-                ]
353
-            );
354
-        }
355
-        return false;
356
-    }
357
-
358
-
359
-    /**
360
-     * retrieves the originally submitted input values in the session
361
-     * so that they can be used to repopulate the form if it failed validation
362
-     *
363
-     * @return array
364
-     * @throws InvalidArgumentException
365
-     * @throws InvalidInterfaceException
366
-     * @throws InvalidDataTypeException
367
-     */
368
-    protected function get_submitted_form_data_from_session()
369
-    {
370
-        $session = EE_Registry::instance()->SSN;
371
-        if ($session instanceof EE_Session) {
372
-            return $session->get_session_data(
373
-                EE_Form_Section_Proper::SUBMITTED_FORM_DATA_SSN_KEY
374
-            );
375
-        }
376
-        return array();
377
-    }
378
-
379
-
380
-    /**
381
-     * flushed the originally submitted input values from the session
382
-     *
383
-     * @return boolean whether or not the data was successfully removed from the session
384
-     * @throws InvalidArgumentException
385
-     * @throws InvalidInterfaceException
386
-     * @throws InvalidDataTypeException
387
-     */
388
-    public static function flush_submitted_form_data_from_session()
389
-    {
390
-        return EE_Registry::instance()->SSN->reset_data(
391
-            array(EE_Form_Section_Proper::SUBMITTED_FORM_DATA_SSN_KEY)
392
-        );
393
-    }
394
-
395
-
396
-    /**
397
-     * Populates this form and its subsections with data from the session.
398
-     * (Wrapper for EE_Form_Section_Proper::receive_form_submission, so it shows
399
-     * validation errors when displaying too)
400
-     * Returns true if the form was populated from the session, false otherwise
401
-     *
402
-     * @return boolean
403
-     * @throws InvalidArgumentException
404
-     * @throws InvalidInterfaceException
405
-     * @throws InvalidDataTypeException
406
-     * @throws EE_Error
407
-     */
408
-    public function populate_from_session()
409
-    {
410
-        $form_data_in_session = $this->get_submitted_form_data_from_session();
411
-        if (empty($form_data_in_session)) {
412
-            return false;
413
-        }
414
-        $this->receive_form_submission($form_data_in_session);
415
-        add_action('shutdown', array('EE_Form_Section_Proper', 'flush_submitted_form_data_from_session'));
416
-        if ($this->form_data_present_in($form_data_in_session)) {
417
-            return true;
418
-        }
419
-        return false;
420
-    }
421
-
422
-
423
-    /**
424
-     * Populates the default data for the form, given an array where keys are
425
-     * the input names, and values are their values (preferably normalized to be their
426
-     * proper PHP types, not all strings... although that should be ok too).
427
-     * Proper subsections are sub-arrays, the key being the subsection's name, and
428
-     * the value being an array formatted in teh same way
429
-     *
430
-     * @param array $default_data
431
-     * @throws EE_Error
432
-     */
433
-    public function populate_defaults($default_data)
434
-    {
435
-        foreach ($this->subsections(false) as $subsection_name => $subsection) {
436
-            if (isset($default_data[ $subsection_name ])) {
437
-                if ($subsection instanceof EE_Form_Input_Base) {
438
-                    $subsection->set_default($default_data[ $subsection_name ]);
439
-                } elseif ($subsection instanceof EE_Form_Section_Proper) {
440
-                    $subsection->populate_defaults($default_data[ $subsection_name ]);
441
-                }
442
-            }
443
-        }
444
-    }
445
-
446
-
447
-    /**
448
-     * returns true if subsection exists
449
-     *
450
-     * @param string $name
451
-     * @return boolean
452
-     */
453
-    public function subsection_exists($name)
454
-    {
455
-        return isset($this->_subsections[ $name ]) ? true : false;
456
-    }
457
-
458
-
459
-    /**
460
-     * Gets the subsection specified by its name
461
-     *
462
-     * @param string  $name
463
-     * @param boolean $require_construction_to_be_finalized most client code should leave this as TRUE
464
-     *                                                      so that the inputs will be properly configured.
465
-     *                                                      However, some client code may be ok
466
-     *                                                      with construction finalize being called later
467
-     *                                                      (realizing that the subsections' html names
468
-     *                                                      might not be set yet, etc.)
469
-     * @return EE_Form_Section_Base
470
-     * @throws EE_Error
471
-     */
472
-    public function get_subsection($name, $require_construction_to_be_finalized = true)
473
-    {
474
-        if ($require_construction_to_be_finalized) {
475
-            $this->ensure_construct_finalized_called();
476
-        }
477
-        return $this->subsection_exists($name) ? $this->_subsections[ $name ] : null;
478
-    }
479
-
480
-
481
-    /**
482
-     * Gets all the validatable subsections of this form section
483
-     *
484
-     * @return EE_Form_Section_Validatable[]
485
-     * @throws EE_Error
486
-     */
487
-    public function get_validatable_subsections()
488
-    {
489
-        $validatable_subsections = array();
490
-        foreach ($this->subsections() as $name => $obj) {
491
-            if ($obj instanceof EE_Form_Section_Validatable) {
492
-                $validatable_subsections[ $name ] = $obj;
493
-            }
494
-        }
495
-        return $validatable_subsections;
496
-    }
497
-
498
-
499
-    /**
500
-     * Gets an input by the given name. If not found, or if its not an EE_FOrm_Input_Base child,
501
-     * throw an EE_Error.
502
-     *
503
-     * @param string  $name
504
-     * @param boolean $require_construction_to_be_finalized most client code should
505
-     *                                                      leave this as TRUE so that the inputs will be properly
506
-     *                                                      configured. However, some client code may be ok with
507
-     *                                                      construction finalize being called later
508
-     *                                                      (realizing that the subsections' html names might not be
509
-     *                                                      set yet, etc.)
510
-     * @return EE_Form_Input_Base
511
-     * @throws EE_Error
512
-     */
513
-    public function get_input($name, $require_construction_to_be_finalized = true)
514
-    {
515
-        $subsection = $this->get_subsection(
516
-            $name,
517
-            $require_construction_to_be_finalized
518
-        );
519
-        if (! $subsection instanceof EE_Form_Input_Base) {
520
-            throw new EE_Error(
521
-                sprintf(
522
-                    esc_html__(
523
-                        "Subsection '%s' is not an instanceof EE_Form_Input_Base on form '%s'. It is a '%s'",
524
-                        'event_espresso'
525
-                    ),
526
-                    $name,
527
-                    get_class($this),
528
-                    $subsection ? get_class($subsection) : esc_html__('NULL', 'event_espresso')
529
-                )
530
-            );
531
-        }
532
-        return $subsection;
533
-    }
534
-
535
-
536
-    /**
537
-     * Like get_input(), gets the proper subsection of the form given the name,
538
-     * otherwise throws an EE_Error
539
-     *
540
-     * @param string  $name
541
-     * @param boolean $require_construction_to_be_finalized most client code should
542
-     *                                                      leave this as TRUE so that the inputs will be properly
543
-     *                                                      configured. However, some client code may be ok with
544
-     *                                                      construction finalize being called later
545
-     *                                                      (realizing that the subsections' html names might not be
546
-     *                                                      set yet, etc.)
547
-     * @return EE_Form_Section_Proper
548
-     * @throws EE_Error
549
-     */
550
-    public function get_proper_subsection($name, $require_construction_to_be_finalized = true)
551
-    {
552
-        $subsection = $this->get_subsection(
553
-            $name,
554
-            $require_construction_to_be_finalized
555
-        );
556
-        if (! $subsection instanceof EE_Form_Section_Proper) {
557
-            throw new EE_Error(
558
-                sprintf(
559
-                    esc_html__(
560
-                        "Subsection '%'s is not an instanceof EE_Form_Section_Proper on form '%s'",
561
-                        'event_espresso'
562
-                    ),
563
-                    $name,
564
-                    get_class($this)
565
-                )
566
-            );
567
-        }
568
-        return $subsection;
569
-    }
570
-
571
-
572
-    /**
573
-     * Gets the value of the specified input. Should be called after receive_form_submission()
574
-     * or populate_defaults() on the form, where the normalized value on the input is set.
575
-     *
576
-     * @param string $name
577
-     * @return mixed depending on the input's type and its normalization strategy
578
-     * @throws EE_Error
579
-     */
580
-    public function get_input_value($name)
581
-    {
582
-        $input = $this->get_input($name);
583
-        return $input->normalized_value();
584
-    }
585
-
586
-
587
-    /**
588
-     * Checks if this form section itself is valid, and then checks its subsections
589
-     *
590
-     * @throws EE_Error
591
-     * @return boolean
592
-     */
593
-    public function is_valid()
594
-    {
595
-        if ($this->is_valid === null) {
596
-            if (! $this->has_received_submission()) {
597
-                throw new EE_Error(
598
-                    sprintf(
599
-                        esc_html__(
600
-                            'You cannot check if a form is valid before receiving the form submission using receive_form_submission',
601
-                            'event_espresso'
602
-                        )
603
-                    )
604
-                );
605
-            }
606
-            if (! parent::is_valid()) {
607
-                $this->is_valid = false;
608
-            } else {
609
-                // ok so no general errors to this entire form section.
610
-                // so let's check the subsections, but only set errors if that hasn't been done yet
611
-                $this->is_valid = true;
612
-                foreach ($this->get_validatable_subsections() as $subsection) {
613
-                    if (! $subsection->is_valid()) {
614
-                        $this->is_valid = false;
615
-                    }
616
-                }
617
-            }
618
-        }
619
-        return $this->is_valid;
620
-    }
621
-
622
-
623
-    /**
624
-     * gets the default name of this form section if none is specified
625
-     *
626
-     * @return void
627
-     */
628
-    protected function _set_default_name_if_empty()
629
-    {
630
-        if (! $this->_name) {
631
-            $classname    = get_class($this);
632
-            $default_name = str_replace('EE_', '', $classname);
633
-            $this->_name  = $default_name;
634
-        }
635
-    }
636
-
637
-
638
-    /**
639
-     * Returns the HTML for the form, except for the form opening and closing tags
640
-     * (as the form section doesn't know where you necessarily want to send the information to),
641
-     * and except for a submit button. Enqueues JS and CSS; if called early enough we will
642
-     * try to enqueue them in the header, otherwise they'll be enqueued in the footer.
643
-     * Not doing_it_wrong because theoretically this CAN be used properly,
644
-     * provided its used during "wp_enqueue_scripts", or it doesn't need to enqueue
645
-     * any CSS.
646
-     *
647
-     * @throws InvalidArgumentException
648
-     * @throws InvalidInterfaceException
649
-     * @throws InvalidDataTypeException
650
-     * @throws EE_Error
651
-     */
652
-    public function get_html_and_js()
653
-    {
654
-        $this->enqueue_js();
655
-        return $this->get_html();
656
-    }
657
-
658
-
659
-    /**
660
-     * returns HTML for displaying this form section. recursively calls display_section() on all subsections
661
-     *
662
-     * @param bool $display_previously_submitted_data
663
-     * @return string
664
-     * @throws InvalidArgumentException
665
-     * @throws InvalidInterfaceException
666
-     * @throws InvalidDataTypeException
667
-     * @throws EE_Error
668
-     * @throws EE_Error
669
-     * @throws EE_Error
670
-     */
671
-    public function get_html($display_previously_submitted_data = true)
672
-    {
673
-        $this->ensure_construct_finalized_called();
674
-        if ($display_previously_submitted_data) {
675
-            $this->populate_from_session();
676
-        }
677
-        return $this->_form_html_filter
678
-            ? $this->_form_html_filter->filterHtml($this->_layout_strategy->layout_form(), $this)
679
-            : $this->_layout_strategy->layout_form();
680
-    }
681
-
682
-
683
-    /**
684
-     * enqueues JS and CSS for the form.
685
-     * It is preferred to call this before wp_enqueue_scripts so the
686
-     * scripts and styles can be put in the header, but if called later
687
-     * they will be put in the footer (which is OK for JS, but in HTML4 CSS should
688
-     * only be in the header; but in HTML5 its ok in the body.
689
-     * See http://stackoverflow.com/questions/4957446/load-external-css-file-in-body-tag.
690
-     * So if your form enqueues CSS, it's preferred to call this before wp_enqueue_scripts.)
691
-     *
692
-     * @return void
693
-     * @throws EE_Error
694
-     */
695
-    public function enqueue_js()
696
-    {
697
-        $this->_enqueue_and_localize_form_js();
698
-        foreach ($this->subsections() as $subsection) {
699
-            $subsection->enqueue_js();
700
-        }
701
-    }
702
-
703
-
704
-    /**
705
-     * adds a filter so that jquery validate gets enqueued in EE_System::wp_enqueue_scripts().
706
-     * This must be done BEFORE wp_enqueue_scripts() gets called, which is on
707
-     * the wp_enqueue_scripts hook.
708
-     * However, registering the form js and localizing it can happen when we
709
-     * actually output the form (which is preferred, seeing how teh form's fields
710
-     * could change until it's actually outputted)
711
-     *
712
-     * @param boolean $init_form_validation_automatically whether or not we want the form validation
713
-     *                                                    to be triggered automatically or not
714
-     * @return void
715
-     */
716
-    public static function wp_enqueue_scripts($init_form_validation_automatically = true)
717
-    {
718
-        wp_register_script(
719
-            'ee_form_section_validation',
720
-            EE_GLOBAL_ASSETS_URL . 'scripts' . '/form_section_validation.js',
721
-            array('jquery-validate', 'jquery-ui-datepicker', 'jquery-validate-extra-methods'),
722
-            EVENT_ESPRESSO_VERSION,
723
-            true
724
-        );
725
-        wp_localize_script(
726
-            'ee_form_section_validation',
727
-            'ee_form_section_validation_init',
728
-            array('init' => $init_form_validation_automatically ? '1' : '0')
729
-        );
730
-    }
731
-
732
-
733
-    /**
734
-     * gets the variables used by form_section_validation.js.
735
-     * This needs to be called AFTER we've called $this->_enqueue_jquery_validate_script,
736
-     * but before the wordpress hook wp_loaded
737
-     *
738
-     * @throws EE_Error
739
-     */
740
-    public function _enqueue_and_localize_form_js()
741
-    {
742
-        $this->ensure_construct_finalized_called();
743
-        // actually, we don't want to localize just yet. There may be other forms on the page.
744
-        // so we need to add our form section data to a static variable accessible by all form sections
745
-        // and localize it just before the footer
746
-        $this->localize_validation_rules();
747
-        add_action('wp_footer', array('EE_Form_Section_Proper', 'localize_script_for_all_forms'), 2);
748
-        add_action('admin_footer', array('EE_Form_Section_Proper', 'localize_script_for_all_forms'));
749
-    }
750
-
751
-
752
-    /**
753
-     * add our form section data to a static variable accessible by all form sections
754
-     *
755
-     * @param bool $return_for_subsection
756
-     * @return void
757
-     * @throws EE_Error
758
-     */
759
-    public function localize_validation_rules($return_for_subsection = false)
760
-    {
761
-        // we only want to localize vars ONCE for the entire form,
762
-        // so if the form section doesn't have a parent, then it must be the top dog
763
-        if ($return_for_subsection || ! $this->parent_section()) {
764
-            EE_Form_Section_Proper::$_js_localization['form_data'][ $this->html_id() ] = array(
765
-                'form_section_id'  => $this->html_id(true),
766
-                'validation_rules' => $this->get_jquery_validation_rules(),
767
-                'other_data'       => $this->get_other_js_data(),
768
-                'errors'           => $this->subsection_validation_errors_by_html_name(),
769
-            );
770
-            EE_Form_Section_Proper::$_scripts_localized                                = true;
771
-        }
772
-    }
773
-
774
-
775
-    /**
776
-     * Gets an array of extra data that will be useful for client-side javascript.
777
-     * This is primarily data added by inputs and forms in addition to any
778
-     * scripts they might enqueue
779
-     *
780
-     * @param array $form_other_js_data
781
-     * @return array
782
-     * @throws EE_Error
783
-     */
784
-    public function get_other_js_data($form_other_js_data = array())
785
-    {
786
-        foreach ($this->subsections() as $subsection) {
787
-            $form_other_js_data = $subsection->get_other_js_data($form_other_js_data);
788
-        }
789
-        return $form_other_js_data;
790
-    }
791
-
792
-
793
-    /**
794
-     * Gets a flat array of inputs for this form section and its subsections.
795
-     * Keys are their form names, and values are the inputs themselves
796
-     *
797
-     * @return EE_Form_Input_Base
798
-     * @throws EE_Error
799
-     */
800
-    public function inputs_in_subsections()
801
-    {
802
-        $inputs = array();
803
-        foreach ($this->subsections() as $subsection) {
804
-            if ($subsection instanceof EE_Form_Input_Base) {
805
-                $inputs[ $subsection->html_name() ] = $subsection;
806
-            } elseif ($subsection instanceof EE_Form_Section_Proper) {
807
-                $inputs += $subsection->inputs_in_subsections();
808
-            }
809
-        }
810
-        return $inputs;
811
-    }
812
-
813
-
814
-    /**
815
-     * Gets a flat array of all the validation errors.
816
-     * Keys are html names (because those should be unique)
817
-     * and values are a string of all their validation errors
818
-     *
819
-     * @return string[]
820
-     * @throws EE_Error
821
-     */
822
-    public function subsection_validation_errors_by_html_name()
823
-    {
824
-        $inputs = $this->inputs();
825
-        $errors = array();
826
-        foreach ($inputs as $form_input) {
827
-            if ($form_input instanceof EE_Form_Input_Base && $form_input->get_validation_errors()) {
828
-                $errors[ $form_input->html_name() ] = $form_input->get_validation_error_string();
829
-            }
830
-        }
831
-        return $errors;
832
-    }
833
-
834
-
835
-    /**
836
-     * passes all the form data required by the JS to the JS, and enqueues the few required JS files.
837
-     * Should be setup by each form during the _enqueues_and_localize_form_js
838
-     *
839
-     * @throws InvalidArgumentException
840
-     * @throws InvalidInterfaceException
841
-     * @throws InvalidDataTypeException
842
-     */
843
-    public static function localize_script_for_all_forms()
844
-    {
845
-        // allow inputs and stuff to hook in their JS and stuff here
846
-        do_action('AHEE__EE_Form_Section_Proper__localize_script_for_all_forms__begin');
847
-        EE_Form_Section_Proper::$_js_localization['localized_error_messages'] = EE_Form_Section_Proper::_get_localized_error_messages();
848
-        $email_validation_level = isset(EE_Registry::instance()->CFG->registration->email_validation_level)
849
-            ? EE_Registry::instance()->CFG->registration->email_validation_level
850
-            : 'wp_default';
851
-        EE_Form_Section_Proper::$_js_localization['email_validation_level']   = $email_validation_level;
852
-        wp_enqueue_script('ee_form_section_validation');
853
-        wp_localize_script(
854
-            'ee_form_section_validation',
855
-            'ee_form_section_vars',
856
-            EE_Form_Section_Proper::$_js_localization
857
-        );
858
-    }
859
-
860
-
861
-    /**
862
-     * ensure_scripts_localized
863
-     *
864
-     * @throws EE_Error
865
-     */
866
-    public function ensure_scripts_localized()
867
-    {
868
-        if (! EE_Form_Section_Proper::$_scripts_localized) {
869
-            $this->_enqueue_and_localize_form_js();
870
-        }
871
-    }
872
-
873
-
874
-    /**
875
-     * Gets the hard-coded validation error messages to be used in the JS. The convention
876
-     * is that the key here should be the same as the custom validation rule put in the JS file
877
-     *
878
-     * @return array keys are custom validation rules, and values are internationalized strings
879
-     */
880
-    private static function _get_localized_error_messages()
881
-    {
882
-        return array(
883
-            'validUrl' => wp_strip_all_tags(__('This is not a valid absolute URL. Eg, http://domain.com/monkey.jpg', 'event_espresso')),
884
-            'regex'    => wp_strip_all_tags(__('Please check your input', 'event_espresso'))
885
-        );
886
-    }
887
-
888
-
889
-    /**
890
-     * @return array
891
-     */
892
-    public static function js_localization()
893
-    {
894
-        return self::$_js_localization;
895
-    }
896
-
897
-
898
-    /**
899
-     * @return void
900
-     */
901
-    public static function reset_js_localization()
902
-    {
903
-        self::$_js_localization = array();
904
-    }
905
-
906
-
907
-    /**
908
-     * Gets the JS to put inside the jquery validation rules for subsection of this form section.
909
-     * See parent function for more...
910
-     *
911
-     * @return array
912
-     * @throws EE_Error
913
-     */
914
-    public function get_jquery_validation_rules()
915
-    {
916
-        $jquery_validation_rules = array();
917
-        foreach ($this->get_validatable_subsections() as $subsection) {
918
-            $jquery_validation_rules = array_merge(
919
-                $jquery_validation_rules,
920
-                $subsection->get_jquery_validation_rules()
921
-            );
922
-        }
923
-        return $jquery_validation_rules;
924
-    }
925
-
926
-
927
-    /**
928
-     * Sanitizes all the data and sets the sanitized value of each field
929
-     *
930
-     * @param array $req_data
931
-     * @return void
932
-     * @throws EE_Error
933
-     */
934
-    protected function _normalize($req_data)
935
-    {
936
-        $this->_received_submission = true;
937
-        $this->_validation_errors   = array();
938
-        foreach ($this->get_validatable_subsections() as $subsection) {
939
-            try {
940
-                $subsection->_normalize($req_data);
941
-            } catch (EE_Validation_Error $e) {
942
-                $subsection->add_validation_error($e);
943
-            }
944
-        }
945
-    }
946
-
947
-
948
-    /**
949
-     * Performs validation on this form section and its subsections.
950
-     * For each subsection,
951
-     * calls _validate_{subsection_name} on THIS form (if the function exists)
952
-     * and passes it the subsection, then calls _validate on that subsection.
953
-     * If you need to perform validation on the form as a whole (considering multiple)
954
-     * you would be best to override this _validate method,
955
-     * calling parent::_validate() first.
956
-     *
957
-     * @throws EE_Error
958
-     */
959
-    protected function _validate()
960
-    {
961
-        // reset the cache of whether this form is valid or not- we're re-validating it now
962
-        $this->is_valid = null;
963
-        foreach ($this->get_validatable_subsections() as $subsection_name => $subsection) {
964
-            if (method_exists($this, '_validate_' . $subsection_name)) {
965
-                call_user_func_array(array($this, '_validate_' . $subsection_name), array($subsection));
966
-            }
967
-            $subsection->_validate();
968
-        }
969
-    }
970
-
971
-
972
-    /**
973
-     * Gets all the validated inputs for the form section
974
-     *
975
-     * @return array
976
-     * @throws EE_Error
977
-     */
978
-    public function valid_data()
979
-    {
980
-        $inputs = array();
981
-        foreach ($this->subsections() as $subsection_name => $subsection) {
982
-            if ($subsection instanceof EE_Form_Section_Proper) {
983
-                $inputs[ $subsection_name ] = $subsection->valid_data();
984
-            } elseif ($subsection instanceof EE_Form_Input_Base) {
985
-                $inputs[ $subsection_name ] = $subsection->normalized_value();
986
-            }
987
-        }
988
-        return $inputs;
989
-    }
990
-
991
-
992
-    /**
993
-     * Gets all the inputs on this form section
994
-     *
995
-     * @return EE_Form_Input_Base[]
996
-     * @throws EE_Error
997
-     */
998
-    public function inputs()
999
-    {
1000
-        $inputs = array();
1001
-        foreach ($this->subsections() as $subsection_name => $subsection) {
1002
-            if ($subsection instanceof EE_Form_Input_Base) {
1003
-                $inputs[ $subsection_name ] = $subsection;
1004
-            }
1005
-        }
1006
-        return $inputs;
1007
-    }
1008
-
1009
-
1010
-    /**
1011
-     * Gets all the subsections which are a proper form
1012
-     *
1013
-     * @return EE_Form_Section_Proper[]
1014
-     * @throws EE_Error
1015
-     */
1016
-    public function subforms()
1017
-    {
1018
-        $form_sections = array();
1019
-        foreach ($this->subsections() as $name => $obj) {
1020
-            if ($obj instanceof EE_Form_Section_Proper) {
1021
-                $form_sections[ $name ] = $obj;
1022
-            }
1023
-        }
1024
-        return $form_sections;
1025
-    }
1026
-
1027
-
1028
-    /**
1029
-     * Gets all the subsections (inputs, proper subsections, or html-only sections).
1030
-     * Consider using inputs() or subforms()
1031
-     * if you only want form inputs or proper form sections.
1032
-     *
1033
-     * @param boolean $require_construction_to_be_finalized most client code should
1034
-     *                                                      leave this as TRUE so that the inputs will be properly
1035
-     *                                                      configured. However, some client code may be ok with
1036
-     *                                                      construction finalize being called later
1037
-     *                                                      (realizing that the subsections' html names might not be
1038
-     *                                                      set yet, etc.)
1039
-     * @return EE_Form_Section_Proper[]
1040
-     * @throws EE_Error
1041
-     */
1042
-    public function subsections($require_construction_to_be_finalized = true)
1043
-    {
1044
-        if ($require_construction_to_be_finalized) {
1045
-            $this->ensure_construct_finalized_called();
1046
-        }
1047
-        return $this->_subsections;
1048
-    }
1049
-
1050
-
1051
-    /**
1052
-     * Returns whether this form has any subforms or inputs
1053
-     * @return bool
1054
-     */
1055
-    public function hasSubsections()
1056
-    {
1057
-        return ! empty($this->_subsections);
1058
-    }
1059
-
1060
-
1061
-    /**
1062
-     * Returns a simple array where keys are input names, and values are their normalized
1063
-     * values. (Similar to calling get_input_value on inputs)
1064
-     *
1065
-     * @param boolean $include_subform_inputs Whether to include inputs from subforms,
1066
-     *                                        or just this forms' direct children inputs
1067
-     * @param boolean $flatten                Whether to force the results into 1-dimensional array,
1068
-     *                                        or allow multidimensional array
1069
-     * @return array if $flatten is TRUE it will always be a 1-dimensional array
1070
-     *                                        with array keys being input names
1071
-     *                                        (regardless of whether they are from a subsection or not),
1072
-     *                                        and if $flatten is FALSE it can be a multidimensional array
1073
-     *                                        where keys are always subsection names and values are either
1074
-     *                                        the input's normalized value, or an array like the top-level array
1075
-     * @throws EE_Error
1076
-     */
1077
-    public function input_values($include_subform_inputs = false, $flatten = false)
1078
-    {
1079
-        return $this->_input_values(false, $include_subform_inputs, $flatten);
1080
-    }
1081
-
1082
-
1083
-    /**
1084
-     * Similar to EE_Form_Section_Proper::input_values(), except this returns the 'display_value'
1085
-     * of each input. On some inputs (especially radio boxes or checkboxes), the value stored
1086
-     * is not necessarily the value we want to display to users. This creates an array
1087
-     * where keys are the input names, and values are their display values
1088
-     *
1089
-     * @param boolean $include_subform_inputs Whether to include inputs from subforms,
1090
-     *                                        or just this forms' direct children inputs
1091
-     * @param boolean $flatten                Whether to force the results into 1-dimensional array,
1092
-     *                                        or allow multidimensional array
1093
-     * @return array if $flatten is TRUE it will always be a 1-dimensional array
1094
-     *                                        with array keys being input names
1095
-     *                                        (regardless of whether they are from a subsection or not),
1096
-     *                                        and if $flatten is FALSE it can be a multidimensional array
1097
-     *                                        where keys are always subsection names and values are either
1098
-     *                                        the input's normalized value, or an array like the top-level array
1099
-     * @throws EE_Error
1100
-     */
1101
-    public function input_pretty_values($include_subform_inputs = false, $flatten = false)
1102
-    {
1103
-        return $this->_input_values(true, $include_subform_inputs, $flatten);
1104
-    }
1105
-
1106
-
1107
-    /**
1108
-     * Gets the input values from the form
1109
-     *
1110
-     * @param boolean $pretty                 Whether to retrieve the pretty value,
1111
-     *                                        or just the normalized value
1112
-     * @param boolean $include_subform_inputs Whether to include inputs from subforms,
1113
-     *                                        or just this forms' direct children inputs
1114
-     * @param boolean $flatten                Whether to force the results into 1-dimensional array,
1115
-     *                                        or allow multidimensional array
1116
-     * @return array if $flatten is TRUE it will always be a 1-dimensional array with array keys being
1117
-     *                                        input names (regardless of whether they are from a subsection or not),
1118
-     *                                        and if $flatten is FALSE it can be a multidimensional array
1119
-     *                                        where keys are always subsection names and values are either
1120
-     *                                        the input's normalized value, or an array like the top-level array
1121
-     * @throws EE_Error
1122
-     */
1123
-    public function _input_values($pretty = false, $include_subform_inputs = false, $flatten = false)
1124
-    {
1125
-        $input_values = array();
1126
-        foreach ($this->subsections() as $subsection_name => $subsection) {
1127
-            if ($subsection instanceof EE_Form_Input_Base) {
1128
-                $input_values[ $subsection_name ] = $pretty
1129
-                    ? $subsection->pretty_value()
1130
-                    : $subsection->normalized_value();
1131
-            } elseif ($subsection instanceof EE_Form_Section_Proper && $include_subform_inputs) {
1132
-                $subform_input_values = $subsection->_input_values(
1133
-                    $pretty,
1134
-                    $include_subform_inputs,
1135
-                    $flatten
1136
-                );
1137
-                if ($flatten) {
1138
-                    $input_values = array_merge($input_values, $subform_input_values);
1139
-                } else {
1140
-                    $input_values[ $subsection_name ] = $subform_input_values;
1141
-                }
1142
-            }
1143
-        }
1144
-        return $input_values;
1145
-    }
1146
-
1147
-
1148
-    /**
1149
-     * Gets the originally submitted input values from the form
1150
-     *
1151
-     * @param boolean $include_subforms  Whether to include inputs from subforms,
1152
-     *                                   or just this forms' direct children inputs
1153
-     * @return array                     if $flatten is TRUE it will always be a 1-dimensional array
1154
-     *                                   with array keys being input names
1155
-     *                                   (regardless of whether they are from a subsection or not),
1156
-     *                                   and if $flatten is FALSE it can be a multidimensional array
1157
-     *                                   where keys are always subsection names and values are either
1158
-     *                                   the input's normalized value, or an array like the top-level array
1159
-     * @throws EE_Error
1160
-     */
1161
-    public function submitted_values($include_subforms = false)
1162
-    {
1163
-        $submitted_values = array();
1164
-        foreach ($this->subsections() as $subsection) {
1165
-            if ($subsection instanceof EE_Form_Input_Base) {
1166
-                // is this input part of an array of inputs?
1167
-                if (strpos($subsection->html_name(), '[') !== false) {
1168
-                    $full_input_name  = EEH_Array::convert_array_values_to_keys(
1169
-                        explode(
1170
-                            '[',
1171
-                            str_replace(']', '', $subsection->html_name())
1172
-                        ),
1173
-                        $subsection->raw_value()
1174
-                    );
1175
-                    $submitted_values = array_replace_recursive($submitted_values, $full_input_name);
1176
-                } else {
1177
-                    $submitted_values[ $subsection->html_name() ] = $subsection->raw_value();
1178
-                }
1179
-            } elseif ($subsection instanceof EE_Form_Section_Proper && $include_subforms) {
1180
-                $subform_input_values = $subsection->submitted_values($include_subforms);
1181
-                $submitted_values     = array_replace_recursive($submitted_values, $subform_input_values);
1182
-            }
1183
-        }
1184
-        return $submitted_values;
1185
-    }
1186
-
1187
-
1188
-    /**
1189
-     * Indicates whether or not this form has received a submission yet
1190
-     * (ie, had receive_form_submission called on it yet)
1191
-     *
1192
-     * @return boolean
1193
-     * @throws EE_Error
1194
-     */
1195
-    public function has_received_submission()
1196
-    {
1197
-        $this->ensure_construct_finalized_called();
1198
-        return $this->_received_submission;
1199
-    }
1200
-
1201
-
1202
-    /**
1203
-     * Equivalent to passing 'exclude' in the constructor's options array.
1204
-     * Removes the listed inputs from the form
1205
-     *
1206
-     * @param array $inputs_to_exclude values are the input names
1207
-     * @return void
1208
-     */
1209
-    public function exclude(array $inputs_to_exclude = array())
1210
-    {
1211
-        foreach ($inputs_to_exclude as $input_to_exclude_name) {
1212
-            unset($this->_subsections[ $input_to_exclude_name ]);
1213
-        }
1214
-    }
1215
-
1216
-
1217
-    /**
1218
-     * Changes these inputs' display strategy to be EE_Hidden_Display_Strategy.
1219
-     * @param array $inputs_to_hide
1220
-     * @throws EE_Error
1221
-     */
1222
-    public function hide(array $inputs_to_hide = array())
1223
-    {
1224
-        foreach ($inputs_to_hide as $input_to_hide) {
1225
-            $input = $this->get_input($input_to_hide);
1226
-            $input->set_display_strategy(new EE_Hidden_Display_Strategy());
1227
-        }
1228
-    }
1229
-
1230
-
1231
-    /**
1232
-     * add_subsections
1233
-     * Adds the listed subsections to the form section.
1234
-     * If $subsection_name_to_target is provided,
1235
-     * then new subsections are added before or after that subsection,
1236
-     * otherwise to the start or end of the entire subsections array.
1237
-     *
1238
-     * @param EE_Form_Section_Base[] $new_subsections           array of new form subsections
1239
-     *                                                          where keys are their names
1240
-     * @param string                 $subsection_name_to_target an existing for section that $new_subsections
1241
-     *                                                          should be added before or after
1242
-     *                                                          IF $subsection_name_to_target is null,
1243
-     *                                                          then $new_subsections will be added to
1244
-     *                                                          the beginning or end of the entire subsections array
1245
-     * @param boolean                $add_before                whether to add $new_subsections, before or after
1246
-     *                                                          $subsection_name_to_target,
1247
-     *                                                          or if $subsection_name_to_target is null,
1248
-     *                                                          before or after entire subsections array
1249
-     * @return void
1250
-     * @throws EE_Error
1251
-     */
1252
-    public function add_subsections($new_subsections, $subsection_name_to_target = null, $add_before = true)
1253
-    {
1254
-        foreach ($new_subsections as $subsection_name => $subsection) {
1255
-            if (! $subsection instanceof EE_Form_Section_Base) {
1256
-                EE_Error::add_error(
1257
-                    sprintf(
1258
-                        esc_html__(
1259
-                            "Trying to add a %s as a subsection (it was named '%s') to the form section '%s'. It was removed.",
1260
-                            'event_espresso'
1261
-                        ),
1262
-                        get_class($subsection),
1263
-                        $subsection_name,
1264
-                        $this->name()
1265
-                    )
1266
-                );
1267
-                unset($new_subsections[ $subsection_name ]);
1268
-            }
1269
-        }
1270
-        $this->_subsections = EEH_Array::insert_into_array(
1271
-            $this->_subsections,
1272
-            $new_subsections,
1273
-            $subsection_name_to_target,
1274
-            $add_before
1275
-        );
1276
-        if ($this->_construction_finalized) {
1277
-            foreach ($this->_subsections as $name => $subsection) {
1278
-                $subsection->_construct_finalize($this, $name);
1279
-            }
1280
-        }
1281
-    }
1282
-
1283
-
1284
-    /**
1285
-     * @param string $subsection_name
1286
-     * @param bool   $recursive
1287
-     * @return bool
1288
-     */
1289
-    public function has_subsection($subsection_name, $recursive = false)
1290
-    {
1291
-        foreach ($this->_subsections as $name => $subsection) {
1292
-            if (
1293
-                $name === $subsection_name
1294
-                || (
1295
-                    $recursive
1296
-                    && $subsection instanceof EE_Form_Section_Proper
1297
-                    && $subsection->has_subsection($subsection_name, $recursive)
1298
-                )
1299
-            ) {
1300
-                return true;
1301
-            }
1302
-        }
1303
-        return false;
1304
-    }
1305
-
1306
-
1307
-
1308
-    /**
1309
-     * Just gets all validatable subsections to clean their sensitive data
1310
-     *
1311
-     * @throws EE_Error
1312
-     */
1313
-    public function clean_sensitive_data()
1314
-    {
1315
-        foreach ($this->get_validatable_subsections() as $subsection) {
1316
-            $subsection->clean_sensitive_data();
1317
-        }
1318
-    }
1319
-
1320
-
1321
-    /**
1322
-     * Sets the submission error message (aka validation error message for this form section and all sub-sections)
1323
-     * @param string                           $form_submission_error_message
1324
-     * @param EE_Form_Section_Validatable $form_section unused
1325
-     * @throws EE_Error
1326
-     */
1327
-    public function set_submission_error_message(
1328
-        $form_submission_error_message = ''
1329
-    ) {
1330
-        $this->_form_submission_error_message = ! empty($form_submission_error_message)
1331
-            ? $form_submission_error_message
1332
-            : $this->getAllValidationErrorsString();
1333
-    }
1334
-
1335
-
1336
-    /**
1337
-     * Returns the cached error message. A default value is set for this during _validate(),
1338
-     * (called during receive_form_submission) but it can be explicitly set using
1339
-     * set_submission_error_message
1340
-     *
1341
-     * @return string
1342
-     */
1343
-    public function submission_error_message()
1344
-    {
1345
-        return $this->_form_submission_error_message;
1346
-    }
1347
-
1348
-
1349
-    /**
1350
-     * Sets a message to display if the data submitted to the form was valid.
1351
-     * @param string $form_submission_success_message
1352
-     */
1353
-    public function set_submission_success_message($form_submission_success_message = '')
1354
-    {
1355
-        $this->_form_submission_success_message = ! empty($form_submission_success_message)
1356
-            ? $form_submission_success_message
1357
-            : esc_html__('Form submitted successfully', 'event_espresso');
1358
-    }
1359
-
1360
-
1361
-    /**
1362
-     * Gets a message appropriate for display when the form is correctly submitted
1363
-     * @return string
1364
-     */
1365
-    public function submission_success_message()
1366
-    {
1367
-        return $this->_form_submission_success_message;
1368
-    }
1369
-
1370
-
1371
-    /**
1372
-     * Returns the prefix that should be used on child of this form section for
1373
-     * their html names. If this form section itself has a parent, prepends ITS
1374
-     * prefix onto this form section's prefix. Used primarily by
1375
-     * EE_Form_Input_Base::_set_default_html_name_if_empty
1376
-     *
1377
-     * @return string
1378
-     * @throws EE_Error
1379
-     */
1380
-    public function html_name_prefix()
1381
-    {
1382
-        if ($this->parent_section() instanceof EE_Form_Section_Proper) {
1383
-            return $this->parent_section()->html_name_prefix() . '[' . $this->name() . ']';
1384
-        }
1385
-        return $this->name();
1386
-    }
1387
-
1388
-
1389
-    /**
1390
-     * Gets the name, but first checks _construct_finalize has been called. If not,
1391
-     * calls it (assumes there is no parent and that we want the name to be whatever
1392
-     * was set, which is probably nothing, or the classname)
1393
-     *
1394
-     * @return string
1395
-     * @throws EE_Error
1396
-     */
1397
-    public function name()
1398
-    {
1399
-        $this->ensure_construct_finalized_called();
1400
-        return parent::name();
1401
-    }
1402
-
1403
-
1404
-    /**
1405
-     * @return EE_Form_Section_Proper
1406
-     * @throws EE_Error
1407
-     */
1408
-    public function parent_section()
1409
-    {
1410
-        $this->ensure_construct_finalized_called();
1411
-        return parent::parent_section();
1412
-    }
1413
-
1414
-
1415
-    /**
1416
-     * make sure construction finalized was called, otherwise children might not be ready
1417
-     *
1418
-     * @return void
1419
-     * @throws EE_Error
1420
-     */
1421
-    public function ensure_construct_finalized_called()
1422
-    {
1423
-        if (! $this->_construction_finalized) {
1424
-            $this->_construct_finalize($this->_parent_section, $this->_name);
1425
-        }
1426
-    }
1427
-
1428
-
1429
-    /**
1430
-     * Checks if any of this form section's inputs, or any of its children's inputs,
1431
-     * are in teh form data. If any are found, returns true. Else false
1432
-     *
1433
-     * @param array $req_data
1434
-     * @return boolean
1435
-     * @throws EE_Error
1436
-     */
1437
-    public function form_data_present_in($req_data = null)
1438
-    {
1439
-        $req_data = $this->getCachedRequest($req_data);
1440
-        foreach ($this->subsections() as $subsection) {
1441
-            if ($subsection instanceof EE_Form_Input_Base) {
1442
-                if ($subsection->form_data_present_in($req_data)) {
1443
-                    return true;
1444
-                }
1445
-            } elseif ($subsection instanceof EE_Form_Section_Proper) {
1446
-                if ($subsection->form_data_present_in($req_data)) {
1447
-                    return true;
1448
-                }
1449
-            }
1450
-        }
1451
-        return false;
1452
-    }
1453
-
1454
-
1455
-    /**
1456
-     * Gets validation errors for this form section and subsections
1457
-     * Similar to EE_Form_Section_Validatable::get_validation_errors() except this
1458
-     * gets the validation errors for ALL subsection
1459
-     *
1460
-     * @return EE_Validation_Error[]
1461
-     * @throws EE_Error
1462
-     */
1463
-    public function get_validation_errors_accumulated()
1464
-    {
1465
-        $validation_errors = $this->get_validation_errors();
1466
-        foreach ($this->get_validatable_subsections() as $subsection) {
1467
-            if ($subsection instanceof EE_Form_Section_Proper) {
1468
-                $validation_errors_on_this_subsection = $subsection->get_validation_errors_accumulated();
1469
-            } else {
1470
-                $validation_errors_on_this_subsection = $subsection->get_validation_errors();
1471
-            }
1472
-            if ($validation_errors_on_this_subsection) {
1473
-                $validation_errors = array_merge($validation_errors, $validation_errors_on_this_subsection);
1474
-            }
1475
-        }
1476
-        return $validation_errors;
1477
-    }
1478
-
1479
-    /**
1480
-     * Fetch validation errors from children and grandchildren and puts them in a single string.
1481
-     * This traverses the form section tree to generate this, but you probably want to instead use
1482
-     * get_form_submission_error_message() which is usually this message cached (or a custom validation error message)
1483
-     *
1484
-     * @return string
1485
-     * @since 4.9.59.p
1486
-     */
1487
-    protected function getAllValidationErrorsString()
1488
-    {
1489
-        $submission_error_messages = array();
1490
-        // bad, bad, bad registrant
1491
-        foreach ($this->get_validation_errors_accumulated() as $validation_error) {
1492
-            if ($validation_error instanceof EE_Validation_Error) {
1493
-                $form_section = $validation_error->get_form_section();
1494
-                if ($form_section instanceof EE_Form_Input_Base) {
1495
-                    $label = $validation_error->get_form_section()->html_label_text();
1496
-                } elseif ($form_section instanceof EE_Form_Section_Validatable) {
1497
-                    $label = $validation_error->get_form_section()->name();
1498
-                } else {
1499
-                    $label = esc_html__('Unknown', 'event_espresso');
1500
-                }
1501
-                $submission_error_messages[] = sprintf(
1502
-                    esc_html__('%s : %s', 'event_espresso'),
1503
-                    $label,
1504
-                    $validation_error->getMessage()
1505
-                );
1506
-            }
1507
-        }
1508
-        return implode('<br>', $submission_error_messages);
1509
-    }
1510
-
1511
-
1512
-    /**
1513
-     * This isn't just the name of an input, it's a path pointing to an input. The
1514
-     * path is similar to a folder path: slash (/) means to descend into a subsection,
1515
-     * dot-dot-slash (../) means to ascend into the parent section.
1516
-     * After a series of slashes and dot-dot-slashes, there should be the name of an input,
1517
-     * which will be returned.
1518
-     * Eg, if you want the related input to be conditional on a sibling input name 'foobar'
1519
-     * just use 'foobar'. If you want it to be conditional on an aunt/uncle input name
1520
-     * 'baz', use '../baz'. If you want it to be conditional on a cousin input,
1521
-     * the child of 'baz_section' named 'baz_child', use '../baz_section/baz_child'.
1522
-     * Etc
1523
-     *
1524
-     * @param string|false $form_section_path we accept false also because substr( '../', '../' ) = false
1525
-     * @return EE_Form_Section_Base
1526
-     * @throws EE_Error
1527
-     */
1528
-    public function find_section_from_path($form_section_path)
1529
-    {
1530
-        // check if we can find the input from purely going straight up the tree
1531
-        $input = parent::find_section_from_path($form_section_path);
1532
-        if ($input instanceof EE_Form_Section_Base) {
1533
-            return $input;
1534
-        }
1535
-        $next_slash_pos = strpos($form_section_path, '/');
1536
-        if ($next_slash_pos !== false) {
1537
-            $child_section_name = substr($form_section_path, 0, $next_slash_pos);
1538
-            $subpath            = substr($form_section_path, $next_slash_pos + 1);
1539
-        } else {
1540
-            $child_section_name = $form_section_path;
1541
-            $subpath            = '';
1542
-        }
1543
-        $child_section = $this->get_subsection($child_section_name);
1544
-        if ($child_section instanceof EE_Form_Section_Base) {
1545
-            return $child_section->find_section_from_path($subpath);
1546
-        }
1547
-        return null;
1548
-    }
17
+	const SUBMITTED_FORM_DATA_SSN_KEY = 'submitted_form_data';
18
+
19
+	/**
20
+	 * Subsections
21
+	 *
22
+	 * @var EE_Form_Section_Validatable[]
23
+	 */
24
+	protected $_subsections = array();
25
+
26
+	/**
27
+	 * Strategy for laying out the form
28
+	 *
29
+	 * @var EE_Form_Section_Layout_Base
30
+	 */
31
+	protected $_layout_strategy;
32
+
33
+	/**
34
+	 * Whether or not this form has received and validated a form submission yet
35
+	 *
36
+	 * @var boolean
37
+	 */
38
+	protected $_received_submission = false;
39
+
40
+	/**
41
+	 * message displayed to users upon successful form submission
42
+	 *
43
+	 * @var string
44
+	 */
45
+	protected $_form_submission_success_message = '';
46
+
47
+	/**
48
+	 * message displayed to users upon unsuccessful form submission
49
+	 *
50
+	 * @var string
51
+	 */
52
+	protected $_form_submission_error_message = '';
53
+
54
+	/**
55
+	 * @var array like post / request
56
+	 */
57
+	protected $cached_request_data;
58
+
59
+	/**
60
+	 * Stores whether this form (and its sub-sections) were found to be valid or not.
61
+	 * Starts off as null, but once the form is validated, it set to either true or false
62
+	 * @var boolean|null
63
+	 */
64
+	protected $is_valid;
65
+
66
+	/**
67
+	 * Stores all the data that will localized for form validation
68
+	 *
69
+	 * @var array
70
+	 */
71
+	protected static $_js_localization = array();
72
+
73
+	/**
74
+	 * whether or not the form's localized validation JS vars have been set
75
+	 *
76
+	 * @type boolean
77
+	 */
78
+	protected static $_scripts_localized = false;
79
+
80
+
81
+	/**
82
+	 * when constructing a proper form section, calls _construct_finalize on children
83
+	 * so that they know who their parent is, and what name they've been given.
84
+	 *
85
+	 * @param array[] $options_array   {
86
+	 * @type          $subsections     EE_Form_Section_Validatable[] where keys are the section's name
87
+	 * @type          $include         string[] numerically-indexed where values are section names to be included,
88
+	 *                                 and in that order. This is handy if you want
89
+	 *                                 the subsections to be ordered differently than the default, and if you override
90
+	 *                                 which fields are shown
91
+	 * @type          $exclude         string[] values are subsections to be excluded. This is handy if you want
92
+	 *                                 to remove certain default subsections (note: if you specify BOTH 'include' AND
93
+	 *                                 'exclude', the inclusions will be applied first, and the exclusions will exclude
94
+	 *                                 items from that list of inclusions)
95
+	 * @type          $layout_strategy EE_Form_Section_Layout_Base strategy for laying out the form
96
+	 *                                 } @see EE_Form_Section_Validatable::__construct()
97
+	 * @throws EE_Error
98
+	 */
99
+	public function __construct($options_array = array())
100
+	{
101
+		$options_array = (array) apply_filters(
102
+			'FHEE__EE_Form_Section_Proper___construct__options_array',
103
+			$options_array,
104
+			$this
105
+		);
106
+		// call parent first, as it may be setting the name
107
+		parent::__construct($options_array);
108
+		// if they've included subsections in the constructor, add them now
109
+		if (isset($options_array['include'])) {
110
+			// we are going to make sure we ONLY have those subsections to include
111
+			// AND we are going to make sure they're in that specified order
112
+			$reordered_subsections = array();
113
+			foreach ($options_array['include'] as $input_name) {
114
+				if (isset($this->_subsections[ $input_name ])) {
115
+					$reordered_subsections[ $input_name ] = $this->_subsections[ $input_name ];
116
+				}
117
+			}
118
+			$this->_subsections = $reordered_subsections;
119
+		}
120
+		if (isset($options_array['exclude'])) {
121
+			$exclude            = $options_array['exclude'];
122
+			$this->_subsections = array_diff_key($this->_subsections, array_flip($exclude));
123
+		}
124
+		if (isset($options_array['layout_strategy'])) {
125
+			$this->_layout_strategy = $options_array['layout_strategy'];
126
+		}
127
+		if (! $this->_layout_strategy) {
128
+			$this->_layout_strategy = is_admin() ? new EE_Admin_Two_Column_Layout() : new EE_Two_Column_Layout();
129
+		}
130
+		$this->_layout_strategy->_construct_finalize($this);
131
+		// ok so we are definitely going to want the forms JS,
132
+		// so enqueue it or remember to enqueue it during wp_enqueue_scripts
133
+		if (did_action('wp_enqueue_scripts') || did_action('admin_enqueue_scripts')) {
134
+			// ok so they've constructed this object after when they should have.
135
+			// just enqueue the generic form scripts and initialize the form immediately in the JS
136
+			EE_Form_Section_Proper::wp_enqueue_scripts(true);
137
+		} else {
138
+			add_action('wp_enqueue_scripts', array('EE_Form_Section_Proper', 'wp_enqueue_scripts'));
139
+			add_action('admin_enqueue_scripts', array('EE_Form_Section_Proper', 'wp_enqueue_scripts'));
140
+		}
141
+		add_action('wp_footer', array($this, 'ensure_scripts_localized'), 1);
142
+		/**
143
+		 * Gives other plugins a chance to hook in before construct finalize is called.
144
+		 * The form probably doesn't yet have a parent form section.
145
+		 * Since 4.9.32, when this action was introduced, this is the best place to add a subsection onto a form,
146
+		 * assuming you don't care what the form section's name, HTML ID, or HTML name etc are.
147
+		 * Also see AHEE__EE_Form_Section_Proper___construct_finalize__end
148
+		 *
149
+		 * @since 4.9.32
150
+		 * @param EE_Form_Section_Proper $this          before __construct is done, but all of its logic,
151
+		 *                                              except maybe calling _construct_finalize has been done
152
+		 * @param array                  $options_array options passed into the constructor
153
+		 */
154
+		do_action(
155
+			'AHEE__EE_Form_Input_Base___construct__before_construct_finalize_called',
156
+			$this,
157
+			$options_array
158
+		);
159
+		if (isset($options_array['name'])) {
160
+			$this->_construct_finalize(null, $options_array['name']);
161
+		}
162
+	}
163
+
164
+
165
+	/**
166
+	 * Finishes construction given the parent form section and this form section's name
167
+	 *
168
+	 * @param EE_Form_Section_Proper $parent_form_section
169
+	 * @param string                 $name
170
+	 * @throws EE_Error
171
+	 */
172
+	public function _construct_finalize($parent_form_section, $name)
173
+	{
174
+		parent::_construct_finalize($parent_form_section, $name);
175
+		$this->_set_default_name_if_empty();
176
+		$this->_set_default_html_id_if_empty();
177
+		foreach ($this->_subsections as $subsection_name => $subsection) {
178
+			if ($subsection instanceof EE_Form_Section_Base) {
179
+				$subsection->_construct_finalize($this, $subsection_name);
180
+			} else {
181
+				throw new EE_Error(
182
+					sprintf(
183
+						esc_html__(
184
+							'Subsection "%s" is not an instanceof EE_Form_Section_Base on form "%s". It is a "%s"',
185
+							'event_espresso'
186
+						),
187
+						$subsection_name,
188
+						get_class($this),
189
+						$subsection ? get_class($subsection) : esc_html__('NULL', 'event_espresso')
190
+					)
191
+				);
192
+			}
193
+		}
194
+		/**
195
+		 * Action performed just after form has been given a name (and HTML ID etc) and is fully constructed.
196
+		 * If you have code that should modify the form and needs it and its subsections to have a name, HTML ID
197
+		 * (or other attributes derived from the name like the HTML label id, etc), this is where it should be done.
198
+		 * This might only happen just before displaying the form, or just before it receives form submission data.
199
+		 * If you need to modify the form or its subsections before _construct_finalize is called on it (and we've
200
+		 * ensured it has a name, HTML IDs, etc
201
+		 *
202
+		 * @param EE_Form_Section_Proper      $this
203
+		 * @param EE_Form_Section_Proper|null $parent_form_section
204
+		 * @param string                      $name
205
+		 */
206
+		do_action(
207
+			'AHEE__EE_Form_Section_Proper___construct_finalize__end',
208
+			$this,
209
+			$parent_form_section,
210
+			$name
211
+		);
212
+	}
213
+
214
+
215
+	/**
216
+	 * Gets the layout strategy for this form section
217
+	 *
218
+	 * @return EE_Form_Section_Layout_Base
219
+	 */
220
+	public function get_layout_strategy()
221
+	{
222
+		return $this->_layout_strategy;
223
+	}
224
+
225
+
226
+	/**
227
+	 * Gets the HTML for a single input for this form section according
228
+	 * to the layout strategy
229
+	 *
230
+	 * @param EE_Form_Input_Base $input
231
+	 * @return string
232
+	 */
233
+	public function get_html_for_input($input)
234
+	{
235
+		return $this->_layout_strategy->layout_input($input);
236
+	}
237
+
238
+
239
+	/**
240
+	 * was_submitted - checks if form inputs are present in request data
241
+	 * Basically an alias for form_data_present_in() (which is used by both
242
+	 * proper form sections and form inputs)
243
+	 *
244
+	 * @param null $form_data
245
+	 * @return boolean
246
+	 * @throws EE_Error
247
+	 */
248
+	public function was_submitted($form_data = null)
249
+	{
250
+		return $this->form_data_present_in($form_data);
251
+	}
252
+
253
+	/**
254
+	 * Gets the cached request data; but if there is none, or $req_data was set with
255
+	 * something different, refresh the cache, and then return it
256
+	 * @param null $req_data
257
+	 * @return array
258
+	 */
259
+	protected function getCachedRequest($req_data = null)
260
+	{
261
+		if (
262
+			$this->cached_request_data === null
263
+			|| (
264
+				$req_data !== null
265
+				&& $req_data !== $this->cached_request_data
266
+			)
267
+		) {
268
+			$req_data = apply_filters(
269
+				'FHEE__EE_Form_Section_Proper__receive_form_submission__req_data',
270
+				$req_data,
271
+				$this
272
+			);
273
+			if ($req_data === null) {
274
+				/** @var RequestInterface $request */
275
+				$request = LoaderFactory::getLoader()->getShared(RequestInterface::class);
276
+				$req_data = $request->requestParams();
277
+			}
278
+			$req_data = apply_filters(
279
+				'FHEE__EE_Form_Section_Proper__receive_form_submission__request_data',
280
+				$req_data,
281
+				$this
282
+			);
283
+			$this->cached_request_data = (array) $req_data;
284
+		}
285
+		return $this->cached_request_data;
286
+	}
287
+
288
+
289
+	/**
290
+	 * After the form section is initially created, call this to sanitize the data in the submission
291
+	 * which relates to this form section, validate it, and set it as properties on the form.
292
+	 *
293
+	 * @param array|null $req_data should usually be post data (the default).
294
+	 *                             However, you CAN supply a different array.
295
+	 *                             Consider using set_defaults() instead however.
296
+	 *                             (If you rendered the form in the page using $form_x->get_html()
297
+	 *                             the inputs will have the correct name in the request data for this function
298
+	 *                             to find them and populate the form with them.
299
+	 *                             If you have a flat form (with only input subsections),
300
+	 *                             you can supply a flat array where keys
301
+	 *                             are the form input names and values are their values)
302
+	 * @param boolean    $validate whether or not to perform validation on this data. Default is,
303
+	 *                             of course, to validate that data, and set errors on the invalid values.
304
+	 *                             But if the data has already been validated
305
+	 *                             (eg you validated the data then stored it in the DB)
306
+	 *                             you may want to skip this step.
307
+	 * @throws InvalidArgumentException
308
+	 * @throws InvalidInterfaceException
309
+	 * @throws InvalidDataTypeException
310
+	 * @throws EE_Error
311
+	 */
312
+	public function receive_form_submission($req_data = null, $validate = true)
313
+	{
314
+		$req_data = $this->getCachedRequest($req_data);
315
+		$this->_normalize($req_data);
316
+		if ($validate) {
317
+			$this->_validate();
318
+			// if it's invalid, we're going to want to re-display so remember what they submitted
319
+			if (! $this->is_valid()) {
320
+				$this->store_submitted_form_data_in_session();
321
+			}
322
+		}
323
+		if ($this->submission_error_message() === '' && ! $this->is_valid()) {
324
+			$this->set_submission_error_message();
325
+		}
326
+		do_action(
327
+			'AHEE__EE_Form_Section_Proper__receive_form_submission__end',
328
+			$req_data,
329
+			$this,
330
+			$validate
331
+		);
332
+	}
333
+
334
+
335
+	/**
336
+	 * caches the originally submitted input values in the session
337
+	 * so that they can be used to repopulate the form if it failed validation
338
+	 *
339
+	 * @return boolean whether or not the data was successfully stored in the session
340
+	 * @throws InvalidArgumentException
341
+	 * @throws InvalidInterfaceException
342
+	 * @throws InvalidDataTypeException
343
+	 * @throws EE_Error
344
+	 */
345
+	protected function store_submitted_form_data_in_session()
346
+	{
347
+		$session = EE_Registry::instance()->SSN;
348
+		if ($session instanceof EE_Session) {
349
+			return EE_Registry::instance()->SSN->set_session_data(
350
+				[
351
+					EE_Form_Section_Proper::SUBMITTED_FORM_DATA_SSN_KEY => $this->submitted_values(true),
352
+				]
353
+			);
354
+		}
355
+		return false;
356
+	}
357
+
358
+
359
+	/**
360
+	 * retrieves the originally submitted input values in the session
361
+	 * so that they can be used to repopulate the form if it failed validation
362
+	 *
363
+	 * @return array
364
+	 * @throws InvalidArgumentException
365
+	 * @throws InvalidInterfaceException
366
+	 * @throws InvalidDataTypeException
367
+	 */
368
+	protected function get_submitted_form_data_from_session()
369
+	{
370
+		$session = EE_Registry::instance()->SSN;
371
+		if ($session instanceof EE_Session) {
372
+			return $session->get_session_data(
373
+				EE_Form_Section_Proper::SUBMITTED_FORM_DATA_SSN_KEY
374
+			);
375
+		}
376
+		return array();
377
+	}
378
+
379
+
380
+	/**
381
+	 * flushed the originally submitted input values from the session
382
+	 *
383
+	 * @return boolean whether or not the data was successfully removed from the session
384
+	 * @throws InvalidArgumentException
385
+	 * @throws InvalidInterfaceException
386
+	 * @throws InvalidDataTypeException
387
+	 */
388
+	public static function flush_submitted_form_data_from_session()
389
+	{
390
+		return EE_Registry::instance()->SSN->reset_data(
391
+			array(EE_Form_Section_Proper::SUBMITTED_FORM_DATA_SSN_KEY)
392
+		);
393
+	}
394
+
395
+
396
+	/**
397
+	 * Populates this form and its subsections with data from the session.
398
+	 * (Wrapper for EE_Form_Section_Proper::receive_form_submission, so it shows
399
+	 * validation errors when displaying too)
400
+	 * Returns true if the form was populated from the session, false otherwise
401
+	 *
402
+	 * @return boolean
403
+	 * @throws InvalidArgumentException
404
+	 * @throws InvalidInterfaceException
405
+	 * @throws InvalidDataTypeException
406
+	 * @throws EE_Error
407
+	 */
408
+	public function populate_from_session()
409
+	{
410
+		$form_data_in_session = $this->get_submitted_form_data_from_session();
411
+		if (empty($form_data_in_session)) {
412
+			return false;
413
+		}
414
+		$this->receive_form_submission($form_data_in_session);
415
+		add_action('shutdown', array('EE_Form_Section_Proper', 'flush_submitted_form_data_from_session'));
416
+		if ($this->form_data_present_in($form_data_in_session)) {
417
+			return true;
418
+		}
419
+		return false;
420
+	}
421
+
422
+
423
+	/**
424
+	 * Populates the default data for the form, given an array where keys are
425
+	 * the input names, and values are their values (preferably normalized to be their
426
+	 * proper PHP types, not all strings... although that should be ok too).
427
+	 * Proper subsections are sub-arrays, the key being the subsection's name, and
428
+	 * the value being an array formatted in teh same way
429
+	 *
430
+	 * @param array $default_data
431
+	 * @throws EE_Error
432
+	 */
433
+	public function populate_defaults($default_data)
434
+	{
435
+		foreach ($this->subsections(false) as $subsection_name => $subsection) {
436
+			if (isset($default_data[ $subsection_name ])) {
437
+				if ($subsection instanceof EE_Form_Input_Base) {
438
+					$subsection->set_default($default_data[ $subsection_name ]);
439
+				} elseif ($subsection instanceof EE_Form_Section_Proper) {
440
+					$subsection->populate_defaults($default_data[ $subsection_name ]);
441
+				}
442
+			}
443
+		}
444
+	}
445
+
446
+
447
+	/**
448
+	 * returns true if subsection exists
449
+	 *
450
+	 * @param string $name
451
+	 * @return boolean
452
+	 */
453
+	public function subsection_exists($name)
454
+	{
455
+		return isset($this->_subsections[ $name ]) ? true : false;
456
+	}
457
+
458
+
459
+	/**
460
+	 * Gets the subsection specified by its name
461
+	 *
462
+	 * @param string  $name
463
+	 * @param boolean $require_construction_to_be_finalized most client code should leave this as TRUE
464
+	 *                                                      so that the inputs will be properly configured.
465
+	 *                                                      However, some client code may be ok
466
+	 *                                                      with construction finalize being called later
467
+	 *                                                      (realizing that the subsections' html names
468
+	 *                                                      might not be set yet, etc.)
469
+	 * @return EE_Form_Section_Base
470
+	 * @throws EE_Error
471
+	 */
472
+	public function get_subsection($name, $require_construction_to_be_finalized = true)
473
+	{
474
+		if ($require_construction_to_be_finalized) {
475
+			$this->ensure_construct_finalized_called();
476
+		}
477
+		return $this->subsection_exists($name) ? $this->_subsections[ $name ] : null;
478
+	}
479
+
480
+
481
+	/**
482
+	 * Gets all the validatable subsections of this form section
483
+	 *
484
+	 * @return EE_Form_Section_Validatable[]
485
+	 * @throws EE_Error
486
+	 */
487
+	public function get_validatable_subsections()
488
+	{
489
+		$validatable_subsections = array();
490
+		foreach ($this->subsections() as $name => $obj) {
491
+			if ($obj instanceof EE_Form_Section_Validatable) {
492
+				$validatable_subsections[ $name ] = $obj;
493
+			}
494
+		}
495
+		return $validatable_subsections;
496
+	}
497
+
498
+
499
+	/**
500
+	 * Gets an input by the given name. If not found, or if its not an EE_FOrm_Input_Base child,
501
+	 * throw an EE_Error.
502
+	 *
503
+	 * @param string  $name
504
+	 * @param boolean $require_construction_to_be_finalized most client code should
505
+	 *                                                      leave this as TRUE so that the inputs will be properly
506
+	 *                                                      configured. However, some client code may be ok with
507
+	 *                                                      construction finalize being called later
508
+	 *                                                      (realizing that the subsections' html names might not be
509
+	 *                                                      set yet, etc.)
510
+	 * @return EE_Form_Input_Base
511
+	 * @throws EE_Error
512
+	 */
513
+	public function get_input($name, $require_construction_to_be_finalized = true)
514
+	{
515
+		$subsection = $this->get_subsection(
516
+			$name,
517
+			$require_construction_to_be_finalized
518
+		);
519
+		if (! $subsection instanceof EE_Form_Input_Base) {
520
+			throw new EE_Error(
521
+				sprintf(
522
+					esc_html__(
523
+						"Subsection '%s' is not an instanceof EE_Form_Input_Base on form '%s'. It is a '%s'",
524
+						'event_espresso'
525
+					),
526
+					$name,
527
+					get_class($this),
528
+					$subsection ? get_class($subsection) : esc_html__('NULL', 'event_espresso')
529
+				)
530
+			);
531
+		}
532
+		return $subsection;
533
+	}
534
+
535
+
536
+	/**
537
+	 * Like get_input(), gets the proper subsection of the form given the name,
538
+	 * otherwise throws an EE_Error
539
+	 *
540
+	 * @param string  $name
541
+	 * @param boolean $require_construction_to_be_finalized most client code should
542
+	 *                                                      leave this as TRUE so that the inputs will be properly
543
+	 *                                                      configured. However, some client code may be ok with
544
+	 *                                                      construction finalize being called later
545
+	 *                                                      (realizing that the subsections' html names might not be
546
+	 *                                                      set yet, etc.)
547
+	 * @return EE_Form_Section_Proper
548
+	 * @throws EE_Error
549
+	 */
550
+	public function get_proper_subsection($name, $require_construction_to_be_finalized = true)
551
+	{
552
+		$subsection = $this->get_subsection(
553
+			$name,
554
+			$require_construction_to_be_finalized
555
+		);
556
+		if (! $subsection instanceof EE_Form_Section_Proper) {
557
+			throw new EE_Error(
558
+				sprintf(
559
+					esc_html__(
560
+						"Subsection '%'s is not an instanceof EE_Form_Section_Proper on form '%s'",
561
+						'event_espresso'
562
+					),
563
+					$name,
564
+					get_class($this)
565
+				)
566
+			);
567
+		}
568
+		return $subsection;
569
+	}
570
+
571
+
572
+	/**
573
+	 * Gets the value of the specified input. Should be called after receive_form_submission()
574
+	 * or populate_defaults() on the form, where the normalized value on the input is set.
575
+	 *
576
+	 * @param string $name
577
+	 * @return mixed depending on the input's type and its normalization strategy
578
+	 * @throws EE_Error
579
+	 */
580
+	public function get_input_value($name)
581
+	{
582
+		$input = $this->get_input($name);
583
+		return $input->normalized_value();
584
+	}
585
+
586
+
587
+	/**
588
+	 * Checks if this form section itself is valid, and then checks its subsections
589
+	 *
590
+	 * @throws EE_Error
591
+	 * @return boolean
592
+	 */
593
+	public function is_valid()
594
+	{
595
+		if ($this->is_valid === null) {
596
+			if (! $this->has_received_submission()) {
597
+				throw new EE_Error(
598
+					sprintf(
599
+						esc_html__(
600
+							'You cannot check if a form is valid before receiving the form submission using receive_form_submission',
601
+							'event_espresso'
602
+						)
603
+					)
604
+				);
605
+			}
606
+			if (! parent::is_valid()) {
607
+				$this->is_valid = false;
608
+			} else {
609
+				// ok so no general errors to this entire form section.
610
+				// so let's check the subsections, but only set errors if that hasn't been done yet
611
+				$this->is_valid = true;
612
+				foreach ($this->get_validatable_subsections() as $subsection) {
613
+					if (! $subsection->is_valid()) {
614
+						$this->is_valid = false;
615
+					}
616
+				}
617
+			}
618
+		}
619
+		return $this->is_valid;
620
+	}
621
+
622
+
623
+	/**
624
+	 * gets the default name of this form section if none is specified
625
+	 *
626
+	 * @return void
627
+	 */
628
+	protected function _set_default_name_if_empty()
629
+	{
630
+		if (! $this->_name) {
631
+			$classname    = get_class($this);
632
+			$default_name = str_replace('EE_', '', $classname);
633
+			$this->_name  = $default_name;
634
+		}
635
+	}
636
+
637
+
638
+	/**
639
+	 * Returns the HTML for the form, except for the form opening and closing tags
640
+	 * (as the form section doesn't know where you necessarily want to send the information to),
641
+	 * and except for a submit button. Enqueues JS and CSS; if called early enough we will
642
+	 * try to enqueue them in the header, otherwise they'll be enqueued in the footer.
643
+	 * Not doing_it_wrong because theoretically this CAN be used properly,
644
+	 * provided its used during "wp_enqueue_scripts", or it doesn't need to enqueue
645
+	 * any CSS.
646
+	 *
647
+	 * @throws InvalidArgumentException
648
+	 * @throws InvalidInterfaceException
649
+	 * @throws InvalidDataTypeException
650
+	 * @throws EE_Error
651
+	 */
652
+	public function get_html_and_js()
653
+	{
654
+		$this->enqueue_js();
655
+		return $this->get_html();
656
+	}
657
+
658
+
659
+	/**
660
+	 * returns HTML for displaying this form section. recursively calls display_section() on all subsections
661
+	 *
662
+	 * @param bool $display_previously_submitted_data
663
+	 * @return string
664
+	 * @throws InvalidArgumentException
665
+	 * @throws InvalidInterfaceException
666
+	 * @throws InvalidDataTypeException
667
+	 * @throws EE_Error
668
+	 * @throws EE_Error
669
+	 * @throws EE_Error
670
+	 */
671
+	public function get_html($display_previously_submitted_data = true)
672
+	{
673
+		$this->ensure_construct_finalized_called();
674
+		if ($display_previously_submitted_data) {
675
+			$this->populate_from_session();
676
+		}
677
+		return $this->_form_html_filter
678
+			? $this->_form_html_filter->filterHtml($this->_layout_strategy->layout_form(), $this)
679
+			: $this->_layout_strategy->layout_form();
680
+	}
681
+
682
+
683
+	/**
684
+	 * enqueues JS and CSS for the form.
685
+	 * It is preferred to call this before wp_enqueue_scripts so the
686
+	 * scripts and styles can be put in the header, but if called later
687
+	 * they will be put in the footer (which is OK for JS, but in HTML4 CSS should
688
+	 * only be in the header; but in HTML5 its ok in the body.
689
+	 * See http://stackoverflow.com/questions/4957446/load-external-css-file-in-body-tag.
690
+	 * So if your form enqueues CSS, it's preferred to call this before wp_enqueue_scripts.)
691
+	 *
692
+	 * @return void
693
+	 * @throws EE_Error
694
+	 */
695
+	public function enqueue_js()
696
+	{
697
+		$this->_enqueue_and_localize_form_js();
698
+		foreach ($this->subsections() as $subsection) {
699
+			$subsection->enqueue_js();
700
+		}
701
+	}
702
+
703
+
704
+	/**
705
+	 * adds a filter so that jquery validate gets enqueued in EE_System::wp_enqueue_scripts().
706
+	 * This must be done BEFORE wp_enqueue_scripts() gets called, which is on
707
+	 * the wp_enqueue_scripts hook.
708
+	 * However, registering the form js and localizing it can happen when we
709
+	 * actually output the form (which is preferred, seeing how teh form's fields
710
+	 * could change until it's actually outputted)
711
+	 *
712
+	 * @param boolean $init_form_validation_automatically whether or not we want the form validation
713
+	 *                                                    to be triggered automatically or not
714
+	 * @return void
715
+	 */
716
+	public static function wp_enqueue_scripts($init_form_validation_automatically = true)
717
+	{
718
+		wp_register_script(
719
+			'ee_form_section_validation',
720
+			EE_GLOBAL_ASSETS_URL . 'scripts' . '/form_section_validation.js',
721
+			array('jquery-validate', 'jquery-ui-datepicker', 'jquery-validate-extra-methods'),
722
+			EVENT_ESPRESSO_VERSION,
723
+			true
724
+		);
725
+		wp_localize_script(
726
+			'ee_form_section_validation',
727
+			'ee_form_section_validation_init',
728
+			array('init' => $init_form_validation_automatically ? '1' : '0')
729
+		);
730
+	}
731
+
732
+
733
+	/**
734
+	 * gets the variables used by form_section_validation.js.
735
+	 * This needs to be called AFTER we've called $this->_enqueue_jquery_validate_script,
736
+	 * but before the wordpress hook wp_loaded
737
+	 *
738
+	 * @throws EE_Error
739
+	 */
740
+	public function _enqueue_and_localize_form_js()
741
+	{
742
+		$this->ensure_construct_finalized_called();
743
+		// actually, we don't want to localize just yet. There may be other forms on the page.
744
+		// so we need to add our form section data to a static variable accessible by all form sections
745
+		// and localize it just before the footer
746
+		$this->localize_validation_rules();
747
+		add_action('wp_footer', array('EE_Form_Section_Proper', 'localize_script_for_all_forms'), 2);
748
+		add_action('admin_footer', array('EE_Form_Section_Proper', 'localize_script_for_all_forms'));
749
+	}
750
+
751
+
752
+	/**
753
+	 * add our form section data to a static variable accessible by all form sections
754
+	 *
755
+	 * @param bool $return_for_subsection
756
+	 * @return void
757
+	 * @throws EE_Error
758
+	 */
759
+	public function localize_validation_rules($return_for_subsection = false)
760
+	{
761
+		// we only want to localize vars ONCE for the entire form,
762
+		// so if the form section doesn't have a parent, then it must be the top dog
763
+		if ($return_for_subsection || ! $this->parent_section()) {
764
+			EE_Form_Section_Proper::$_js_localization['form_data'][ $this->html_id() ] = array(
765
+				'form_section_id'  => $this->html_id(true),
766
+				'validation_rules' => $this->get_jquery_validation_rules(),
767
+				'other_data'       => $this->get_other_js_data(),
768
+				'errors'           => $this->subsection_validation_errors_by_html_name(),
769
+			);
770
+			EE_Form_Section_Proper::$_scripts_localized                                = true;
771
+		}
772
+	}
773
+
774
+
775
+	/**
776
+	 * Gets an array of extra data that will be useful for client-side javascript.
777
+	 * This is primarily data added by inputs and forms in addition to any
778
+	 * scripts they might enqueue
779
+	 *
780
+	 * @param array $form_other_js_data
781
+	 * @return array
782
+	 * @throws EE_Error
783
+	 */
784
+	public function get_other_js_data($form_other_js_data = array())
785
+	{
786
+		foreach ($this->subsections() as $subsection) {
787
+			$form_other_js_data = $subsection->get_other_js_data($form_other_js_data);
788
+		}
789
+		return $form_other_js_data;
790
+	}
791
+
792
+
793
+	/**
794
+	 * Gets a flat array of inputs for this form section and its subsections.
795
+	 * Keys are their form names, and values are the inputs themselves
796
+	 *
797
+	 * @return EE_Form_Input_Base
798
+	 * @throws EE_Error
799
+	 */
800
+	public function inputs_in_subsections()
801
+	{
802
+		$inputs = array();
803
+		foreach ($this->subsections() as $subsection) {
804
+			if ($subsection instanceof EE_Form_Input_Base) {
805
+				$inputs[ $subsection->html_name() ] = $subsection;
806
+			} elseif ($subsection instanceof EE_Form_Section_Proper) {
807
+				$inputs += $subsection->inputs_in_subsections();
808
+			}
809
+		}
810
+		return $inputs;
811
+	}
812
+
813
+
814
+	/**
815
+	 * Gets a flat array of all the validation errors.
816
+	 * Keys are html names (because those should be unique)
817
+	 * and values are a string of all their validation errors
818
+	 *
819
+	 * @return string[]
820
+	 * @throws EE_Error
821
+	 */
822
+	public function subsection_validation_errors_by_html_name()
823
+	{
824
+		$inputs = $this->inputs();
825
+		$errors = array();
826
+		foreach ($inputs as $form_input) {
827
+			if ($form_input instanceof EE_Form_Input_Base && $form_input->get_validation_errors()) {
828
+				$errors[ $form_input->html_name() ] = $form_input->get_validation_error_string();
829
+			}
830
+		}
831
+		return $errors;
832
+	}
833
+
834
+
835
+	/**
836
+	 * passes all the form data required by the JS to the JS, and enqueues the few required JS files.
837
+	 * Should be setup by each form during the _enqueues_and_localize_form_js
838
+	 *
839
+	 * @throws InvalidArgumentException
840
+	 * @throws InvalidInterfaceException
841
+	 * @throws InvalidDataTypeException
842
+	 */
843
+	public static function localize_script_for_all_forms()
844
+	{
845
+		// allow inputs and stuff to hook in their JS and stuff here
846
+		do_action('AHEE__EE_Form_Section_Proper__localize_script_for_all_forms__begin');
847
+		EE_Form_Section_Proper::$_js_localization['localized_error_messages'] = EE_Form_Section_Proper::_get_localized_error_messages();
848
+		$email_validation_level = isset(EE_Registry::instance()->CFG->registration->email_validation_level)
849
+			? EE_Registry::instance()->CFG->registration->email_validation_level
850
+			: 'wp_default';
851
+		EE_Form_Section_Proper::$_js_localization['email_validation_level']   = $email_validation_level;
852
+		wp_enqueue_script('ee_form_section_validation');
853
+		wp_localize_script(
854
+			'ee_form_section_validation',
855
+			'ee_form_section_vars',
856
+			EE_Form_Section_Proper::$_js_localization
857
+		);
858
+	}
859
+
860
+
861
+	/**
862
+	 * ensure_scripts_localized
863
+	 *
864
+	 * @throws EE_Error
865
+	 */
866
+	public function ensure_scripts_localized()
867
+	{
868
+		if (! EE_Form_Section_Proper::$_scripts_localized) {
869
+			$this->_enqueue_and_localize_form_js();
870
+		}
871
+	}
872
+
873
+
874
+	/**
875
+	 * Gets the hard-coded validation error messages to be used in the JS. The convention
876
+	 * is that the key here should be the same as the custom validation rule put in the JS file
877
+	 *
878
+	 * @return array keys are custom validation rules, and values are internationalized strings
879
+	 */
880
+	private static function _get_localized_error_messages()
881
+	{
882
+		return array(
883
+			'validUrl' => wp_strip_all_tags(__('This is not a valid absolute URL. Eg, http://domain.com/monkey.jpg', 'event_espresso')),
884
+			'regex'    => wp_strip_all_tags(__('Please check your input', 'event_espresso'))
885
+		);
886
+	}
887
+
888
+
889
+	/**
890
+	 * @return array
891
+	 */
892
+	public static function js_localization()
893
+	{
894
+		return self::$_js_localization;
895
+	}
896
+
897
+
898
+	/**
899
+	 * @return void
900
+	 */
901
+	public static function reset_js_localization()
902
+	{
903
+		self::$_js_localization = array();
904
+	}
905
+
906
+
907
+	/**
908
+	 * Gets the JS to put inside the jquery validation rules for subsection of this form section.
909
+	 * See parent function for more...
910
+	 *
911
+	 * @return array
912
+	 * @throws EE_Error
913
+	 */
914
+	public function get_jquery_validation_rules()
915
+	{
916
+		$jquery_validation_rules = array();
917
+		foreach ($this->get_validatable_subsections() as $subsection) {
918
+			$jquery_validation_rules = array_merge(
919
+				$jquery_validation_rules,
920
+				$subsection->get_jquery_validation_rules()
921
+			);
922
+		}
923
+		return $jquery_validation_rules;
924
+	}
925
+
926
+
927
+	/**
928
+	 * Sanitizes all the data and sets the sanitized value of each field
929
+	 *
930
+	 * @param array $req_data
931
+	 * @return void
932
+	 * @throws EE_Error
933
+	 */
934
+	protected function _normalize($req_data)
935
+	{
936
+		$this->_received_submission = true;
937
+		$this->_validation_errors   = array();
938
+		foreach ($this->get_validatable_subsections() as $subsection) {
939
+			try {
940
+				$subsection->_normalize($req_data);
941
+			} catch (EE_Validation_Error $e) {
942
+				$subsection->add_validation_error($e);
943
+			}
944
+		}
945
+	}
946
+
947
+
948
+	/**
949
+	 * Performs validation on this form section and its subsections.
950
+	 * For each subsection,
951
+	 * calls _validate_{subsection_name} on THIS form (if the function exists)
952
+	 * and passes it the subsection, then calls _validate on that subsection.
953
+	 * If you need to perform validation on the form as a whole (considering multiple)
954
+	 * you would be best to override this _validate method,
955
+	 * calling parent::_validate() first.
956
+	 *
957
+	 * @throws EE_Error
958
+	 */
959
+	protected function _validate()
960
+	{
961
+		// reset the cache of whether this form is valid or not- we're re-validating it now
962
+		$this->is_valid = null;
963
+		foreach ($this->get_validatable_subsections() as $subsection_name => $subsection) {
964
+			if (method_exists($this, '_validate_' . $subsection_name)) {
965
+				call_user_func_array(array($this, '_validate_' . $subsection_name), array($subsection));
966
+			}
967
+			$subsection->_validate();
968
+		}
969
+	}
970
+
971
+
972
+	/**
973
+	 * Gets all the validated inputs for the form section
974
+	 *
975
+	 * @return array
976
+	 * @throws EE_Error
977
+	 */
978
+	public function valid_data()
979
+	{
980
+		$inputs = array();
981
+		foreach ($this->subsections() as $subsection_name => $subsection) {
982
+			if ($subsection instanceof EE_Form_Section_Proper) {
983
+				$inputs[ $subsection_name ] = $subsection->valid_data();
984
+			} elseif ($subsection instanceof EE_Form_Input_Base) {
985
+				$inputs[ $subsection_name ] = $subsection->normalized_value();
986
+			}
987
+		}
988
+		return $inputs;
989
+	}
990
+
991
+
992
+	/**
993
+	 * Gets all the inputs on this form section
994
+	 *
995
+	 * @return EE_Form_Input_Base[]
996
+	 * @throws EE_Error
997
+	 */
998
+	public function inputs()
999
+	{
1000
+		$inputs = array();
1001
+		foreach ($this->subsections() as $subsection_name => $subsection) {
1002
+			if ($subsection instanceof EE_Form_Input_Base) {
1003
+				$inputs[ $subsection_name ] = $subsection;
1004
+			}
1005
+		}
1006
+		return $inputs;
1007
+	}
1008
+
1009
+
1010
+	/**
1011
+	 * Gets all the subsections which are a proper form
1012
+	 *
1013
+	 * @return EE_Form_Section_Proper[]
1014
+	 * @throws EE_Error
1015
+	 */
1016
+	public function subforms()
1017
+	{
1018
+		$form_sections = array();
1019
+		foreach ($this->subsections() as $name => $obj) {
1020
+			if ($obj instanceof EE_Form_Section_Proper) {
1021
+				$form_sections[ $name ] = $obj;
1022
+			}
1023
+		}
1024
+		return $form_sections;
1025
+	}
1026
+
1027
+
1028
+	/**
1029
+	 * Gets all the subsections (inputs, proper subsections, or html-only sections).
1030
+	 * Consider using inputs() or subforms()
1031
+	 * if you only want form inputs or proper form sections.
1032
+	 *
1033
+	 * @param boolean $require_construction_to_be_finalized most client code should
1034
+	 *                                                      leave this as TRUE so that the inputs will be properly
1035
+	 *                                                      configured. However, some client code may be ok with
1036
+	 *                                                      construction finalize being called later
1037
+	 *                                                      (realizing that the subsections' html names might not be
1038
+	 *                                                      set yet, etc.)
1039
+	 * @return EE_Form_Section_Proper[]
1040
+	 * @throws EE_Error
1041
+	 */
1042
+	public function subsections($require_construction_to_be_finalized = true)
1043
+	{
1044
+		if ($require_construction_to_be_finalized) {
1045
+			$this->ensure_construct_finalized_called();
1046
+		}
1047
+		return $this->_subsections;
1048
+	}
1049
+
1050
+
1051
+	/**
1052
+	 * Returns whether this form has any subforms or inputs
1053
+	 * @return bool
1054
+	 */
1055
+	public function hasSubsections()
1056
+	{
1057
+		return ! empty($this->_subsections);
1058
+	}
1059
+
1060
+
1061
+	/**
1062
+	 * Returns a simple array where keys are input names, and values are their normalized
1063
+	 * values. (Similar to calling get_input_value on inputs)
1064
+	 *
1065
+	 * @param boolean $include_subform_inputs Whether to include inputs from subforms,
1066
+	 *                                        or just this forms' direct children inputs
1067
+	 * @param boolean $flatten                Whether to force the results into 1-dimensional array,
1068
+	 *                                        or allow multidimensional array
1069
+	 * @return array if $flatten is TRUE it will always be a 1-dimensional array
1070
+	 *                                        with array keys being input names
1071
+	 *                                        (regardless of whether they are from a subsection or not),
1072
+	 *                                        and if $flatten is FALSE it can be a multidimensional array
1073
+	 *                                        where keys are always subsection names and values are either
1074
+	 *                                        the input's normalized value, or an array like the top-level array
1075
+	 * @throws EE_Error
1076
+	 */
1077
+	public function input_values($include_subform_inputs = false, $flatten = false)
1078
+	{
1079
+		return $this->_input_values(false, $include_subform_inputs, $flatten);
1080
+	}
1081
+
1082
+
1083
+	/**
1084
+	 * Similar to EE_Form_Section_Proper::input_values(), except this returns the 'display_value'
1085
+	 * of each input. On some inputs (especially radio boxes or checkboxes), the value stored
1086
+	 * is not necessarily the value we want to display to users. This creates an array
1087
+	 * where keys are the input names, and values are their display values
1088
+	 *
1089
+	 * @param boolean $include_subform_inputs Whether to include inputs from subforms,
1090
+	 *                                        or just this forms' direct children inputs
1091
+	 * @param boolean $flatten                Whether to force the results into 1-dimensional array,
1092
+	 *                                        or allow multidimensional array
1093
+	 * @return array if $flatten is TRUE it will always be a 1-dimensional array
1094
+	 *                                        with array keys being input names
1095
+	 *                                        (regardless of whether they are from a subsection or not),
1096
+	 *                                        and if $flatten is FALSE it can be a multidimensional array
1097
+	 *                                        where keys are always subsection names and values are either
1098
+	 *                                        the input's normalized value, or an array like the top-level array
1099
+	 * @throws EE_Error
1100
+	 */
1101
+	public function input_pretty_values($include_subform_inputs = false, $flatten = false)
1102
+	{
1103
+		return $this->_input_values(true, $include_subform_inputs, $flatten);
1104
+	}
1105
+
1106
+
1107
+	/**
1108
+	 * Gets the input values from the form
1109
+	 *
1110
+	 * @param boolean $pretty                 Whether to retrieve the pretty value,
1111
+	 *                                        or just the normalized value
1112
+	 * @param boolean $include_subform_inputs Whether to include inputs from subforms,
1113
+	 *                                        or just this forms' direct children inputs
1114
+	 * @param boolean $flatten                Whether to force the results into 1-dimensional array,
1115
+	 *                                        or allow multidimensional array
1116
+	 * @return array if $flatten is TRUE it will always be a 1-dimensional array with array keys being
1117
+	 *                                        input names (regardless of whether they are from a subsection or not),
1118
+	 *                                        and if $flatten is FALSE it can be a multidimensional array
1119
+	 *                                        where keys are always subsection names and values are either
1120
+	 *                                        the input's normalized value, or an array like the top-level array
1121
+	 * @throws EE_Error
1122
+	 */
1123
+	public function _input_values($pretty = false, $include_subform_inputs = false, $flatten = false)
1124
+	{
1125
+		$input_values = array();
1126
+		foreach ($this->subsections() as $subsection_name => $subsection) {
1127
+			if ($subsection instanceof EE_Form_Input_Base) {
1128
+				$input_values[ $subsection_name ] = $pretty
1129
+					? $subsection->pretty_value()
1130
+					: $subsection->normalized_value();
1131
+			} elseif ($subsection instanceof EE_Form_Section_Proper && $include_subform_inputs) {
1132
+				$subform_input_values = $subsection->_input_values(
1133
+					$pretty,
1134
+					$include_subform_inputs,
1135
+					$flatten
1136
+				);
1137
+				if ($flatten) {
1138
+					$input_values = array_merge($input_values, $subform_input_values);
1139
+				} else {
1140
+					$input_values[ $subsection_name ] = $subform_input_values;
1141
+				}
1142
+			}
1143
+		}
1144
+		return $input_values;
1145
+	}
1146
+
1147
+
1148
+	/**
1149
+	 * Gets the originally submitted input values from the form
1150
+	 *
1151
+	 * @param boolean $include_subforms  Whether to include inputs from subforms,
1152
+	 *                                   or just this forms' direct children inputs
1153
+	 * @return array                     if $flatten is TRUE it will always be a 1-dimensional array
1154
+	 *                                   with array keys being input names
1155
+	 *                                   (regardless of whether they are from a subsection or not),
1156
+	 *                                   and if $flatten is FALSE it can be a multidimensional array
1157
+	 *                                   where keys are always subsection names and values are either
1158
+	 *                                   the input's normalized value, or an array like the top-level array
1159
+	 * @throws EE_Error
1160
+	 */
1161
+	public function submitted_values($include_subforms = false)
1162
+	{
1163
+		$submitted_values = array();
1164
+		foreach ($this->subsections() as $subsection) {
1165
+			if ($subsection instanceof EE_Form_Input_Base) {
1166
+				// is this input part of an array of inputs?
1167
+				if (strpos($subsection->html_name(), '[') !== false) {
1168
+					$full_input_name  = EEH_Array::convert_array_values_to_keys(
1169
+						explode(
1170
+							'[',
1171
+							str_replace(']', '', $subsection->html_name())
1172
+						),
1173
+						$subsection->raw_value()
1174
+					);
1175
+					$submitted_values = array_replace_recursive($submitted_values, $full_input_name);
1176
+				} else {
1177
+					$submitted_values[ $subsection->html_name() ] = $subsection->raw_value();
1178
+				}
1179
+			} elseif ($subsection instanceof EE_Form_Section_Proper && $include_subforms) {
1180
+				$subform_input_values = $subsection->submitted_values($include_subforms);
1181
+				$submitted_values     = array_replace_recursive($submitted_values, $subform_input_values);
1182
+			}
1183
+		}
1184
+		return $submitted_values;
1185
+	}
1186
+
1187
+
1188
+	/**
1189
+	 * Indicates whether or not this form has received a submission yet
1190
+	 * (ie, had receive_form_submission called on it yet)
1191
+	 *
1192
+	 * @return boolean
1193
+	 * @throws EE_Error
1194
+	 */
1195
+	public function has_received_submission()
1196
+	{
1197
+		$this->ensure_construct_finalized_called();
1198
+		return $this->_received_submission;
1199
+	}
1200
+
1201
+
1202
+	/**
1203
+	 * Equivalent to passing 'exclude' in the constructor's options array.
1204
+	 * Removes the listed inputs from the form
1205
+	 *
1206
+	 * @param array $inputs_to_exclude values are the input names
1207
+	 * @return void
1208
+	 */
1209
+	public function exclude(array $inputs_to_exclude = array())
1210
+	{
1211
+		foreach ($inputs_to_exclude as $input_to_exclude_name) {
1212
+			unset($this->_subsections[ $input_to_exclude_name ]);
1213
+		}
1214
+	}
1215
+
1216
+
1217
+	/**
1218
+	 * Changes these inputs' display strategy to be EE_Hidden_Display_Strategy.
1219
+	 * @param array $inputs_to_hide
1220
+	 * @throws EE_Error
1221
+	 */
1222
+	public function hide(array $inputs_to_hide = array())
1223
+	{
1224
+		foreach ($inputs_to_hide as $input_to_hide) {
1225
+			$input = $this->get_input($input_to_hide);
1226
+			$input->set_display_strategy(new EE_Hidden_Display_Strategy());
1227
+		}
1228
+	}
1229
+
1230
+
1231
+	/**
1232
+	 * add_subsections
1233
+	 * Adds the listed subsections to the form section.
1234
+	 * If $subsection_name_to_target is provided,
1235
+	 * then new subsections are added before or after that subsection,
1236
+	 * otherwise to the start or end of the entire subsections array.
1237
+	 *
1238
+	 * @param EE_Form_Section_Base[] $new_subsections           array of new form subsections
1239
+	 *                                                          where keys are their names
1240
+	 * @param string                 $subsection_name_to_target an existing for section that $new_subsections
1241
+	 *                                                          should be added before or after
1242
+	 *                                                          IF $subsection_name_to_target is null,
1243
+	 *                                                          then $new_subsections will be added to
1244
+	 *                                                          the beginning or end of the entire subsections array
1245
+	 * @param boolean                $add_before                whether to add $new_subsections, before or after
1246
+	 *                                                          $subsection_name_to_target,
1247
+	 *                                                          or if $subsection_name_to_target is null,
1248
+	 *                                                          before or after entire subsections array
1249
+	 * @return void
1250
+	 * @throws EE_Error
1251
+	 */
1252
+	public function add_subsections($new_subsections, $subsection_name_to_target = null, $add_before = true)
1253
+	{
1254
+		foreach ($new_subsections as $subsection_name => $subsection) {
1255
+			if (! $subsection instanceof EE_Form_Section_Base) {
1256
+				EE_Error::add_error(
1257
+					sprintf(
1258
+						esc_html__(
1259
+							"Trying to add a %s as a subsection (it was named '%s') to the form section '%s'. It was removed.",
1260
+							'event_espresso'
1261
+						),
1262
+						get_class($subsection),
1263
+						$subsection_name,
1264
+						$this->name()
1265
+					)
1266
+				);
1267
+				unset($new_subsections[ $subsection_name ]);
1268
+			}
1269
+		}
1270
+		$this->_subsections = EEH_Array::insert_into_array(
1271
+			$this->_subsections,
1272
+			$new_subsections,
1273
+			$subsection_name_to_target,
1274
+			$add_before
1275
+		);
1276
+		if ($this->_construction_finalized) {
1277
+			foreach ($this->_subsections as $name => $subsection) {
1278
+				$subsection->_construct_finalize($this, $name);
1279
+			}
1280
+		}
1281
+	}
1282
+
1283
+
1284
+	/**
1285
+	 * @param string $subsection_name
1286
+	 * @param bool   $recursive
1287
+	 * @return bool
1288
+	 */
1289
+	public function has_subsection($subsection_name, $recursive = false)
1290
+	{
1291
+		foreach ($this->_subsections as $name => $subsection) {
1292
+			if (
1293
+				$name === $subsection_name
1294
+				|| (
1295
+					$recursive
1296
+					&& $subsection instanceof EE_Form_Section_Proper
1297
+					&& $subsection->has_subsection($subsection_name, $recursive)
1298
+				)
1299
+			) {
1300
+				return true;
1301
+			}
1302
+		}
1303
+		return false;
1304
+	}
1305
+
1306
+
1307
+
1308
+	/**
1309
+	 * Just gets all validatable subsections to clean their sensitive data
1310
+	 *
1311
+	 * @throws EE_Error
1312
+	 */
1313
+	public function clean_sensitive_data()
1314
+	{
1315
+		foreach ($this->get_validatable_subsections() as $subsection) {
1316
+			$subsection->clean_sensitive_data();
1317
+		}
1318
+	}
1319
+
1320
+
1321
+	/**
1322
+	 * Sets the submission error message (aka validation error message for this form section and all sub-sections)
1323
+	 * @param string                           $form_submission_error_message
1324
+	 * @param EE_Form_Section_Validatable $form_section unused
1325
+	 * @throws EE_Error
1326
+	 */
1327
+	public function set_submission_error_message(
1328
+		$form_submission_error_message = ''
1329
+	) {
1330
+		$this->_form_submission_error_message = ! empty($form_submission_error_message)
1331
+			? $form_submission_error_message
1332
+			: $this->getAllValidationErrorsString();
1333
+	}
1334
+
1335
+
1336
+	/**
1337
+	 * Returns the cached error message. A default value is set for this during _validate(),
1338
+	 * (called during receive_form_submission) but it can be explicitly set using
1339
+	 * set_submission_error_message
1340
+	 *
1341
+	 * @return string
1342
+	 */
1343
+	public function submission_error_message()
1344
+	{
1345
+		return $this->_form_submission_error_message;
1346
+	}
1347
+
1348
+
1349
+	/**
1350
+	 * Sets a message to display if the data submitted to the form was valid.
1351
+	 * @param string $form_submission_success_message
1352
+	 */
1353
+	public function set_submission_success_message($form_submission_success_message = '')
1354
+	{
1355
+		$this->_form_submission_success_message = ! empty($form_submission_success_message)
1356
+			? $form_submission_success_message
1357
+			: esc_html__('Form submitted successfully', 'event_espresso');
1358
+	}
1359
+
1360
+
1361
+	/**
1362
+	 * Gets a message appropriate for display when the form is correctly submitted
1363
+	 * @return string
1364
+	 */
1365
+	public function submission_success_message()
1366
+	{
1367
+		return $this->_form_submission_success_message;
1368
+	}
1369
+
1370
+
1371
+	/**
1372
+	 * Returns the prefix that should be used on child of this form section for
1373
+	 * their html names. If this form section itself has a parent, prepends ITS
1374
+	 * prefix onto this form section's prefix. Used primarily by
1375
+	 * EE_Form_Input_Base::_set_default_html_name_if_empty
1376
+	 *
1377
+	 * @return string
1378
+	 * @throws EE_Error
1379
+	 */
1380
+	public function html_name_prefix()
1381
+	{
1382
+		if ($this->parent_section() instanceof EE_Form_Section_Proper) {
1383
+			return $this->parent_section()->html_name_prefix() . '[' . $this->name() . ']';
1384
+		}
1385
+		return $this->name();
1386
+	}
1387
+
1388
+
1389
+	/**
1390
+	 * Gets the name, but first checks _construct_finalize has been called. If not,
1391
+	 * calls it (assumes there is no parent and that we want the name to be whatever
1392
+	 * was set, which is probably nothing, or the classname)
1393
+	 *
1394
+	 * @return string
1395
+	 * @throws EE_Error
1396
+	 */
1397
+	public function name()
1398
+	{
1399
+		$this->ensure_construct_finalized_called();
1400
+		return parent::name();
1401
+	}
1402
+
1403
+
1404
+	/**
1405
+	 * @return EE_Form_Section_Proper
1406
+	 * @throws EE_Error
1407
+	 */
1408
+	public function parent_section()
1409
+	{
1410
+		$this->ensure_construct_finalized_called();
1411
+		return parent::parent_section();
1412
+	}
1413
+
1414
+
1415
+	/**
1416
+	 * make sure construction finalized was called, otherwise children might not be ready
1417
+	 *
1418
+	 * @return void
1419
+	 * @throws EE_Error
1420
+	 */
1421
+	public function ensure_construct_finalized_called()
1422
+	{
1423
+		if (! $this->_construction_finalized) {
1424
+			$this->_construct_finalize($this->_parent_section, $this->_name);
1425
+		}
1426
+	}
1427
+
1428
+
1429
+	/**
1430
+	 * Checks if any of this form section's inputs, or any of its children's inputs,
1431
+	 * are in teh form data. If any are found, returns true. Else false
1432
+	 *
1433
+	 * @param array $req_data
1434
+	 * @return boolean
1435
+	 * @throws EE_Error
1436
+	 */
1437
+	public function form_data_present_in($req_data = null)
1438
+	{
1439
+		$req_data = $this->getCachedRequest($req_data);
1440
+		foreach ($this->subsections() as $subsection) {
1441
+			if ($subsection instanceof EE_Form_Input_Base) {
1442
+				if ($subsection->form_data_present_in($req_data)) {
1443
+					return true;
1444
+				}
1445
+			} elseif ($subsection instanceof EE_Form_Section_Proper) {
1446
+				if ($subsection->form_data_present_in($req_data)) {
1447
+					return true;
1448
+				}
1449
+			}
1450
+		}
1451
+		return false;
1452
+	}
1453
+
1454
+
1455
+	/**
1456
+	 * Gets validation errors for this form section and subsections
1457
+	 * Similar to EE_Form_Section_Validatable::get_validation_errors() except this
1458
+	 * gets the validation errors for ALL subsection
1459
+	 *
1460
+	 * @return EE_Validation_Error[]
1461
+	 * @throws EE_Error
1462
+	 */
1463
+	public function get_validation_errors_accumulated()
1464
+	{
1465
+		$validation_errors = $this->get_validation_errors();
1466
+		foreach ($this->get_validatable_subsections() as $subsection) {
1467
+			if ($subsection instanceof EE_Form_Section_Proper) {
1468
+				$validation_errors_on_this_subsection = $subsection->get_validation_errors_accumulated();
1469
+			} else {
1470
+				$validation_errors_on_this_subsection = $subsection->get_validation_errors();
1471
+			}
1472
+			if ($validation_errors_on_this_subsection) {
1473
+				$validation_errors = array_merge($validation_errors, $validation_errors_on_this_subsection);
1474
+			}
1475
+		}
1476
+		return $validation_errors;
1477
+	}
1478
+
1479
+	/**
1480
+	 * Fetch validation errors from children and grandchildren and puts them in a single string.
1481
+	 * This traverses the form section tree to generate this, but you probably want to instead use
1482
+	 * get_form_submission_error_message() which is usually this message cached (or a custom validation error message)
1483
+	 *
1484
+	 * @return string
1485
+	 * @since 4.9.59.p
1486
+	 */
1487
+	protected function getAllValidationErrorsString()
1488
+	{
1489
+		$submission_error_messages = array();
1490
+		// bad, bad, bad registrant
1491
+		foreach ($this->get_validation_errors_accumulated() as $validation_error) {
1492
+			if ($validation_error instanceof EE_Validation_Error) {
1493
+				$form_section = $validation_error->get_form_section();
1494
+				if ($form_section instanceof EE_Form_Input_Base) {
1495
+					$label = $validation_error->get_form_section()->html_label_text();
1496
+				} elseif ($form_section instanceof EE_Form_Section_Validatable) {
1497
+					$label = $validation_error->get_form_section()->name();
1498
+				} else {
1499
+					$label = esc_html__('Unknown', 'event_espresso');
1500
+				}
1501
+				$submission_error_messages[] = sprintf(
1502
+					esc_html__('%s : %s', 'event_espresso'),
1503
+					$label,
1504
+					$validation_error->getMessage()
1505
+				);
1506
+			}
1507
+		}
1508
+		return implode('<br>', $submission_error_messages);
1509
+	}
1510
+
1511
+
1512
+	/**
1513
+	 * This isn't just the name of an input, it's a path pointing to an input. The
1514
+	 * path is similar to a folder path: slash (/) means to descend into a subsection,
1515
+	 * dot-dot-slash (../) means to ascend into the parent section.
1516
+	 * After a series of slashes and dot-dot-slashes, there should be the name of an input,
1517
+	 * which will be returned.
1518
+	 * Eg, if you want the related input to be conditional on a sibling input name 'foobar'
1519
+	 * just use 'foobar'. If you want it to be conditional on an aunt/uncle input name
1520
+	 * 'baz', use '../baz'. If you want it to be conditional on a cousin input,
1521
+	 * the child of 'baz_section' named 'baz_child', use '../baz_section/baz_child'.
1522
+	 * Etc
1523
+	 *
1524
+	 * @param string|false $form_section_path we accept false also because substr( '../', '../' ) = false
1525
+	 * @return EE_Form_Section_Base
1526
+	 * @throws EE_Error
1527
+	 */
1528
+	public function find_section_from_path($form_section_path)
1529
+	{
1530
+		// check if we can find the input from purely going straight up the tree
1531
+		$input = parent::find_section_from_path($form_section_path);
1532
+		if ($input instanceof EE_Form_Section_Base) {
1533
+			return $input;
1534
+		}
1535
+		$next_slash_pos = strpos($form_section_path, '/');
1536
+		if ($next_slash_pos !== false) {
1537
+			$child_section_name = substr($form_section_path, 0, $next_slash_pos);
1538
+			$subpath            = substr($form_section_path, $next_slash_pos + 1);
1539
+		} else {
1540
+			$child_section_name = $form_section_path;
1541
+			$subpath            = '';
1542
+		}
1543
+		$child_section = $this->get_subsection($child_section_name);
1544
+		if ($child_section instanceof EE_Form_Section_Base) {
1545
+			return $child_section->find_section_from_path($subpath);
1546
+		}
1547
+		return null;
1548
+	}
1549 1549
 }
Please login to merge, or discard this patch.
modules/venue_single/EED_Venue_Single.module.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
      */
163 163
     public function venue_location($content)
164 164
     {
165
-        return $content . EEH_Template::locate_template('content-espresso_venues-location.php');
165
+        return $content.EEH_Template::locate_template('content-espresso_venues-location.php');
166 166
     }
167 167
 
168 168
 
@@ -177,16 +177,16 @@  discard block
 block discarded – undo
177 177
         // get some style
178 178
         if (apply_filters('FHEE_enable_default_espresso_css', true) && is_single()) {
179 179
             // first check theme folder
180
-            if (is_readable(get_stylesheet_directory() . $this->theme . '/style.css')) {
180
+            if (is_readable(get_stylesheet_directory().$this->theme.'/style.css')) {
181 181
                 wp_register_style(
182 182
                     $this->theme,
183
-                    get_stylesheet_directory_uri() . $this->theme . '/style.css',
183
+                    get_stylesheet_directory_uri().$this->theme.'/style.css',
184 184
                     array('dashicons', 'espresso_default')
185 185
                 );
186
-            } elseif (is_readable(EE_TEMPLATES . $this->theme . '/style.css')) {
186
+            } elseif (is_readable(EE_TEMPLATES.$this->theme.'/style.css')) {
187 187
                 wp_register_style(
188 188
                     $this->theme,
189
-                    EE_TEMPLATES_URL . $this->theme . '/style.css',
189
+                    EE_TEMPLATES_URL.$this->theme.'/style.css',
190 190
                     array('dashicons', 'espresso_default')
191 191
                 );
192 192
             }
Please login to merge, or discard this patch.
Indentation   +169 added lines, -169 removed lines patch added patch discarded remove patch
@@ -28,173 +28,173 @@
 block discarded – undo
28 28
  */
29 29
 class EED_Venue_Single extends EED_Module
30 30
 {
31
-    /**
32
-     * @return EED_Venue_Single
33
-     */
34
-    public static function instance()
35
-    {
36
-        return parent::get_instance(__CLASS__);
37
-    }
38
-
39
-
40
-    /**
41
-     * set_hooks - for hooking into EE Core, other modules, etc
42
-     *
43
-     * @return void
44
-     * @throws InvalidArgumentException
45
-     * @throws InvalidDataTypeException
46
-     * @throws InvalidInterfaceException
47
-     */
48
-    public static function set_hooks()
49
-    {
50
-        /** @var EventEspresso\core\domain\entities\custom_post_types\CustomPostTypeDefinitions $custom_post_type_definitions */
51
-        $custom_post_type_definitions = LoaderFactory::getLoader()->getShared(
52
-            'EventEspresso\core\domain\entities\custom_post_types\CustomPostTypeDefinitions'
53
-        );
54
-        $custom_post_types = $custom_post_type_definitions->getDefinitions();
55
-        EE_Config::register_route(
56
-            $custom_post_types['espresso_venues']['singular_slug'],
57
-            'Venue_Single',
58
-            'run'
59
-        );
60
-    }
61
-
62
-    /**
63
-     *    set_hooks_admin - for hooking into EE Admin Core, other modules, etc
64
-     *
65
-     * @access    public
66
-     * @return    void
67
-     */
68
-    public static function set_hooks_admin()
69
-    {
70
-    }
71
-
72
-
73
-    /**
74
-     * run - initial module setup
75
-     *
76
-     * @access    public
77
-     * @param \WP $WP
78
-     */
79
-    public function run($WP)
80
-    {
81
-        // check what template is loaded
82
-        add_filter('template_include', array($this, 'template_include'), 999, 1);
83
-        add_action('wp_enqueue_scripts', array($this, 'wp_enqueue_scripts'), 10);
84
-    }
85
-
86
-
87
-    /**
88
-     * template_include
89
-     *
90
-     * @access public
91
-     * @param  string $template
92
-     * @return string
93
-     */
94
-    public function template_include($template)
95
-    {
96
-        // not a custom template?
97
-        if (
98
-            EE_Registry::instance()
99
-                       ->load_core('Front_Controller', array(), false, true)
100
-                       ->get_selected_template() != 'single-espresso_venues.php'
101
-        ) {
102
-            EEH_Template::load_espresso_theme_functions();
103
-            // then add extra event data via hooks
104
-            add_filter('the_title', array($this, 'the_title'), 100, 1);
105
-            add_filter('the_content', array($this, 'venue_details'), 100);
106
-            // don't display entry meta because the existing theme will take car of that
107
-            add_filter('FHEE__content_espresso_venues_details_template__display_entry_meta', '__return_false');
108
-        }
109
-        return $template;
110
-    }
111
-
112
-
113
-    /**
114
-     * the_title
115
-     *
116
-     * @access public
117
-     * @param  string $title
118
-     * @return string
119
-     */
120
-    public function the_title($title = '')
121
-    {
122
-        return $title;
123
-    }
124
-
125
-
126
-    /**
127
-     *    venue_details
128
-     *
129
-     * @access public
130
-     * @param  string $content
131
-     * @return string
132
-     */
133
-    public function venue_details($content)
134
-    {
135
-        global $post;
136
-        if (
137
-            $post->post_type == 'espresso_venues'
138
-            && ! post_password_required()
139
-        ) {
140
-            // since the 'content-espresso_venues-details.php' template might be used directly from within a theme,
141
-            // it uses the_content() for displaying the $post->post_content
142
-            // so in order to load a template that uses the_content() from within a callback being used to filter the_content(),
143
-            // we need to first remove this callback from being applied to the_content() (otherwise it will recurse and blow up the interweb)
144
-            remove_filter('the_content', array($this, 'venue_details'), 100);
145
-            // add filters we want
146
-            add_filter('the_content', array($this, 'venue_location'), 110);
147
-            // now load our template
148
-            $template = EEH_Template::locate_template('content-espresso_venues-details.php');
149
-            // remove other filters we added so they won't get applied to the next post
150
-            remove_filter('the_content', array($this, 'venue_location'), 110);
151
-        }
152
-        // we're not returning the $content directly because the template we are loading uses the_content (or the_excerpt)
153
-        return ! empty($template) ? $template : $content;
154
-    }
155
-
156
-
157
-    /**
158
-     * venue_location
159
-     *
160
-     * @access public
161
-     * @param  string $content
162
-     * @return string
163
-     */
164
-    public function venue_location($content)
165
-    {
166
-        return $content . EEH_Template::locate_template('content-espresso_venues-location.php');
167
-    }
168
-
169
-
170
-    /**
171
-     *    wp_enqueue_scripts
172
-     *
173
-     * @access public
174
-     * @return void
175
-     */
176
-    public function wp_enqueue_scripts()
177
-    {
178
-        // get some style
179
-        if (apply_filters('FHEE_enable_default_espresso_css', true) && is_single()) {
180
-            // first check theme folder
181
-            if (is_readable(get_stylesheet_directory() . $this->theme . '/style.css')) {
182
-                wp_register_style(
183
-                    $this->theme,
184
-                    get_stylesheet_directory_uri() . $this->theme . '/style.css',
185
-                    array('dashicons', 'espresso_default')
186
-                );
187
-            } elseif (is_readable(EE_TEMPLATES . $this->theme . '/style.css')) {
188
-                wp_register_style(
189
-                    $this->theme,
190
-                    EE_TEMPLATES_URL . $this->theme . '/style.css',
191
-                    array('dashicons', 'espresso_default')
192
-                );
193
-            }
194
-            wp_enqueue_style($this->theme);
195
-            if (EE_Registry::instance()->CFG->map_settings->use_google_maps) {
196
-                add_action('wp_enqueue_scripts', array('EEH_Maps', 'espresso_google_map_js'), 11);
197
-            }
198
-        }
199
-    }
31
+	/**
32
+	 * @return EED_Venue_Single
33
+	 */
34
+	public static function instance()
35
+	{
36
+		return parent::get_instance(__CLASS__);
37
+	}
38
+
39
+
40
+	/**
41
+	 * set_hooks - for hooking into EE Core, other modules, etc
42
+	 *
43
+	 * @return void
44
+	 * @throws InvalidArgumentException
45
+	 * @throws InvalidDataTypeException
46
+	 * @throws InvalidInterfaceException
47
+	 */
48
+	public static function set_hooks()
49
+	{
50
+		/** @var EventEspresso\core\domain\entities\custom_post_types\CustomPostTypeDefinitions $custom_post_type_definitions */
51
+		$custom_post_type_definitions = LoaderFactory::getLoader()->getShared(
52
+			'EventEspresso\core\domain\entities\custom_post_types\CustomPostTypeDefinitions'
53
+		);
54
+		$custom_post_types = $custom_post_type_definitions->getDefinitions();
55
+		EE_Config::register_route(
56
+			$custom_post_types['espresso_venues']['singular_slug'],
57
+			'Venue_Single',
58
+			'run'
59
+		);
60
+	}
61
+
62
+	/**
63
+	 *    set_hooks_admin - for hooking into EE Admin Core, other modules, etc
64
+	 *
65
+	 * @access    public
66
+	 * @return    void
67
+	 */
68
+	public static function set_hooks_admin()
69
+	{
70
+	}
71
+
72
+
73
+	/**
74
+	 * run - initial module setup
75
+	 *
76
+	 * @access    public
77
+	 * @param \WP $WP
78
+	 */
79
+	public function run($WP)
80
+	{
81
+		// check what template is loaded
82
+		add_filter('template_include', array($this, 'template_include'), 999, 1);
83
+		add_action('wp_enqueue_scripts', array($this, 'wp_enqueue_scripts'), 10);
84
+	}
85
+
86
+
87
+	/**
88
+	 * template_include
89
+	 *
90
+	 * @access public
91
+	 * @param  string $template
92
+	 * @return string
93
+	 */
94
+	public function template_include($template)
95
+	{
96
+		// not a custom template?
97
+		if (
98
+			EE_Registry::instance()
99
+					   ->load_core('Front_Controller', array(), false, true)
100
+					   ->get_selected_template() != 'single-espresso_venues.php'
101
+		) {
102
+			EEH_Template::load_espresso_theme_functions();
103
+			// then add extra event data via hooks
104
+			add_filter('the_title', array($this, 'the_title'), 100, 1);
105
+			add_filter('the_content', array($this, 'venue_details'), 100);
106
+			// don't display entry meta because the existing theme will take car of that
107
+			add_filter('FHEE__content_espresso_venues_details_template__display_entry_meta', '__return_false');
108
+		}
109
+		return $template;
110
+	}
111
+
112
+
113
+	/**
114
+	 * the_title
115
+	 *
116
+	 * @access public
117
+	 * @param  string $title
118
+	 * @return string
119
+	 */
120
+	public function the_title($title = '')
121
+	{
122
+		return $title;
123
+	}
124
+
125
+
126
+	/**
127
+	 *    venue_details
128
+	 *
129
+	 * @access public
130
+	 * @param  string $content
131
+	 * @return string
132
+	 */
133
+	public function venue_details($content)
134
+	{
135
+		global $post;
136
+		if (
137
+			$post->post_type == 'espresso_venues'
138
+			&& ! post_password_required()
139
+		) {
140
+			// since the 'content-espresso_venues-details.php' template might be used directly from within a theme,
141
+			// it uses the_content() for displaying the $post->post_content
142
+			// so in order to load a template that uses the_content() from within a callback being used to filter the_content(),
143
+			// we need to first remove this callback from being applied to the_content() (otherwise it will recurse and blow up the interweb)
144
+			remove_filter('the_content', array($this, 'venue_details'), 100);
145
+			// add filters we want
146
+			add_filter('the_content', array($this, 'venue_location'), 110);
147
+			// now load our template
148
+			$template = EEH_Template::locate_template('content-espresso_venues-details.php');
149
+			// remove other filters we added so they won't get applied to the next post
150
+			remove_filter('the_content', array($this, 'venue_location'), 110);
151
+		}
152
+		// we're not returning the $content directly because the template we are loading uses the_content (or the_excerpt)
153
+		return ! empty($template) ? $template : $content;
154
+	}
155
+
156
+
157
+	/**
158
+	 * venue_location
159
+	 *
160
+	 * @access public
161
+	 * @param  string $content
162
+	 * @return string
163
+	 */
164
+	public function venue_location($content)
165
+	{
166
+		return $content . EEH_Template::locate_template('content-espresso_venues-location.php');
167
+	}
168
+
169
+
170
+	/**
171
+	 *    wp_enqueue_scripts
172
+	 *
173
+	 * @access public
174
+	 * @return void
175
+	 */
176
+	public function wp_enqueue_scripts()
177
+	{
178
+		// get some style
179
+		if (apply_filters('FHEE_enable_default_espresso_css', true) && is_single()) {
180
+			// first check theme folder
181
+			if (is_readable(get_stylesheet_directory() . $this->theme . '/style.css')) {
182
+				wp_register_style(
183
+					$this->theme,
184
+					get_stylesheet_directory_uri() . $this->theme . '/style.css',
185
+					array('dashicons', 'espresso_default')
186
+				);
187
+			} elseif (is_readable(EE_TEMPLATES . $this->theme . '/style.css')) {
188
+				wp_register_style(
189
+					$this->theme,
190
+					EE_TEMPLATES_URL . $this->theme . '/style.css',
191
+					array('dashicons', 'espresso_default')
192
+				);
193
+			}
194
+			wp_enqueue_style($this->theme);
195
+			if (EE_Registry::instance()->CFG->map_settings->use_google_maps) {
196
+				add_action('wp_enqueue_scripts', array('EEH_Maps', 'espresso_google_map_js'), 11);
197
+			}
198
+		}
199
+	}
200 200
 }
Please login to merge, or discard this patch.