Completed
Branch BUG-10434-reg-cancel-shortcode... (f76056)
by
unknown
14:04
created
core/libraries/messages/EE_Messages_Data_Handler_Collection.lib.php 2 patches
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if (!defined('EVENT_ESPRESSO_VERSION'))
2
+if ( ! defined('EVENT_ESPRESSO_VERSION'))
3 3
 	exit('No direct script access allowed');
4 4
 
5 5
 
@@ -26,10 +26,10 @@  discard block
 block discarded – undo
26 26
 	 *                                                   classname to create an alternative index for retrieving data_handlers.
27 27
 	 * @return bool
28 28
 	 */
29
-	public function add( $data_handler, $data = null) {
29
+	public function add($data_handler, $data = null) {
30 30
 		$data = $data === null ? array() : (array) $data;
31
-		$info['key'] = $this->get_key( get_class( $data_handler ), $data );
32
-		return parent::add( $data_handler, $info );
31
+		$info['key'] = $this->get_key(get_class($data_handler), $data);
32
+		return parent::add($data_handler, $info);
33 33
 	}
34 34
 	
35 35
 
@@ -44,8 +44,8 @@  discard block
 block discarded – undo
44 44
 	 *
45 45
 	 * @return  string      md5 hash using provided info.
46 46
 	 */
47
-	public function get_key( $classname, $data ) {
48
-		return md5( $classname . print_r( $data, true ) );
47
+	public function get_key($classname, $data) {
48
+		return md5($classname.print_r($data, true));
49 49
 	}
50 50
 
51 51
 
@@ -61,11 +61,11 @@  discard block
 block discarded – undo
61 61
 	 *
62 62
 	 * @return null|EE_Messages_incoming_data
63 63
 	 */
64
-	public function get_by_key( $key ) {
64
+	public function get_by_key($key) {
65 65
 		$this->rewind();
66
-		while( $this->valid() ) {
66
+		while ($this->valid()) {
67 67
 			$data = $this->getInfo();
68
-			if ( isset( $data['key'] ) && $data['key'] === $key ) {
68
+			if (isset($data['key']) && $data['key'] === $key) {
69 69
 				$handler = $this->current();
70 70
 				$this->rewind();
71 71
 				return $handler;
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-if (!defined('EVENT_ESPRESSO_VERSION'))
3
+if (!defined('EVENT_ESPRESSO_VERSION')) {
4 4
 	exit('No direct script access allowed');
5
+}
5 6
 /**
6 7
  * Event Espresso
7 8
  *
Please login to merge, or discard this patch.
core/libraries/messages/EE_Messages_Template_Pack_Collection.lib.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if (!defined('EVENT_ESPRESSO_VERSION'))
2
+if ( ! defined('EVENT_ESPRESSO_VERSION'))
3 3
 	exit('No direct script access allowed');
4 4
 
5 5
 
@@ -17,10 +17,10 @@  discard block
 block discarded – undo
17 17
 		$this->interface = 'EE_Messages_Template_Pack';
18 18
 	}
19 19
 
20
-	public function get_by_name( $template_pack_name ) {
20
+	public function get_by_name($template_pack_name) {
21 21
 		$this->rewind();
22
-		while ( $this->valid() ) {
23
-			if ( $this->current()->dbref == $template_pack_name ) {
22
+		while ($this->valid()) {
23
+			if ($this->current()->dbref == $template_pack_name) {
24 24
 				return $this->current();
25 25
 			}
26 26
 			$this->next();
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-if (!defined('EVENT_ESPRESSO_VERSION'))
3
+if (!defined('EVENT_ESPRESSO_VERSION')) {
4 4
 	exit('No direct script access allowed');
5
+}
5 6
 /**
6 7
  * Event Espresso
7 8
  *
Please login to merge, or discard this patch.
core/libraries/messages/EE_Messenger_Collection_Loader.lib.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) {
3
-	exit( 'No direct script access allowed' );
2
+if ( ! defined('EVENT_ESPRESSO_VERSION')) {
3
+	exit('No direct script access allowed');
4 4
 }
5 5
 
6 6
 
@@ -32,8 +32,8 @@  discard block
 block discarded – undo
32 32
 	 *
33 33
 	 * @param EE_Messenger_Collection $messengers
34 34
 	 */
35
-	public function __construct( EE_Messenger_Collection $messengers ) {
36
-		$this->set_messenger_collection( $messengers );
35
+	public function __construct(EE_Messenger_Collection $messengers) {
36
+		$this->set_messenger_collection($messengers);
37 37
 	}
38 38
 
39 39
 
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 	/**
51 51
 	 * @param mixed $messengers
52 52
 	 */
53
-	public function set_messenger_collection( EE_Messenger_Collection $messengers ) {
53
+	public function set_messenger_collection(EE_Messenger_Collection $messengers) {
54 54
 		$this->_messenger_collection = $messengers;
55 55
 	}
56 56
 
@@ -63,41 +63,41 @@  discard block
 block discarded – undo
63 63
 	 * @param  string $folder
64 64
 	 * @throws \EE_Error
65 65
 	 */
66
-	public function load_messengers_from_folder( $folder = '' ) {
66
+	public function load_messengers_from_folder($folder = '') {
67 67
 		//make sure autoloaders are set (fail-safe)
68 68
 		EED_Messages::set_autoloaders();
69
-		$folder = ! empty( $folder ) ? $folder : EE_LIBRARIES . 'messages' . DS . 'messenger';
70
-		$folder .= $folder[ strlen( $folder ) - 1 ] != DS ? DS : '';
69
+		$folder = ! empty($folder) ? $folder : EE_LIBRARIES.'messages'.DS.'messenger';
70
+		$folder .= $folder[strlen($folder) - 1] != DS ? DS : '';
71 71
 		// get all the files in that folder that end in ".class.php
72 72
 		$filepaths = apply_filters(
73 73
 			'FHEE__EE_messages__get_installed__messenger_files',
74
-			glob( $folder . '*.class.php' )
74
+			glob($folder.'*.class.php')
75 75
 		);
76
-		if ( empty( $filepaths ) ) {
76
+		if (empty($filepaths)) {
77 77
 			return;
78 78
 		}
79
-		foreach ( (array) $filepaths as $file_path ) {
79
+		foreach ((array) $filepaths as $file_path) {
80 80
 			// extract filename from path
81
-			$file_path = basename( $file_path );
81
+			$file_path = basename($file_path);
82 82
 			// now remove any file extensions
83
-			$messenger_class_name = substr( $file_path, 0, strpos( $file_path, '.' ) );
83
+			$messenger_class_name = substr($file_path, 0, strpos($file_path, '.'));
84 84
 
85 85
 			//first check to see if the class name represents an actual messenger class.
86
-			if ( strpos( strtolower( $messenger_class_name ), 'messenger' ) === false ) {
86
+			if (strpos(strtolower($messenger_class_name), 'messenger') === false) {
87 87
 				continue;
88 88
 			}
89 89
 
90
-			if ( ! class_exists( $messenger_class_name ) ) {
90
+			if ( ! class_exists($messenger_class_name)) {
91 91
 				throw new EE_Error(
92 92
 					sprintf(
93
-						__( 'The "%1$s" messenger class can\'t be loaded from %2$s.  Likely there is a typo in the class name or the file name.', 'event_espresso' ),
93
+						__('The "%1$s" messenger class can\'t be loaded from %2$s.  Likely there is a typo in the class name or the file name.', 'event_espresso'),
94 94
 						$messenger_class_name,
95 95
 						$file_path
96 96
 					)
97 97
 				);
98 98
 			}
99 99
 
100
-			$this->_load_messenger( new $messenger_class_name() );
100
+			$this->_load_messenger(new $messenger_class_name());
101 101
 		}
102 102
 	}
103 103
 
@@ -113,10 +113,10 @@  discard block
 block discarded – undo
113 113
 		EED_Messages::set_autoloaders();
114 114
 		$active_messengers = apply_filters(
115 115
 			'FHEE__EEH_MSG_Template__get_active_messengers_in_db',
116
-			get_option( 'ee_active_messengers', array() )
116
+			get_option('ee_active_messengers', array())
117 117
 		);
118
-		foreach ( (array) $active_messengers as $active_messenger_classname => $active_messenger ) {
119
-			$this->_load_messenger( $active_messenger );
118
+		foreach ((array) $active_messengers as $active_messenger_classname => $active_messenger) {
119
+			$this->_load_messenger($active_messenger);
120 120
 		}
121 121
 	}
122 122
 
@@ -128,8 +128,8 @@  discard block
 block discarded – undo
128 128
 	 * @param \EE_messenger $messenger
129 129
 	 * @return bool
130 130
 	 */
131
-	protected function _load_messenger( EE_messenger $messenger ) {
132
-		if ( $this->messenger_collection()->has_by_name( $messenger->name ) ) {
131
+	protected function _load_messenger(EE_messenger $messenger) {
132
+		if ($this->messenger_collection()->has_by_name($messenger->name)) {
133 133
 			return true;
134 134
 		}
135 135
 		return $this->messenger_collection()->add(
Please login to merge, or discard this patch.
core/libraries/messages/defaults/EE_Messages_Template_Defaults.lib.php 1 patch
Spacing   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) {
3
-	exit( 'NO direct script access allowed' );
2
+if ( ! defined('EVENT_ESPRESSO_VERSION')) {
3
+	exit('NO direct script access allowed');
4 4
 }
5 5
 
6 6
 /**
@@ -109,14 +109,14 @@  discard block
 block discarded – undo
109 109
 	 *                              about where to obtain the templates.
110 110
 	 *
111 111
 	 */
112
-	final private function _set_templates( $template_pack ) {
112
+	final private function _set_templates($template_pack) {
113 113
 
114 114
 		//get the corresponding template pack object (if present.  If not then we just load the default and add a
115 115
 		//notice).  The class name should be something like 'EE_Messages_Template_Pack_Default' where "default' would be
116 116
 		//the incoming template pack reference.
117
-		$class_name = 'EE_Messages_Template_Pack_' . str_replace( ' ', '_', ucwords( str_replace( '_', ' ', $template_pack ) ) );
117
+		$class_name = 'EE_Messages_Template_Pack_'.str_replace(' ', '_', ucwords(str_replace('_', ' ', $template_pack)));
118 118
 
119
-		if ( ! class_exists( $class_name ) ) {
119
+		if ( ! class_exists($class_name)) {
120 120
 			EE_Error::add_error(
121 121
 				sprintf(
122 122
 					__(
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
 		$template_pack = new $class_name;
136 136
 
137 137
 		//get all the templates from the template pack.
138
-		$this->_templates = $template_pack->get_templates( $this->_messenger, $this->_message_type );
138
+		$this->_templates = $template_pack->get_templates($this->_messenger, $this->_message_type);
139 139
 	}
140 140
 
141 141
 
@@ -159,15 +159,15 @@  discard block
 block discarded – undo
159 159
 	public function create_new_templates() {
160 160
 		$template_pack = 'default';
161 161
 		//if we have the GRP_ID then let's use that to see if there is a set template pack and use that for the new templates.
162
-		if ( ! empty( $this->_GRP_ID ) ) {
163
-			$message_template_group = $this->_message_template_group_model->get_one_by_ID( $this->_GRP_ID );
162
+		if ( ! empty($this->_GRP_ID)) {
163
+			$message_template_group = $this->_message_template_group_model->get_one_by_ID($this->_GRP_ID);
164 164
 			$template_pack = $message_template_group instanceof EE_Message_Template_Group
165 165
 				? $message_template_group->get_template_pack_name()
166 166
 				: 'default';
167 167
 			//we also need to reset the template variation to default
168
-			$message_template_group->set_template_pack_variation( 'default' );
168
+			$message_template_group->set_template_pack_variation('default');
169 169
 		}
170
-		return $this->_create_new_templates( $template_pack );
170
+		return $this->_create_new_templates($template_pack);
171 171
 	}
172 172
 
173 173
 
@@ -181,12 +181,12 @@  discard block
 block discarded – undo
181 181
 	 *                              which will contain information about where to obtain the templates.
182 182
 	 * @return mixed (array|bool) 	success array or false.
183 183
 	 */
184
-	protected function _create_new_templates( $template_pack ) {
184
+	protected function _create_new_templates($template_pack) {
185 185
 
186
-		$this->_set_templates( $template_pack );
186
+		$this->_set_templates($template_pack);
187 187
 
188 188
 		//necessary properties are set, let's save the default templates
189
-		if ( empty( $this->_GRP_ID ) ) {
189
+		if (empty($this->_GRP_ID)) {
190 190
 			$main_template_data = array(
191 191
 				'MTP_messenger'    => $this->_messenger->name,
192 192
 				'MTP_message_type' => $this->_message_type->name,
@@ -197,24 +197,24 @@  discard block
 block discarded – undo
197 197
 				'MTP_is_active'    => 1,
198 198
 			);
199 199
 			//let's insert the above and get our GRP_ID, then reset the template data array to just include the GRP_ID
200
-			$grp_id = $this->_message_template_group_model->insert( $main_template_data );
201
-			if ( empty( $grp_id ) ) {
200
+			$grp_id = $this->_message_template_group_model->insert($main_template_data);
201
+			if (empty($grp_id)) {
202 202
 				return $grp_id;
203 203
 			}
204 204
 			$this->_GRP_ID = $grp_id;
205 205
 		}
206 206
 
207
-		$template_data = array( 'GRP_ID' => $this->_GRP_ID );
207
+		$template_data = array('GRP_ID' => $this->_GRP_ID);
208 208
 
209
-		foreach ( $this->_contexts as $context => $details ) {
210
-			foreach ( $this->_fields as $field => $field_type ) {
211
-				if ( $field != 'extra' ) {
209
+		foreach ($this->_contexts as $context => $details) {
210
+			foreach ($this->_fields as $field => $field_type) {
211
+				if ($field != 'extra') {
212 212
 					$template_data['MTP_context'] = $context;
213 213
 					$template_data['MTP_template_field'] = $field;
214
-					$template_data['MTP_content'] = $this->_templates[ $context ][ $field ];
214
+					$template_data['MTP_content'] = $this->_templates[$context][$field];
215 215
 
216
-					$MTP = $this->_message_template_model->insert( $template_data );
217
-					if ( ! $MTP ) {
216
+					$MTP = $this->_message_template_model->insert($template_data);
217
+					if ( ! $MTP) {
218 218
 						EE_Error::add_error(
219 219
 							sprintf(
220 220
 								__(
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
 
239 239
 		return array(
240 240
 			'GRP_ID'      => $this->_GRP_ID,
241
-			'MTP_context' => key( $this->_contexts )
241
+			'MTP_context' => key($this->_contexts)
242 242
 		);
243 243
 	}
244 244
 
Please login to merge, or discard this patch.
core/libraries/shortcodes/EE_Shortcodes.lib.php 2 patches
Braces   +9 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,7 +1,8 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-if (!defined('EVENT_ESPRESSO_VERSION') )
3
+if (!defined('EVENT_ESPRESSO_VERSION') ) {
4 4
 	exit('NO direct script access allowed');
5
+}
5 6
 
6 7
 /**
7 8
  * Event Espresso
@@ -197,8 +198,10 @@  discard block
 block discarded – undo
197 198
 		$sc_to_verify = !empty($matches[0] ) ? $matches[0][0] . ']' : $shortcode;
198 199
 
199 200
 		//first we want to make sure this is a valid shortcode
200
-		if ( !array_key_exists($sc_to_verify, $this->_shortcodes ) )
201
-			return false; //get out, this parser doesn't handle the incoming shortcode.
201
+		if ( !array_key_exists($sc_to_verify, $this->_shortcodes ) ) {
202
+					return false;
203
+		}
204
+		//get out, this parser doesn't handle the incoming shortcode.
202 205
 		$this->_data = $data;
203 206
 		$this->_extra_data = $extra_data;
204 207
 		$this->_set_messages_properties();
@@ -276,8 +279,9 @@  discard block
 block discarded – undo
276 279
 		}
277 280
 
278 281
 		//next test to make sure we've got got a data index in the incoming data array
279
-		if ( !isset( $this->_data['data'] ) )
280
-			throw new EE_Error( __('The incoming data does not have the required data index in its array', 'event_espresso') );
282
+		if ( !isset( $this->_data['data'] ) ) {
283
+					throw new EE_Error( __('The incoming data does not have the required data index in its array', 'event_espresso') );
284
+		}
281 285
 
282 286
 		//all is well let's make sure _extra_data always has the values needed.
283 287
 		//let's make sure that extra_data includes all templates (for later parsing if necessary)
Please login to merge, or discard this patch.
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-if (!defined('EVENT_ESPRESSO_VERSION') )
3
+if ( ! defined('EVENT_ESPRESSO_VERSION'))
4 4
 	exit('NO direct script access allowed');
5 5
 
6 6
 /**
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
 
172 172
 
173 173
 	public function get_shortcode_helper() {
174
-		if ( ! $this->_shortcode_helper instanceof EEH_Parse_Shortcodes ) {
174
+		if ( ! $this->_shortcode_helper instanceof EEH_Parse_Shortcodes) {
175 175
 			$this->_set_shortcode_helper();
176 176
 		}
177 177
 		return $this->_shortcode_helper;
@@ -185,25 +185,25 @@  discard block
 block discarded – undo
185 185
 	 * @param  mixed (object|array) $extra_data extra incoming data (usually EE_Messages_Addressee)
186 186
 	 * @return string            parsed shortcode.
187 187
 	 */
188
-	public function parser($shortcode, $data, $extra_data = array() ) {
188
+	public function parser($shortcode, $data, $extra_data = array()) {
189 189
 
190 190
 		//filter setup shortcodes
191 191
 		$this->_shortcodes = $this->get_shortcodes();
192 192
 
193 193
 		//we need to setup any dynamic shortcodes so that they work with the array_key_exists
194
-		$sc = preg_match_all( '/(\[[A-Za-z0-9\_]+_\*)/', $shortcode, $matches );
195
-		$sc_to_verify = !empty($matches[0] ) ? $matches[0][0] . ']' : $shortcode;
194
+		$sc = preg_match_all('/(\[[A-Za-z0-9\_]+_\*)/', $shortcode, $matches);
195
+		$sc_to_verify = ! empty($matches[0]) ? $matches[0][0].']' : $shortcode;
196 196
 
197 197
 		//first we want to make sure this is a valid shortcode
198
-		if ( !array_key_exists($sc_to_verify, $this->_shortcodes ) )
198
+		if ( ! array_key_exists($sc_to_verify, $this->_shortcodes))
199 199
 			return false; //get out, this parser doesn't handle the incoming shortcode.
200 200
 		$this->_data = $data;
201 201
 		$this->_extra_data = $extra_data;
202 202
 		$this->_set_messages_properties();
203
-		$parsed = apply_filters( 'FHEE__' . get_class($this) . '__parser_after', $this->_parser($shortcode), $shortcode, $data, $extra_data, $this );
203
+		$parsed = apply_filters('FHEE__'.get_class($this).'__parser_after', $this->_parser($shortcode), $shortcode, $data, $extra_data, $this);
204 204
 
205 205
 		//note the below filter applies to ALL shortcode parsers... be careful!
206
-		$parsed = apply_filters( 'FHEE__EE_Shortcodes__parser_after', $parsed, $shortcode, $data, $extra_data, $this );
206
+		$parsed = apply_filters('FHEE__EE_Shortcodes__parser_after', $parsed, $shortcode, $data, $extra_data, $this);
207 207
 		return $parsed;
208 208
 	}
209 209
 
@@ -219,10 +219,10 @@  discard block
 block discarded – undo
219 219
 	 * @return array array of shortcodes => description pairs
220 220
 	 */
221 221
 	public function get_shortcodes() {
222
-		$this->_shortcodes = apply_filters( 'FHEE__' . get_class($this) . '__shortcodes', $this->_shortcodes, $this );
222
+		$this->_shortcodes = apply_filters('FHEE__'.get_class($this).'__shortcodes', $this->_shortcodes, $this);
223 223
 
224 224
 		//note the below filter applies to ALL shortcode parsers... be careful!
225
-		$this->_shortcodes = apply_filters( 'FHEE__EE_Shortcodes__shortcodes', $this->_shortcodes, $this );
225
+		$this->_shortcodes = apply_filters('FHEE__EE_Shortcodes__shortcodes', $this->_shortcodes, $this);
226 226
 
227 227
 		return $this->_shortcodes;
228 228
 	}
@@ -252,7 +252,7 @@  discard block
 block discarded – undo
252 252
 	 * @param mixed (object|array) $data incoming data for the parser.  The data could be either an object or array because there are some shortcodes that might be replaced by prepared data that has multiple items in a list (i.e. list of attendees in an event and we're showing fname/lname for each attendee).  In this case data will be in an array.  Otherwise the data shoudl be in a properly formatted object.  The EEH_Parse_Shortcodes.helper.php describes the data object we're expecting.
253 253
 	 * @return string parsed shortcode
254 254
 	 */
255
-	abstract protected function _parser( $shortcode );
255
+	abstract protected function _parser($shortcode);
256 256
 
257 257
 
258 258
 
@@ -264,22 +264,22 @@  discard block
 block discarded – undo
264 264
 	protected function _validate_list_requirements() {
265 265
 
266 266
 		//first test to make sure we've got an array!
267
-		if ( !is_array($this->_data) ) {
268
-			throw new EE_Error( sprintf( __('Expecting an array for the data sent to %s. Instead it was %s', 'event_espresso'), get_class($this), gettype( $this->_data ) ) );
267
+		if ( ! is_array($this->_data)) {
268
+			throw new EE_Error(sprintf(__('Expecting an array for the data sent to %s. Instead it was %s', 'event_espresso'), get_class($this), gettype($this->_data)));
269 269
 		}
270 270
 
271 271
 		//next test to make sure we've got the required template in the index!
272
-		if ( !isset( $this->_data['template'] ) ) {
273
-			throw new EE_Error( sprintf( __('The incoming data does not have the required template index in its array', 'event_espresso') ) );
272
+		if ( ! isset($this->_data['template'])) {
273
+			throw new EE_Error(sprintf(__('The incoming data does not have the required template index in its array', 'event_espresso')));
274 274
 		}
275 275
 
276 276
 		//next test to make sure we've got got a data index in the incoming data array
277
-		if ( !isset( $this->_data['data'] ) )
278
-			throw new EE_Error( __('The incoming data does not have the required data index in its array', 'event_espresso') );
277
+		if ( ! isset($this->_data['data']))
278
+			throw new EE_Error(__('The incoming data does not have the required data index in its array', 'event_espresso'));
279 279
 
280 280
 		//all is well let's make sure _extra_data always has the values needed.
281 281
 		//let's make sure that extra_data includes all templates (for later parsing if necessary)
282
-		if ( empty( $this->_extra_data ) || ( empty( $this->_extra_data['data'] ) && empty( $this->_extra_data['template'] ) ) ) {
282
+		if (empty($this->_extra_data) || (empty($this->_extra_data['data']) && empty($this->_extra_data['template']))) {
283 283
 			$this->_extra_data['data'] = $this->_data['data'];
284 284
 			$this->_extra_data['template'] = $this->_data['template'];
285 285
 		}
@@ -296,16 +296,16 @@  discard block
 block discarded – undo
296 296
 	 *
297 297
 	 * @return array An array with the attributes
298 298
 	 */
299
-	protected function _get_shortcode_attrs( $shortcode ) {
299
+	protected function _get_shortcode_attrs($shortcode) {
300 300
 		//make sure the required wp helper function is present
301 301
 		//require the shortcode file if necessary
302
-		if ( ! function_exists( 'shortcode_parse_atts' ) ) {
303
-			require_once( ABSPATH . WPINC . '/shortcodes.php');
302
+		if ( ! function_exists('shortcode_parse_atts')) {
303
+			require_once(ABSPATH.WPINC.'/shortcodes.php');
304 304
 		}
305 305
 
306 306
 		//let's get any attributes that may be present and set the defaults.
307
-		$shortcode_to_parse = str_replace( '[', '', str_replace( ']', '', $shortcode ) );
308
-		return shortcode_parse_atts( $shortcode_to_parse );
307
+		$shortcode_to_parse = str_replace('[', '', str_replace(']', '', $shortcode));
308
+		return shortcode_parse_atts($shortcode_to_parse);
309 309
 	}
310 310
 
311 311
 
@@ -320,7 +320,7 @@  discard block
 block discarded – undo
320 320
 	 */
321 321
 	protected function _set_messages_properties() {
322 322
 		//should be in _extra_data
323
-		if ( isset( $this->_extra_data['messenger'] ) ) {
323
+		if (isset($this->_extra_data['messenger'])) {
324 324
 			$this->_messenger = $this->_extra_data['messenger'];
325 325
 			$this->_message_type = $this->_extra_data['message_type'];
326 326
 			$this->_context = $this->_extra_data['message'] instanceof EE_Message ? $this->_extra_data['message']->context() : '';
Please login to merge, or discard this patch.
core/libraries/rest_api/changes/Changes_In_4_8_34.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,6 @@
 block discarded – undo
22 22
 	/**
23 23
 	 * Removes the checkin and checkout endpoints from the index for requests
24 24
 	 * to api versions lowers than 4.8.33
25
-	 * @param array $routes_on_this_version
26 25
 	 * @param EventEspresso\core\libraries\rest_api\controllers\Base $controller
27 26
 	 * @return array like $routes_on_this_version
28 27
 	 */
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 		//is for lower than 4.8.33
14 14
 		add_filter( 
15 15
 			'FHEE__EventEspresso\core\libraries\rest_api\controllers\Base___get_response_headers',
16
-			array( $this, 'remove_response_headers' ),
16
+			array($this, 'remove_response_headers'),
17 17
 			10,
18 18
 			3
19 19
 		);
@@ -26,9 +26,9 @@  discard block
 block discarded – undo
26 26
 	 * @param EventEspresso\core\libraries\rest_api\controllers\Base $controller
27 27
 	 * @return array like $routes_on_this_version
28 28
 	 */
29
-	public function remove_response_headers( $response_headers, $controller, $requested_version ) {
30
-		if( $controller instanceof Base 
31
-			&& $this->applies_to_version(  $requested_version ) ) {
29
+	public function remove_response_headers($response_headers, $controller, $requested_version) {
30
+		if ($controller instanceof Base 
31
+			&& $this->applies_to_version($requested_version)) {
32 32
 			return array();
33 33
 		}
34 34
 		return $response_headers;
Please login to merge, or discard this patch.
strategies/validation/EE_Email_Validation_Strategy.strategy.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -11,8 +11,8 @@  discard block
 block discarded – undo
11 11
 class EE_Email_Validation_Strategy extends EE_Text_Validation_Strategy{
12 12
 
13 13
 	/**
14
-     * @param null $validation_error_message
15
-     */
14
+	 * @param null $validation_error_message
15
+	 */
16 16
    public function __construct( $validation_error_message = NULL ) {
17 17
 	   if( ! $validation_error_message ){
18 18
 			$validation_error_message = __("Please enter a valid email address.", "event_espresso");
@@ -38,8 +38,8 @@  discard block
 block discarded – undo
38 38
 
39 39
 
40 40
 	/**
41
-     * @return array
42
-     */
41
+	 * @return array
42
+	 */
43 43
    function get_jquery_validation_rule_array(){
44 44
 	   return array( 'email'=>true, 'messages' => array( 'email' => $this->get_validation_error_message() ) );
45 45
 	}
Please login to merge, or discard this patch.
Spacing   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -8,16 +8,16 @@  discard block
 block discarded – undo
8 8
  * @since 				4.6
9 9
  *
10 10
  */
11
-class EE_Email_Validation_Strategy extends EE_Text_Validation_Strategy{
11
+class EE_Email_Validation_Strategy extends EE_Text_Validation_Strategy {
12 12
 
13 13
 	/**
14 14
      * @param null $validation_error_message
15 15
      */
16
-   public function __construct( $validation_error_message = NULL ) {
17
-	   if( ! $validation_error_message ){
16
+   public function __construct($validation_error_message = NULL) {
17
+	   if ( ! $validation_error_message) {
18 18
 			$validation_error_message = __("Please enter a valid email address.", "event_espresso");
19 19
 		}
20
-		parent::__construct( $validation_error_message );
20
+		parent::__construct($validation_error_message);
21 21
 	}
22 22
 
23 23
 
@@ -29,9 +29,9 @@  discard block
 block discarded – undo
29 29
     * @return bool
30 30
     * @throws \EE_Validation_Error
31 31
     */
32
-	public function validate( $normalized_value ) {
33
-		if( $normalized_value && ! $this->_validate_email( $normalized_value ) ){
34
-			throw new EE_Validation_Error( $this->get_validation_error_message(), 'required');
32
+	public function validate($normalized_value) {
33
+		if ($normalized_value && ! $this->_validate_email($normalized_value)) {
34
+			throw new EE_Validation_Error($this->get_validation_error_message(), 'required');
35 35
 		}
36 36
 	}
37 37
 
@@ -40,8 +40,8 @@  discard block
 block discarded – undo
40 40
 	/**
41 41
      * @return array
42 42
      */
43
-	public function get_jquery_validation_rule_array(){
44
-	   return array( 'email'=>true, 'messages' => array( 'email' => $this->get_validation_error_message() ) );
43
+	public function get_jquery_validation_rule_array() {
44
+	   return array('email'=>true, 'messages' => array('email' => $this->get_validation_error_message()));
45 45
 	}
46 46
 
47 47
 
@@ -54,38 +54,38 @@  discard block
 block discarded – undo
54 54
 	 * @return bool of whether the email is valid or not
55 55
 	 * @throws \EE_Validation_Error
56 56
 	 */
57
-	private function _validate_email( $email ) {
58
-		$validation_level = isset( EE_Registry::instance()->CFG->registration->email_validation_level )
57
+	private function _validate_email($email) {
58
+		$validation_level = isset(EE_Registry::instance()->CFG->registration->email_validation_level)
59 59
 			? EE_Registry::instance()->CFG->registration->email_validation_level
60 60
 			: 'wp_default';
61
-		if ( ! preg_match( '/^.+\@\S+$/', $email ) ) { // \.\S+
61
+		if ( ! preg_match('/^.+\@\S+$/', $email)) { // \.\S+
62 62
 			// email not in correct {string}@{string} format
63 63
 			return false;
64 64
 		} else {
65
-			$atIndex = strrpos( $email, "@" );
66
-			$domain = substr( $email, $atIndex + 1 );
67
-			$local = substr( $email, 0, $atIndex );
68
-			$localLen = strlen( $local );
69
-			$domainLen = strlen( $domain );
70
-			if ( $localLen < 1 || $localLen > 64 ) {
65
+			$atIndex = strrpos($email, "@");
66
+			$domain = substr($email, $atIndex + 1);
67
+			$local = substr($email, 0, $atIndex);
68
+			$localLen = strlen($local);
69
+			$domainLen = strlen($domain);
70
+			if ($localLen < 1 || $localLen > 64) {
71 71
 				// local part length exceeded
72 72
 				return false;
73
-			} else if ( $domainLen < 1 || $domainLen > 255 ) {
73
+			} else if ($domainLen < 1 || $domainLen > 255) {
74 74
 				// domain part length exceeded
75 75
 				return false;
76
-			} else if ( $local[ 0 ] === '.' || $local[ $localLen - 1 ] === '.' ) {
76
+			} else if ($local[0] === '.' || $local[$localLen - 1] === '.') {
77 77
 				// local part starts or ends with '.'
78 78
 				return false;
79
-			} else if ( preg_match( '/\\.\\./', $local ) ) {
79
+			} else if (preg_match('/\\.\\./', $local)) {
80 80
 				// local part has two consecutive dots
81 81
 				return false;
82
-			} else if ( preg_match( '/\\.\\./', $domain ) ) {
82
+			} else if (preg_match('/\\.\\./', $domain)) {
83 83
 				// domain part has two consecutive dots
84 84
 				return false;
85
-			} else if ( $validation_level === 'wp_default' ) {
86
-				return is_email( $email );
85
+			} else if ($validation_level === 'wp_default') {
86
+				return is_email($email);
87 87
 			} else if (
88
-				( $validation_level === 'i18n' || $validation_level === 'i18n_dns' )
88
+				($validation_level === 'i18n' || $validation_level === 'i18n_dns')
89 89
 				// plz see http://stackoverflow.com/a/24817336 re: the following regex
90 90
 				&& ! preg_match(
91 91
 					'/^(?!\.)((?!.*\.{2})[a-zA-Z0-9\x{0080}-\x{00FF}\x{0100}-\x{017F}\x{0180}-\x{024F}\x{0250}-\x{02AF}\x{0300}-\x{036F}\x{0370}-\x{03FF}\x{0400}-\x{04FF}\x{0500}-\x{052F}\x{0530}-\x{058F}\x{0590}-\x{05FF}\x{0600}-\x{06FF}\x{0700}-\x{074F}\x{0750}-\x{077F}\x{0780}-\x{07BF}\x{07C0}-\x{07FF}\x{0900}-\x{097F}\x{0980}-\x{09FF}\x{0A00}-\x{0A7F}\x{0A80}-\x{0AFF}\x{0B00}-\x{0B7F}\x{0B80}-\x{0BFF}\x{0C00}-\x{0C7F}\x{0C80}-\x{0CFF}\x{0D00}-\x{0D7F}\x{0D80}-\x{0DFF}\x{0E00}-\x{0E7F}\x{0E80}-\x{0EFF}\x{0F00}-\x{0FFF}\x{1000}-\x{109F}\x{10A0}-\x{10FF}\x{1100}-\x{11FF}\x{1200}-\x{137F}\x{1380}-\x{139F}\x{13A0}-\x{13FF}\x{1400}-\x{167F}\x{1680}-\x{169F}\x{16A0}-\x{16FF}\x{1700}-\x{171F}\x{1720}-\x{173F}\x{1740}-\x{175F}\x{1760}-\x{177F}\x{1780}-\x{17FF}\x{1800}-\x{18AF}\x{1900}-\x{194F}\x{1950}-\x{197F}\x{1980}-\x{19DF}\x{19E0}-\x{19FF}\x{1A00}-\x{1A1F}\x{1B00}-\x{1B7F}\x{1D00}-\x{1D7F}\x{1D80}-\x{1DBF}\x{1DC0}-\x{1DFF}\x{1E00}-\x{1EFF}\x{1F00}-\x{1FFF}\x{20D0}-\x{20FF}\x{2100}-\x{214F}\x{2C00}-\x{2C5F}\x{2C60}-\x{2C7F}\x{2C80}-\x{2CFF}\x{2D00}-\x{2D2F}\x{2D30}-\x{2D7F}\x{2D80}-\x{2DDF}\x{2F00}-\x{2FDF}\x{2FF0}-\x{2FFF}\x{3040}-\x{309F}\x{30A0}-\x{30FF}\x{3100}-\x{312F}\x{3130}-\x{318F}\x{3190}-\x{319F}\x{31C0}-\x{31EF}\x{31F0}-\x{31FF}\x{3200}-\x{32FF}\x{3300}-\x{33FF}\x{3400}-\x{4DBF}\x{4DC0}-\x{4DFF}\x{4E00}-\x{9FFF}\x{A000}-\x{A48F}\x{A490}-\x{A4CF}\x{A700}-\x{A71F}\x{A800}-\x{A82F}\x{A840}-\x{A87F}\x{AC00}-\x{D7AF}\x{F900}-\x{FAFF}\.!#$%&\'*+-\/=?^_`{|}~\-\d]+)@(?!\.)([a-zA-Z0-9\x{0080}-\x{00FF}\x{0100}-\x{017F}\x{0180}-\x{024F}\x{0250}-\x{02AF}\x{0300}-\x{036F}\x{0370}-\x{03FF}\x{0400}-\x{04FF}\x{0500}-\x{052F}\x{0530}-\x{058F}\x{0590}-\x{05FF}\x{0600}-\x{06FF}\x{0700}-\x{074F}\x{0750}-\x{077F}\x{0780}-\x{07BF}\x{07C0}-\x{07FF}\x{0900}-\x{097F}\x{0980}-\x{09FF}\x{0A00}-\x{0A7F}\x{0A80}-\x{0AFF}\x{0B00}-\x{0B7F}\x{0B80}-\x{0BFF}\x{0C00}-\x{0C7F}\x{0C80}-\x{0CFF}\x{0D00}-\x{0D7F}\x{0D80}-\x{0DFF}\x{0E00}-\x{0E7F}\x{0E80}-\x{0EFF}\x{0F00}-\x{0FFF}\x{1000}-\x{109F}\x{10A0}-\x{10FF}\x{1100}-\x{11FF}\x{1200}-\x{137F}\x{1380}-\x{139F}\x{13A0}-\x{13FF}\x{1400}-\x{167F}\x{1680}-\x{169F}\x{16A0}-\x{16FF}\x{1700}-\x{171F}\x{1720}-\x{173F}\x{1740}-\x{175F}\x{1760}-\x{177F}\x{1780}-\x{17FF}\x{1800}-\x{18AF}\x{1900}-\x{194F}\x{1950}-\x{197F}\x{1980}-\x{19DF}\x{19E0}-\x{19FF}\x{1A00}-\x{1A1F}\x{1B00}-\x{1B7F}\x{1D00}-\x{1D7F}\x{1D80}-\x{1DBF}\x{1DC0}-\x{1DFF}\x{1E00}-\x{1EFF}\x{1F00}-\x{1FFF}\x{20D0}-\x{20FF}\x{2100}-\x{214F}\x{2C00}-\x{2C5F}\x{2C60}-\x{2C7F}\x{2C80}-\x{2CFF}\x{2D00}-\x{2D2F}\x{2D30}-\x{2D7F}\x{2D80}-\x{2DDF}\x{2F00}-\x{2FDF}\x{2FF0}-\x{2FFF}\x{3040}-\x{309F}\x{30A0}-\x{30FF}\x{3100}-\x{312F}\x{3130}-\x{318F}\x{3190}-\x{319F}\x{31C0}-\x{31EF}\x{31F0}-\x{31FF}\x{3200}-\x{32FF}\x{3300}-\x{33FF}\x{3400}-\x{4DBF}\x{4DC0}-\x{4DFF}\x{4E00}-\x{9FFF}\x{A000}-\x{A48F}\x{A490}-\x{A4CF}\x{A700}-\x{A71F}\x{A800}-\x{A82F}\x{A840}-\x{A87F}\x{AC00}-\x{D7AF}\x{F900}-\x{FAFF}\-\.\d]+)((\.([a-zA-Z\x{0080}-\x{00FF}\x{0100}-\x{017F}\x{0180}-\x{024F}\x{0250}-\x{02AF}\x{0300}-\x{036F}\x{0370}-\x{03FF}\x{0400}-\x{04FF}\x{0500}-\x{052F}\x{0530}-\x{058F}\x{0590}-\x{05FF}\x{0600}-\x{06FF}\x{0700}-\x{074F}\x{0750}-\x{077F}\x{0780}-\x{07BF}\x{07C0}-\x{07FF}\x{0900}-\x{097F}\x{0980}-\x{09FF}\x{0A00}-\x{0A7F}\x{0A80}-\x{0AFF}\x{0B00}-\x{0B7F}\x{0B80}-\x{0BFF}\x{0C00}-\x{0C7F}\x{0C80}-\x{0CFF}\x{0D00}-\x{0D7F}\x{0D80}-\x{0DFF}\x{0E00}-\x{0E7F}\x{0E80}-\x{0EFF}\x{0F00}-\x{0FFF}\x{1000}-\x{109F}\x{10A0}-\x{10FF}\x{1100}-\x{11FF}\x{1200}-\x{137F}\x{1380}-\x{139F}\x{13A0}-\x{13FF}\x{1400}-\x{167F}\x{1680}-\x{169F}\x{16A0}-\x{16FF}\x{1700}-\x{171F}\x{1720}-\x{173F}\x{1740}-\x{175F}\x{1760}-\x{177F}\x{1780}-\x{17FF}\x{1800}-\x{18AF}\x{1900}-\x{194F}\x{1950}-\x{197F}\x{1980}-\x{19DF}\x{19E0}-\x{19FF}\x{1A00}-\x{1A1F}\x{1B00}-\x{1B7F}\x{1D00}-\x{1D7F}\x{1D80}-\x{1DBF}\x{1DC0}-\x{1DFF}\x{1E00}-\x{1EFF}\x{1F00}-\x{1FFF}\x{20D0}-\x{20FF}\x{2100}-\x{214F}\x{2C00}-\x{2C5F}\x{2C60}-\x{2C7F}\x{2C80}-\x{2CFF}\x{2D00}-\x{2D2F}\x{2D30}-\x{2D7F}\x{2D80}-\x{2DDF}\x{2F00}-\x{2FDF}\x{2FF0}-\x{2FFF}\x{3040}-\x{309F}\x{30A0}-\x{30FF}\x{3100}-\x{312F}\x{3130}-\x{318F}\x{3190}-\x{319F}\x{31C0}-\x{31EF}\x{31F0}-\x{31FF}\x{3200}-\x{32FF}\x{3300}-\x{33FF}\x{3400}-\x{4DBF}\x{4DC0}-\x{4DFF}\x{4E00}-\x{9FFF}\x{A000}-\x{A48F}\x{A490}-\x{A4CF}\x{A700}-\x{A71F}\x{A800}-\x{A82F}\x{A840}-\x{A87F}\x{AC00}-\x{D7AF}\x{F900}-\x{FAFF}]){2,63})+)$/u',
@@ -94,8 +94,8 @@  discard block
 block discarded – undo
94 94
 			) {
95 95
 				return false;
96 96
 			}
97
-			if ( $validation_level === 'i18n_dns' ) {
98
-				if ( ! checkdnsrr( $domain, "MX" ) ) {
97
+			if ($validation_level === 'i18n_dns') {
98
+				if ( ! checkdnsrr($domain, "MX")) {
99 99
 					// domain not found in MX records
100 100
 					throw new EE_Validation_Error(
101 101
 						__(
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
 							'event_espresso'
104 104
 						)
105 105
 					);
106
-				} else if ( ! checkdnsrr( $domain, "A" ) ) {
106
+				} else if ( ! checkdnsrr($domain, "A")) {
107 107
 					// domain not found in A records
108 108
 					throw new EE_Validation_Error(
109 109
 						__(
Please login to merge, or discard this patch.
strategies/display/EE_Text_Input_Display_Strategy.strategy.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
  * @since               	4.6
12 12
  *
13 13
  */
14
-class EE_Text_Input_Display_Strategy extends EE_Display_Strategy_Base{
14
+class EE_Text_Input_Display_Strategy extends EE_Display_Strategy_Base {
15 15
 	/**
16 16
 	 * The html "type" attribute value. default is "text"
17 17
 	 * @var string
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 	/**
24 24
 	 * @param string $type
25 25
 	 */
26
-	function __construct( $type = 'text' ) {
26
+	function __construct($type = 'text') {
27 27
 		$this->_type = $type;
28 28
 		parent::__construct();
29 29
 	}
@@ -34,10 +34,10 @@  discard block
 block discarded – undo
34 34
 	 * Gets the html "type" attribute's value
35 35
 	 * @return string
36 36
 	 */
37
-	function get_type(){
37
+	function get_type() {
38 38
 		if (
39 39
 			$this->_type == 'email'
40
-			&& ! apply_filters( 'FHEE__EE_Text_Input_Display_Strategy__use_html5_email', false )
40
+			&& ! apply_filters('FHEE__EE_Text_Input_Display_Strategy__use_html5_email', false)
41 41
 		) {
42 42
 			return 'text';
43 43
 		}
@@ -50,16 +50,16 @@  discard block
 block discarded – undo
50 50
 	 *
51 51
 	 * @return string of html to display the field
52 52
 	 */
53
-	function display(){
54
-		$input = '<input type="'. $this->get_type() .'"';
55
-		$input .= ' name="' . $this->_input->html_name() . '"';
56
-		$input .= ' id="' . $this->_input->html_id() . '"';
57
-		$class = $this->_input->required() ? $this->_input->required_css_class() . ' ' . $this->_input->html_class() : $this->_input->html_class();
58
-		$input .= ' class="' . $class . '"';
53
+	function display() {
54
+		$input = '<input type="'.$this->get_type().'"';
55
+		$input .= ' name="'.$this->_input->html_name().'"';
56
+		$input .= ' id="'.$this->_input->html_id().'"';
57
+		$class = $this->_input->required() ? $this->_input->required_css_class().' '.$this->_input->html_class() : $this->_input->html_class();
58
+		$input .= ' class="'.$class.'"';
59 59
 		// add html5 required
60 60
 		$input .= $this->_input->required() ? ' required' : '';
61
-		$input .= ' value="' . $this->_input->raw_value_in_form() . '"';
62
-		$input .= ' style="' . $this->_input->html_style() . '"';
61
+		$input .= ' value="'.$this->_input->raw_value_in_form().'"';
62
+		$input .= ' style="'.$this->_input->html_style().'"';
63 63
 		$input .= $this->_input->html_other_attributes();
64 64
 		$input .= '/>';
65 65
 		return $input;
Please login to merge, or discard this patch.
core/libraries/form_sections/inputs/EE_Email_Input.input.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -6,22 +6,22 @@
 block discarded – undo
6 6
  * @subpackage
7 7
  * @author				Mike Nelson
8 8
  */
9
-class EE_Email_Input extends EE_Form_Input_Base{
9
+class EE_Email_Input extends EE_Form_Input_Base {
10 10
 
11 11
 	/**
12 12
 	 * @param array $input_settings
13 13
 	 */
14
-	function __construct( $input_settings = array() ){
15
-		$this->_set_display_strategy( new EE_Text_Input_Display_Strategy('email') );
16
-		$this->_set_normalization_strategy( new EE_Text_Normalization() );
14
+	function __construct($input_settings = array()) {
15
+		$this->_set_display_strategy(new EE_Text_Input_Display_Strategy('email'));
16
+		$this->_set_normalization_strategy(new EE_Text_Normalization());
17 17
 		$this->_add_validation_strategy(
18 18
 			new EE_Email_Validation_Strategy(
19
-				isset( $input_settings[ 'validation_error_message' ] )
20
-					? $input_settings[ 'validation_error_message' ]
19
+				isset($input_settings['validation_error_message'])
20
+					? $input_settings['validation_error_message']
21 21
 					: NULL
22 22
 			)
23 23
 		);
24
-		parent::__construct( $input_settings );
25
-		$this->set_html_class( $this->html_class() . ' email' );
24
+		parent::__construct($input_settings);
25
+		$this->set_html_class($this->html_class().' email');
26 26
 	}
27 27
 }
28 28
\ No newline at end of file
Please login to merge, or discard this patch.