Completed
Branch master (4bd299)
by
unknown
04:49
created
domain/entities/routing/specifications/admin/EspressoEventEditorAddNew.php 1 patch
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -14,19 +14,19 @@
 block discarded – undo
14 14
  */
15 15
 class EspressoEventEditorAddNew extends RouteMatchSpecification
16 16
 {
17
-    /**
18
-     * returns true if current request matches specification
19
-     *
20
-     * @since 4.9.71.p
21
-     * @return boolean
22
-     */
23
-    public function isMatchingRoute()
24
-    {
25
-        global $pagenow;
26
-        return $pagenow
27
-               && $pagenow === 'admin.php'
28
-               && $this->request->isAdmin()
29
-               && $this->request->getRequestParam('page') === 'espresso_events'
30
-               && $this->request->getRequestParam('action') === 'create_new';
31
-    }
17
+	/**
18
+	 * returns true if current request matches specification
19
+	 *
20
+	 * @since 4.9.71.p
21
+	 * @return boolean
22
+	 */
23
+	public function isMatchingRoute()
24
+	{
25
+		global $pagenow;
26
+		return $pagenow
27
+			   && $pagenow === 'admin.php'
28
+			   && $this->request->isAdmin()
29
+			   && $this->request->getRequestParam('page') === 'espresso_events'
30
+			   && $this->request->getRequestParam('action') === 'create_new';
31
+	}
32 32
 }
Please login to merge, or discard this patch.
domain/entities/routing/specifications/admin/EspressoVenueEditorEdit.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -14,18 +14,18 @@
 block discarded – undo
14 14
  */
15 15
 class EspressoVenueEditorEdit extends RouteMatchSpecification
16 16
 {
17
-    /**
18
-     * returns true if current request matches specification
19
-     *
20
-     * @since 4.9.71.p
21
-     * @return boolean
22
-     */
23
-    public function isMatchingRoute()
24
-    {
25
-        global $pagenow;
26
-        return $pagenow
27
-               && $pagenow === 'admin.php'
28
-               && $this->request->getRequestParam('page') === 'espresso_venues'
29
-               && $this->request->getRequestParam('action') === 'edit';
30
-    }
17
+	/**
18
+	 * returns true if current request matches specification
19
+	 *
20
+	 * @since 4.9.71.p
21
+	 * @return boolean
22
+	 */
23
+	public function isMatchingRoute()
24
+	{
25
+		global $pagenow;
26
+		return $pagenow
27
+			   && $pagenow === 'admin.php'
28
+			   && $this->request->getRequestParam('page') === 'espresso_venues'
29
+			   && $this->request->getRequestParam('action') === 'edit';
30
+	}
31 31
 }
Please login to merge, or discard this patch.
domain/entities/routing/specifications/admin/WordPressPostTypeEditor.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -15,15 +15,15 @@
 block discarded – undo
15 15
  */
16 16
 class WordPressPostTypeEditor extends RouteMatchSpecification
17 17
 {
18
-    /**
19
-     * returns true if current request matches specification
20
-     *
21
-     * @since 4.9.71.p
22
-     * @return boolean
23
-     */
24
-    public function isMatchingRoute()
25
-    {
26
-        global $pagenow;
27
-        return $pagenow && ($pagenow === 'post.php' || $pagenow === 'post-new.php');
28
-    }
18
+	/**
19
+	 * returns true if current request matches specification
20
+	 *
21
+	 * @since 4.9.71.p
22
+	 * @return boolean
23
+	 */
24
+	public function isMatchingRoute()
25
+	{
26
+		global $pagenow;
27
+		return $pagenow && ($pagenow === 'post.php' || $pagenow === 'post-new.php');
28
+	}
29 29
 }
Please login to merge, or discard this patch.
domain/entities/routing/specifications/admin/WordPressPageEditorAddNew.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -14,17 +14,17 @@
 block discarded – undo
14 14
  */
15 15
 class WordPressPageEditorAddNew extends RouteMatchSpecification
16 16
 {
17
-    /**
18
-     * returns true if current request matches specification
19
-     *
20
-     * @since 4.9.71.p
21
-     * @return boolean
22
-     */
23
-    public function isMatchingRoute()
24
-    {
25
-        global $pagenow;
26
-        return $pagenow
27
-               && $pagenow === 'post-new.php'
28
-               && $this->request->getRequestParam('post_type', 'post') === 'page';
29
-    }
17
+	/**
18
+	 * returns true if current request matches specification
19
+	 *
20
+	 * @since 4.9.71.p
21
+	 * @return boolean
22
+	 */
23
+	public function isMatchingRoute()
24
+	{
25
+		global $pagenow;
26
+		return $pagenow
27
+			   && $pagenow === 'post-new.php'
28
+			   && $this->request->getRequestParam('post_type', 'post') === 'page';
29
+	}
30 30
 }
