Completed
Branch FET-8162-relation-exists (8f4753)
by
unknown
32:32 queued 23:52
created
core/libraries/messages/messenger/EE_Pdf_messenger.class.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -332,7 +332,7 @@
 block discarded – undo
332 332
 
333 333
 
334 334
 	/**
335
-	 * @return string
335
+	 * @return boolean|null
336 336
 	 */
337 337
 	protected function _preview() { return $this->_send_message(); }
338 338
 
Please login to merge, or discard this patch.
Spacing   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
  * @package Event Espresso
7 7
  * @subpackage messages
8 8
  */
9
-if (!defined('EVENT_ESPRESSO_VERSION') )
9
+if ( ! defined('EVENT_ESPRESSO_VERSION'))
10 10
 	exit('NO direct script access allowed');
11 11
 
12 12
 /**
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
  * @subpackage		messages
21 21
  * @author			Darren Ethier
22 22
  */
23
-class EE_Pdf_messenger extends EE_messenger  {
23
+class EE_Pdf_messenger extends EE_messenger {
24 24
 
25 25
 
26 26
 	/**
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 	 * @see abstract declaration in EE_messenger for details.
66 66
 	 */
67 67
 	protected function _set_admin_pages() {
68
-		$this->admin_registered_pages = array( 'events_edit' => false );
68
+		$this->admin_registered_pages = array('events_edit' => false);
69 69
 	}
70 70
 
71 71
 
@@ -85,10 +85,10 @@  discard block
 block discarded – undo
85 85
 	protected function _set_validator_config() {
86 86
 		$this->_validator_config = array(
87 87
 			'subject' => array(
88
-				'shortcodes' => array('recipient_details', 'organization', 'event', 'ticket', 'venue', 'primary_registration_details', 'event_author', 'email','event_meta', 'recipient_list', 'transaction', 'datetime_list', 'question_list', 'datetime', 'question')
88
+				'shortcodes' => array('recipient_details', 'organization', 'event', 'ticket', 'venue', 'primary_registration_details', 'event_author', 'email', 'event_meta', 'recipient_list', 'transaction', 'datetime_list', 'question_list', 'datetime', 'question')
89 89
 				),
90 90
 			'content' => array(
91
-				'shortcodes' => array( 'recipient_details', 'organization', 'event', 'ticket', 'venue', 'primary_registration_details', 'event_author', 'email','event_meta', 'recipient_list', 'transaction', 'datetime_list', 'question_list', 'datetime', 'question')
91
+				'shortcodes' => array('recipient_details', 'organization', 'event', 'ticket', 'venue', 'primary_registration_details', 'event_author', 'email', 'event_meta', 'recipient_list', 'transaction', 'datetime_list', 'question_list', 'datetime', 'question')
92 92
 				),
93 93
 			'attendee_list' => array(
94 94
 				'shortcodes' => array('attendee', 'event_list', 'ticket_list'),
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
 				'required' => array('[EVENT_LIST]')
100 100
 				),
101 101
 			'ticket_list' => array(
102
-				'shortcodes' => array('event_list', 'attendee_list', 'ticket', 'datetime_list','primary_registration_details', 'recipient_details'),
102
+				'shortcodes' => array('event_list', 'attendee_list', 'ticket', 'datetime_list', 'primary_registration_details', 'recipient_details'),
103 103
 				'required' => array('[TICKET_LIST]')
104 104
 				),
105 105
 			'datetime_list' => array(
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
 	 */
124 124
 	public  function enqueue_scripts_styles() {
125 125
 		parent::enqueue_scripts_styles();
126
-		do_action( 'AHEE__EE_Pdf_messenger__enqueue_scripts_styles');
126
+		do_action('AHEE__EE_Pdf_messenger__enqueue_scripts_styles');
127 127
 	}
128 128
 
129 129
 
@@ -260,18 +260,18 @@  discard block
 block discarded – undo
260 260
 	 */
261 261
 	protected function _send_message() {
262 262
 		$this->_template_args = array(
263
-			'page_title' => html_entity_decode( stripslashes( $this->_subject ), ENT_QUOTES, "UTF-8"),
264
-			'base_css' => $this->get_variation( $this->_tmp_pack, $this->_incoming_message_type->name, TRUE, 'base', $this->_variation ),
265
-			'print_css' => $this->get_variation( $this->_tmp_pack, $this->_incoming_message_type->name, TRUE, 'print', $this->_variation ),
266
-			'main_css' => $this->get_variation( $this->_tmp_pack, $this->_incoming_message_type->name, TRUE, 'main', $this->_variation ),
267
-			'extra_css' => EE_LIBRARIES_URL . 'messages/defaults/default/variations/pdf_base_default.css',
268
-			'main_body' => apply_filters( 'FHEE__EE_Pdf_messenger___send_message__main_body', wpautop(stripslashes_deep( html_entity_decode($this->_content,  ENT_QUOTES,"UTF-8" ) )), $this->_content )
263
+			'page_title' => html_entity_decode(stripslashes($this->_subject), ENT_QUOTES, "UTF-8"),
264
+			'base_css' => $this->get_variation($this->_tmp_pack, $this->_incoming_message_type->name, TRUE, 'base', $this->_variation),
265
+			'print_css' => $this->get_variation($this->_tmp_pack, $this->_incoming_message_type->name, TRUE, 'print', $this->_variation),
266
+			'main_css' => $this->get_variation($this->_tmp_pack, $this->_incoming_message_type->name, TRUE, 'main', $this->_variation),
267
+			'extra_css' => EE_LIBRARIES_URL.'messages/defaults/default/variations/pdf_base_default.css',
268
+			'main_body' => apply_filters('FHEE__EE_Pdf_messenger___send_message__main_body', wpautop(stripslashes_deep(html_entity_decode($this->_content, ENT_QUOTES, "UTF-8"))), $this->_content)
269 269
 			);
270 270
 		$this->_deregister_wp_hooks();
271
-		add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts_styles' ) );
271
+		add_action('wp_enqueue_scripts', array($this, 'enqueue_scripts_styles'));
272 272
 		$content = $this->_get_main_template();
273 273
 //		die( $content );
274
-		$this->_do_pdf( $content );
274
+		$this->_do_pdf($content);
275 275
 		exit(0);
276 276
 	}
277 277
 
@@ -295,8 +295,8 @@  discard block
 block discarded – undo
295 295
 
296 296
 		//just add back in wp_enqueue_scripts and wp_print_footer_scripts cause that's all we want to load.
297 297
 		add_action('wp_head', 'wp_enqueue_scripts');
298
-		add_action( 'wp_footer', 'wp_print_footer_scripts' );
299
-		add_action( 'wp_print_footer_scripts', '_wp_footer_scripts' );
298
+		add_action('wp_footer', 'wp_print_footer_scripts');
299
+		add_action('wp_print_footer_scripts', '_wp_footer_scripts');
300 300
 	}
301 301
 
302 302
 
@@ -309,12 +309,12 @@  discard block
 block discarded – undo
309 309
 	 * @param bool $preview
310 310
 	 * @return string
311 311
 	 */
312
-	protected function _get_main_template( $preview = FALSE ) {
313
-		$wrapper_template = $this->_tmp_pack->get_wrapper( 'html', 'main' );
312
+	protected function _get_main_template($preview = FALSE) {
313
+		$wrapper_template = $this->_tmp_pack->get_wrapper('html', 'main');
314 314
 
315 315
 		//require template helper
316
-		EE_Registry::instance()->load_helper( 'Template' );
317
-		return EEH_Template::display_template( $wrapper_template, $this->_template_args, TRUE );
316
+		EE_Registry::instance()->load_helper('Template');
317
+		return EEH_Template::display_template($wrapper_template, $this->_template_args, TRUE);
318 318
 	}
319 319
 
320 320
 
@@ -327,21 +327,21 @@  discard block
 block discarded – undo
327 327
 	 *
328 328
 	 * @return void
329 329
 	 */
330
-	protected function _do_pdf( $content = '' ) {
331
-		$invoice_name = html_entity_decode( $this->_subject, ENT_QUOTES, "UTF-8");
330
+	protected function _do_pdf($content = '') {
331
+		$invoice_name = html_entity_decode($this->_subject, ENT_QUOTES, "UTF-8");
332 332
 
333 333
 		//only load dompdf if nobody else has yet...
334
-		if( ! defined('DOMPDF_DIR')){
334
+		if ( ! defined('DOMPDF_DIR')) {
335 335
 			define('DOMPDF_ENABLE_REMOTE', TRUE);
336 336
 			define('DOMPDF_ENABLE_JAVASCRIPT', FALSE);
337 337
 			define('DOMPDF_ENABLE_CSS_FLOAT', TRUE);
338
-			require_once(EE_THIRD_PARTY . 'dompdf/dompdf_config.inc.php');
338
+			require_once(EE_THIRD_PARTY.'dompdf/dompdf_config.inc.php');
339 339
 		}
340 340
 		$dompdf = new DOMPDF();
341 341
 		$dompdf->load_html($content);
342 342
 		$dompdf->render();
343 343
 		//forcing the browser to open a download dialog.
344
-		$dompdf->stream($invoice_name . ".pdf", array( 'Attachment' => TRUE ));
344
+		$dompdf->stream($invoice_name.".pdf", array('Attachment' => TRUE));
345 345
 	}
346 346
 
347 347
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,8 +6,9 @@
 block discarded – undo
6 6
  * @package Event Espresso
7 7
  * @subpackage messages
8 8
  */
9
-if (!defined('EVENT_ESPRESSO_VERSION') )
9
+if (!defined('EVENT_ESPRESSO_VERSION') ) {
10 10
 	exit('NO direct script access allowed');
11
+}
11 12
 
12 13
 /**
13 14
  *
Please login to merge, or discard this patch.
core/libraries/messages/validators/EE_Messages_Validator.core.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -442,7 +442,7 @@
 block discarded – undo
442 442
 	 *
443 443
 	 * @param  string $value      string to evaluate
444 444
 	 * @param  array  $valid_shortcodes array of shortcodes that are acceptable.
445
-	 * @return mixed (bool|string)  return either a list of invalid shortcodes OR false if the shortcodes validate.
445
+	 * @return false|string (bool|string)  return either a list of invalid shortcodes OR false if the shortcodes validate.
446 446
 	 */
447 447
 	protected function _invalid_shortcodes($value, $valid_shortcodes) {
448 448
 		//first we need to go through the string and get the shortcodes in the string
Please login to merge, or discard this patch.
Spacing   +96 added lines, -96 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
 /**
@@ -123,10 +123,10 @@  discard block
 block discarded – undo
123 123
 	 * @param array $fields The fields sent by the EEM object.
124 124
 	 * @return void
125 125
 	 */
126
-	public function __construct( $fields, $context ) {
126
+	public function __construct($fields, $context) {
127 127
 		//check that _m_name and _mt_name have been set by child class otherwise we get out.
128
-		if ( empty($this->_m_name ) || empty( $this->_mt_name) )
129
-			throw new EE_Error( __('EE_Messages_Validator child classes MUST set the $_m_name and $_mt_name property.  Check that the child class is doing this', 'event_espresso') );
128
+		if (empty($this->_m_name) || empty($this->_mt_name))
129
+			throw new EE_Error(__('EE_Messages_Validator child classes MUST set the $_m_name and $_mt_name property.  Check that the child class is doing this', 'event_espresso'));
130 130
 
131 131
 		$this->_fields = $fields;
132 132
 		$this->_context = $context;
@@ -162,27 +162,27 @@  discard block
 block discarded – undo
162 162
 	 */
163 163
 	private function _load_objects() {
164 164
 		//load messenger
165
-		$messenger = ucwords( str_replace( '_', ' ', $this->_m_name ) );
166
-		$messenger = str_replace( ' ', '_', $messenger );
167
-		$messenger = 'EE_' . $messenger . '_messenger';
165
+		$messenger = ucwords(str_replace('_', ' ', $this->_m_name));
166
+		$messenger = str_replace(' ', '_', $messenger);
167
+		$messenger = 'EE_'.$messenger.'_messenger';
168 168
 
169
-		if ( !class_exists( $messenger ) ) {
170
-			$msg = sprintf( __('There is no messenger class for the given string (%s)', 'event_espresso'), $this->_m_name );
169
+		if ( ! class_exists($messenger)) {
170
+			$msg = sprintf(__('There is no messenger class for the given string (%s)', 'event_espresso'), $this->_m_name);
171 171
 		}
172 172
 
173
-		$a = new ReflectionClass( $messenger );
173
+		$a = new ReflectionClass($messenger);
174 174
 		$this->_MSGR = $a->newInstance();
175 175
 
176 176
 		//load message type
177
-		$message_type = ucwords( str_replace( '_', ' ', $this->_mt_name ) );
178
-		$message_type = str_replace( ' ', '_', $message_type );
179
-		$message_type = 'EE_' . $message_type . '_message_type';
177
+		$message_type = ucwords(str_replace('_', ' ', $this->_mt_name));
178
+		$message_type = str_replace(' ', '_', $message_type);
179
+		$message_type = 'EE_'.$message_type.'_message_type';
180 180
 
181
-		if ( !class_exists( $message_type ) ) {
182
-			$msg = sprintf( __('There is no message type class for the given string (%s)', 'event_espresso'), $this->_mt_name );
181
+		if ( ! class_exists($message_type)) {
182
+			$msg = sprintf(__('There is no message type class for the given string (%s)', 'event_espresso'), $this->_mt_name);
183 183
 		}
184 184
 
185
-		$a = new ReflectionClass( $message_type );
185
+		$a = new ReflectionClass($message_type);
186 186
 		$this->_MSGTYP = $a->newInstance();
187 187
 
188 188
 	}
@@ -212,11 +212,11 @@  discard block
 block discarded – undo
212 212
 		$shrtcode_grps = $mt_codes;
213 213
 		$groups_per_field = array();
214 214
 
215
-		foreach ( $msgr_validator as $field => $config ) {
216
-			if ( empty($config) || !isset($config['shortcodes']) )
217
-				continue;  //Nothing to see here.
218
-			$groups_per_field[$field] = array_intersect( $config['shortcodes'], $mt_codes );
219
-			$shrtcode_grps = array_merge( $config['shortcodes'], $shrtcode_grps );
215
+		foreach ($msgr_validator as $field => $config) {
216
+			if (empty($config) || ! isset($config['shortcodes']))
217
+				continue; //Nothing to see here.
218
+			$groups_per_field[$field] = array_intersect($config['shortcodes'], $mt_codes);
219
+			$shrtcode_grps = array_merge($config['shortcodes'], $shrtcode_grps);
220 220
 		}
221 221
 
222 222
 		$shrtcode_grps = array_unique($shrtcode_grps);
@@ -224,12 +224,12 @@  discard block
 block discarded – undo
224 224
 		//okay now we've got our grps. Let's get the codes from the objects into an array indexed by group for easy retrieval later.
225 225
 		$codes_from_objs = array();
226 226
 
227
-		foreach ( $shrtcode_grps as $group ) {
228
-			$ref = ucwords( str_replace('_', ' ', $group ) );
229
-			$ref = str_replace( ' ', '_', $ref );
230
-			$classname = 'EE_' . $ref . '_Shortcodes';
231
-			if ( class_exists( $classname ) ) {
232
-				$a = new ReflectionClass( $classname );
227
+		foreach ($shrtcode_grps as $group) {
228
+			$ref = ucwords(str_replace('_', ' ', $group));
229
+			$ref = str_replace(' ', '_', $ref);
230
+			$classname = 'EE_'.$ref.'_Shortcodes';
231
+			if (class_exists($classname)) {
232
+				$a = new ReflectionClass($classname);
233 233
 				$obj = $a->newInstance();
234 234
 				$codes_from_objs[$group] = $obj->get_shortcodes();
235 235
 			}
@@ -238,58 +238,58 @@  discard block
 block discarded – undo
238 238
 
239 239
 		//let's just replace the $mt shortcode group indexes with the actual shortcodes (unique)
240 240
 		$final_mt_codes = array();
241
-		foreach ( $mt_codes as $group ) {
242
-			$final_mt_codes = array_merge( $final_mt_codes, $codes_from_objs[$group] );
241
+		foreach ($mt_codes as $group) {
242
+			$final_mt_codes = array_merge($final_mt_codes, $codes_from_objs[$group]);
243 243
 		}
244 244
 
245 245
 		$mt_codes = $final_mt_codes;
246 246
 
247 247
 
248 248
 		//k now in this next loop we're going to loop through $msgr_validator again and setup the _validators property from the data we've setup so far.
249
-		foreach ( $msgr_validator as $field => $config ) {
249
+		foreach ($msgr_validator as $field => $config) {
250 250
 			//if required shortcode is not in our list of codes for the given field, then we skip this field.
251 251
 			$required = isset($config['required']) ? array_intersect($config['required'], array_keys($mt_codes)) : true;
252
-			if ( empty($required) )
252
+			if (empty($required))
253 253
 				continue;
254 254
 
255 255
 			//If we have an override then we use it to indicate the codes we want.
256
-			if ( isset( $this->_valid_shortcodes_modifier[$context][$field] ) ) {
257
-				$this->_validators[$field]['shortcodes'] = $this->_reassemble_valid_shortcodes_from_group( $this->_valid_shortcodes_modifier[$context][$field], $codes_from_objs );
256
+			if (isset($this->_valid_shortcodes_modifier[$context][$field])) {
257
+				$this->_validators[$field]['shortcodes'] = $this->_reassemble_valid_shortcodes_from_group($this->_valid_shortcodes_modifier[$context][$field], $codes_from_objs);
258 258
 			}
259 259
 
260 260
 			//if we have specific shortcodes for a field then we need to use them
261
-			else if ( isset( $groups_per_field[$field] ) ) {
262
-				$this->_validators[$field]['shortcodes'] = $this->_reassemble_valid_shortcodes_from_group($groups_per_field[$field], $codes_from_objs );
261
+			else if (isset($groups_per_field[$field])) {
262
+				$this->_validators[$field]['shortcodes'] = $this->_reassemble_valid_shortcodes_from_group($groups_per_field[$field], $codes_from_objs);
263 263
 			}
264 264
 
265 265
 			//if empty config then we're assuming we're just going to use the shortcodes from the message type context
266
-			else if ( empty( $config ) ) {
266
+			else if (empty($config)) {
267 267
 				$this->_validators[$field]['shortcodes'] = $mt_codes;
268 268
 			}
269 269
 
270 270
 			//if we have specific shortcodes then we need to use them
271
-			else if ( isset($config['specific_shortcodes'] ) ) {
271
+			else if (isset($config['specific_shortcodes'])) {
272 272
 				$this->_validators[$field]['shortcodes'] = $config['specific_shortcodes'];
273 273
 			}
274 274
 
275 275
 			//otherwise the shortcodes are what is set by the messenger for that field
276 276
 			else {
277
-				foreach ( $config['shortcodes'] as $group ) {
278
-					$this->_validators[$field]['shortcodes'] = isset($this->_validators[$field]['shortcodes']) ? array_merge( $this->_validators[$field]['shortcodes'], $codes_from_objs[$group] ) : $codes_from_objs[$group];
277
+				foreach ($config['shortcodes'] as $group) {
278
+					$this->_validators[$field]['shortcodes'] = isset($this->_validators[$field]['shortcodes']) ? array_merge($this->_validators[$field]['shortcodes'], $codes_from_objs[$group]) : $codes_from_objs[$group];
279 279
 				}
280 280
 			}
281 281
 
282 282
 			//now let's just make sure that any excluded specific shortcodes are removed.
283 283
 			$specific_excludes = $this->get_specific_shortcode_excludes();
284
-			if ( isset( $specific_excludes[$field] ) ) {
285
-				foreach( $specific_excludes[$field] as $sex ) {
286
-					if ( isset( $this->_validators[$field]['shortcodes'][$sex] ) )
287
-						unset( $this->_validators[$field]['shortcodes'][$sex] );
284
+			if (isset($specific_excludes[$field])) {
285
+				foreach ($specific_excludes[$field] as $sex) {
286
+					if (isset($this->_validators[$field]['shortcodes'][$sex]))
287
+						unset($this->_validators[$field]['shortcodes'][$sex]);
288 288
 				}
289 289
 			}
290 290
 
291 291
 			//hey! don't forget to include the type if present!
292
-			$this->_validators[$field]['type'] = isset( $config['type'] ) ? $config['type'] : NULL;
292
+			$this->_validators[$field]['type'] = isset($config['type']) ? $config['type'] : NULL;
293 293
 		}
294 294
 	}
295 295
 
@@ -315,9 +315,9 @@  discard block
 block discarded – undo
315 315
 	 */
316 316
 	public function get_specific_shortcode_excludes() {
317 317
 		//specific validator filter
318
-		$shortcode_excludes = apply_filters( 'FHEE__' . get_class( $this ) . '__get_specific_shortcode_excludes;', $this->_specific_shortcode_excludes, $this->_context );
318
+		$shortcode_excludes = apply_filters('FHEE__'.get_class($this).'__get_specific_shortcode_excludes;', $this->_specific_shortcode_excludes, $this->_context);
319 319
 		//global filter
320
-		return apply_filters( 'FHEE__EE_Messages_Validator__get_specific_shortcode_excludes', $shortcode_excludes, $this->_context, $this );
320
+		return apply_filters('FHEE__EE_Messages_Validator__get_specific_shortcode_excludes', $shortcode_excludes, $this->_context, $this);
321 321
 	}
322 322
 
323 323
 
@@ -335,63 +335,63 @@  discard block
 block discarded – undo
335 335
 		$invalid_shortcodes = '';
336 336
 		$template_fields = $this->_MSGR->get_template_fields();
337 337
 		//loop through the fields and check!
338
-		foreach ( $this->_fields as $field => $value ) {
338
+		foreach ($this->_fields as $field => $value) {
339 339
 			$this->_errors[$field] = array();
340 340
 			$err_msg = '';
341 341
 			$field_label = '';
342 342
 
343 343
 			//if field is not present in the _validators array then we continue
344
-			if ( !isset( $this->_validators[$field] ) ) {
345
-				unset( $this->_errors[$field] );
344
+			if ( ! isset($this->_validators[$field])) {
345
+				unset($this->_errors[$field]);
346 346
 				continue;
347 347
 			}
348 348
 
349 349
 			//get the translated field label!
350 350
 			//first check if it's in the main fields list
351
-			if ( isset( $template_fields[$field] ) ) {
352
-				if ( empty( $template_fields[$field] ) )
351
+			if (isset($template_fields[$field])) {
352
+				if (empty($template_fields[$field]))
353 353
 					$field_label = $field; //most likely the field is found in the 'extra' array.
354 354
 				else
355 355
 					$field_label = $template_fields[$field]['label'];
356 356
 			}
357 357
 
358 358
 			//if field label is empty OR is equal to the current field then we need to loop through the 'extra' fields in the template_fields config (if present)
359
-			if ( isset( $template_fields['extra'] ) && ( empty($field_label) ) || $field_label == $field ) {
360
-				foreach( $template_fields['extra'] as $main_field => $secondary_field ) {
361
-					foreach ( $secondary_field as $name => $values ) {
362
-						if ( $name == $field ) {
359
+			if (isset($template_fields['extra']) && (empty($field_label)) || $field_label == $field) {
360
+				foreach ($template_fields['extra'] as $main_field => $secondary_field) {
361
+					foreach ($secondary_field as $name => $values) {
362
+						if ($name == $field) {
363 363
 							$field_label = $values['label'];
364 364
 						}
365 365
 
366 366
 						//if we've got a 'main' secondary field, let's see if that matches what field we're on which means it contains the label for this field.
367
-						if ( $name == 'main' && $main_field == $field_label )
367
+						if ($name == 'main' && $main_field == $field_label)
368 368
 							$field_label = $values['label'];
369 369
 					}
370 370
 				}
371 371
 			}
372 372
 
373 373
 			//field is present. Let's validate shortcodes first (but only if shortcodes present).
374
-			if ( isset( $this->_validators[$field]['shortcodes'] ) && !empty( $this->_validators[$field]['shortcodes'] ) ) {
375
-				$invalid_shortcodes = $this->_invalid_shortcodes( $value, $this->_validators[$field]['shortcodes'] );
374
+			if (isset($this->_validators[$field]['shortcodes']) && ! empty($this->_validators[$field]['shortcodes'])) {
375
+				$invalid_shortcodes = $this->_invalid_shortcodes($value, $this->_validators[$field]['shortcodes']);
376 376
 				//if true then that means there is a returned error message that we'll need to add to the _errors array for this field.
377
-				if ( $invalid_shortcodes ) {
377
+				if ($invalid_shortcodes) {
378 378
 					$v_s = array_keys($this->_validators[$field]['shortcodes']);
379
-					$err_msg = sprintf( __('<p>The following shortcodes were found in the "%s" field that ARE not valid: %s</p>', 'event_espresso'), '<strong>' . $field_label . '</strong>', $invalid_shortcodes );
380
-					$err_msg .= sprintf( __('<p>Valid shortcodes for this field are: %s', 'event_espresso'), implode(', ', $v_s ) );
379
+					$err_msg = sprintf(__('<p>The following shortcodes were found in the "%s" field that ARE not valid: %s</p>', 'event_espresso'), '<strong>'.$field_label.'</strong>', $invalid_shortcodes);
380
+					$err_msg .= sprintf(__('<p>Valid shortcodes for this field are: %s', 'event_espresso'), implode(', ', $v_s));
381 381
 				}
382 382
 			}
383 383
 
384 384
 			//if there's a "type" to be validated then let's do that too.
385
-			if ( isset( $this->_validators[$field]['type'] ) && !empty( $this->_validators[$field]['type'] ) ) {
386
-				switch ( $this->_validators[$field]['type'] ) {
385
+			if (isset($this->_validators[$field]['type']) && ! empty($this->_validators[$field]['type'])) {
386
+				switch ($this->_validators[$field]['type']) {
387 387
 					case 'number' :
388
-						if ( !is_numeric($value) )
389
-							$err_msg .= sprintf( __('<p>The %s field is supposed to be a number. The value given (%s)  is not.  Please doublecheck and make sure the field contains a number</p>', 'event_espresso'), $field_label, $value );
388
+						if ( ! is_numeric($value))
389
+							$err_msg .= sprintf(__('<p>The %s field is supposed to be a number. The value given (%s)  is not.  Please doublecheck and make sure the field contains a number</p>', 'event_espresso'), $field_label, $value);
390 390
 						break;
391 391
 					case 'email' :
392 392
 						$valid_email = $this->_validate_email($value);
393
-						if ( !$valid_email )
394
-							$err_msg .= htmlentities( sprintf( __('The %s field has at least one string that is not a valid email address record.  Valid emails are in the format: "Name <[email protected]>" or "[email protected]" and multiple emails can be separated by a comma.'), $field_label ) );
393
+						if ( ! $valid_email)
394
+							$err_msg .= htmlentities(sprintf(__('The %s field has at least one string that is not a valid email address record.  Valid emails are in the format: "Name <[email protected]>" or "[email protected]" and multiple emails can be separated by a comma.'), $field_label));
395 395
 						break;
396 396
 					default :
397 397
 						break;
@@ -399,22 +399,22 @@  discard block
 block discarded – undo
399 399
 			}
400 400
 
401 401
 			//if $err_msg isn't empty let's setup the _errors array for this field.
402
-			if ( !empty($err_msg ) ) {
402
+			if ( ! empty($err_msg)) {
403 403
 				$this->_errors[$field]['msg'] = $err_msg;
404 404
 			} else {
405
-				unset( $this->_errors[$field] );
405
+				unset($this->_errors[$field]);
406 406
 			}
407 407
 		}
408 408
 
409 409
 		//if we have ANY errors, then we want to make sure we return the values for ALL the fields so the user doesn't have to retype them all.
410
-		if ( !empty( $this->_errors ) ) {
411
-			foreach ( $this->_fields as $field => $value ) {
410
+		if ( ! empty($this->_errors)) {
411
+			foreach ($this->_fields as $field => $value) {
412 412
 				$this->_errors[$field]['value'] = stripslashes($value);
413 413
 			}
414 414
 		}
415 415
 
416 416
 		//return any errors or just TRUE if everything validates
417
-		return empty( $this->_errors ) ? TRUE : $this->_errors;
417
+		return empty($this->_errors) ? TRUE : $this->_errors;
418 418
 	}
419 419
 
420 420
 
@@ -425,10 +425,10 @@  discard block
 block discarded – undo
425 425
 	 * @param  array  $codes_from_objs All the codes available.
426 426
 	 * @return array                   an array of actual shortcodes (that will be used for validation).
427 427
 	 */
428
-	private function _reassemble_valid_shortcodes_from_group( $groups, $codes_from_objs ) {
428
+	private function _reassemble_valid_shortcodes_from_group($groups, $codes_from_objs) {
429 429
 		$shortcodes = array();
430
-		foreach ( $groups as $group ) {
431
-			$shortcodes = array_merge( $shortcodes, $codes_from_objs[$group] );
430
+		foreach ($groups as $group) {
431
+			$shortcodes = array_merge($shortcodes, $codes_from_objs[$group]);
432 432
 		}
433 433
 		return $shortcodes;
434 434
 	}
@@ -446,29 +446,29 @@  discard block
 block discarded – undo
446 446
 	 */
447 447
 	protected function _invalid_shortcodes($value, $valid_shortcodes) {
448 448
 		//first we need to go through the string and get the shortcodes in the string
449
-		$sc = preg_match_all( '/(\[.+?\])/', $value, $matches );
449
+		$sc = preg_match_all('/(\[.+?\])/', $value, $matches);
450 450
 		$incoming_shortcodes = (array) $matches[0];
451 451
 
452 452
 		//get a diff of the shortcodes in the string vs the valid shortcodes
453
-		$diff = array_diff( $incoming_shortcodes, array_keys($valid_shortcodes) );
453
+		$diff = array_diff($incoming_shortcodes, array_keys($valid_shortcodes));
454 454
 
455 455
 		//we need to account for custom codes so let's loop through the diff and remove any of those type of codes
456
-		foreach ( $diff as $ind => $code ) {
457
-			if ( preg_match('/(\[[A-Za-z0-9\_]+_\*)/', $code ) ) {
456
+		foreach ($diff as $ind => $code) {
457
+			if (preg_match('/(\[[A-Za-z0-9\_]+_\*)/', $code)) {
458 458
 				//strip the shortcode so we just have the BASE string (i.e. [ANSWER_*] )
459 459
 				$dynamic_sc = preg_replace('/(_\*+.+)/', '_*]', $code);
460 460
 				//does this exist in the $valid_shortcodes?  If so then unset.
461
-				if ( isset( $valid_shortcodes[$dynamic_sc] ) ) {
462
-					unset( $diff[$ind] );
461
+				if (isset($valid_shortcodes[$dynamic_sc])) {
462
+					unset($diff[$ind]);
463 463
 				}
464 464
 			}
465 465
 		}
466 466
 
467
-		if ( empty( $diff ) ) return FALSE; //there is no diff, we have no invalid shortcodes, so return
467
+		if (empty($diff)) return FALSE; //there is no diff, we have no invalid shortcodes, so return
468 468
 
469 469
 		//made it here? then let's assemble the error message
470
-		$invalid_shortcodes = implode( '</strong>,<strong>', $diff );
471
-		$invalid_shortcodes = '<strong>' . $invalid_shortcodes . '</strong>';
470
+		$invalid_shortcodes = implode('</strong>,<strong>', $diff);
471
+		$invalid_shortcodes = '<strong>'.$invalid_shortcodes.'</strong>';
472 472
 		return $invalid_shortcodes;
473 473
 	}
474 474
 
@@ -480,13 +480,13 @@  discard block
 block discarded – undo
480 480
 	 * @param  string $value incoming value to validate
481 481
 	 * @return bool        true if the string validates, false if it doesn't
482 482
 	 */
483
-	protected function _validate_email( $value ) {
483
+	protected function _validate_email($value) {
484 484
 		$validate = TRUE;
485 485
 		$fail = FALSE;
486 486
 		$or_val = $value;
487 487
 
488 488
 		//empty strings will validate because this is how a message template for a particula context can be "turned off" (if there is no email then no message)
489
-		if ( empty( $value ) )
489
+		if (empty($value))
490 490
 			return $validate;
491 491
 
492 492
 		//first determine if there ARE any shortcodes.  If there are shortcodes and then later we find that there were no other valid emails but the field isn't empty... that means we've got extra commas that were left after stripping out shortcodes so probably still valid.
@@ -498,19 +498,19 @@  discard block
 block discarded – undo
498 498
 		//if original value is not empty and new value is, then we've parsed out a shortcode and we now have an empty string which DOES validate. We also validate complete empty field for email because its possible that this message is being "turned off" for a particular context
499 499
 
500 500
 
501
-		if ( !empty($or_val) && empty($value) )
501
+		if ( ! empty($or_val) && empty($value))
502 502
 			return $validate;
503 503
 
504 504
 		//trim any commas from beginning and end of string ( after whitespace trimmed );
505
-		$value = trim( trim($value), ',' );
505
+		$value = trim(trim($value), ',');
506 506
 
507 507
 
508 508
 		//next we need to split up the string if its comma delimited.
509 509
 		$emails = explode(',', $value);
510 510
 		$empty = FALSE; //used to indicate that there is an empty comma.
511 511
 		//now let's loop through the emails and do our checks
512
-		foreach ( $emails as $email ) {
513
-			if ( empty($email) ) {
512
+		foreach ($emails as $email) {
513
+			if (empty($email)) {
514 514
 				$empty = TRUE;
515 515
 				continue;
516 516
 			}
@@ -518,20 +518,20 @@  discard block
 block discarded – undo
518 518
 			//trim whitespace
519 519
 			$email = trim($email);
520 520
 			//either its of type "[email protected]", or its of type "fname lname <[email protected]>"
521
-			if(is_email($email)){
521
+			if (is_email($email)) {
522 522
 				continue;
523
-			}else{
523
+			} else {
524 524
 				$matches = array();
525
-				$validate = preg_match( '/(.*)<(.+)>/', $email, $matches ) ? TRUE : FALSE;
526
-				if( $validate && is_email($matches[2])){
525
+				$validate = preg_match('/(.*)<(.+)>/', $email, $matches) ? TRUE : FALSE;
526
+				if ($validate && is_email($matches[2])) {
527 527
 					continue;
528
-				}else{
528
+				} else {
529 529
 					return false;
530 530
 				}
531 531
 			}
532 532
 		}
533 533
 
534
-		$validate = $empty && !$has_shortcodes ? FALSE : $validate;
534
+		$validate = $empty && ! $has_shortcodes ? FALSE : $validate;
535 535
 
536 536
 		return $validate;
537 537
 
Please login to merge, or discard this patch.
Braces   +43 added lines, -26 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
@@ -125,8 +126,9 @@  discard block
 block discarded – undo
125 126
 	 */
126 127
 	public function __construct( $fields, $context ) {
127 128
 		//check that _m_name and _mt_name have been set by child class otherwise we get out.
128
-		if ( empty($this->_m_name ) || empty( $this->_mt_name) )
129
-			throw new EE_Error( __('EE_Messages_Validator child classes MUST set the $_m_name and $_mt_name property.  Check that the child class is doing this', 'event_espresso') );
129
+		if ( empty($this->_m_name ) || empty( $this->_mt_name) ) {
130
+					throw new EE_Error( __('EE_Messages_Validator child classes MUST set the $_m_name and $_mt_name property.  Check that the child class is doing this', 'event_espresso') );
131
+		}
130 132
 
131 133
 		$this->_fields = $fields;
132 134
 		$this->_context = $context;
@@ -213,8 +215,10 @@  discard block
 block discarded – undo
213 215
 		$groups_per_field = array();
214 216
 
215 217
 		foreach ( $msgr_validator as $field => $config ) {
216
-			if ( empty($config) || !isset($config['shortcodes']) )
217
-				continue;  //Nothing to see here.
218
+			if ( empty($config) || !isset($config['shortcodes']) ) {
219
+							continue;
220
+			}
221
+			//Nothing to see here.
218 222
 			$groups_per_field[$field] = array_intersect( $config['shortcodes'], $mt_codes );
219 223
 			$shrtcode_grps = array_merge( $config['shortcodes'], $shrtcode_grps );
220 224
 		}
@@ -249,8 +253,9 @@  discard block
 block discarded – undo
249 253
 		foreach ( $msgr_validator as $field => $config ) {
250 254
 			//if required shortcode is not in our list of codes for the given field, then we skip this field.
251 255
 			$required = isset($config['required']) ? array_intersect($config['required'], array_keys($mt_codes)) : true;
252
-			if ( empty($required) )
253
-				continue;
256
+			if ( empty($required) ) {
257
+							continue;
258
+			}
254 259
 
255 260
 			//If we have an override then we use it to indicate the codes we want.
256 261
 			if ( isset( $this->_valid_shortcodes_modifier[$context][$field] ) ) {
@@ -283,8 +288,9 @@  discard block
 block discarded – undo
283 288
 			$specific_excludes = $this->get_specific_shortcode_excludes();
284 289
 			if ( isset( $specific_excludes[$field] ) ) {
285 290
 				foreach( $specific_excludes[$field] as $sex ) {
286
-					if ( isset( $this->_validators[$field]['shortcodes'][$sex] ) )
287
-						unset( $this->_validators[$field]['shortcodes'][$sex] );
291
+					if ( isset( $this->_validators[$field]['shortcodes'][$sex] ) ) {
292
+											unset( $this->_validators[$field]['shortcodes'][$sex] );
293
+					}
288 294
 				}
289 295
 			}
290 296
 
@@ -349,10 +355,13 @@  discard block
 block discarded – undo
349 355
 			//get the translated field label!
350 356
 			//first check if it's in the main fields list
351 357
 			if ( isset( $template_fields[$field] ) ) {
352
-				if ( empty( $template_fields[$field] ) )
353
-					$field_label = $field; //most likely the field is found in the 'extra' array.
354
-				else
355
-					$field_label = $template_fields[$field]['label'];
358
+				if ( empty( $template_fields[$field] ) ) {
359
+									$field_label = $field;
360
+				}
361
+				//most likely the field is found in the 'extra' array.
362
+				else {
363
+									$field_label = $template_fields[$field]['label'];
364
+				}
356 365
 			}
357 366
 
358 367
 			//if field label is empty OR is equal to the current field then we need to loop through the 'extra' fields in the template_fields config (if present)
@@ -364,8 +373,9 @@  discard block
 block discarded – undo
364 373
 						}
365 374
 
366 375
 						//if we've got a 'main' secondary field, let's see if that matches what field we're on which means it contains the label for this field.
367
-						if ( $name == 'main' && $main_field == $field_label )
368
-							$field_label = $values['label'];
376
+						if ( $name == 'main' && $main_field == $field_label ) {
377
+													$field_label = $values['label'];
378
+						}
369 379
 					}
370 380
 				}
371 381
 			}
@@ -385,13 +395,15 @@  discard block
 block discarded – undo
385 395
 			if ( isset( $this->_validators[$field]['type'] ) && !empty( $this->_validators[$field]['type'] ) ) {
386 396
 				switch ( $this->_validators[$field]['type'] ) {
387 397
 					case 'number' :
388
-						if ( !is_numeric($value) )
389
-							$err_msg .= sprintf( __('<p>The %s field is supposed to be a number. The value given (%s)  is not.  Please doublecheck and make sure the field contains a number</p>', 'event_espresso'), $field_label, $value );
398
+						if ( !is_numeric($value) ) {
399
+													$err_msg .= sprintf( __('<p>The %s field is supposed to be a number. The value given (%s)  is not.  Please doublecheck and make sure the field contains a number</p>', 'event_espresso'), $field_label, $value );
400
+						}
390 401
 						break;
391 402
 					case 'email' :
392 403
 						$valid_email = $this->_validate_email($value);
393
-						if ( !$valid_email )
394
-							$err_msg .= htmlentities( sprintf( __('The %s field has at least one string that is not a valid email address record.  Valid emails are in the format: "Name <[email protected]>" or "[email protected]" and multiple emails can be separated by a comma.'), $field_label ) );
404
+						if ( !$valid_email ) {
405
+													$err_msg .= htmlentities( sprintf( __('The %s field has at least one string that is not a valid email address record.  Valid emails are in the format: "Name <[email protected]>" or "[email protected]" and multiple emails can be separated by a comma.'), $field_label ) );
406
+						}
395 407
 						break;
396 408
 					default :
397 409
 						break;
@@ -464,7 +476,10 @@  discard block
 block discarded – undo
464 476
 			}
465 477
 		}
466 478
 
467
-		if ( empty( $diff ) ) return FALSE; //there is no diff, we have no invalid shortcodes, so return
479
+		if ( empty( $diff ) ) {
480
+			return FALSE;
481
+		}
482
+		//there is no diff, we have no invalid shortcodes, so return
468 483
 
469 484
 		//made it here? then let's assemble the error message
470 485
 		$invalid_shortcodes = implode( '</strong>,<strong>', $diff );
@@ -486,8 +501,9 @@  discard block
 block discarded – undo
486 501
 		$or_val = $value;
487 502
 
488 503
 		//empty strings will validate because this is how a message template for a particula context can be "turned off" (if there is no email then no message)
489
-		if ( empty( $value ) )
490
-			return $validate;
504
+		if ( empty( $value ) ) {
505
+					return $validate;
506
+		}
491 507
 
492 508
 		//first determine if there ARE any shortcodes.  If there are shortcodes and then later we find that there were no other valid emails but the field isn't empty... that means we've got extra commas that were left after stripping out shortcodes so probably still valid.
493 509
 		$has_shortcodes = preg_match('/(\[.+?\])/', $value);
@@ -498,8 +514,9 @@  discard block
 block discarded – undo
498 514
 		//if original value is not empty and new value is, then we've parsed out a shortcode and we now have an empty string which DOES validate. We also validate complete empty field for email because its possible that this message is being "turned off" for a particular context
499 515
 
500 516
 
501
-		if ( !empty($or_val) && empty($value) )
502
-			return $validate;
517
+		if ( !empty($or_val) && empty($value) ) {
518
+					return $validate;
519
+		}
503 520
 
504 521
 		//trim any commas from beginning and end of string ( after whitespace trimmed );
505 522
 		$value = trim( trim($value), ',' );
@@ -520,12 +537,12 @@  discard block
 block discarded – undo
520 537
 			//either its of type "[email protected]", or its of type "fname lname <[email protected]>"
521 538
 			if(is_email($email)){
522 539
 				continue;
523
-			}else{
540
+			} else{
524 541
 				$matches = array();
525 542
 				$validate = preg_match( '/(.*)<(.+)>/', $email, $matches ) ? TRUE : FALSE;
526 543
 				if( $validate && is_email($matches[2])){
527 544
 					continue;
528
-				}else{
545
+				} else{
529 546
 					return false;
530 547
 				}
531 548
 			}
Please login to merge, or discard this patch.
core/libraries/payment_methods/EE_Gateway.lib.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -208,7 +208,7 @@
 block discarded – undo
208 208
 
209 209
 	/**
210 210
 	 * @param $message
211
-	 * @param $payment
211
+	 * @param EEI_Payment $payment
212 212
 	 */
213 213
 	public function log($message,$payment){
214 214
 		if($payment instanceof EEI_Payment){
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -214,7 +214,7 @@
 block discarded – undo
214 214
 		if($payment instanceof EEI_Payment){
215 215
 			$type='Payment';
216 216
 			$id = $payment->ID();
217
-		}else{
217
+		} else{
218 218
 			$type = 'Payment_Method';
219 219
 			$id = $this->_ID;
220 220
 		}
Please login to merge, or discard this patch.
Spacing   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
  * needed helpers and models (see all the methods starting with "set_", eg seg_line_item_helper which should be passed an object
31 31
  * which implements EEHI_Line_Item_Helper; etc).
32 32
  */
33
-abstract class EE_Gateway{
33
+abstract class EE_Gateway {
34 34
 	/**
35 35
 	 * a constant used as a possible value for $_currencies_supported to indicate
36 36
 	 * that ALL currencies are supported by this gateway
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
 	/**
109 109
 	 * @return EE_Gateway
110 110
 	 */
111
-	public function __construct(){
111
+	public function __construct() {
112 112
 	}
113 113
 
114 114
 	/**
@@ -120,10 +120,10 @@  discard block
 block discarded – undo
120 120
 	 * beginning again)
121 121
 	 * @return array
122 122
 	 */
123
-	public function __sleep(){
123
+	public function __sleep() {
124 124
 		$properties = get_object_vars($this);
125
-		unset( $properties[ '_pay_model' ] );
126
-		unset( $properties[ '_pay_log' ] );
125
+		unset($properties['_pay_model']);
126
+		unset($properties['_pay_log']);
127 127
 		return array_keys($properties);
128 128
 	}
129 129
 	/**
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
 	 * see $_supports_sending_refunds
132 132
 	 * @return boolean
133 133
 	 */
134
-	public function supports_sending_refunds(){
134
+	public function supports_sending_refunds() {
135 135
 		return $this->_supports_sending_refunds;
136 136
 	}
137 137
 	/**
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
 	 * see $_supports_receiving_refunds
140 140
 	 * @return boolean
141 141
 	 */
142
-	public function supports_receiving_refunds(){
142
+	public function supports_receiving_refunds() {
143 143
 		return $this->_supports_receiving_refunds;
144 144
 	}
145 145
 
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
 	 * @return EE_Payment for the refund
153 153
 	 * @throws EE_Error
154 154
 	 */
155
-	public function do_direct_refund($payment,$refund_info = null){
155
+	public function do_direct_refund($payment, $refund_info = null) {
156 156
 		return NULL;
157 157
 	}
158 158
 	/**
@@ -160,8 +160,8 @@  discard block
 block discarded – undo
160 160
 	 * etc
161 161
 	 * @param array $settings_array
162 162
 	 */
163
-	public function set_settings($settings_array){
164
-		foreach($settings_array as $name => $value){
163
+	public function set_settings($settings_array) {
164
+		foreach ($settings_array as $name => $value) {
165 165
 			$property_name = "_".$name;
166 166
 			$this->$property_name = $value;
167 167
 		}
@@ -170,14 +170,14 @@  discard block
 block discarded – undo
170 170
 	 * See this class description
171 171
 	 * @param EEMI_Payment $payment_model
172 172
 	 */
173
-	public function set_payment_model($payment_model){
173
+	public function set_payment_model($payment_model) {
174 174
 		$this->_pay_model = $payment_model;
175 175
 	}
176 176
 	/**
177 177
 	 * See this class description
178 178
 	 * @param EEMI_Payment_Log $payment_log_model
179 179
 	 */
180
-	public function set_payment_log($payment_log_model){
180
+	public function set_payment_log($payment_log_model) {
181 181
 		$this->_pay_log = $payment_log_model;
182 182
 	}
183 183
 
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
 	 * See this class description
186 186
 	 * @param EEHI_Template $template_helper
187 187
 	 */
188
-	public function set_template_helper($template_helper){
188
+	public function set_template_helper($template_helper) {
189 189
 		$this->_template = $template_helper;
190 190
 	}
191 191
 
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
 	 * See this class description
194 194
 	 * @param EEHI_Line_Item $line_item_helper
195 195
 	 */
196
-	public function set_line_item_helper( $line_item_helper ){
196
+	public function set_line_item_helper($line_item_helper) {
197 197
 		$this->_line_item = $line_item_helper;
198 198
 	}
199 199
 
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
 	 * See this class description
202 202
 	 * @param EEHI_Money $money_helper
203 203
 	 */
204
-	public function set_money_helper( $money_helper ){
204
+	public function set_money_helper($money_helper) {
205 205
 		$this->_money = $money_helper;
206 206
 	}
207 207
 
@@ -210,23 +210,23 @@  discard block
 block discarded – undo
210 210
 	 * @param $message
211 211
 	 * @param $payment
212 212
 	 */
213
-	public function log($message,$payment){
214
-		if($payment instanceof EEI_Payment){
215
-			$type='Payment';
213
+	public function log($message, $payment) {
214
+		if ($payment instanceof EEI_Payment) {
215
+			$type = 'Payment';
216 216
 			$id = $payment->ID();
217
-		}else{
217
+		} else {
218 218
 			$type = 'Payment_Method';
219 219
 			$id = $this->_ID;
220 220
 		}
221
-		$this->_pay_log->gateway_log($message,$id,$type);
221
+		$this->_pay_log->gateway_log($message, $id, $type);
222 222
 	}
223 223
 	/**
224 224
 	 * Formats the amount so it can generally be sent to gateways
225 225
 	 * @param float $amount
226 226
 	 * @return string
227 227
 	 */
228
-	public function format_currency($amount){
229
-		return number_format( $amount, 2, '.', '' );
228
+	public function format_currency($amount) {
229
+		return number_format($amount, 2, '.', '');
230 230
 //		return $this->_template->format_currency($amount, true);
231 231
 	}
232 232
 
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
 	 * or a string indicating they're all supported (EE_gateway::all_currencies_supported)
236 236
 	 * @return mixed array or string
237 237
 	 */
238
-	public function currencies_supported(){
238
+	public function currencies_supported() {
239 239
 		return $this->_currencies_supported;
240 240
 	}
241 241
 
@@ -247,14 +247,14 @@  discard block
 block discarded – undo
247 247
 	 * @param EE_Transaction  $transaction
248 248
 	 * @return float
249 249
 	 */
250
-	protected function _sum_items_and_taxes( EE_Transaction  $transaction){
250
+	protected function _sum_items_and_taxes(EE_Transaction  $transaction) {
251 251
 		$total_line_item = $transaction->total_line_item();
252 252
 		$total = 0;
253
-		foreach($total_line_item->get_items() as $item_line_item ){
254
-			$total += max( $item_line_item->total(), 0 );
253
+		foreach ($total_line_item->get_items() as $item_line_item) {
254
+			$total += max($item_line_item->total(), 0);
255 255
 		}
256
-		foreach($total_line_item->tax_descendants() as $tax_line_item ){
257
-			$total += max( $tax_line_item->total(), 0 );
256
+		foreach ($total_line_item->tax_descendants() as $tax_line_item) {
257
+			$total += max($tax_line_item->total(), 0);
258 258
 		}
259 259
 		return $total;
260 260
 	}
@@ -265,9 +265,9 @@  discard block
 block discarded – undo
265 265
 	 * @param EEI_Payment $payment
266 266
 	 * @return boolean
267 267
 	 */
268
-	protected function _can_easily_itemize_transaction_for( EEI_Payment $payment ){
268
+	protected function _can_easily_itemize_transaction_for(EEI_Payment $payment) {
269 269
 		return  $this->_money->compare_floats(
270
-					$this->_sum_items_and_taxes( $payment->transaction() ),
270
+					$this->_sum_items_and_taxes($payment->transaction()),
271 271
 					$payment->transaction()->total() ) &&
272 272
 				$this->_money->compare_floats(
273 273
 					$payment->amount(),
@@ -285,7 +285,7 @@  discard block
 block discarded – undo
285 285
 	 * @param EE_Payment $payment
286 286
 	 * @return void
287 287
 	 */
288
-	public function update_txn_based_on_payment( $payment ){
288
+	public function update_txn_based_on_payment($payment) {
289 289
 		//maybe update the trasnaction or line items or registrations
290 290
 		//but most gateways don't need to do this, because they only update the payment
291 291
 	}
Please login to merge, or discard this patch.
core/libraries/plugin_api/EE_Register_Addon.lib.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -378,7 +378,7 @@
 block discarded – undo
378 378
 	/**
379 379
 	 * Loads and instantiates the EE_Addon class and adds it onto the registry
380 380
 	 * @param string $addon_name
381
-	 * @return EE_Addon
381
+	 * @return boolean
382 382
 	 */
383 383
 	private static function _load_and_init_addon_class($addon_name){
384 384
 		$addon = EE_Registry::instance()->load_addon( dirname( self::$_settings[ $addon_name ]['main_file_path'] ), self::$_settings[ $addon_name ]['class_name'] );
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -275,7 +275,7 @@
 block discarded – undo
275 275
 				//we know it was just activated and the request will end soon
276 276
 			}
277 277
 			return;
278
-		}else{
278
+		} else{
279 279
 			// make sure this was called in the right place!
280 280
 			if ( ! did_action( 'AHEE__EE_System__load_espresso_addons' ) || did_action( 'AHEE__EE_System___detect_if_activation_or_upgrade__begin' )) {
281 281
 				EE_Error::doing_it_wrong(
Please login to merge, or discard this patch.
Spacing   +147 added lines, -147 removed lines patch added patch discarded remove patch
@@ -51,23 +51,23 @@  discard block
 block discarded – undo
51 51
 	 * @param string $min_core_version
52 52
 	 * @return string always like '4.3.0.rc.000'
53 53
 	 */
54
-	protected static function _effective_version( $min_core_version ) {
54
+	protected static function _effective_version($min_core_version) {
55 55
 		// versions: 4 . 3 . 1 . p . 123
56 56
 		// offsets:    0 . 1 . 2 . 3 . 4
57
-		$version_parts = explode( '.', $min_core_version );
57
+		$version_parts = explode('.', $min_core_version);
58 58
 		//check they specified the micro version (after 2nd period)
59
-		if( ! isset( $version_parts[ 2 ] ) ) {
60
-			$version_parts[ 2] = '0';
59
+		if ( ! isset($version_parts[2])) {
60
+			$version_parts[2] = '0';
61 61
 		}
62 62
 		//if they didn't specify the 'p', or 'rc' part. Just assume the lowest possible
63 63
 		//soon we can assume that's 'rc', but this current version is 'alpha'
64
-		if( ! isset( $version_parts[ 3 ] ) ) {
65
-			$version_parts[ 3 ] = 'dev';
64
+		if ( ! isset($version_parts[3])) {
65
+			$version_parts[3] = 'dev';
66 66
 		}
67
-		if( ! isset( $version_parts[ 4 ] ) ) {
68
-			$version_parts[ 4 ] = '000';
67
+		if ( ! isset($version_parts[4])) {
68
+			$version_parts[4] = '000';
69 69
 		}
70
-		return implode( '.', $version_parts );
70
+		return implode('.', $version_parts);
71 71
 
72 72
 	}
73 73
 
@@ -77,8 +77,8 @@  discard block
 block discarded – undo
77 77
 	 * @param string $actual_core_version the actual core version, optional
78 78
 	 * @return boolean
79 79
 	 */
80
-	public static  function _meets_min_core_version_requirement( $min_core_version, $actual_core_version = EVENT_ESPRESSO_VERSION ) {
81
-		return version_compare( self::_effective_version( $actual_core_version ), self::_effective_version( $min_core_version ), '>=' );
80
+	public static  function _meets_min_core_version_requirement($min_core_version, $actual_core_version = EVENT_ESPRESSO_VERSION) {
81
+		return version_compare(self::_effective_version($actual_core_version), self::_effective_version($min_core_version), '>=');
82 82
 	}
83 83
 
84 84
 
@@ -132,206 +132,206 @@  discard block
 block discarded – undo
132 132
 	 * @throws EE_Error
133 133
 	 * @return void
134 134
 	 */
135
-	public static function register( $addon_name = '', $setup_args = array()  ) {
135
+	public static function register($addon_name = '', $setup_args = array()) {
136 136
 		// required fields MUST be present, so let's make sure they are.
137
-		if ( empty( $addon_name ) || ! is_array( $setup_args )) {
138
-			throw new EE_Error( __( 'In order to register an EE_Addon with EE_Register_Addon::register(), you must include the "addon_name" (the name of the addon), and an array of arguments.', 'event_espresso' ));
137
+		if (empty($addon_name) || ! is_array($setup_args)) {
138
+			throw new EE_Error(__('In order to register an EE_Addon with EE_Register_Addon::register(), you must include the "addon_name" (the name of the addon), and an array of arguments.', 'event_espresso'));
139 139
 		}
140
-		if ( ! isset($setup_args[ 'main_file_path' ]) || empty( $setup_args[ 'main_file_path' ] ) ){
141
-			throw new EE_Error( sprintf( __( 'When registering an addon, you didn\'t provide the "main_file_path", which is the full path to the main file loaded directly by Wordpress. You only provided %s', 'event_espresso' ), implode(",", array_keys( $setup_args ) ) ) );
140
+		if ( ! isset($setup_args['main_file_path']) || empty($setup_args['main_file_path'])) {
141
+			throw new EE_Error(sprintf(__('When registering an addon, you didn\'t provide the "main_file_path", which is the full path to the main file loaded directly by Wordpress. You only provided %s', 'event_espresso'), implode(",", array_keys($setup_args))));
142 142
 		}
143 143
 		// check that addon has not already been registered with that name
144
-		if ( isset( self::$_settings[ $addon_name ] ) && ! did_action( 'activate_plugin' ) ) {
145
-			throw new EE_Error( sprintf( __( 'An EE_Addon with the name "%s" has already been registered and each EE_Addon requires a unique name.', 'event_espresso' ), $addon_name ));
144
+		if (isset(self::$_settings[$addon_name]) && ! did_action('activate_plugin')) {
145
+			throw new EE_Error(sprintf(__('An EE_Addon with the name "%s" has already been registered and each EE_Addon requires a unique name.', 'event_espresso'), $addon_name));
146 146
 		}
147 147
 
148 148
 
149 149
 		// no class name for addon?
150
-		if ( empty( $setup_args['class_name'] )) {
150
+		if (empty($setup_args['class_name'])) {
151 151
 			// generate one by first separating name with spaces
152
-			$class_name = str_replace( array( '-', '_' ), ' ', trim( $addon_name ));
152
+			$class_name = str_replace(array('-', '_'), ' ', trim($addon_name));
153 153
 			//capitalize, then replace spaces with underscores
154
-			$class_name = str_replace( ' ', '_', ucwords( $class_name ));
154
+			$class_name = str_replace(' ', '_', ucwords($class_name));
155 155
 		} else {
156 156
 			$class_name = $setup_args['class_name'];
157 157
 		}
158
-		$class_name = strpos( $class_name, 'EE_' ) === 0 ? $class_name : 'EE_' . $class_name;
158
+		$class_name = strpos($class_name, 'EE_') === 0 ? $class_name : 'EE_'.$class_name;
159 159
 		//setup $_settings array from incoming values.
160 160
 		$addon_settings = array(
161 161
 			// generated from the addon name, changes something like "calendar" to "EE_Calendar"
162 162
 			'class_name' 			=> $class_name,
163 163
 			// the "software" version for the addon
164
-			'version' 								=> isset( $setup_args['version'] ) ? (string)$setup_args['version'] : '',
164
+			'version' 								=> isset($setup_args['version']) ? (string) $setup_args['version'] : '',
165 165
 			// the minimum version of EE Core that the addon will work with
166
-			'min_core_version' 			=> isset( $setup_args['min_core_version'] ) ? (string)$setup_args['min_core_version'] : '',
166
+			'min_core_version' 			=> isset($setup_args['min_core_version']) ? (string) $setup_args['min_core_version'] : '',
167 167
 			// full server path to main file (file loaded directly by WP)
168
-			'main_file_path' 					=> isset( $setup_args['main_file_path'] ) ? (string)$setup_args['main_file_path'] : '',
168
+			'main_file_path' 					=> isset($setup_args['main_file_path']) ? (string) $setup_args['main_file_path'] : '',
169 169
 			// path to folder containing files for integrating with the EE core admin and/or setting up EE admin pages
170
-			'admin_path' 						=> isset( $setup_args['admin_path'] ) ? (string)$setup_args['admin_path'] : '',
170
+			'admin_path' 						=> isset($setup_args['admin_path']) ? (string) $setup_args['admin_path'] : '',
171 171
 			// a method to be called when the EE Admin is first invoked, can be used for hooking into any admin page
172
-			'admin_callback' 				=> isset( $setup_args['admin_callback'] ) ? (string)$setup_args['admin_callback'] : '',
172
+			'admin_callback' 				=> isset($setup_args['admin_callback']) ? (string) $setup_args['admin_callback'] : '',
173 173
 			// the section name for this addon's configuration settings section (defaults to "addons")
174
-			'config_section' 					=> isset( $setup_args['config_section'] ) ? (string)$setup_args['config_section'] : 'addons',
174
+			'config_section' 					=> isset($setup_args['config_section']) ? (string) $setup_args['config_section'] : 'addons',
175 175
 			// the class name for this addon's configuration settings object
176
-			'config_class' 						=> isset( $setup_args['config_class'] ) ? (string)$setup_args['config_class'] : '',
176
+			'config_class' 						=> isset($setup_args['config_class']) ? (string) $setup_args['config_class'] : '',
177 177
 			//the name given to the config for this addons' configuration settings object (optional)
178
-			'config_name' 					=> isset( $setup_args['config_name'] ) ? (string) $setup_args['config_name']: '',
178
+			'config_name' 					=> isset($setup_args['config_name']) ? (string) $setup_args['config_name'] : '',
179 179
 			// an array of "class names" => "full server paths" for any classes that might be invoked by the addon
180
-			'autoloader_paths' 			=> isset( $setup_args['autoloader_paths'] ) ? (array)$setup_args['autoloader_paths'] : array(),
180
+			'autoloader_paths' 			=> isset($setup_args['autoloader_paths']) ? (array) $setup_args['autoloader_paths'] : array(),
181 181
 			// array of full server paths to any EE_DMS data migration scripts used by the addon
182
-			'dms_paths' 						=> isset( $setup_args['dms_paths'] ) ? (array)$setup_args['dms_paths'] : array(),
182
+			'dms_paths' 						=> isset($setup_args['dms_paths']) ? (array) $setup_args['dms_paths'] : array(),
183 183
 			// array of full server paths to any EED_Modules used by the addon
184
-			'module_paths' 					=> isset( $setup_args['module_paths'] ) ? (array)$setup_args['module_paths'] : array(),
184
+			'module_paths' 					=> isset($setup_args['module_paths']) ? (array) $setup_args['module_paths'] : array(),
185 185
 			// array of full server paths to any EES_Shortcodes used by the addon
186
-			'shortcode_paths'			 	=> isset( $setup_args['shortcode_paths'] ) ? (array)$setup_args['shortcode_paths'] : array(),
186
+			'shortcode_paths'			 	=> isset($setup_args['shortcode_paths']) ? (array) $setup_args['shortcode_paths'] : array(),
187 187
 			// array of full server paths to any WP_Widgets used by the addon
188
-			'widget_paths' 					=> isset( $setup_args['widget_paths'] ) ? (array)$setup_args['widget_paths'] : array(),
188
+			'widget_paths' 					=> isset($setup_args['widget_paths']) ? (array) $setup_args['widget_paths'] : array(),
189 189
 			// array of PUE options used by the addon
190
-			'pue_options' 						=> isset( $setup_args['pue_options'] ) ? (array)$setup_args['pue_options'] : array(),
191
-			'message_types' 				=> isset( $setup_args['message_types'] ) ? (array) $setup_args['message_types'] : array(),
192
-			'capabilities' 						=> isset( $setup_args['capabilities'] ) ? (array) $setup_args['capabilities'] : array(),
193
-			'capability_maps' 				=> isset( $setup_args['capability_maps'] ) ? (array) $setup_args['capability_maps'] : array(),
194
-			'model_paths' 					=> isset( $setup_args['model_paths'] ) ? (array) $setup_args['model_paths'] : array(),
195
-			'class_paths' 						=> isset( $setup_args['class_paths'] ) ? (array) $setup_args['class_paths'] : array(),
196
-			'model_extension_paths' 	=> isset( $setup_args['model_extension_paths'] ) ? (array) $setup_args['model_extension_paths'] : array(),
197
-			'class_extension_paths' 		=> isset( $setup_args['class_extension_paths'] ) ? (array) $setup_args['class_extension_paths'] : array(),
198
-			'custom_post_types' => isset( $setup_args['custom_post_types'] ) ? (array) $setup_args['custom_post_types'] : array(),
199
-			'custom_taxonomies' => isset( $setup_args['custom_taxonomies'] ) ? (array) $setup_args['custom_taxonomies'] : array(),
200
-			'payment_method_paths'		=> isset( $setup_args[ 'payment_method_paths' ] ) ? (array) $setup_args[ 'payment_method_paths' ] : array(),
201
-			'default_terms' => isset( $setup_args['default_terms'] ) ? (array) $setup_args['default_terms'] : array()
190
+			'pue_options' 						=> isset($setup_args['pue_options']) ? (array) $setup_args['pue_options'] : array(),
191
+			'message_types' 				=> isset($setup_args['message_types']) ? (array) $setup_args['message_types'] : array(),
192
+			'capabilities' 						=> isset($setup_args['capabilities']) ? (array) $setup_args['capabilities'] : array(),
193
+			'capability_maps' 				=> isset($setup_args['capability_maps']) ? (array) $setup_args['capability_maps'] : array(),
194
+			'model_paths' 					=> isset($setup_args['model_paths']) ? (array) $setup_args['model_paths'] : array(),
195
+			'class_paths' 						=> isset($setup_args['class_paths']) ? (array) $setup_args['class_paths'] : array(),
196
+			'model_extension_paths' 	=> isset($setup_args['model_extension_paths']) ? (array) $setup_args['model_extension_paths'] : array(),
197
+			'class_extension_paths' 		=> isset($setup_args['class_extension_paths']) ? (array) $setup_args['class_extension_paths'] : array(),
198
+			'custom_post_types' => isset($setup_args['custom_post_types']) ? (array) $setup_args['custom_post_types'] : array(),
199
+			'custom_taxonomies' => isset($setup_args['custom_taxonomies']) ? (array) $setup_args['custom_taxonomies'] : array(),
200
+			'payment_method_paths'		=> isset($setup_args['payment_method_paths']) ? (array) $setup_args['payment_method_paths'] : array(),
201
+			'default_terms' => isset($setup_args['default_terms']) ? (array) $setup_args['default_terms'] : array()
202 202
 		);
203 203
 
204 204
 		//check whether this addon version is compatible with EE core
205
-		if ( ! self::_meets_min_core_version_requirement( $setup_args['min_core_version'], espresso_version() ) ){
205
+		if ( ! self::_meets_min_core_version_requirement($setup_args['min_core_version'], espresso_version())) {
206 206
 			//remove 'activate' from the REQUEST so WP doesn't erroneously tell the user the
207 207
 			//plugin activated fine when it didn't
208
-			if( isset( $_GET[ 'activate' ]) ) {
209
-				unset( $_GET[ 'activate' ] );
208
+			if (isset($_GET['activate'])) {
209
+				unset($_GET['activate']);
210 210
 			}
211
-			if( isset( $_REQUEST[ 'activate' ] ) ){
212
-				unset( $_REQUEST[ 'activate' ] );
211
+			if (isset($_REQUEST['activate'])) {
212
+				unset($_REQUEST['activate']);
213 213
 			}
214 214
 			//and show an error message indicating the plugin didn't activate properly
215 215
 			EE_Error::add_error(
216 216
 				sprintf(
217
-					__( 'The Event Espresso "%1$s" addon could not be activated because it requires Event Espresso Core version "%2$s" or higher in order to run.%4$sYour version of Event Espresso Core is currently at "%3$s". Please upgrade Event Espresso Core first and then re-attempt activating "%1$s".', 'event_espresso' ),
217
+					__('The Event Espresso "%1$s" addon could not be activated because it requires Event Espresso Core version "%2$s" or higher in order to run.%4$sYour version of Event Espresso Core is currently at "%3$s". Please upgrade Event Espresso Core first and then re-attempt activating "%1$s".', 'event_espresso'),
218 218
 					$addon_name,
219
-					self::_effective_version( $setup_args[ 'min_core_version' ] ),
220
-					self::_effective_version( espresso_version() ),
219
+					self::_effective_version($setup_args['min_core_version']),
220
+					self::_effective_version(espresso_version()),
221 221
 					'<br />'
222 222
 				),
223 223
 				__FILE__, __FUNCTION__, __LINE__
224 224
 			);
225
-			if ( current_user_can( 'activate_plugins' )) {
226
-				require_once( ABSPATH.'wp-admin/includes/plugin.php' );
227
-				deactivate_plugins( plugin_basename( $addon_settings[ 'main_file_path' ] ), TRUE );
225
+			if (current_user_can('activate_plugins')) {
226
+				require_once(ABSPATH.'wp-admin/includes/plugin.php');
227
+				deactivate_plugins(plugin_basename($addon_settings['main_file_path']), TRUE);
228 228
 			}
229 229
 			return;
230 230
 		}
231 231
 		//this is an activation request
232
-		if( did_action( 'activate_plugin' ) ){
232
+		if (did_action('activate_plugin')) {
233 233
 			//to find if THIS is the addon that was activated,
234 234
 			//just check if we have already registered it or not
235 235
 			//(as the newly-activated addon wasn't around the first time addons were registered)
236
-			if( ! isset( self::$_settings[ $addon_name ] ) ){
237
-				self::$_settings[ $addon_name ] = $addon_settings;
236
+			if ( ! isset(self::$_settings[$addon_name])) {
237
+				self::$_settings[$addon_name] = $addon_settings;
238 238
 				$addon = self::_load_and_init_addon_class($addon_name);
239 239
 				$addon->set_activation_indicator_option();
240 240
 				//dont bother setting up the rest of the addon.
241 241
 				//we know it was just activated and the request will end soon
242 242
 			}
243 243
 			return;
244
-		}else{
244
+		} else {
245 245
 			// make sure this was called in the right place!
246
-			if ( ! did_action( 'AHEE__EE_System__load_espresso_addons' ) || did_action( 'AHEE__EE_System___detect_if_activation_or_upgrade__begin' )) {
246
+			if ( ! did_action('AHEE__EE_System__load_espresso_addons') || did_action('AHEE__EE_System___detect_if_activation_or_upgrade__begin')) {
247 247
 				EE_Error::doing_it_wrong(
248 248
 					__METHOD__,
249 249
 					sprintf(
250
-						__( 'An attempt to register an EE_Addon named "%s" has failed because it was not registered at the correct time.  Please use the "AHEE__EE_System__load_espresso_addons" hook to register addons.','event_espresso'),
250
+						__('An attempt to register an EE_Addon named "%s" has failed because it was not registered at the correct time.  Please use the "AHEE__EE_System__load_espresso_addons" hook to register addons.', 'event_espresso'),
251 251
 						$addon_name
252 252
 					),
253 253
 					'4.3.0'
254 254
 				);
255 255
 			}
256
-			self::$_settings[ $addon_name ] = $addon_settings;
256
+			self::$_settings[$addon_name] = $addon_settings;
257 257
 		}
258 258
 		// we need cars
259
-		if ( ! empty( self::$_settings[ $addon_name ]['autoloader_paths'] )) {
260
-			EEH_Autoloader::instance()->register_autoloader( self::$_settings[ $addon_name ]['autoloader_paths'] );
259
+		if ( ! empty(self::$_settings[$addon_name]['autoloader_paths'])) {
260
+			EEH_Autoloader::instance()->register_autoloader(self::$_settings[$addon_name]['autoloader_paths']);
261 261
 		}
262 262
 		// register new models
263
-		if ( ! empty( self::$_settings[ $addon_name ]['model_paths'] ) || ! empty( self::$_settings[ $addon_name ]['class_paths'] )) {
264
-			EE_Register_Model::register( $addon_name, array( 'model_paths' => self::$_settings[ $addon_name ]['model_paths'] , 'class_paths' => self::$_settings[ $addon_name ]['class_paths']));
263
+		if ( ! empty(self::$_settings[$addon_name]['model_paths']) || ! empty(self::$_settings[$addon_name]['class_paths'])) {
264
+			EE_Register_Model::register($addon_name, array('model_paths' => self::$_settings[$addon_name]['model_paths'], 'class_paths' => self::$_settings[$addon_name]['class_paths']));
265 265
 		}
266 266
 		// register model extensions
267
-		if ( ! empty( self::$_settings[ $addon_name ]['model_extension_paths'] ) || ! empty( self::$_settings[ $addon_name ]['class_extension_paths'] )) {
268
-			EE_Register_Model_Extensions::register( $addon_name, array( 'model_extension_paths' => self::$_settings[ $addon_name ]['model_extension_paths'] , 'class_extension_paths' => self::$_settings[ $addon_name ]['class_extension_paths']));
267
+		if ( ! empty(self::$_settings[$addon_name]['model_extension_paths']) || ! empty(self::$_settings[$addon_name]['class_extension_paths'])) {
268
+			EE_Register_Model_Extensions::register($addon_name, array('model_extension_paths' => self::$_settings[$addon_name]['model_extension_paths'], 'class_extension_paths' => self::$_settings[$addon_name]['class_extension_paths']));
269 269
 		}
270 270
 		// setup DMS
271
-		if ( ! empty( self::$_settings[ $addon_name ]['dms_paths'] )) {
272
-			EE_Register_Data_Migration_Scripts::register( $addon_name, array( 'dms_paths' => self::$_settings[ $addon_name ]['dms_paths'] ));
271
+		if ( ! empty(self::$_settings[$addon_name]['dms_paths'])) {
272
+			EE_Register_Data_Migration_Scripts::register($addon_name, array('dms_paths' => self::$_settings[$addon_name]['dms_paths']));
273 273
 		}
274 274
 		// if config_class is present let's register config.
275
-		if ( ! empty( self::$_settings[ $addon_name ]['config_class'] )) {
275
+		if ( ! empty(self::$_settings[$addon_name]['config_class'])) {
276 276
 			EE_Register_Config::register(
277
-				self::$_settings[ $addon_name ]['config_class'],
277
+				self::$_settings[$addon_name]['config_class'],
278 278
 				array(
279
-					'config_section' => self::$_settings[ $addon_name ]['config_section'],
280
-					'config_name' => self::$_settings[ $addon_name ]['config_name']
279
+					'config_section' => self::$_settings[$addon_name]['config_section'],
280
+					'config_name' => self::$_settings[$addon_name]['config_name']
281 281
 				)
282 282
 			);
283 283
 		}
284 284
 		// register admin page
285
-		if ( ! empty( self::$_settings[ $addon_name ]['admin_path'] )) {
286
-			EE_Register_Admin_Page::register( $addon_name, array( 'page_path' => self::$_settings[ $addon_name ]['admin_path'] ));
285
+		if ( ! empty(self::$_settings[$addon_name]['admin_path'])) {
286
+			EE_Register_Admin_Page::register($addon_name, array('page_path' => self::$_settings[$addon_name]['admin_path']));
287 287
 
288 288
 		}
289 289
 		// add to list of modules to be registered
290
-		if ( ! empty( self::$_settings[ $addon_name ]['module_paths'] )) {
291
-			EE_Register_Module::register( $addon_name, array( 'module_paths' => self::$_settings[ $addon_name ]['module_paths'] ));
290
+		if ( ! empty(self::$_settings[$addon_name]['module_paths'])) {
291
+			EE_Register_Module::register($addon_name, array('module_paths' => self::$_settings[$addon_name]['module_paths']));
292 292
 		}
293 293
 		// add to list of shortcodes to be registered
294
-		if ( ! empty( self::$_settings[ $addon_name ]['shortcode_paths'] )) {
295
-			EE_Register_Shortcode::register( $addon_name, array( 'shortcode_paths' => self::$_settings[ $addon_name ]['shortcode_paths'] ));
294
+		if ( ! empty(self::$_settings[$addon_name]['shortcode_paths'])) {
295
+			EE_Register_Shortcode::register($addon_name, array('shortcode_paths' => self::$_settings[$addon_name]['shortcode_paths']));
296 296
 		}
297 297
 		// add to list of widgets to be registered
298
-		if ( ! empty( self::$_settings[ $addon_name ]['widget_paths'] )) {
299
-			EE_Register_Widget::register( $addon_name, array( 'widget_paths' => self::$_settings[ $addon_name ]['widget_paths'] ));
298
+		if ( ! empty(self::$_settings[$addon_name]['widget_paths'])) {
299
+			EE_Register_Widget::register($addon_name, array('widget_paths' => self::$_settings[$addon_name]['widget_paths']));
300 300
 		}
301 301
 
302 302
 		//register capability related stuff.
303
-		if ( ! empty( self::$_settings[ $addon_name ]['capabilities'] ) ) {
304
-			EE_Register_Capabilities::register( $addon_name . '_caps', array( 'capabilities' => self::$_settings[$addon_name]['capabilities'], 'capability_maps' => self::$_settings[$addon_name]['capability_maps'] ) );
303
+		if ( ! empty(self::$_settings[$addon_name]['capabilities'])) {
304
+			EE_Register_Capabilities::register($addon_name.'_caps', array('capabilities' => self::$_settings[$addon_name]['capabilities'], 'capability_maps' => self::$_settings[$addon_name]['capability_maps']));
305 305
 		}
306 306
 		//any message type to register?
307
-		if (  !empty( self::$_settings[$addon_name]['message_types'] ) ) {
308
-				add_action( 'EE_Brewing_Regular___messages_caf', array( 'EE_Register_Addon', 'register_message_types' ) );
307
+		if ( ! empty(self::$_settings[$addon_name]['message_types'])) {
308
+				add_action('EE_Brewing_Regular___messages_caf', array('EE_Register_Addon', 'register_message_types'));
309 309
 		}
310 310
 
311 311
 
312 312
 		// if plugin update engine is being used for auto-updates (not needed if PUE is not being used)
313
-		if ( ! empty( $setup_args['pue_options'] )) {
314
-			self::$_settings[ $addon_name ]['pue_options'] = array(
315
-				'pue_plugin_slug' 	=> isset( $setup_args['pue_options']['pue_plugin_slug'] ) ? (string)$setup_args['pue_options']['pue_plugin_slug'] : 'espresso_' . strtolower( $class_name ),
316
-				'plugin_basename' => isset( $setup_args['pue_options']['plugin_basename'] ) ? (string)$setup_args['pue_options']['plugin_basename'] : plugin_basename( self::$_settings[ $addon_name ]['main_file_path'] ),
317
-				'checkPeriod' 			=> isset( $setup_args['pue_options']['checkPeriod'] ) ? (string)$setup_args['pue_options']['checkPeriod'] : '24',
318
-				'use_wp_update'		=> isset( $setup_args['pue_options']['use_wp_update'] ) ? (string)$setup_args['pue_options']['use_wp_update'] : FALSE
313
+		if ( ! empty($setup_args['pue_options'])) {
314
+			self::$_settings[$addon_name]['pue_options'] = array(
315
+				'pue_plugin_slug' 	=> isset($setup_args['pue_options']['pue_plugin_slug']) ? (string) $setup_args['pue_options']['pue_plugin_slug'] : 'espresso_'.strtolower($class_name),
316
+				'plugin_basename' => isset($setup_args['pue_options']['plugin_basename']) ? (string) $setup_args['pue_options']['plugin_basename'] : plugin_basename(self::$_settings[$addon_name]['main_file_path']),
317
+				'checkPeriod' 			=> isset($setup_args['pue_options']['checkPeriod']) ? (string) $setup_args['pue_options']['checkPeriod'] : '24',
318
+				'use_wp_update'		=> isset($setup_args['pue_options']['use_wp_update']) ? (string) $setup_args['pue_options']['use_wp_update'] : FALSE
319 319
 			);
320
-			add_action( 'AHEE__EE_System__brew_espresso__after_pue_init', array( 'EE_Register_Addon', 'load_pue_update' ));
320
+			add_action('AHEE__EE_System__brew_espresso__after_pue_init', array('EE_Register_Addon', 'load_pue_update'));
321 321
 		}
322 322
 
323 323
 		//any custom post type/ custom capabilities or default terms to register
324
-		if ( !empty( self::$_settings[$addon_name]['custom_post_types'] ) || !empty( self::$_settings[$addon_name]['custom_taxonomies'] ) ) {
325
-			EE_Register_CPT::register( $addon_name, array( 'cpts' => self::$_settings[$addon_name]['custom_post_types'] , 'cts' => self::$_settings[$addon_name]['custom_taxonomies'], 'default_terms' => self::$_settings[$addon_name]['default_terms'] ) );
324
+		if ( ! empty(self::$_settings[$addon_name]['custom_post_types']) || ! empty(self::$_settings[$addon_name]['custom_taxonomies'])) {
325
+			EE_Register_CPT::register($addon_name, array('cpts' => self::$_settings[$addon_name]['custom_post_types'], 'cts' => self::$_settings[$addon_name]['custom_taxonomies'], 'default_terms' => self::$_settings[$addon_name]['default_terms']));
326 326
 		}
327
-		if( ! empty( self::$_settings[ $addon_name ][ 'payment_method_paths' ] ) ){
328
-			EE_Register_Payment_Method::register($addon_name, array( 'payment_method_paths' => self::$_settings[ $addon_name ][ 'payment_method_paths' ] ) );
327
+		if ( ! empty(self::$_settings[$addon_name]['payment_method_paths'])) {
328
+			EE_Register_Payment_Method::register($addon_name, array('payment_method_paths' => self::$_settings[$addon_name]['payment_method_paths']));
329 329
 		}
330 330
 		// load and instantiate main addon class
331 331
 		$addon = self::_load_and_init_addon_class($addon_name);
332 332
 		// call any additional admin_callback functions during load_admin_controller hook
333
-		if ( ! empty( self::$_settings[ $addon_name ]['admin_callback'] )) {
334
-			add_action( 'AHEE__EE_System__load_controllers__load_admin_controllers', array( $addon, self::$_settings[ $addon_name ]['admin_callback'] ));
333
+		if ( ! empty(self::$_settings[$addon_name]['admin_callback'])) {
334
+			add_action('AHEE__EE_System__load_controllers__load_admin_controllers', array($addon, self::$_settings[$addon_name]['admin_callback']));
335 335
 		}
336 336
 	}
337 337
 	/**
@@ -339,18 +339,18 @@  discard block
 block discarded – undo
339 339
 	 * @param string $addon_name
340 340
 	 * @return EE_Addon
341 341
 	 */
342
-	private static function _load_and_init_addon_class($addon_name){
343
-		$addon = EE_Registry::instance()->load_addon( dirname( self::$_settings[ $addon_name ]['main_file_path'] ), self::$_settings[ $addon_name ]['class_name'] );
344
-		$addon->set_name( $addon_name );
345
-		$addon->set_main_plugin_file( self::$_settings[ $addon_name ]['main_file_path'] );
346
-		$addon->set_version( self::$_settings[ $addon_name ]['version'] );
347
-		$addon->set_min_core_version( self::_effective_version( self::$_settings[ $addon_name ]['min_core_version'] ) );
348
-		$addon->set_config_section( self::$_settings[ $addon_name ]['config_section'] );
349
-		$addon->set_config_class( self::$_settings[ $addon_name ]['config_class'] );
350
-		$addon->set_config_name( self::$_settings[ $addon_name ]['config_name'] );
342
+	private static function _load_and_init_addon_class($addon_name) {
343
+		$addon = EE_Registry::instance()->load_addon(dirname(self::$_settings[$addon_name]['main_file_path']), self::$_settings[$addon_name]['class_name']);
344
+		$addon->set_name($addon_name);
345
+		$addon->set_main_plugin_file(self::$_settings[$addon_name]['main_file_path']);
346
+		$addon->set_version(self::$_settings[$addon_name]['version']);
347
+		$addon->set_min_core_version(self::_effective_version(self::$_settings[$addon_name]['min_core_version']));
348
+		$addon->set_config_section(self::$_settings[$addon_name]['config_section']);
349
+		$addon->set_config_class(self::$_settings[$addon_name]['config_class']);
350
+		$addon->set_config_name(self::$_settings[$addon_name]['config_name']);
351 351
 		//unfortunately this can't be hooked in upon construction, because we don't have
352 352
 		//the plugin mainfile's path upon construction.
353
-		register_deactivation_hook($addon->get_main_plugin_file(), array($addon,'deactivation'));
353
+		register_deactivation_hook($addon->get_main_plugin_file(), array($addon, 'deactivation'));
354 354
 		return $addon;
355 355
 	}
356 356
 
@@ -363,18 +363,18 @@  discard block
 block discarded – undo
363 363
 	 */
364 364
 	public static function load_pue_update() {
365 365
 		// load PUE client
366
-		require_once  EE_THIRD_PARTY . 'pue' . DS . 'pue-client.php';
366
+		require_once  EE_THIRD_PARTY.'pue'.DS.'pue-client.php';
367 367
 		// cycle thru settings
368
-		foreach ( self::$_settings as $settings ) {
369
-			if ( ! empty( $settings['pue_options'] )) {
368
+		foreach (self::$_settings as $settings) {
369
+			if ( ! empty($settings['pue_options'])) {
370 370
 				// initiate the class and start the plugin update engine!
371 371
 				new PluginUpdateEngineChecker(
372 372
 				// host file URL
373 373
 					'http://eventespresso.com',
374 374
 					// plugin slug(s)
375 375
 					array(
376
-						'premium' => array( 'p' => $settings['pue_options']['pue_plugin_slug'] ),
377
-						'prerelease' => array( 'beta' => $settings['pue_options']['pue_plugin_slug'] . '-pr' )
376
+						'premium' => array('p' => $settings['pue_options']['pue_plugin_slug']),
377
+						'prerelease' => array('beta' => $settings['pue_options']['pue_plugin_slug'].'-pr')
378 378
 					),
379 379
 					// options
380 380
 					array(
@@ -402,9 +402,9 @@  discard block
 block discarded – undo
402 402
 	 * @return void
403 403
 	 */
404 404
 	public static function register_message_types() {
405
-		foreach ( self::$_settings as $settings ) {
406
-			foreach( $settings['message_types'] as $message_type => $message_type_settings ) {
407
-				EE_Register_Message_Type::register( $message_type, $message_type_settings );
405
+		foreach (self::$_settings as $settings) {
406
+			foreach ($settings['message_types'] as $message_type => $message_type_settings) {
407
+				EE_Register_Message_Type::register($message_type, $message_type_settings);
408 408
 			}
409 409
 		}
410 410
 	}
@@ -420,52 +420,52 @@  discard block
 block discarded – undo
420 420
 	 * @throws EE_Error
421 421
 	 * @return void
422 422
 	 */
423
-	public static function deregister( $addon_name = NULL ) {
424
-		if ( isset( self::$_settings[ $addon_name ] )) {
425
-			$class_name = self::$_settings[ $addon_name ]['class_name'];
426
-			if ( ! empty( self::$_settings[ $addon_name ]['dms_paths'] )) {
423
+	public static function deregister($addon_name = NULL) {
424
+		if (isset(self::$_settings[$addon_name])) {
425
+			$class_name = self::$_settings[$addon_name]['class_name'];
426
+			if ( ! empty(self::$_settings[$addon_name]['dms_paths'])) {
427 427
 				// setup DMS
428
-				EE_Register_Data_Migration_Scripts::deregister( $addon_name );
428
+				EE_Register_Data_Migration_Scripts::deregister($addon_name);
429 429
 			}
430
-			if ( ! empty( self::$_settings[ $addon_name ]['admin_path'] )) {
430
+			if ( ! empty(self::$_settings[$addon_name]['admin_path'])) {
431 431
 				// register admin page
432
-				EE_Register_Admin_Page::deregister( $addon_name );
432
+				EE_Register_Admin_Page::deregister($addon_name);
433 433
 			}
434
-			if ( ! empty( self::$_settings[ $addon_name ]['module_paths'] )) {
434
+			if ( ! empty(self::$_settings[$addon_name]['module_paths'])) {
435 435
 				// add to list of modules to be registered
436
-				EE_Register_Module::deregister( $addon_name );
436
+				EE_Register_Module::deregister($addon_name);
437 437
 			}
438
-			if ( ! empty( self::$_settings[ $addon_name ]['shortcode_paths'] )) {
438
+			if ( ! empty(self::$_settings[$addon_name]['shortcode_paths'])) {
439 439
 				// add to list of shortcodes to be registered
440
-				EE_Register_Shortcode::deregister( $addon_name );
440
+				EE_Register_Shortcode::deregister($addon_name);
441 441
 			}
442
-			if ( ! empty( self::$_settings[ $addon_name ]['config_class'] )) {
442
+			if ( ! empty(self::$_settings[$addon_name]['config_class'])) {
443 443
 				// if config_class present let's register config.
444
-				EE_Register_Config::deregister( self::$_settings[ $addon_name ]['config_class']);
444
+				EE_Register_Config::deregister(self::$_settings[$addon_name]['config_class']);
445 445
 			}
446
-			if ( ! empty( self::$_settings[ $addon_name ]['widget_paths'] )) {
446
+			if ( ! empty(self::$_settings[$addon_name]['widget_paths'])) {
447 447
 				// add to list of widgets to be registered
448
-				EE_Register_Widget::deregister( $addon_name );
448
+				EE_Register_Widget::deregister($addon_name);
449 449
 			}
450
-			if ( ! empty( self::$_settings[ $addon_name ]['model_paths'] ) ||
451
-					! empty( self::$_settings[ $addon_name ]['class_paths'] )) {
450
+			if ( ! empty(self::$_settings[$addon_name]['model_paths']) ||
451
+					! empty(self::$_settings[$addon_name]['class_paths'])) {
452 452
 				// add to list of shortcodes to be registered
453
-				EE_Register_Model::deregister( $addon_name );
453
+				EE_Register_Model::deregister($addon_name);
454 454
 			}
455
-			if ( ! empty( self::$_settings[ $addon_name ]['model_extension_paths'] ) ||
456
-					! empty( self::$_settings[ $addon_name ]['class_extension_paths'] )) {
455
+			if ( ! empty(self::$_settings[$addon_name]['model_extension_paths']) ||
456
+					! empty(self::$_settings[$addon_name]['class_extension_paths'])) {
457 457
 				// add to list of shortcodes to be registered
458
-				EE_Register_Model_Extensions::deregister( $addon_name );
458
+				EE_Register_Model_Extensions::deregister($addon_name);
459 459
 				}
460
-			if (  !empty( self::$_settings[$addon_name]['message_types'] ) ) {
461
-				foreach( self::$_settings[$addon_name]['message_types'] as $message_type => $message_type_settings ) {
462
-					EE_Register_Message_Type::deregister( $message_type );
460
+			if ( ! empty(self::$_settings[$addon_name]['message_types'])) {
461
+				foreach (self::$_settings[$addon_name]['message_types'] as $message_type => $message_type_settings) {
462
+					EE_Register_Message_Type::deregister($message_type);
463 463
 				}
464 464
 			}
465
-			remove_action('deactivate_'.EE_Registry::instance()->addons->$class_name->get_main_plugin_file_basename(),  array( EE_Registry::instance()->addons->$class_name, 'deactivation' ) );
466
-			remove_action( 'AHEE__EE_System__perform_activations_upgrades_and_migrations', array( EE_Registry::instance()->addons->$class_name, 'initialize_db_if_no_migrations_required' ) );
465
+			remove_action('deactivate_'.EE_Registry::instance()->addons->$class_name->get_main_plugin_file_basename(), array(EE_Registry::instance()->addons->$class_name, 'deactivation'));
466
+			remove_action('AHEE__EE_System__perform_activations_upgrades_and_migrations', array(EE_Registry::instance()->addons->$class_name, 'initialize_db_if_no_migrations_required'));
467 467
 			unset(EE_Registry::instance()->addons->$class_name);
468
-			unset( self::$_settings[ $addon_name ] );
468
+			unset(self::$_settings[$addon_name]);
469 469
 		}
470 470
 	}
471 471
 
Please login to merge, or discard this patch.
core/libraries/qtips/EE_Qtip_Config.lib.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -200,7 +200,7 @@
 block discarded – undo
200 200
 	 * return the _qtips property contents
201 201
 	 *
202 202
 	 * @access public
203
-	 * @return EE_Qtip[]
203
+	 * @return EE_Qtip
204 204
 	 */
205 205
 	public function get_tips() {
206 206
 		return $this->_qtips;
Please login to merge, or discard this patch.
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
 				'event' => 'mouseleave', //similar as what you do for show.event.
143 143
 				'target' => false, //Options jQuery::#selector. which html element will trigger hide event. When false, the element the .qtip() method was called upon is used.
144 144
 				'delay' => 0, //set time in milliseconds for delaying the hide of the tooltip
145
-				'inactive' => false,  //if integer, time in millisecons in which the tooltip should be hidden if remains inactive (not interacted with)
145
+				'inactive' => false, //if integer, time in millisecons in which the tooltip should be hidden if remains inactive (not interacted with)
146 146
 				'fixed' => false, //when set to true, the tooltip will not hide if moused over.
147 147
 				'leave' => 'window', //specify whether the tooltip will hide when leaving the window it's conained within.
148 148
 				'distance' => false, //if integer, distance in pixels that the tooltip hides when the mouse is moved from the point it triggered the tooltip.
@@ -175,21 +175,21 @@  discard block
 block discarded – undo
175 175
 	 * @return void
176 176
 	 */
177 177
 	protected function _construct_tips() {
178
-		foreach ( $this->_qtipsa as $qt ) {
178
+		foreach ($this->_qtipsa as $qt) {
179 179
 			//make sure we have what we need.
180
-			if ( !isset( $qt['content_id'] ) || !isset( $qt['target'] ) || !isset( $qt['content'] ) )
181
-				throw new EE_Error( sprintf( __('There is something wrong with the _qtipsa property setup for the %s qtip config class.  The dump of the current array index is: %s.<br /><br />Please check that it is setup correctly.', 'event_espresso'), get_class($this), var_export($qt, true) ) );
180
+			if ( ! isset($qt['content_id']) || ! isset($qt['target']) || ! isset($qt['content']))
181
+				throw new EE_Error(sprintf(__('There is something wrong with the _qtipsa property setup for the %s qtip config class.  The dump of the current array index is: %s.<br /><br />Please check that it is setup correctly.', 'event_espresso'), get_class($this), var_export($qt, true)));
182 182
 
183 183
 			//make sure the options include defaults and just override via set config.
184
-			$options_override = isset( $qt['options'] ) ? (array) $qt['options'] : array();
185
-			$options = array_merge( $this->_default_options, $options_override );
184
+			$options_override = isset($qt['options']) ? (array) $qt['options'] : array();
185
+			$options = array_merge($this->_default_options, $options_override);
186 186
 			$setup = array(
187 187
 				'content_id' => $qt['content_id'],
188 188
 				'options' => $options,
189 189
 				'target' => $qt['target'],
190 190
 				'content' => $qt['content']
191 191
 				);
192
-			$this->_qtips[] = new EE_Qtip( $setup );
192
+			$this->_qtips[] = new EE_Qtip($setup);
193 193
 		}
194 194
 	}
195 195
 
@@ -264,9 +264,9 @@  discard block
 block discarded – undo
264 264
 	public $target;
265 265
 	public $content;
266 266
 
267
-	public function __construct( $setup_array ) {
268
-		foreach ( $setup_array as $prop => $value ) {
269
-			if ( EEH_Class_Tools::has_property( $this, $prop ) )
267
+	public function __construct($setup_array) {
268
+		foreach ($setup_array as $prop => $value) {
269
+			if (EEH_Class_Tools::has_property($this, $prop))
270 270
 				$this->$prop = $value;
271 271
 		}
272 272
 	}
Please login to merge, or discard this patch.
Braces   +6 added lines, -4 removed lines patch added patch discarded remove patch
@@ -177,8 +177,9 @@  discard block
 block discarded – undo
177 177
 	protected function _construct_tips() {
178 178
 		foreach ( $this->_qtipsa as $qt ) {
179 179
 			//make sure we have what we need.
180
-			if ( !isset( $qt['content_id'] ) || !isset( $qt['target'] ) || !isset( $qt['content'] ) )
181
-				throw new EE_Error( sprintf( __('There is something wrong with the _qtipsa property setup for the %s qtip config class.  The dump of the current array index is: %s.<br /><br />Please check that it is setup correctly.', 'event_espresso'), get_class($this), var_export($qt, true) ) );
180
+			if ( !isset( $qt['content_id'] ) || !isset( $qt['target'] ) || !isset( $qt['content'] ) ) {
181
+							throw new EE_Error( sprintf( __('There is something wrong with the _qtipsa property setup for the %s qtip config class.  The dump of the current array index is: %s.<br /><br />Please check that it is setup correctly.', 'event_espresso'), get_class($this), var_export($qt, true) ) );
182
+			}
182 183
 
183 184
 			//make sure the options include defaults and just override via set config.
184 185
 			$options_override = isset( $qt['options'] ) ? (array) $qt['options'] : array();
@@ -266,8 +267,9 @@  discard block
 block discarded – undo
266 267
 
267 268
 	public function __construct( $setup_array ) {
268 269
 		foreach ( $setup_array as $prop => $value ) {
269
-			if ( EEH_Class_Tools::has_property( $this, $prop ) )
270
-				$this->$prop = $value;
270
+			if ( EEH_Class_Tools::has_property( $this, $prop ) ) {
271
+							$this->$prop = $value;
272
+			}
271 273
 		}
272 274
 	}
273 275
 }
274 276
\ No newline at end of file
Please login to merge, or discard this patch.
core/libraries/shortcodes/EE_Event_Shortcodes.lib.php 3 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -179,6 +179,7 @@
 block discarded – undo
179 179
 	/**
180 180
 	 * returns the link to the event
181 181
 	 * @param  boolean $full_link if TRUE (default) we return the html for the name of the event linked to the event.  Otherwise we just return the url of the event.
182
+	 * @param EE_Event $event
182 183
 	 * @return string
183 184
 	 */
184 185
 	private function _get_event_link( $event, $full_link = TRUE ) {
Please login to merge, or discard this patch.
Braces   +11 added lines, -7 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
@@ -85,8 +86,9 @@  discard block
 block discarded – undo
85 86
 
86 87
 
87 88
 		//If there is no event objecdt by now then get out.
88
-		if ( ! $this->_event instanceof EE_Event )
89
-			return '';
89
+		if ( ! $this->_event instanceof EE_Event ) {
90
+					return '';
91
+		}
90 92
 
91 93
 		switch ( $shortcode ) {
92 94
 
@@ -125,14 +127,16 @@  discard block
 block discarded – undo
125 127
 
126 128
 			case '[VIRTUAL_URL]' :
127 129
 				$venue = $this->_event->get_first_related('Venue');
128
-				if ( empty( $venue ) )
129
-					return '';
130
+				if ( empty( $venue ) ) {
131
+									return '';
132
+				}
130 133
 				return $venue->get('VNU_virtual_url');
131 134
 
132 135
 			case '[VIRTUAL_PHONE]' :
133 136
 				$venue = $this->_event->get_first_related('Venue');
134
-				if ( empty( $venue ) )
135
-					return '';
137
+				if ( empty( $venue ) ) {
138
+									return '';
139
+				}
136 140
 				return $venue->get('VNU_virtual_phone');
137 141
 				break;
138 142
 
Please login to merge, or discard this patch.
Spacing   +18 added lines, -18 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
 /**
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 			'[EVENT_NAME]' => __("This also can be used for the name of the event", 'event_espresso'),
57 57
 			'[EVENT_PHONE]' => __('The phone number for the event (usually an info number)', 'event_espresso'),
58 58
 			'[EVENT_DESCRIPTION]' => __('The description of the event', 'event_espresso'),
59
-			'[EVENT_EXCERPT]' => __( 'This gets parsed to the value for the excerpt field in the event or blank if there is no excerpt.', 'event_espresso' ),
59
+			'[EVENT_EXCERPT]' => __('This gets parsed to the value for the excerpt field in the event or blank if there is no excerpt.', 'event_espresso'),
60 60
 			'[EVENT_LINK]' => __('A link associated with the event', 'event_espresso'),
61 61
 			'[EVENT_URL]' => __('A link to the event set up on the host site.', 'event_espresso'),
62 62
 			'[VIRTUAL_URL]' => __('What was used for the "URL of Event" field in the Venue settings', 'event_espresso'),
@@ -68,14 +68,14 @@  discard block
 block discarded – undo
68 68
 	}
69 69
 
70 70
 
71
-	protected function _parser( $shortcode ) {
71
+	protected function _parser($shortcode) {
72 72
 
73
-		EE_Registry::instance()->load_helper( 'Formatter' );
73
+		EE_Registry::instance()->load_helper('Formatter');
74 74
 
75 75
 		$this->_event = $this->_data instanceof EE_Event ? $this->_data : null;
76 76
 
77 77
 		//if no event, then let's see if there is a reg_obj.  If there IS, then we'll try and grab the event from the reg_obj instead.
78
-		if ( empty( $this->_event ) ) {
78
+		if (empty($this->_event)) {
79 79
 			$aee = $this->_data instanceof EE_Messages_Addressee ? $this->_data : NULL;
80 80
 			$aee = $this->_extra_data instanceof EE_Messages_Addressee ? $this->_extra_data : $aee;
81 81
 
@@ -84,17 +84,17 @@  discard block
 block discarded – undo
84 84
 
85 85
 
86 86
 		//If there is no event objecdt by now then get out.
87
-		if ( ! $this->_event instanceof EE_Event )
87
+		if ( ! $this->_event instanceof EE_Event)
88 88
 			return '';
89 89
 
90
-		switch ( $shortcode ) {
90
+		switch ($shortcode) {
91 91
 
92 92
 			case '[EVENT_ID]' :
93 93
 				return $this->_event->ID();
94 94
 				break;
95 95
 
96 96
 			case '[EVENT_IDENTIFIER]' :
97
-				return isset($this->_data['line_ref']) ? $this->_data['line_ref']: '';
97
+				return isset($this->_data['line_ref']) ? $this->_data['line_ref'] : '';
98 98
 				break;
99 99
 
100 100
 			case '[EVENT]' :
@@ -124,36 +124,36 @@  discard block
 block discarded – undo
124 124
 
125 125
 			case '[VIRTUAL_URL]' :
126 126
 				$venue = $this->_event->get_first_related('Venue');
127
-				if ( empty( $venue ) )
127
+				if (empty($venue))
128 128
 					return '';
129 129
 				return $venue->get('VNU_virtual_url');
130 130
 
131 131
 			case '[VIRTUAL_PHONE]' :
132 132
 				$venue = $this->_event->get_first_related('Venue');
133
-				if ( empty( $venue ) )
133
+				if (empty($venue))
134 134
 					return '';
135 135
 				return $venue->get('VNU_virtual_phone');
136 136
 				break;
137 137
 
138 138
 			case '[EVENT_IMAGE]' :
139
-				$image = $this->_event->feature_image_url(array(600,300) );
139
+				$image = $this->_event->feature_image_url(array(600, 300));
140 140
 				// @todo: eventually we should make this an attribute shortcode so that em can send along what size they want returned.
141
-				return !empty( $image ) ? '<img src="' . $image . '" alt="' . sprintf( esc_attr__( '%s Feature Image', 'event_espresso'), $this->_event->get('EVT_name') ) . '" />' : '';
141
+				return ! empty($image) ? '<img src="'.$image.'" alt="'.sprintf(esc_attr__('%s Feature Image', 'event_espresso'), $this->_event->get('EVT_name')).'" />' : '';
142 142
 				break;
143 143
 
144 144
 			case '[EVENT_FACEBOOK_URL]' :
145
-				$facebook_url = $this->_event->get_post_meta('event_facebook', true );
146
-				return empty( $facebook_url ) ? EE_Registry::instance()->CFG->organization->get_pretty( 'facebook' ) : $facebook_url;
145
+				$facebook_url = $this->_event->get_post_meta('event_facebook', true);
146
+				return empty($facebook_url) ? EE_Registry::instance()->CFG->organization->get_pretty('facebook') : $facebook_url;
147 147
 				break;
148 148
 
149 149
 			case '[EVENT_TWITTER_URL]' :
150 150
 				$twitter_url = $this->_event->get_post_meta('event_twitter', true);
151
-				return empty( $twitter_url ) ? EE_Registry::instance()->CFG->organization->get_pretty( 'twitter' ) : $twitter_url;
151
+				return empty($twitter_url) ? EE_Registry::instance()->CFG->organization->get_pretty('twitter') : $twitter_url;
152 152
 				break;
153 153
 
154 154
 			case '[EVENT_AUTHOR_EMAIL]' :
155 155
 				$author_id = $this->_event->get('EVT_wp_user');
156
-				$user_data = get_userdata( (int) $author_id );
156
+				$user_data = get_userdata((int) $author_id);
157 157
 				return $user_data->user_email;
158 158
 				break;
159 159
 
@@ -168,10 +168,10 @@  discard block
 block discarded – undo
168 168
 	 * @param  boolean $full_link if TRUE (default) we return the html for the name of the event linked to the event.  Otherwise we just return the url of the event.
169 169
 	 * @return string
170 170
 	 */
171
-	private function _get_event_link( $event, $full_link = TRUE ) {
171
+	private function _get_event_link($event, $full_link = TRUE) {
172 172
 		$url = get_permalink($event->ID());
173 173
 
174
-		return $full_link ? '<a href="' . $url . '">' . $event->get('EVT_name') . '</a>' : $url;
174
+		return $full_link ? '<a href="'.$url.'">'.$event->get('EVT_name').'</a>' : $url;
175 175
 	}
176 176
 
177 177
 
Please login to merge, or discard this patch.
core/libraries/shortcodes/EE_Messenger_Shortcodes.lib.php 3 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -116,6 +116,7 @@
 block discarded – undo
116 116
 	 *
117 117
 	 * @since 4.5.0
118 118
 	 *
119
+	 * @param string $type
119 120
 	 * @return string The generated url for displaying the link.
120 121
 	 */
121 122
 	private function _get_url( EE_Messages_Addressee $recipient, $type ) {
Please login to merge, or discard this patch.
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -44,18 +44,18 @@  discard block
 block discarded – undo
44 44
 		//add messages about what happens  when the messenger is active.
45 45
 		$this->_active_messengers = EE_Registry::instance()->load_lib('messages')->get_active_messengers();
46 46
 
47
-		$this->_shortcodes['[DISPLAY_HTML_URL]'] =__('This will return a link to view the template in a browser if the html messenger is active.', 'event_espresso');
48
-		$this->_shortcodes['[DISPLAY_PDF_URL]'] = __('This will return a link to generate a pdf for the template if the pdf messenger is active.', 'event_espresso' );
47
+		$this->_shortcodes['[DISPLAY_HTML_URL]'] = __('This will return a link to view the template in a browser if the html messenger is active.', 'event_espresso');
48
+		$this->_shortcodes['[DISPLAY_PDF_URL]'] = __('This will return a link to generate a pdf for the template if the pdf messenger is active.', 'event_espresso');
49 49
 		$this->_shortcodes['[DISPLAY_PDF_BUTTON]'] = __('This will return html for a download pdf button trigger if the pdf messenger is active.', 'event_espresso');
50 50
 
51 51
 		//show error message about buttons/urls not working as expected if messenger deactivated.
52
-		if ( is_admin() && isset( $_REQUEST['action'] ) && $_REQUEST['action'] == 'update_message_template' ) {
53
-			if ( ! isset( $this->_active_messengers['pdf'] ) ) {
54
-				EE_Error::add_attention( __('Be aware that the pdf messenger is inactive.  This means that any pdf related shortcodes will parse to an empty string.', 'event_espresso' ) );
52
+		if (is_admin() && isset($_REQUEST['action']) && $_REQUEST['action'] == 'update_message_template') {
53
+			if ( ! isset($this->_active_messengers['pdf'])) {
54
+				EE_Error::add_attention(__('Be aware that the pdf messenger is inactive.  This means that any pdf related shortcodes will parse to an empty string.', 'event_espresso'));
55 55
 			}
56 56
 
57
-			if ( !isset( $this->_active_messengers['html'] ) ) {
58
-				EE_Error::add_attention( __('Be aware that the html messenger is inactive. This means that any html related shortcodes will parse to an empty string.', 'event_espresso' ) );
57
+			if ( ! isset($this->_active_messengers['html'])) {
58
+				EE_Error::add_attention(__('Be aware that the html messenger is inactive. This means that any html related shortcodes will parse to an empty string.', 'event_espresso'));
59 59
 			}
60 60
 		}
61 61
 
@@ -63,24 +63,24 @@  discard block
 block discarded – undo
63 63
 
64 64
 
65 65
 
66
-	protected function _parser( $shortcode ) {
66
+	protected function _parser($shortcode) {
67 67
 		//make sure we end up with a copy of the EE_Messages_Addressee object
68 68
 		$recipient = $this->_data instanceof EE_Messages_Addressee ? $this->_data : NULL;
69
-		$recipient = ! $recipient instanceof EE_Messages_Addressee && is_array($this->_data) && isset( $this->_data['data'] ) && $this->_data['data'] instanceof EE_Messages_Addressee ? $this->_data['data'] : $recipient;
70
-		$recipient = ! $recipient instanceof EE_Messages_Addressee && !empty( $this->_extra_data['data'] ) && $this->_extra_data['data'] instanceof EE_Messages_Addressee ? $this->_extra_data['data'] : $recipient;
69
+		$recipient = ! $recipient instanceof EE_Messages_Addressee && is_array($this->_data) && isset($this->_data['data']) && $this->_data['data'] instanceof EE_Messages_Addressee ? $this->_data['data'] : $recipient;
70
+		$recipient = ! $recipient instanceof EE_Messages_Addressee && ! empty($this->_extra_data['data']) && $this->_extra_data['data'] instanceof EE_Messages_Addressee ? $this->_extra_data['data'] : $recipient;
71 71
 
72
-		if ( ! $recipient instanceof EE_Messages_Addressee )
72
+		if ( ! $recipient instanceof EE_Messages_Addressee)
73 73
 			return '';
74 74
 
75
-		switch ( $shortcode ) {
75
+		switch ($shortcode) {
76 76
 			case '[DISPLAY_HTML_URL]' :
77
-				return  isset( $this->_active_messengers['html'] ) ? $this->_get_url( $recipient, 'html' ) : '';
77
+				return  isset($this->_active_messengers['html']) ? $this->_get_url($recipient, 'html') : '';
78 78
 				break;
79 79
 			case '[DISPLAY_PDF_URL]' :
80
-				return  isset( $this->_active_messengers['pdf'] ) ? $this->_get_url( $recipient, 'pdf' ) : '';
80
+				return  isset($this->_active_messengers['pdf']) ? $this->_get_url($recipient, 'pdf') : '';
81 81
 				break;
82 82
 			case '[DISPLAY_PDF_BUTTON]' :
83
-				return  isset( $this->_active_messengers['pdf'] ) ? $this->_get_button( $recipient, 'pdf' ) : '';
83
+				return  isset($this->_active_messengers['pdf']) ? $this->_get_button($recipient, 'pdf') : '';
84 84
 				break;
85 85
 		}
86 86
 		return '';
@@ -98,11 +98,11 @@  discard block
 block discarded – undo
98 98
 	 *
99 99
 	 * @return string                Generated html
100 100
 	 */
101
-	private function _get_button( EE_Messages_Addressee $recipient, $type ) {
102
-		$download_text = $type == 'pdf' ? __('Download PDF', 'event_espresso') : __('Show HTML', 'event_espresso' );
101
+	private function _get_button(EE_Messages_Addressee $recipient, $type) {
102
+		$download_text = $type == 'pdf' ? __('Download PDF', 'event_espresso') : __('Show HTML', 'event_espresso');
103 103
 		$content = '
104
-<form method="post" action="' . $this->_get_url( $recipient, $type ) . '" >
105
-	<input class="print_button" type="submit" value="' . $download_text . '" />
104
+<form method="post" action="' . $this->_get_url($recipient, $type).'" >
105
+	<input class="print_button" type="submit" value="' . $download_text.'" />
106 106
 </form>
107 107
 		';
108 108
 		return $content;
@@ -118,10 +118,10 @@  discard block
 block discarded – undo
118 118
 	 *
119 119
 	 * @return string The generated url for displaying the link.
120 120
 	 */
121
-	private function _get_url( EE_Messages_Addressee $recipient, $type ) {
121
+	private function _get_url(EE_Messages_Addressee $recipient, $type) {
122 122
 
123 123
 		//get out early if the given messenger is not active!
124
-		if ( ! isset( $this->_active_messengers[$type]) ) {
124
+		if ( ! isset($this->_active_messengers[$type])) {
125 125
 			return '';
126 126
 		}
127 127
 
@@ -129,12 +129,12 @@  discard block
 block discarded – undo
129 129
 		$reg = ! $reg instanceof EE_Registration ? $recipient->primary_reg_obj : $reg;
130 130
 
131 131
 		//if no reg object then we really can't do anything at this point.
132
-		if ( ! $reg instanceof EE_Registration ) {
132
+		if ( ! $reg instanceof EE_Registration) {
133 133
 			return '';
134 134
 		}
135 135
 
136
-		if ( $this->_message_type instanceof EE_message_type ) {
137
-			return $this->_message_type->get_url_trigger( $this->_context, $type, $reg );
136
+		if ($this->_message_type instanceof EE_message_type) {
137
+			return $this->_message_type->get_url_trigger($this->_context, $type, $reg);
138 138
 		}
139 139
 
140 140
 		return '';
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -6,7 +6,9 @@  discard block
 block discarded – undo
6 6
  * @package Event Espresso
7 7
  * @subpackage shortcodes library
8 8
  */
9
-if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
9
+if ( ! defined('EVENT_ESPRESSO_VERSION')) {
10
+	exit('No direct script access allowed');
11
+}
10 12
 /**
11 13
  * EE_Messenger_Shortcodes
12 14
  *
@@ -69,8 +71,9 @@  discard block
 block discarded – undo
69 71
 		$recipient = ! $recipient instanceof EE_Messages_Addressee && is_array($this->_data) && isset( $this->_data['data'] ) && $this->_data['data'] instanceof EE_Messages_Addressee ? $this->_data['data'] : $recipient;
70 72
 		$recipient = ! $recipient instanceof EE_Messages_Addressee && !empty( $this->_extra_data['data'] ) && $this->_extra_data['data'] instanceof EE_Messages_Addressee ? $this->_extra_data['data'] : $recipient;
71 73
 
72
-		if ( ! $recipient instanceof EE_Messages_Addressee )
73
-			return '';
74
+		if ( ! $recipient instanceof EE_Messages_Addressee ) {
75
+					return '';
76
+		}
74 77
 
75 78
 		switch ( $shortcode ) {
76 79
 			case '[DISPLAY_HTML_URL]' :
Please login to merge, or discard this patch.
core/libraries/shortcodes/EE_Primary_Registration_List_Shortcodes.lib.php 3 patches
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -109,6 +109,9 @@  discard block
 block discarded – undo
109 109
 	}
110 110
 
111 111
 
112
+	/**
113
+	 * @param EE_Registration $reg
114
+	 */
112 115
 	private function _get_tickets_from_event( EE_Event $event, $reg = NULL ) {
113 116
 		$evt_tkts = isset($this->_extra_data['data']->events) ? $this->_extra_data['data']->events[$event->ID()]['tkt_objs'] : array();
114 117
 
@@ -177,6 +180,9 @@  discard block
 block discarded – undo
177 180
 
178 181
 
179 182
 
183
+	/**
184
+	 * @param EE_Registration $reg
185
+	 */
180 186
 	private function _get_datetimes_from_event( EE_Event $event, $reg = NULL ) {
181 187
 		$evt_dtts = isset($this->_extra_data['data']->events) ? $this->_extra_data['data']->events[$event->ID()]['dtt_objs'] : array();
182 188
 
Please login to merge, or discard this patch.
Spacing   +40 added lines, -40 removed lines patch added patch discarded remove patch
@@ -43,15 +43,15 @@  discard block
 block discarded – undo
43 43
 
44 44
 
45 45
 
46
-	protected function _parser( $shortcode ) {
47
-		switch ( $shortcode ) {
46
+	protected function _parser($shortcode) {
47
+		switch ($shortcode) {
48 48
 
49 49
 			case '[PRIMARY_REGISTRANT_TICKET_LIST]' :
50
-				return $this->_get_recipient_ticket_list( TRUE );
50
+				return $this->_get_recipient_ticket_list(TRUE);
51 51
 				break;
52 52
 
53 53
 			case '[PRIMARY_REGISTRANT_DATETIME_LIST]' :
54
-				return $this->_get_recipient_datetime_list( TRUE );
54
+				return $this->_get_recipient_datetime_list(TRUE);
55 55
 				break;
56 56
 		}
57 57
 		return '';
@@ -65,58 +65,58 @@  discard block
 block discarded – undo
65 65
 	 * @param  boolean $primary whether we're getting the primary registrant ticket_list.
66 66
 	 * @return string
67 67
 	 */
68
-	private function _get_recipient_ticket_list( $primary = FALSE ) {
68
+	private function _get_recipient_ticket_list($primary = FALSE) {
69 69
 		$this->_validate_list_requirements();
70 70
 		$this->_set_shortcode_helper();
71 71
 
72
-		if ( $this->_data['data'] instanceof EE_Messages_Addressee )
73
-			return $this->_get_recipient_ticket_list_parsed( $this->_data['data'], $primary );
72
+		if ($this->_data['data'] instanceof EE_Messages_Addressee)
73
+			return $this->_get_recipient_ticket_list_parsed($this->_data['data'], $primary);
74 74
 
75
-		else if ( $this->_extra_data['data'] instanceof EE_Messages_Addressee )
76
-			return $this->_get_recipient_ticket_list_parsed( $this->_extra_data['data'], $primary );
75
+		else if ($this->_extra_data['data'] instanceof EE_Messages_Addressee)
76
+			return $this->_get_recipient_ticket_list_parsed($this->_extra_data['data'], $primary);
77 77
 
78 78
 		else
79 79
 			return '';
80 80
 	}
81 81
 
82 82
 
83
-	private function _get_recipient_ticket_list_parsed( EE_Messages_Addressee $data, $primary = FALSE ) {
83
+	private function _get_recipient_ticket_list_parsed(EE_Messages_Addressee $data, $primary = FALSE) {
84 84
 		$registration = $primary ? $data->primary_reg_obj : $data->reg_obj;
85
-			if ( ! $registration instanceof EE_Registration ) return '';
85
+			if ( ! $registration instanceof EE_Registration) return '';
86 86
 		//setup valid shortcodes depending on what the status of the $this->_data property is
87
-		if ( $this->_data['data'] instanceof EE_Messages_Addressee ) {
88
-			$valid_shortcodes = array('ticket', 'event_list', 'attendee_list','datetime_list', 'registration_details', 'attendee');
87
+		if ($this->_data['data'] instanceof EE_Messages_Addressee) {
88
+			$valid_shortcodes = array('ticket', 'event_list', 'attendee_list', 'datetime_list', 'registration_details', 'attendee');
89 89
 			$template = $this->_data['template'];
90 90
 			$tkts = array($data->registrations[$registration->ID()]['tkt_obj']);
91 91
 			$data = $this->_data;
92
-		} elseif ( $this->_data['data'] instanceof EE_Event ) {
92
+		} elseif ($this->_data['data'] instanceof EE_Event) {
93 93
 			$valid_shortcodes = array('ticket', 'attendee_list', 'datetime_list', 'attendee');
94
-			$template = is_array($this->_data['template'] ) && isset($this->_data['template']['ticket_list']) ? $this->_data['template']['ticket_list'] : $this->_extra_data['template']['ticket_list'];
94
+			$template = is_array($this->_data['template']) && isset($this->_data['template']['ticket_list']) ? $this->_data['template']['ticket_list'] : $this->_extra_data['template']['ticket_list'];
95 95
 			//let's remove any existing [EVENT_LIST] shortcode from the ticket list template so that we don't get recursion.
96 96
 			$template = str_replace('[EVENT_LIST]', '', $template);
97 97
 			//data will be tickets for this event for this recipient.
98
-			$tkts = $this->_get_tickets_from_event( $this->_data['data'], $registration );
98
+			$tkts = $this->_get_tickets_from_event($this->_data['data'], $registration);
99 99
 			$data = $this->_extra_data;
100 100
 		} else {
101 101
 			return '';
102 102
 		}
103 103
 
104 104
 		$tktparsed = '';
105
-		foreach ( $tkts as $ticket ) {
106
-			$tktparsed .= $this->_shortcode_helper->parse_ticket_list_template( $template, $ticket, $valid_shortcodes, $data );
105
+		foreach ($tkts as $ticket) {
106
+			$tktparsed .= $this->_shortcode_helper->parse_ticket_list_template($template, $ticket, $valid_shortcodes, $data);
107 107
 		}
108 108
 		return $tktparsed;
109 109
 	}
110 110
 
111 111
 
112
-	private function _get_tickets_from_event( EE_Event $event, $reg = NULL ) {
112
+	private function _get_tickets_from_event(EE_Event $event, $reg = NULL) {
113 113
 		$evt_tkts = isset($this->_extra_data['data']->events) ? $this->_extra_data['data']->events[$event->ID()]['tkt_objs'] : array();
114 114
 
115
-		if ( $reg instanceof EE_Registration && $this->_extra_data['data'] instanceof EE_Messages_Addressee ) {
115
+		if ($reg instanceof EE_Registration && $this->_extra_data['data'] instanceof EE_Messages_Addressee) {
116 116
 			$adj_tkts = array();
117 117
 			//return only tickets for the given attendee
118
-			foreach ( $evt_tkts as $tkt ) {
119
-				if ( isset( $this->_extra_data['data']->registrations[$reg->ID()]['tkt_obj'] ) && $this->_extra_data['data']->registrations[$reg->ID()]['tkt_obj']->ID() == $tkt->ID() )
118
+			foreach ($evt_tkts as $tkt) {
119
+				if (isset($this->_extra_data['data']->registrations[$reg->ID()]['tkt_obj']) && $this->_extra_data['data']->registrations[$reg->ID()]['tkt_obj']->ID() == $tkt->ID())
120 120
 					$adj_tkts[] = $tkt;
121 121
 			}
122 122
 			$evt_tkts = $adj_tkts;
@@ -133,58 +133,58 @@  discard block
 block discarded – undo
133 133
 	 * @param  boolean $primary whether we're getting the primary registrant ticket_list.
134 134
 	 * @return string
135 135
 	 */
136
-	private function _get_recipient_datetime_list( $primary = FALSE ) {
136
+	private function _get_recipient_datetime_list($primary = FALSE) {
137 137
 		$this->_validate_list_requirements();
138 138
 		$this->_set_shortcode_helper();
139 139
 
140
-		if ( $this->_data['data'] instanceof EE_Messages_Addressee )
141
-			return $this->_get_recipient_datetime_list_parsed( $this->_data['data'], $primary );
140
+		if ($this->_data['data'] instanceof EE_Messages_Addressee)
141
+			return $this->_get_recipient_datetime_list_parsed($this->_data['data'], $primary);
142 142
 
143
-		else if ( $this->_extra_data['data'] instanceof EE_Messages_Addressee )
144
-			return $this->_get_recipient_datetime_list_parsed( $this->_extra_data['data'], $primary );
143
+		else if ($this->_extra_data['data'] instanceof EE_Messages_Addressee)
144
+			return $this->_get_recipient_datetime_list_parsed($this->_extra_data['data'], $primary);
145 145
 
146 146
 		else
147 147
 			return '';
148 148
 
149
-		return $this->_get_recipient_datetime_list_parsed( $this->_data['data'], $primary);
149
+		return $this->_get_recipient_datetime_list_parsed($this->_data['data'], $primary);
150 150
 	}
151 151
 
152 152
 
153
-	private function _get_recipient_datetime_list_parsed( EE_Messages_Addressee $data, $primary = FALSE ) {
153
+	private function _get_recipient_datetime_list_parsed(EE_Messages_Addressee $data, $primary = FALSE) {
154 154
 		$registration = $primary ? $data->primary_reg_obj : $data->reg_obj;
155
-		if ( ! $registration instanceof EE_Registration ) return '';
155
+		if ( ! $registration instanceof EE_Registration) return '';
156 156
 		//setup valid shortcodes depending on what the status of the $this->_data property is
157
-		if ( $this->_data['data'] instanceof EE_Messages_Addressee ) {
157
+		if ($this->_data['data'] instanceof EE_Messages_Addressee) {
158 158
 			$valid_shortcodes = array('datetime', 'attendee');
159 159
 			$template = $this->_data['template'];
160 160
 			$dtts = $data->registrations[$registration->ID()]['dtt_objs'];
161 161
 			$data = $this->_data;
162
-		} elseif ( $this->_data['data'] instanceof EE_Event ) {
162
+		} elseif ($this->_data['data'] instanceof EE_Event) {
163 163
 			$valid_shortcodes = array('datetime', 'attendee');
164
-			$template = is_array($this->_data['template'] ) && isset($this->_data['template']['datetime_list']) ? $this->_data['template']['datetime_list'] : $this->_extra_data['template']['datetime_list'];
165
-			$dtts = $this->_get_datetimes_from_event( $this->_data['data'], $registration );
164
+			$template = is_array($this->_data['template']) && isset($this->_data['template']['datetime_list']) ? $this->_data['template']['datetime_list'] : $this->_extra_data['template']['datetime_list'];
165
+			$dtts = $this->_get_datetimes_from_event($this->_data['data'], $registration);
166 166
 			$data = $this->_extra_data;
167 167
 		} else {
168 168
 			return '';
169 169
 		}
170 170
 
171 171
 		$dtt_parsed = '';
172
-		foreach ( $dtts as $datetime ) {
173
-			$dtt_parsed .= $this->_shortcode_helper->parse_datetime_list_template( $template, $datetime, $valid_shortcodes, $this->_extra_data );
172
+		foreach ($dtts as $datetime) {
173
+			$dtt_parsed .= $this->_shortcode_helper->parse_datetime_list_template($template, $datetime, $valid_shortcodes, $this->_extra_data);
174 174
 		}
175 175
 		return $dtt_parsed;
176 176
 	}
177 177
 
178 178
 
179 179
 
180
-	private function _get_datetimes_from_event( EE_Event $event, $reg = NULL ) {
180
+	private function _get_datetimes_from_event(EE_Event $event, $reg = NULL) {
181 181
 		$evt_dtts = isset($this->_extra_data['data']->events) ? $this->_extra_data['data']->events[$event->ID()]['dtt_objs'] : array();
182 182
 
183
-		if ( $reg instanceof EE_Registration && $this->_extra_data['data'] instanceof EE_Messages_Addressee ) {
183
+		if ($reg instanceof EE_Registration && $this->_extra_data['data'] instanceof EE_Messages_Addressee) {
184 184
 			$adj_dtts = array();
185 185
 			//return only dtts for the given attendee
186
-			foreach ( $evt_dtts as $dtt ) {
187
-				if ( isset( $this->_extra_data['data']->registrations[$reg->ID()]['dtt_objs'][$dtt->ID()] ) )
186
+			foreach ($evt_dtts as $dtt) {
187
+				if (isset($this->_extra_data['data']->registrations[$reg->ID()]['dtt_objs'][$dtt->ID()]))
188 188
 					$adj_dtts[] = $dtt;
189 189
 			}
190 190
 			$evt_dtts = $adj_dtts;
Please login to merge, or discard this patch.
Braces   +26 added lines, -22 removed lines patch added patch discarded remove patch
@@ -69,20 +69,21 @@  discard block
 block discarded – undo
69 69
 		$this->_validate_list_requirements();
70 70
 		$this->_set_shortcode_helper();
71 71
 
72
-		if ( $this->_data['data'] instanceof EE_Messages_Addressee )
73
-			return $this->_get_recipient_ticket_list_parsed( $this->_data['data'], $primary );
74
-
75
-		else if ( $this->_extra_data['data'] instanceof EE_Messages_Addressee )
76
-			return $this->_get_recipient_ticket_list_parsed( $this->_extra_data['data'], $primary );
77
-
78
-		else
79
-			return '';
72
+		if ( $this->_data['data'] instanceof EE_Messages_Addressee ) {
73
+					return $this->_get_recipient_ticket_list_parsed( $this->_data['data'], $primary );
74
+		} else if ( $this->_extra_data['data'] instanceof EE_Messages_Addressee ) {
75
+					return $this->_get_recipient_ticket_list_parsed( $this->_extra_data['data'], $primary );
76
+		} else {
77
+					return '';
78
+		}
80 79
 	}
81 80
 
82 81
 
83 82
 	private function _get_recipient_ticket_list_parsed( EE_Messages_Addressee $data, $primary = FALSE ) {
84 83
 		$registration = $primary ? $data->primary_reg_obj : $data->reg_obj;
85
-			if ( ! $registration instanceof EE_Registration ) return '';
84
+			if ( ! $registration instanceof EE_Registration ) {
85
+				return '';
86
+			}
86 87
 		//setup valid shortcodes depending on what the status of the $this->_data property is
87 88
 		if ( $this->_data['data'] instanceof EE_Messages_Addressee ) {
88 89
 			$valid_shortcodes = array('ticket', 'event_list', 'attendee_list','datetime_list', 'registration_details', 'attendee');
@@ -116,8 +117,9 @@  discard block
 block discarded – undo
116 117
 			$adj_tkts = array();
117 118
 			//return only tickets for the given attendee
118 119
 			foreach ( $evt_tkts as $tkt ) {
119
-				if ( isset( $this->_extra_data['data']->registrations[$reg->ID()]['tkt_obj'] ) && $this->_extra_data['data']->registrations[$reg->ID()]['tkt_obj']->ID() == $tkt->ID() )
120
-					$adj_tkts[] = $tkt;
120
+				if ( isset( $this->_extra_data['data']->registrations[$reg->ID()]['tkt_obj'] ) && $this->_extra_data['data']->registrations[$reg->ID()]['tkt_obj']->ID() == $tkt->ID() ) {
121
+									$adj_tkts[] = $tkt;
122
+				}
121 123
 			}
122 124
 			$evt_tkts = $adj_tkts;
123 125
 		}
@@ -137,14 +139,13 @@  discard block
 block discarded – undo
137 139
 		$this->_validate_list_requirements();
138 140
 		$this->_set_shortcode_helper();
139 141
 
140
-		if ( $this->_data['data'] instanceof EE_Messages_Addressee )
141
-			return $this->_get_recipient_datetime_list_parsed( $this->_data['data'], $primary );
142
-
143
-		else if ( $this->_extra_data['data'] instanceof EE_Messages_Addressee )
144
-			return $this->_get_recipient_datetime_list_parsed( $this->_extra_data['data'], $primary );
145
-
146
-		else
147
-			return '';
142
+		if ( $this->_data['data'] instanceof EE_Messages_Addressee ) {
143
+					return $this->_get_recipient_datetime_list_parsed( $this->_data['data'], $primary );
144
+		} else if ( $this->_extra_data['data'] instanceof EE_Messages_Addressee ) {
145
+					return $this->_get_recipient_datetime_list_parsed( $this->_extra_data['data'], $primary );
146
+		} else {
147
+					return '';
148
+		}
148 149
 
149 150
 		return $this->_get_recipient_datetime_list_parsed( $this->_data['data'], $primary);
150 151
 	}
@@ -152,7 +153,9 @@  discard block
 block discarded – undo
152 153
 
153 154
 	private function _get_recipient_datetime_list_parsed( EE_Messages_Addressee $data, $primary = FALSE ) {
154 155
 		$registration = $primary ? $data->primary_reg_obj : $data->reg_obj;
155
-		if ( ! $registration instanceof EE_Registration ) return '';
156
+		if ( ! $registration instanceof EE_Registration ) {
157
+			return '';
158
+		}
156 159
 		//setup valid shortcodes depending on what the status of the $this->_data property is
157 160
 		if ( $this->_data['data'] instanceof EE_Messages_Addressee ) {
158 161
 			$valid_shortcodes = array('datetime', 'attendee');
@@ -184,8 +187,9 @@  discard block
 block discarded – undo
184 187
 			$adj_dtts = array();
185 188
 			//return only dtts for the given attendee
186 189
 			foreach ( $evt_dtts as $dtt ) {
187
-				if ( isset( $this->_extra_data['data']->registrations[$reg->ID()]['dtt_objs'][$dtt->ID()] ) )
188
-					$adj_dtts[] = $dtt;
190
+				if ( isset( $this->_extra_data['data']->registrations[$reg->ID()]['dtt_objs'][$dtt->ID()] ) ) {
191
+									$adj_dtts[] = $dtt;
192
+				}
189 193
 			}
190 194
 			$evt_dtts = $adj_dtts;
191 195
 		}
Please login to merge, or discard this patch.
core/libraries/shortcodes/EE_Transaction_Shortcodes.lib.php 3 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -269,6 +269,9 @@
 block discarded – undo
269 269
 
270 270
 
271 271
 
272
+	/**
273
+	 * @param EE_Transaction $transaction
274
+	 */
272 275
 	private function _get_payment_gateway( $transaction ) {
273 276
 		$pm = $this->_get_payment_method( $transaction );
274 277
 		return $pm instanceof EE_Payment_Method ? $pm->name() : '';
Please login to merge, or discard this patch.
Braces   +7 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
@@ -92,8 +93,9 @@  discard block
 block discarded – undo
92 93
 		$payment = ! $payment instanceof EE_Payment && is_array( $this->_extra_data ) &&  isset( $this->_extra_data['data'] ) && $this->_extra_data['data'] instanceof EE_Messages_Addressee ? $this->_extra_data['data']->payment: $payment;
93 94
 
94 95
 
95
-		if ( ! $transaction instanceof EE_Transaction )
96
-			return '';
96
+		if ( ! $transaction instanceof EE_Transaction ) {
97
+					return '';
98
+		}
97 99
 
98 100
 		switch ( $shortcode ) {
99 101
 			case '[TXN_ID]' :
@@ -290,7 +292,7 @@  discard block
 block discarded – undo
290 292
 		$pm = $this->_get_payment_method();
291 293
 		if ( $pm instanceof EE_Payment_Method ){
292 294
 			$invoice_logo_url = $pm->get_extra_meta( 'pdf_logo_image', TRUE );
293
-		}else{
295
+		} else{
294 296
 			$invoice_logo_url = NULL;
295 297
 		}
296 298
 		if( empty( $invoice_logo_url ) ){
@@ -341,7 +343,7 @@  discard block
 block discarded – undo
341 343
 				return apply_filters( 'FHEE__EE_Transaction_Shortcodes__get_payment_method__default', EEM_Payment_Method::instance()->get_one_of_type('Invoice'));
342 344
 			}
343 345
 			return $payment_method;
344
-		}else{
346
+		} else{
345 347
 			//get the first payment method we can find
346 348
 			return apply_filters( 'FHEE__EE_Transaction_Shortcodes__get_payment_method__default', EEM_Payment_Method::instance()->get_one_of_type('Invoice'));
347 349
 		}
Please login to merge, or discard this patch.
Spacing   +103 added lines, -103 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
 /**
@@ -47,10 +47,10 @@  discard block
 block discarded – undo
47 47
 			'[INVOICE_LOGO_URL]' => __('This returns the url for the logo uploaded via the invoice settings page.', 'event_espresso'),
48 48
 			'[INVOICE_LOGO]' => __('This returns the logo uploaded via the invoice settings page wrapped in img_tags and with a "logo screen" classes. The image size is also set in the img tags automatically to match the uploaded logo.', 'event_espresso'),
49 49
 			'[INVOICE_PAYEE_NAME]' => __('This will parse to either: the value of the "Company Name" field in the invoice payment method settings; if that is blank, then the value of the Company Name in the "Your Organization Settings", if that is blank then an empty string.', 'event_espresso'),
50
-			'[INVOICE_PAYEE_ADDRESS]' => __('This will parse to either: the value of the "Company Address" field in the invoice payment method settings; if that is blank, then the value of the Company Address in the "Your Organization Settings", if that is blank then an empty string.', 'event_espresso' ),
51
-			'[INVOICE_PAYMENT_INSTRUCTIONS]' => __('This will parse to the value of the "Payment Instructions" field found on the Invoice payment methods settings page', 'event_espresso' ),
52
-			'[INVOICE_PAYEE_EMAIL]' => __('This will parse to either: the value of the "Company Email" field in the invoice payment method settings; if that is blank, then the value of the Company Email in the "Your Organization Settings", if that is blank then an empty string.', 'event_espresso' ),
53
-			'[INVOICE_PAYEE_TAX_NUMBER_*]' => __('This will parse to either: the value of the "Company Tax Number" field in the invoice payment method settings; if that is blank, then the value of the Company Tax Number in the "Your Organization Settings", if that is blank then an empty string. Note this is also a special dynamic shortcode. You can use the "prefix" parameter to indicate what text you want to use as a prefix before this tax number.  It defaults to "VAT/Tax Number:". To change this prefix you do the following format for this shortcode: <code>[INVOICE_PAYEE_TAX_NUMBER_* prefix="GST:"]</code> and that will ouptut: GST: 12345t56.  If you have no tax number in your settings, then no prefix will be output either.', 'event_espresso' ),
50
+			'[INVOICE_PAYEE_ADDRESS]' => __('This will parse to either: the value of the "Company Address" field in the invoice payment method settings; if that is blank, then the value of the Company Address in the "Your Organization Settings", if that is blank then an empty string.', 'event_espresso'),
51
+			'[INVOICE_PAYMENT_INSTRUCTIONS]' => __('This will parse to the value of the "Payment Instructions" field found on the Invoice payment methods settings page', 'event_espresso'),
52
+			'[INVOICE_PAYEE_EMAIL]' => __('This will parse to either: the value of the "Company Email" field in the invoice payment method settings; if that is blank, then the value of the Company Email in the "Your Organization Settings", if that is blank then an empty string.', 'event_espresso'),
53
+			'[INVOICE_PAYEE_TAX_NUMBER_*]' => __('This will parse to either: the value of the "Company Tax Number" field in the invoice payment method settings; if that is blank, then the value of the Company Tax Number in the "Your Organization Settings", if that is blank then an empty string. Note this is also a special dynamic shortcode. You can use the "prefix" parameter to indicate what text you want to use as a prefix before this tax number.  It defaults to "VAT/Tax Number:". To change this prefix you do the following format for this shortcode: <code>[INVOICE_PAYEE_TAX_NUMBER_* prefix="GST:"]</code> and that will ouptut: GST: 12345t56.  If you have no tax number in your settings, then no prefix will be output either.', 'event_espresso'),
54 54
 			'[TOTAL_COST]' => __('The total cost for the transaction', 'event_espresso'),
55 55
 			'[TXN_STATUS]' => __('The transaction status for the transaction.', 'event_espresso'),
56 56
 			'[TXN_STATUS_ID]' => __('The ID representing the transaction status as saved in the db.  This tends to be useful for including with css classes for styling certain statuses differently from others.', 'event_espresso'),
@@ -61,54 +61,54 @@  discard block
 block discarded – undo
61 61
 			'[TOTAL_OWING]' => __('The total owing on a transaction with no attributes.', 'event_espresso'),
62 62
 			'[TXN_SUBTOTAL]' => __('The subtotal for all txn line items.', 'event_espresso'),
63 63
 			'[TXN_TAX_SUBTOTAL]' => __('The subtotal for all tax line items.', 'event_espresso'),
64
-			'[OWING_STATUS_MESSAGE_*]' => __('A dynamic shortcode for adjusting how total oweing gets shown. The acceptable attributes on the shortcode are:', 'event_espresso') . '<p></ul>' .
65
-				'<li><strong>still_owing</strong>:' . __('If the transaction is not paid in full, then whatever is set for this attribute is shown (otherwise its just the amount oweing). The default is:', 'event_espresso' ) . sprintf( __( '%sPlease make a payment.%s', 'event_espresso'),  '<a href="[PAYMENT_URL]" class="noPrint">', '</a>' ) . '</li>' .
66
-				'<li><strong>none_owing</strong>:' . __('If the transaction is paid in full, then you can indicate how this gets displayed.  Note, that it defaults to just be the total oweing.', 'event_espresso') . '</li></ul></p>',
64
+			'[OWING_STATUS_MESSAGE_*]' => __('A dynamic shortcode for adjusting how total oweing gets shown. The acceptable attributes on the shortcode are:', 'event_espresso').'<p></ul>'.
65
+				'<li><strong>still_owing</strong>:'.__('If the transaction is not paid in full, then whatever is set for this attribute is shown (otherwise its just the amount oweing). The default is:', 'event_espresso').sprintf(__('%sPlease make a payment.%s', 'event_espresso'), '<a href="[PAYMENT_URL]" class="noPrint">', '</a>').'</li>'.
66
+				'<li><strong>none_owing</strong>:'.__('If the transaction is paid in full, then you can indicate how this gets displayed.  Note, that it defaults to just be the total oweing.', 'event_espresso').'</li></ul></p>',
67 67
 			'[TXN_TOTAL_TICKETS]' => __('The total number of all tickets purchased in a transaction', 'event_espresso'),
68 68
 			'[TKT_QTY_PURCHASED]' => __('The total number of all tickets purchased in a transaction. <strong>NOTE: This shortcode is good to use in the "[TICKET_LIST]" field but has been deprecated from all other contexts in favor of the more explicit [TXN_TOTAL_TICKETS] shortcode.</strong>', 'event_espresso'),
69 69
 			'[TRANSACTION_ADMIN_URL]' => __('The url to the admin page for this transaction', 'event_espresso'),
70 70
 			'[RECEIPT_URL]' => __('This parses to the generated url for retrieving the receipt for the transaction', 'event_espresso'),
71
-			'[INVOICE_RECEIPT_SWITCHER_URL]' => __( 'This parses to the url that will switch to the receipt if an invoice is displayed, and switch to the invoice if receipt is displayed. If a message type OTHER than invoice or receipt is displayed then this will just return the url for the invoice. If the related message type is not active  then will parse to an empty string.', 'event_espresso'),
72
-			'[INVOICE_RECEIPT_SWITCHER_BUTTON]' => sprintf( __( 'The same as %1$s[INVOICE_RECEIPT_SWITCHER_URL]%2$s except this returns the html for a button linked to the invoice or receipt.', 'event_espresso' ), '<code>', '</code>' )
71
+			'[INVOICE_RECEIPT_SWITCHER_URL]' => __('This parses to the url that will switch to the receipt if an invoice is displayed, and switch to the invoice if receipt is displayed. If a message type OTHER than invoice or receipt is displayed then this will just return the url for the invoice. If the related message type is not active  then will parse to an empty string.', 'event_espresso'),
72
+			'[INVOICE_RECEIPT_SWITCHER_BUTTON]' => sprintf(__('The same as %1$s[INVOICE_RECEIPT_SWITCHER_URL]%2$s except this returns the html for a button linked to the invoice or receipt.', 'event_espresso'), '<code>', '</code>')
73 73
 			);
74 74
 	}
75 75
 
76 76
 
77
-	protected function _parser( $shortcode ) {
77
+	protected function _parser($shortcode) {
78 78
 
79
-		EE_Registry::instance()->load_helper( 'Template' );
79
+		EE_Registry::instance()->load_helper('Template');
80 80
 
81 81
 		//attempt to get the transaction.  Since this is potentially used in more fields, we may have to look in the _extra_data for the transaction.
82 82
 		$transaction = $this->_data->txn instanceof EE_Transaction ? $this->_data->txn : null;
83
-		$transaction = ! $transaction instanceof EE_Transaction && is_array( $this->_extra_data ) &&  isset( $this->_extra_data['data'] ) && $this->_extra_data['data'] instanceof EE_Messages_Addressee ? $this->_extra_data['data']->txn: $transaction;
83
+		$transaction = ! $transaction instanceof EE_Transaction && is_array($this->_extra_data) && isset($this->_extra_data['data']) && $this->_extra_data['data'] instanceof EE_Messages_Addressee ? $this->_extra_data['data']->txn : $transaction;
84 84
 
85 85
 		//payment
86 86
 		$payment = $this->_data->payment instanceof EE_Payment ? $this->_data->payment : null;
87
-		$payment = ! $payment instanceof EE_Payment && is_array( $this->_extra_data ) &&  isset( $this->_extra_data['data'] ) && $this->_extra_data['data'] instanceof EE_Messages_Addressee ? $this->_extra_data['data']->payment: $payment;
87
+		$payment = ! $payment instanceof EE_Payment && is_array($this->_extra_data) && isset($this->_extra_data['data']) && $this->_extra_data['data'] instanceof EE_Messages_Addressee ? $this->_extra_data['data']->payment : $payment;
88 88
 
89 89
 
90
-		if ( ! $transaction instanceof EE_Transaction )
90
+		if ( ! $transaction instanceof EE_Transaction)
91 91
 			return '';
92 92
 
93
-		switch ( $shortcode ) {
93
+		switch ($shortcode) {
94 94
 			case '[TXN_ID]' :
95 95
 				return $transaction->ID();
96 96
 				break;
97 97
 
98 98
 			case '[PAYMENT_URL]' :
99 99
 				$payment_url = $transaction->payment_overview_url();
100
-				return empty( $payment_url ) ? __( 'http://dummypaymenturlforpreview.com', 'event_espresso') : $payment_url;
100
+				return empty($payment_url) ? __('http://dummypaymenturlforpreview.com', 'event_espresso') : $payment_url;
101 101
 				break;
102 102
 
103 103
 			case '[INVOICE_LINK]' :
104 104
 				$invoice_url = $transaction->invoice_url();
105
-				$invoice_url = empty( $invoice_url ) ? 'http://dummyinvoicelinksforpreview.com' : $invoice_url;
106
-				return sprintf( __('%sClick here for Invoice%s', 'event_espresso'), '<a href="' . $invoice_url . '">', '</a>' );
105
+				$invoice_url = empty($invoice_url) ? 'http://dummyinvoicelinksforpreview.com' : $invoice_url;
106
+				return sprintf(__('%sClick here for Invoice%s', 'event_espresso'), '<a href="'.$invoice_url.'">', '</a>');
107 107
 				break; /**/
108 108
 
109 109
 			case '[INVOICE_URL]' :
110 110
 				$invoice_url = $transaction->invoice_url();
111
-				return empty( $invoice_url ) ? 'http://dummyinvoicelinksforpreview.com' : $invoice_url;
111
+				return empty($invoice_url) ? 'http://dummyinvoicelinksforpreview.com' : $invoice_url;
112 112
 				break;
113 113
 
114 114
 			case '[INVOICE_LOGO_URL]' :
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
 				break;
117 117
 
118 118
 			case '[INVOICE_LOGO]' :
119
-				return $this->_get_invoice_logo( TRUE );
119
+				return $this->_get_invoice_logo(TRUE);
120 120
 				break;
121 121
 
122 122
 			case '[INVOICE_PAYEE_NAME]' :
@@ -138,18 +138,18 @@  discard block
 block discarded – undo
138 138
 
139 139
 			case "[TOTAL_COST]" :
140 140
 				$total = $transaction->total();
141
-				return ! empty($total) ? EEH_Template::format_currency( $total ) : '';
141
+				return ! empty($total) ? EEH_Template::format_currency($total) : '';
142 142
 				break;
143 143
 
144 144
 			case "[PAYMENT_STATUS]" :
145 145
 				$status = $transaction->pretty_status();
146
-				return !empty($status) ? $status : __('Unknown', 'event_espresso');
146
+				return ! empty($status) ? $status : __('Unknown', 'event_espresso');
147 147
 				break; /**/
148 148
 
149 149
 			// note the [payment_status] shortcode is kind of misleading because payment status might be different from txn status so I'm adding this here for clarity.
150 150
 			case "[TXN_STATUS]" :
151 151
 				$status = $transaction->pretty_status();
152
-				return !empty( $status ) ? $status : __('Unknown', 'event_espresso');
152
+				return ! empty($status) ? $status : __('Unknown', 'event_espresso');
153 153
 				break;
154 154
 
155 155
 			case "[TXN_STATUS_ID]" :
@@ -157,21 +157,21 @@  discard block
 block discarded – undo
157 157
 				break;
158 158
 
159 159
 			case "[PAYMENT_GATEWAY]" :
160
-				return $this->_get_payment_gateway( $transaction );
160
+				return $this->_get_payment_gateway($transaction);
161 161
 				break;
162 162
 
163 163
 			case "[AMOUNT_PAID]" :
164 164
 				$amount = $payment instanceof EE_Payment ? $payment->amount() : 0;
165
-				return EEH_Template::format_currency( $amount );
165
+				return EEH_Template::format_currency($amount);
166 166
 				break;
167 167
 
168 168
 			case "[TOTAL_AMOUNT_PAID]" :
169
-				return EEH_Template::format_currency( $transaction->paid() );
169
+				return EEH_Template::format_currency($transaction->paid());
170 170
 				break;
171 171
 
172 172
 			case "[TOTAL_OWING]" :
173
-				$total_owing = isset( $transaction ) && is_object($transaction) ? $transaction->remaining() : $transaction->total();
174
-				return EEH_Template::format_currency( $total_owing );
173
+				$total_owing = isset($transaction) && is_object($transaction) ? $transaction->remaining() : $transaction->total();
174
+				return EEH_Template::format_currency($total_owing);
175 175
 				break;
176 176
 
177 177
 			case "[TXN_SUBTOTAL]" :
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
 				break;
180 180
 
181 181
 			case "[TXN_TAX_SUBTOTAL]" :
182
-				return EEH_Template::format_currency($this->_get_subtotal( TRUE ));
182
+				return EEH_Template::format_currency($this->_get_subtotal(TRUE));
183 183
 				break;
184 184
 
185 185
 			case "[TKT_QTY_PURCHASED]" :
@@ -188,9 +188,9 @@  discard block
 block discarded – undo
188 188
 				break;
189 189
 
190 190
 			case "[TRANSACTION_ADMIN_URL]" :
191
-				require_once EE_CORE . 'admin/EE_Admin_Page.core.php';
192
-				$query_args = array( 'page' => 'espresso_transactions', 'action' => 'view_transaction', 'TXN_ID' => $transaction->ID() );
193
-				$url = EE_Admin_Page::add_query_args_and_nonce( $query_args, admin_url('admin.php') );
191
+				require_once EE_CORE.'admin/EE_Admin_Page.core.php';
192
+				$query_args = array('page' => 'espresso_transactions', 'action' => 'view_transaction', 'TXN_ID' => $transaction->ID());
193
+				$url = EE_Admin_Page::add_query_args_and_nonce($query_args, admin_url('admin.php'));
194 194
 				return $url;
195 195
 				break;
196 196
 
@@ -198,14 +198,14 @@  discard block
 block discarded – undo
198 198
 				//get primary_registration
199 199
 				$reg = $this->_data->primary_reg_obj;
200 200
 
201
-				if ( ! $reg instanceof EE_Registration ) {
201
+				if ( ! $reg instanceof EE_Registration) {
202 202
 					return '';
203 203
 				}
204 204
 				return $reg->receipt_url();
205 205
 				break;
206 206
 
207 207
 			case "[INVOICE_RECEIPT_SWITCHER_URL]" :
208
-				return $this->_get_invoice_receipt_switcher( FALSE );
208
+				return $this->_get_invoice_receipt_switcher(FALSE);
209 209
 				break;
210 210
 
211 211
 			case "[INVOICE_RECEIPT_SWITCHER_BUTTON]" :
@@ -215,12 +215,12 @@  discard block
 block discarded – undo
215 215
 
216 216
 		}
217 217
 
218
-		if ( strpos( $shortcode, '[OWING_STATUS_MESSAGE_*' ) !== FALSE ) {
219
-			return $this->_get_custom_total_oweing( $shortcode );
218
+		if (strpos($shortcode, '[OWING_STATUS_MESSAGE_*') !== FALSE) {
219
+			return $this->_get_custom_total_oweing($shortcode);
220 220
 		}
221 221
 
222
-		if ( strpos( $shortcode, '[INVOICE_PAYEE_TAX_NUMBER_*' ) !== FALSE ) {
223
-			return $this->_get_invoice_payee_tax_number( $shortcode );
222
+		if (strpos($shortcode, '[INVOICE_PAYEE_TAX_NUMBER_*') !== FALSE) {
223
+			return $this->_get_invoice_payee_tax_number($shortcode);
224 224
 		}
225 225
 
226 226
 		return '';
@@ -237,22 +237,22 @@  discard block
 block discarded – undo
237 237
 	 *
238 238
 	 * @return string parsed.
239 239
 	 */
240
-	private function _get_custom_total_oweing( $shortcode ) {
241
-		$valid_shortcodes = array( 'transaction' );
242
-		$attrs = $this->_get_shortcode_attrs( $shortcode );
240
+	private function _get_custom_total_oweing($shortcode) {
241
+		$valid_shortcodes = array('transaction');
242
+		$attrs = $this->_get_shortcode_attrs($shortcode);
243 243
 
244 244
 		//ensure default is set.
245 245
 		$addressee = $this->_data instanceof EE_Messages_Addressee ? $this->_data : null;
246 246
 		$total_owing = $addressee instanceof EE_Messages_Addressee && $addressee->txn instanceof EE_Transaction ? $addressee->txn->remaining() : 0;
247 247
 
248
-		if ( $total_owing > 0 ) {
249
-			$owing_content = ! empty( $attrs['still_owing'] ) ? $attrs['still_owing'] : sprintf( __( '%sPlease make a payment.%s', 'event_espresso'),  '<a href="[PAYMENT_URL]" class="noPrint">', '</a>' );
248
+		if ($total_owing > 0) {
249
+			$owing_content = ! empty($attrs['still_owing']) ? $attrs['still_owing'] : sprintf(__('%sPlease make a payment.%s', 'event_espresso'), '<a href="[PAYMENT_URL]" class="noPrint">', '</a>');
250 250
 
251 251
 			//we need to re run this string through the parser to catch any shortcodes that are in it.
252 252
 			$this->_set_shortcode_helper();
253
-			$owing_content = $this->_shortcode_helper->parse_message_template( $owing_content, $addressee, $valid_shortcodes, $this->_message_type, $this->_messenger, $this->_context, $this->_GRP_ID );
253
+			$owing_content = $this->_shortcode_helper->parse_message_template($owing_content, $addressee, $valid_shortcodes, $this->_message_type, $this->_messenger, $this->_context, $this->_GRP_ID);
254 254
 		} else {
255
-			$owing_content = !empty( $attrs['none_owing']) ? $attrs['none_owing'] : '';
255
+			$owing_content = ! empty($attrs['none_owing']) ? $attrs['none_owing'] : '';
256 256
 		}
257 257
 
258 258
 		return $owing_content;
@@ -260,8 +260,8 @@  discard block
 block discarded – undo
260 260
 
261 261
 
262 262
 
263
-	private function _get_payment_gateway( $transaction ) {
264
-		$pm = $this->_get_payment_method( $transaction );
263
+	private function _get_payment_gateway($transaction) {
264
+		$pm = $this->_get_payment_method($transaction);
265 265
 		return $pm instanceof EE_Payment_Method ? $pm->name() : '';
266 266
 	}
267 267
 
@@ -276,29 +276,29 @@  discard block
 block discarded – undo
276 276
 	 *
277 277
 	 * @return string url or html
278 278
 	 */
279
-	private function _get_invoice_logo( $img_tags = FALSE ) {
279
+	private function _get_invoice_logo($img_tags = FALSE) {
280 280
 		//try to get the invoice payment method's logo for this transaction image first
281 281
 		$pm = $this->_get_payment_method();
282
-		if ( $pm instanceof EE_Payment_Method ){
283
-			$invoice_logo_url = $pm->get_extra_meta( 'pdf_logo_image', TRUE );
284
-		}else{
282
+		if ($pm instanceof EE_Payment_Method) {
283
+			$invoice_logo_url = $pm->get_extra_meta('pdf_logo_image', TRUE);
284
+		} else {
285 285
 			$invoice_logo_url = NULL;
286 286
 		}
287
-		if( empty( $invoice_logo_url ) ){
287
+		if (empty($invoice_logo_url)) {
288 288
 			$invoice_logo_url = EE_Registry::instance()->CFG->organization->logo_url;
289 289
 		}
290 290
 
291
-		if ( empty( $invoice_logo_url ) ) {
291
+		if (empty($invoice_logo_url)) {
292 292
 			return '';
293 293
 		}
294 294
 
295
-		if ( ! $img_tags ) {
295
+		if ( ! $img_tags) {
296 296
 			return $invoice_logo_url;
297 297
 		}
298 298
 
299 299
 		//image tags have been requested.
300
-		$image_size = getimagesize( $invoice_logo_url );
301
-		return '<img class="logo screen" src="' . $invoice_logo_url . '" ' . $image_size[3] . ' alt="logo" />';
300
+		$image_size = getimagesize($invoice_logo_url);
301
+		return '<img class="logo screen" src="'.$invoice_logo_url.'" '.$image_size[3].' alt="logo" />';
302 302
 	}
303 303
 
304 304
 
@@ -315,26 +315,26 @@  discard block
 block discarded – undo
315 315
 	private function _get_invoice_payee_name() {
316 316
 		$payee_name = NULL;
317 317
 		$pm = $this->_get_payment_method();
318
-		if( $pm instanceof EE_Payment_Method ){
319
-			$payee_name = $pm->get_extra_meta( 'pdf_payee_name', TRUE );
318
+		if ($pm instanceof EE_Payment_Method) {
319
+			$payee_name = $pm->get_extra_meta('pdf_payee_name', TRUE);
320 320
 		}
321
-		$payee_name = empty( $payee_name ) ? EE_Registry::instance()->CFG->organization->get_pretty( 'name' ) : $payee_name;
321
+		$payee_name = empty($payee_name) ? EE_Registry::instance()->CFG->organization->get_pretty('name') : $payee_name;
322 322
 		return $payee_name;
323 323
 	}
324 324
 
325 325
 	/**
326 326
 	 * gets the payment method for this transaction. Otherwise gets a default one.
327 327
 	 */
328
-	private function _get_payment_method( $transaction = null ){
329
-		if( $transaction instanceof EE_Transaction ) {
328
+	private function _get_payment_method($transaction = null) {
329
+		if ($transaction instanceof EE_Transaction) {
330 330
 			$payment_method = $transaction->payment_method();
331
-			if ( empty( $payment_method ) ) {
332
-				return apply_filters( 'FHEE__EE_Transaction_Shortcodes__get_payment_method__default', EEM_Payment_Method::instance()->get_one_of_type('Invoice'));
331
+			if (empty($payment_method)) {
332
+				return apply_filters('FHEE__EE_Transaction_Shortcodes__get_payment_method__default', EEM_Payment_Method::instance()->get_one_of_type('Invoice'));
333 333
 			}
334 334
 			return $payment_method;
335
-		}else{
335
+		} else {
336 336
 			//get the first payment method we can find
337
-			return apply_filters( 'FHEE__EE_Transaction_Shortcodes__get_payment_method__default', EEM_Payment_Method::instance()->get_one_of_type('Invoice'));
337
+			return apply_filters('FHEE__EE_Transaction_Shortcodes__get_payment_method__default', EEM_Payment_Method::instance()->get_one_of_type('Invoice'));
338 338
 		}
339 339
 	}
340 340
 
@@ -351,10 +351,10 @@  discard block
 block discarded – undo
351 351
 	private function _get_invoice_payee_email() {
352 352
 		$payee_email = NULL;
353 353
 		$pm = $this->_get_payment_method();
354
-		if( $pm instanceof EE_Payment_Method ){
355
-			$payee_email = $pm->get_extra_meta( 'pdf_payee_email', TRUE );
354
+		if ($pm instanceof EE_Payment_Method) {
355
+			$payee_email = $pm->get_extra_meta('pdf_payee_email', TRUE);
356 356
 		}
357
-		$payee_email = empty( $payee_email ) ? EE_Registry::instance()->CFG->organization->get_pretty( 'email' ) : $payee_email;
357
+		$payee_email = empty($payee_email) ? EE_Registry::instance()->CFG->organization->get_pretty('email') : $payee_email;
358 358
 		return $payee_email;
359 359
 	}
360 360
 
@@ -370,24 +370,24 @@  discard block
 block discarded – undo
370 370
 	 *
371 371
 	 * @return string
372 372
 	 */
373
-	private function _get_invoice_payee_tax_number( $shortcode ) {
373
+	private function _get_invoice_payee_tax_number($shortcode) {
374 374
 		$payee_tax_number = NULL;
375 375
 		$pm = $this->_get_payment_method();
376
-		if( $pm instanceof EE_Payment_Method ){
377
-			$payee_tax_number = $pm->get_extra_meta( 'pdf_payee_tax_number', TRUE );
376
+		if ($pm instanceof EE_Payment_Method) {
377
+			$payee_tax_number = $pm->get_extra_meta('pdf_payee_tax_number', TRUE);
378 378
 		}
379
-		$payee_tax_number = empty( $payee_tax_number ) ? EE_Registry::instance()->CFG->organization->vat : $payee_tax_number;
379
+		$payee_tax_number = empty($payee_tax_number) ? EE_Registry::instance()->CFG->organization->vat : $payee_tax_number;
380 380
 
381
-		if ( empty( $payee_tax_number ) ) {
381
+		if (empty($payee_tax_number)) {
382 382
 			return '';
383 383
 		}
384 384
 
385 385
 		//any attributes?
386
-		$attrs = $this->_get_shortcode_attrs( $shortcode );
386
+		$attrs = $this->_get_shortcode_attrs($shortcode);
387 387
 
388 388
 		//prefix?
389
-		$prefix = isset( $attrs['prefix'] ) ? $attrs['prefix'] : __( 'VAT/Tax Number: ', 'event_espresso' );
390
-		return $prefix . $payee_tax_number;
389
+		$prefix = isset($attrs['prefix']) ? $attrs['prefix'] : __('VAT/Tax Number: ', 'event_espresso');
390
+		return $prefix.$payee_tax_number;
391 391
 	}
392 392
 
393 393
 
@@ -404,22 +404,22 @@  discard block
 block discarded – undo
404 404
 	private function _get_invoice_payee_address() {
405 405
 		$payee_address = NULL;
406 406
 		$pm = $this->_get_payment_method();
407
-		if( $pm instanceof EE_Payment_Method ){
408
-			$payee_address = $pm->get_extra_meta( 'pdf_payee_address', TRUE );
407
+		if ($pm instanceof EE_Payment_Method) {
408
+			$payee_address = $pm->get_extra_meta('pdf_payee_address', TRUE);
409 409
 		}
410
-		if ( empty( $payee_address ) ) {
410
+		if (empty($payee_address)) {
411 411
 			$organization = EE_Registry::instance()->CFG->organization;
412
-			$payee_address = $organization->get_pretty( 'address_1' ) . '<br>';
413
-			$payee_address .= !empty( $organization->address_2 ) ? $organization->get_pretty( 'address_2' ) . '<br>' : '';
414
-			$payee_address .= $organization->get_pretty( 'city' ) . '<br>';
412
+			$payee_address = $organization->get_pretty('address_1').'<br>';
413
+			$payee_address .= ! empty($organization->address_2) ? $organization->get_pretty('address_2').'<br>' : '';
414
+			$payee_address .= $organization->get_pretty('city').'<br>';
415 415
 
416 416
 			//state
417
-			$state = EE_Registry::instance()->load_model( 'State' )->get_one_by_ID( $organization->STA_ID );
418
-			$payee_address .= $state instanceof EE_State ? $state->name()  : '';
417
+			$state = EE_Registry::instance()->load_model('State')->get_one_by_ID($organization->STA_ID);
418
+			$payee_address .= $state instanceof EE_State ? $state->name() : '';
419 419
 
420 420
 			//Country
421
-			$payee_address .= ! empty( $organization->CNT_ISO ) ? ', ' . $organization->CNT_ISO . '<br>' : '';
422
-			$payee_address .= ! empty( $organization->zip ) ? $organization->zip : '';
421
+			$payee_address .= ! empty($organization->CNT_ISO) ? ', '.$organization->CNT_ISO.'<br>' : '';
422
+			$payee_address .= ! empty($organization->zip) ? $organization->zip : '';
423 423
 		}
424 424
 		return $payee_address;
425 425
 	}
@@ -437,7 +437,7 @@  discard block
 block discarded – undo
437 437
 	private function _get_invoice_payment_instructions() {
438 438
 		$instructions = NULL;
439 439
 		$pm = $this->_get_payment_method();
440
-		return ( $pm instanceof EE_Payment_Method ) ? $pm->get_extra_meta( 'pdf_instructions', TRUE) : '';
440
+		return ($pm instanceof EE_Payment_Method) ? $pm->get_extra_meta('pdf_instructions', TRUE) : '';
441 441
 	}
442 442
 
443 443
 
@@ -451,27 +451,27 @@  discard block
 block discarded – undo
451 451
 	 *
452 452
 	 * @return string
453 453
 	 */
454
-	protected function _get_invoice_receipt_switcher( $button = TRUE ) {
454
+	protected function _get_invoice_receipt_switcher($button = TRUE) {
455 455
 		$reg = $this->_data->primary_reg_obj;
456
-		$message_type = isset( $this->_extra_data['message_type'] ) ? $this->_extra_data['message_type'] : '';
457
-		if ( ! $reg instanceof EE_Registration || empty( $message_type ) ) {
456
+		$message_type = isset($this->_extra_data['message_type']) ? $this->_extra_data['message_type'] : '';
457
+		if ( ! $reg instanceof EE_Registration || empty($message_type)) {
458 458
 			return'';
459 459
 		}
460 460
 
461
-		$switch_to_invoice = ! $message_type instanceof EE_Invoice_message_type  ? true : false;
462
-		$switch_to_label = $switch_to_invoice && ! $message_type instanceof EE_Receipt_message_type ? __('View Invoice', 'event_espresso' ) : __( 'Switch to Invoice', 'event_espresso' );
463
-		$switch_to_label = ! $switch_to_invoice ? __( 'Switch to Receipt', 'event_espresso' ) : $switch_to_label;
461
+		$switch_to_invoice = ! $message_type instanceof EE_Invoice_message_type ? true : false;
462
+		$switch_to_label = $switch_to_invoice && ! $message_type instanceof EE_Receipt_message_type ? __('View Invoice', 'event_espresso') : __('Switch to Invoice', 'event_espresso');
463
+		$switch_to_label = ! $switch_to_invoice ? __('Switch to Receipt', 'event_espresso') : $switch_to_label;
464 464
 		$switch_to_url = $switch_to_invoice ? $reg->invoice_url() : $reg->receipt_url();
465 465
 
466
-		if ( ! $button ) {
466
+		if ( ! $button) {
467 467
 			return $switch_to_url;
468 468
 		}
469 469
 
470
-		if ( ! empty( $switch_to_url ) ) {
470
+		if ( ! empty($switch_to_url)) {
471 471
 
472 472
 		return  '
473
-<form method="post" action="' . $switch_to_url . '" >
474
-	<input class="print_button" type="submit" value="' . $switch_to_label . '" />
473
+<form method="post" action="' . $switch_to_url.'" >
474
+	<input class="print_button" type="submit" value="' . $switch_to_label.'" />
475 475
 </form>
476 476
 		';
477 477
 		}
@@ -491,11 +491,11 @@  discard block
 block discarded – undo
491 491
 	 *
492 492
 	 * @return string
493 493
 	 */
494
-	private function _get_receipt_url( EE_Transaction $transaction ) {
494
+	private function _get_receipt_url(EE_Transaction $transaction) {
495 495
 		//get primary_registration
496 496
 		$reg = $this->_data->primary_reg_obj;
497 497
 
498
-		if ( ! $reg instanceof EE_Registration ) {
498
+		if ( ! $reg instanceof EE_Registration) {
499 499
 			return '';
500 500
 		}
501 501
 
@@ -511,10 +511,10 @@  discard block
 block discarded – undo
511 511
 	 *
512 512
 	 * @return int
513 513
 	 */
514
-	private function _get_subtotal( $tax = FALSE ) {
515
-		$grand_total = isset( $this->_data->grand_total_line_item ) ? $this->_data->grand_total_line_item : NULL;
514
+	private function _get_subtotal($tax = FALSE) {
515
+		$grand_total = isset($this->_data->grand_total_line_item) ? $this->_data->grand_total_line_item : NULL;
516 516
 
517
-		if ( ! $grand_total instanceof EE_Line_Item ) {
517
+		if ( ! $grand_total instanceof EE_Line_Item) {
518 518
 			return 0;
519 519
 		}
520 520
 
Please login to merge, or discard this patch.