Please login to merge, or discard this patch.
entities/routing/specifications/admin/EspressoAttendeePostTypeEditor.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -14,18 +14,18 @@
 block discarded – undo
14 14
  */
15 15
 class EspressoAttendeePostTypeEditor extends RouteMatchSpecification
16 16
 {
17
-    /**
18
-     * returns true if current request matches specification
19
-     *
20
-     * @since 4.9.71.p
21
-     * @return boolean
22
-     */
23
-    public function isMatchingRoute()
24
-    {
25
-        global $pagenow;
26
-        return $pagenow
27
-               && $pagenow === 'admin.php'
28
-               && $this->request->getRequestParam('page') === 'espresso_registrations'
29
-               && $this->request->getRequestParam('action') === 'edit_attendee';
30
-    }
17
+	/**
18
+	 * returns true if current request matches specification
19
+	 *
20
+	 * @since 4.9.71.p
21
+	 * @return boolean
22
+	 */
23
+	public function isMatchingRoute()
24
+	{
25
+		global $pagenow;
26
+		return $pagenow
27
+			   && $pagenow === 'admin.php'
28
+			   && $this->request->getRequestParam('page') === 'espresso_registrations'
29
+			   && $this->request->getRequestParam('action') === 'edit_attendee';
30
+	}
31 31
 }
Please login to merge, or discard this patch.
domain/entities/routing/specifications/admin/WordPressPostsEditorAddNew.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -15,17 +15,17 @@
 block discarded – undo
15 15
  */
16 16
 class WordPressPostsEditorAddNew extends RouteMatchSpecification
17 17
 {
18
-    /**
19
-     * returns true if current request matches specification
20
-     *
21
-     * @since 4.9.71.p
22
-     * @return boolean
23
-     */
24
-    public function isMatchingRoute()
25
-    {
26
-        global $pagenow;
27
-        return $pagenow
28
-               && $pagenow === 'post-new.php'
29
-               && $this->request->getRequestParam('post_type', 'post') === 'post';
30
-    }
18
+	/**
19
+	 * returns true if current request matches specification
20
+	 *
21
+	 * @since 4.9.71.p
22
+	 * @return boolean
23
+	 */
24
+	public function isMatchingRoute()
25
+	{
26
+		global $pagenow;
27
+		return $pagenow
28
+			   && $pagenow === 'post-new.php'
29
+			   && $this->request->getRequestParam('post_type', 'post') === 'post';
30
+	}
31 31
 }
Please login to merge, or discard this patch.
domain/entities/routing/specifications/admin/WordPressPageEditorEdit.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -16,18 +16,18 @@
 block discarded – undo
16 16
  */
17 17
 class WordPressPageEditorEdit extends RouteMatchSpecification
18 18
 {
19
-    /**
20
-     * returns true if current request matches specification
21
-     *
22
-     * @since 4.9.71.p
23
-     * @return boolean
24
-     */
25
-    public function isMatchingRoute()
26
-    {
27
-        global $pagenow;
28
-        return $pagenow
29
-               && $pagenow === 'plugins.php'
30
-               && $this->request->getRequestParam('post_type', 'post') === 'page'
31
-               && $this->request->getRequestParam('action') === 'edit';
32
-    }
19
+	/**
20
+	 * returns true if current request matches specification
21
+	 *
22
+	 * @since 4.9.71.p
23
+	 * @return boolean
24
+	 */
25
+	public function isMatchingRoute()
26
+	{
27
+		global $pagenow;
28
+		return $pagenow
29
+			   && $pagenow === 'plugins.php'
30
+			   && $this->request->getRequestParam('post_type', 'post') === 'page'
31
+			   && $this->request->getRequestParam('action') === 'edit';
32
+	}
33 33
 }
Please login to merge, or discard this patch.
core/domain/services/assets/LegacyAccountingAssetManager.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
         // @link http://josscrowcroft.github.io/accounting.js/
84 84
         $this->addJavascript(
85 85
             LegacyAccountingAssetManager::JS_HANDLE_ACCOUNTING_CORE,
86
-            EE_THIRD_PARTY_URL . 'accounting/accounting.js',
86
+            EE_THIRD_PARTY_URL.'accounting/accounting.js',
87 87
             [LegacyAccountingAssetManager::JS_HANDLE_UNDERSCORE],
88 88
             true,
89 89
             '0.3.2'
@@ -91,11 +91,11 @@  discard block
 block discarded – undo
91 91
 
92 92
         $this->addJavascript(
93 93
             LegacyAccountingAssetManager::JS_HANDLE_ACCOUNTING,
94
-            EE_GLOBAL_ASSETS_URL . 'scripts/ee-accounting-config.js',
94
+            EE_GLOBAL_ASSETS_URL.'scripts/ee-accounting-config.js',
95 95
             [LegacyAccountingAssetManager::JS_HANDLE_ACCOUNTING_CORE]
96 96
         )
97 97
              ->setInlineDataCallback(
98
-                 function () {
98
+                 function() {
99 99
                      wp_localize_script(
100 100
                          LegacyAccountingAssetManager::JS_HANDLE_ACCOUNTING,
101 101
                          'EE_ACCOUNTING_CFG',
Please login to merge, or discard this patch.
Indentation   +121 added lines, -121 removed lines patch added patch discarded remove patch
@@ -24,125 +24,125 @@
 block discarded – undo
24 24
 class LegacyAccountingAssetManager extends AssetManager
25 25
 {
26 26
 
27
-    const JS_HANDLE_UNDERSCORE = 'underscore';
28
-
29
-    const JS_HANDLE_ACCOUNTING_CORE = 'ee-accounting-core';
30
-
31
-    const JS_HANDLE_ACCOUNTING = 'ee-accounting';
32
-
33
-
34
-    /**
35
-     * @var EE_Currency_Config $currency_config
36
-     */
37
-    protected $currency_config;
38
-
39
-    /**
40
-     * CoreAssetRegister constructor.
41
-     *
42
-     * @param AssetCollection    $assets
43
-     * @param DomainInterface    $domain
44
-     * @param Registry           $registry
45
-     * @param EE_Currency_Config $currency_config
46
-     */
47
-    public function __construct(
48
-        AssetCollection $assets,
49
-        DomainInterface $domain,
50
-        Registry $registry,
51
-        EE_Currency_Config $currency_config
52
-    ) {
53
-        $this->currency_config = $currency_config;
54
-        parent::__construct($domain, $assets, $registry);
55
-    }
56
-
57
-
58
-
59
-    /**
60
-     * @throws InvalidDataTypeException
61
-     * @throws InvalidEntityException
62
-     * @throws DuplicateCollectionIdentifierException
63
-     * @throws DomainException
64
-     */
65
-    public function addAssets()
66
-    {
67
-        $this->loadAccountingJs();
68
-        add_action('admin_enqueue_scripts', [$this, 'enqueueLegacyAccountingAssets'], 100);
69
-    }
70
-
71
-
72
-    /**
73
-     * accounting.js for performing client-side calculations
74
-     *
75
-     * @throws DomainException
76
-     * @throws DuplicateCollectionIdentifierException
77
-     * @throws InvalidDataTypeException
78
-     * @throws InvalidEntityException
79
-     * @since 5.0.0.p
80
-     */
81
-    private function loadAccountingJs()
82
-    {
83
-        //accounting.js library
84
-        // @link http://josscrowcroft.github.io/accounting.js/
85
-        $this->addJavascript(
86
-            LegacyAccountingAssetManager::JS_HANDLE_ACCOUNTING_CORE,
87
-            EE_THIRD_PARTY_URL . 'accounting/accounting.js',
88
-            [LegacyAccountingAssetManager::JS_HANDLE_UNDERSCORE],
89
-            true,
90
-            '0.3.2'
91
-        );
92
-
93
-        $this->addJavascript(
94
-            LegacyAccountingAssetManager::JS_HANDLE_ACCOUNTING,
95
-            EE_GLOBAL_ASSETS_URL . 'scripts/ee-accounting-config.js',
96
-            [LegacyAccountingAssetManager::JS_HANDLE_ACCOUNTING_CORE]
97
-        )
98
-             ->setInlineDataCallback(
99
-                 function () {
100
-                     wp_localize_script(
101
-                         LegacyAccountingAssetManager::JS_HANDLE_ACCOUNTING,
102
-                         'EE_ACCOUNTING_CFG',
103
-                         $this->getAccountingSettings()
104
-                     );
105
-                 }
106
-             );
107
-    }
108
-
109
-
110
-    /**
111
-     * Returns configuration data for the accounting-js library.
112
-     *
113
-     * @return array
114
-     * @since 5.0.0.p
115
-     */
116
-    private function getAccountingSettings()
117
-    {
118
-        return [
119
-            'currency' => [
120
-                'symbol'    => $this->currency_config->sign,
121
-                'format'    => [
122
-                    'pos'  => $this->currency_config->sign_b4 ? '%s%v' : '%v%s',
123
-                    'neg'  => $this->currency_config->sign_b4 ? '- %s%v' : '- %v%s',
124
-                    'zero' => $this->currency_config->sign_b4 ? '%s--' : '--%s',
125
-                ],
126
-                'decimal'   => $this->currency_config->dec_mrk,
127
-                'thousand'  => $this->currency_config->thsnds,
128
-                'precision' => $this->currency_config->dec_plc,
129
-            ],
130
-            'number'   => [
131
-                'precision' => $this->currency_config->dec_plc,
132
-                'thousand'  => $this->currency_config->thsnds,
133
-                'decimal'   => $this->currency_config->dec_mrk,
134
-            ],
135
-        ];
136
-    }
137
-
138
-
139
-    /**
140
-     * enqueue_scripts - Load the scripts and css
141
-     *
142
-     * @return void
143
-     */
144
-    public function enqueueLegacyAccountingAssets()
145
-    {
146
-        $this->enqueueAsset(LegacyAccountingAssetManager::JS_HANDLE_ACCOUNTING);
147
-    }
27
+	const JS_HANDLE_UNDERSCORE = 'underscore';
28
+
29
+	const JS_HANDLE_ACCOUNTING_CORE = 'ee-accounting-core';
30
+
31
+	const JS_HANDLE_ACCOUNTING = 'ee-accounting';
32
+
33
+
34
+	/**
35
+	 * @var EE_Currency_Config $currency_config
36
+	 */
37
+	protected $currency_config;
38
+
39
+	/**
40
+	 * CoreAssetRegister constructor.
41
+	 *
42
+	 * @param AssetCollection    $assets
43
+	 * @param DomainInterface    $domain
44
+	 * @param Registry           $registry
45
+	 * @param EE_Currency_Config $currency_config
46
+	 */
47
+	public function __construct(
48
+		AssetCollection $assets,
49
+		DomainInterface $domain,
50
+		Registry $registry,
51
+		EE_Currency_Config $currency_config
52
+	) {
53
+		$this->currency_config = $currency_config;
54
+		parent::__construct($domain, $assets, $registry);
55
+	}
56
+
57
+
58
+
59
+	/**
60
+	 * @throws InvalidDataTypeException
61
+	 * @throws InvalidEntityException
62
+	 * @throws DuplicateCollectionIdentifierException
63
+	 * @throws DomainException
64
+	 */
65
+	public function addAssets()
66
+	{
67
+		$this->loadAccountingJs();
68
+		add_action('admin_enqueue_scripts', [$this, 'enqueueLegacyAccountingAssets'], 100);
69
+	}
70
+
71
+
72
+	/**
73
+	 * accounting.js for performing client-side calculations
74
+	 *
75
+	 * @throws DomainException
76
+	 * @throws DuplicateCollectionIdentifierException
77
+	 * @throws InvalidDataTypeException
78
+	 * @throws InvalidEntityException
79
+	 * @since 5.0.0.p
80
+	 */
81
+	private function loadAccountingJs()
82
+	{
83
+		//accounting.js library
84
+		// @link http://josscrowcroft.github.io/accounting.js/
85
+		$this->addJavascript(
86
+			LegacyAccountingAssetManager::JS_HANDLE_ACCOUNTING_CORE,
87
+			EE_THIRD_PARTY_URL . 'accounting/accounting.js',
88
+			[LegacyAccountingAssetManager::JS_HANDLE_UNDERSCORE],
89
+			true,
90
+			'0.3.2'
91
+		);
92
+
93
+		$this->addJavascript(
94
+			LegacyAccountingAssetManager::JS_HANDLE_ACCOUNTING,
95
+			EE_GLOBAL_ASSETS_URL . 'scripts/ee-accounting-config.js',
96
+			[LegacyAccountingAssetManager::JS_HANDLE_ACCOUNTING_CORE]
97
+		)
98
+			 ->setInlineDataCallback(
99
+				 function () {
100
+					 wp_localize_script(
101
+						 LegacyAccountingAssetManager::JS_HANDLE_ACCOUNTING,
102
+						 'EE_ACCOUNTING_CFG',
103
+						 $this->getAccountingSettings()
104
+					 );
105
+				 }
106
+			 );
107
+	}
108
+
109
+
110
+	/**
111
+	 * Returns configuration data for the accounting-js library.
112
+	 *
113
+	 * @return array
114
+	 * @since 5.0.0.p
115
+	 */
116
+	private function getAccountingSettings()
117
+	{
118
+		return [
119
+			'currency' => [
120
+				'symbol'    => $this->currency_config->sign,
121
+				'format'    => [
122
+					'pos'  => $this->currency_config->sign_b4 ? '%s%v' : '%v%s',
123
+					'neg'  => $this->currency_config->sign_b4 ? '- %s%v' : '- %v%s',
124
+					'zero' => $this->currency_config->sign_b4 ? '%s--' : '--%s',
125
+				],
126
+				'decimal'   => $this->currency_config->dec_mrk,
127
+				'thousand'  => $this->currency_config->thsnds,
128
+				'precision' => $this->currency_config->dec_plc,
129
+			],
130
+			'number'   => [
131
+				'precision' => $this->currency_config->dec_plc,
132
+				'thousand'  => $this->currency_config->thsnds,
133
+				'decimal'   => $this->currency_config->dec_mrk,
134
+			],
135
+		];
136
+	}
137
+
138
+
139
+	/**
140
+	 * enqueue_scripts - Load the scripts and css
141
+	 *
142
+	 * @return void
143
+	 */
144
+	public function enqueueLegacyAccountingAssets()
145
+	{
146
+		$this->enqueueAsset(LegacyAccountingAssetManager::JS_HANDLE_ACCOUNTING);
147
+	}
148 148
 }
Please login to merge, or discard this patch.
core/services/options/JsonWpOptionManager.php 1 patch
Indentation   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -16,39 +16,39 @@
 block discarded – undo
16 16
  */
17 17
 class JsonWpOptionManager
18 18
 {
19
-    /**
20
-     * Updates the object with what's in the DB (specifically, the wp_options table). If nothing is in the DB, leaves
21
-     * the object alone and returns false.
22
-     * @since 4.9.80.p
23
-     * @param JsonWpOptionSerializableInterface $obj
24
-     * @return bool
25
-     */
26
-    public function populateFromDb(JsonWpOptionSerializableInterface $obj)
27
-    {
28
-        $option = get_option($obj->getWpOptionName());
29
-        if ($option) {
30
-            $json = json_decode($option, false);
31
-            if ($json instanceof stdClass) {
32
-                return $obj->fromJsonSerializedData($json);
33
-            }
34
-        }
35
-        return false;
36
-    }
19
+	/**
20
+	 * Updates the object with what's in the DB (specifically, the wp_options table). If nothing is in the DB, leaves
21
+	 * the object alone and returns false.
22
+	 * @since 4.9.80.p
23
+	 * @param JsonWpOptionSerializableInterface $obj
24
+	 * @return bool
25
+	 */
26
+	public function populateFromDb(JsonWpOptionSerializableInterface $obj)
27
+	{
28
+		$option = get_option($obj->getWpOptionName());
29
+		if ($option) {
30
+			$json = json_decode($option, false);
31
+			if ($json instanceof stdClass) {
32
+				return $obj->fromJsonSerializedData($json);
33
+			}
34
+		}
35
+		return false;
36
+	}
37 37
 
38
-    /**
39
-     * Saves the object's data to the wp_options table for later use.
40
-     * @since 4.9.80.p
41
-     * @param JsonWpOptionSerializableInterface $obj
42
-     * @return bool
43
-     */
44
-    public function saveToDb(JsonWpOptionSerializableInterface $obj)
45
-    {
46
-        return update_option(
47
-            $obj->getWpOptionName(),
48
-            wp_json_encode($obj->toJsonSerializableData()),
49
-            false
50
-        );
51
-    }
38
+	/**
39
+	 * Saves the object's data to the wp_options table for later use.
40
+	 * @since 4.9.80.p
41
+	 * @param JsonWpOptionSerializableInterface $obj
42
+	 * @return bool
43
+	 */
44
+	public function saveToDb(JsonWpOptionSerializableInterface $obj)
45
+	{
46
+		return update_option(
47
+			$obj->getWpOptionName(),
48
+			wp_json_encode($obj->toJsonSerializableData()),
49
+			false
50
+		);
51
+	}
52 52
 }
53 53
 // End of file JsonWpOptionManager.php
54 54
 // Location: EventEspresso\core\services\options/JsonWpOptionManager.php
Please login to merge, or discard this patch.