Completed
Branch BUG-10088-ticket-selector-ifra... (7596e2)
by
unknown
80:30 queued 65:13
created
core/libraries/plugin_api/EE_Register_Payment_Method.lib.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -48,33 +48,33 @@  discard block
 block discarded – undo
48 48
 	 * @type array payment_method_paths 	an array of full server paths to folders containing any EE_PMT_Base children, or to the EED_Module files themselves
49 49
 	 * @return void
50 50
 	 */
51
-	public static function register( $payment_method_id = NULL, $setup_args = array()  ) {
51
+	public static function register($payment_method_id = NULL, $setup_args = array()) {
52 52
 
53 53
 		//required fields MUST be present, so let's make sure they are.
54
-		if ( empty( $payment_method_id ) || ! is_array( $setup_args ) || empty( $setup_args['payment_method_paths'] )) {
55
-			throw new EE_Error( __( 'In order to register Payment Methods with EE_Register_Payment_Method::register(), you must include a "payment_method_id" (a unique identifier for this set of modules), and an array containing the following keys: "payment_method_paths" (an array of full server paths to folders that contain modules, or to the module files themselves)', 'event_espresso' ));
54
+		if (empty($payment_method_id) || ! is_array($setup_args) || empty($setup_args['payment_method_paths'])) {
55
+			throw new EE_Error(__('In order to register Payment Methods with EE_Register_Payment_Method::register(), you must include a "payment_method_id" (a unique identifier for this set of modules), and an array containing the following keys: "payment_method_paths" (an array of full server paths to folders that contain modules, or to the module files themselves)', 'event_espresso'));
56 56
 		}
57 57
 
58 58
 		//make sure we don't register twice
59
-		if( isset( self::$_settings[ $payment_method_id ] ) ){
59
+		if (isset(self::$_settings[$payment_method_id])) {
60 60
 			return;
61 61
 		}
62 62
 
63 63
 		//make sure this was called in the right place!
64
-		if ( ! did_action( 'AHEE__EE_System__load_espresso_addons' ) || did_action( 'AHEE__EE_System__register_shortcodes_modules_and_widgets' )) {
64
+		if ( ! did_action('AHEE__EE_System__load_espresso_addons') || did_action('AHEE__EE_System__register_shortcodes_modules_and_widgets')) {
65 65
 			EE_Error::doing_it_wrong(
66 66
 				__METHOD__,
67
-				__( 'An attempt to register modules has failed because it was not registered at the correct time.  Please use the "AHEE__EE_System__register_shortcodes_modules_and_widgets" hook to register modules.','event_espresso'),
67
+				__('An attempt to register modules has failed because it was not registered at the correct time.  Please use the "AHEE__EE_System__register_shortcodes_modules_and_widgets" hook to register modules.', 'event_espresso'),
68 68
 				'4.3.0'
69 69
 			);
70 70
 		}
71 71
 		//setup $_settings array from incoming values.
72
-		self::$_settings[ $payment_method_id ] = array(
72
+		self::$_settings[$payment_method_id] = array(
73 73
 			// array of full server paths to any EE_PMT_Base children used
74
-			'payment_method_paths'  => isset( $setup_args['payment_method_paths'] ) ? (array)$setup_args['payment_method_paths'] : array(),
74
+			'payment_method_paths'  => isset($setup_args['payment_method_paths']) ? (array) $setup_args['payment_method_paths'] : array(),
75 75
 		);
76 76
 		// add to list of modules to be registered
77
-		add_filter( 'FHEE__EE_Payment_Method_Manager__register_payment_methods__payment_methods_to_register', array( 'EE_Register_Payment_Method', 'add_payment_methods' ));
77
+		add_filter('FHEE__EE_Payment_Method_Manager__register_payment_methods__payment_methods_to_register', array('EE_Register_Payment_Method', 'add_payment_methods'));
78 78
 
79 79
 		/**
80 80
 		 * If EE_Payment_Method_Manager::register_payment_methods has already been called, we need it to be called again
@@ -82,9 +82,9 @@  discard block
 block discarded – undo
82 82
 		 * will be called only once per payment method from an addon, so going with that assumption we should always do this.
83 83
 		 * If that assumption is false, we should verify this newly-registered paymetn method isn't on the EE_Payment_Method_Manager::_payment_method_types array before calling this (this code should be changed to improve performance)
84 84
 		 */
85
-		if ( did_action( 'FHEE__EE_Payment_Method_Manager__register_payment_methods__registered_payment_methods' ) ) {
85
+		if (did_action('FHEE__EE_Payment_Method_Manager__register_payment_methods__registered_payment_methods')) {
86 86
 			EE_Registry::instance()->load_lib('Payment_Method_Manager');
87
-			EE_Payment_Method_Manager::instance()->maybe_register_payment_methods( TRUE );
87
+			EE_Payment_Method_Manager::instance()->maybe_register_payment_methods(TRUE);
88 88
 		}
89 89
 	}
90 90
 
@@ -97,9 +97,9 @@  discard block
 block discarded – undo
97 97
 	 * @param array $payment_method_folders  array of paths to all payment methods that require registering
98 98
 	 * @return array
99 99
 	 */
100
-	public static function add_payment_methods( $payment_method_folders ){
101
-		foreach( self::$_settings as $settings ) {
102
-			$payment_method_folders = array_merge( $payment_method_folders, $settings['payment_method_paths'] );
100
+	public static function add_payment_methods($payment_method_folders) {
101
+		foreach (self::$_settings as $settings) {
102
+			$payment_method_folders = array_merge($payment_method_folders, $settings['payment_method_paths']);
103 103
 		}
104 104
 		return $payment_method_folders;
105 105
 	}
@@ -114,9 +114,9 @@  discard block
 block discarded – undo
114 114
 	 * @param string  $module_id the name for the module that was previously registered
115 115
 	 * @return void
116 116
 	 */
117
-	public static function deregister( $module_id = NULL ) {
118
-		if ( isset( self::$_settings[ $module_id ] )) {
119
-			unset( self::$_settings[ $module_id ] );
117
+	public static function deregister($module_id = NULL) {
118
+		if (isset(self::$_settings[$module_id])) {
119
+			unset(self::$_settings[$module_id]);
120 120
 		}
121 121
 	}
122 122
 
Please login to merge, or discard this patch.
core/libraries/plugin_api/EE_Register_Shortcode.lib.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -44,33 +44,33 @@  discard block
 block discarded – undo
44 44
 	 * @throws EE_Error
45 45
 	 * @return void
46 46
 	 */
47
-	public static function register( $shortcode_id = NULL, $setup_args = array()  ) {
47
+	public static function register($shortcode_id = NULL, $setup_args = array()) {
48 48
 
49 49
 		//required fields MUST be present, so let's make sure they are.
50
-		if ( empty( $shortcode_id ) || ! is_array( $setup_args ) || empty( $setup_args['shortcode_paths'] )) {
51
-			throw new EE_Error( __( 'In order to register Modules with EE_Register_Shortcode::register(), you must include a "shortcode_id" (a unique identifier for this set of shortcodes), and an array containing the following keys: "shortcode_paths" (an array of full server paths to folders that contain shortcodes, or to the shortcode files themselves)', 'event_espresso' ));
50
+		if (empty($shortcode_id) || ! is_array($setup_args) || empty($setup_args['shortcode_paths'])) {
51
+			throw new EE_Error(__('In order to register Modules with EE_Register_Shortcode::register(), you must include a "shortcode_id" (a unique identifier for this set of shortcodes), and an array containing the following keys: "shortcode_paths" (an array of full server paths to folders that contain shortcodes, or to the shortcode files themselves)', 'event_espresso'));
52 52
 		}
53 53
 
54 54
 		//make sure we don't register twice
55
-		if( isset( self::$_settings[ $shortcode_id ] ) ){
55
+		if (isset(self::$_settings[$shortcode_id])) {
56 56
 			return;
57 57
 		}
58 58
 
59 59
 		//make sure this was called in the right place!
60
-		if ( ! did_action( 'AHEE__EE_System__load_espresso_addons' ) || did_action( 'AHEE__EE_System__register_shortcodes_modules_and_widgets' )) {
60
+		if ( ! did_action('AHEE__EE_System__load_espresso_addons') || did_action('AHEE__EE_System__register_shortcodes_modules_and_widgets')) {
61 61
 			EE_Error::doing_it_wrong(
62 62
 				__METHOD__,
63
-				__( 'An attempt to register shortcodes has failed because it was not registered at the correct time.  Please use the "AHEE__EE_System__register_shortcodes_modules_and_widgets" hook to register shortcodes.','event_espresso'),
63
+				__('An attempt to register shortcodes has failed because it was not registered at the correct time.  Please use the "AHEE__EE_System__register_shortcodes_modules_and_widgets" hook to register shortcodes.', 'event_espresso'),
64 64
 				'4.3.0'
65 65
 			);
66 66
 		}
67 67
 		//setup $_settings array from incoming values.
68
-		self::$_settings[ $shortcode_id ] = array(
68
+		self::$_settings[$shortcode_id] = array(
69 69
 			// array of full server paths to any EES_Shortcodes used by the shortcode
70
-			'shortcode_paths'  => isset( $setup_args['shortcode_paths'] ) ? (array)$setup_args['shortcode_paths'] : array(),
70
+			'shortcode_paths'  => isset($setup_args['shortcode_paths']) ? (array) $setup_args['shortcode_paths'] : array(),
71 71
 		);
72 72
 		// add to list of shortcodes to be registered
73
-		add_filter( 'FHEE__EE_Config__register_shortcodes__shortcodes_to_register', array( 'EE_Register_Shortcode', 'add_shortcodes' ));
73
+		add_filter('FHEE__EE_Config__register_shortcodes__shortcodes_to_register', array('EE_Register_Shortcode', 'add_shortcodes'));
74 74
 	}
75 75
 
76 76
 
@@ -82,9 +82,9 @@  discard block
 block discarded – undo
82 82
 	 * @param array $shortcodes_to_register  array of paths to all shortcodes that require registering
83 83
 	 * @return array
84 84
 	 */
85
-	public static function add_shortcodes( $shortcodes_to_register ){
86
-		foreach( self::$_settings as $settings ) {
87
-			$shortcodes_to_register = array_merge( $shortcodes_to_register, $settings['shortcode_paths'] );
85
+	public static function add_shortcodes($shortcodes_to_register) {
86
+		foreach (self::$_settings as $settings) {
87
+			$shortcodes_to_register = array_merge($shortcodes_to_register, $settings['shortcode_paths']);
88 88
 		}
89 89
 		return $shortcodes_to_register;
90 90
 	}
@@ -100,9 +100,9 @@  discard block
 block discarded – undo
100 100
 	 * @param string  $shortcode_id the name for the shortcode that was previously registered
101 101
 	 * @return void
102 102
 	 */
103
-	public static function deregister( $shortcode_id = NULL ) {
104
-		if ( isset( self::$_settings[ $shortcode_id ] )) {
105
-			unset( self::$_settings[ $shortcode_id ] );
103
+	public static function deregister($shortcode_id = NULL) {
104
+		if (isset(self::$_settings[$shortcode_id])) {
105
+			unset(self::$_settings[$shortcode_id]);
106 106
 		}
107 107
 	}
108 108
 
Please login to merge, or discard this patch.
core/libraries/plugin_api/EE_Register_Widget.lib.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -44,34 +44,34 @@  discard block
 block discarded – undo
44 44
 	 * @throws EE_Error
45 45
 	 * @return void
46 46
 	 */
47
-	public static function register( $widget_id = NULL, $setup_args = array()  ) {
47
+	public static function register($widget_id = NULL, $setup_args = array()) {
48 48
 
49 49
 		//required fields MUST be present, so let's make sure they are.
50
-		if ( empty( $widget_id ) || ! is_array( $setup_args ) || empty( $setup_args['widget_paths'] )) {
51
-			throw new EE_Error( __( 'In order to register Widgets with EE_Register_Widget::register(), you must include a "widget_id" (a unique identifier for this set of widgets), and an array containing the following keys: "widget_paths" (an array of full server paths to folders that contain widgets, or to the widget files themselves)', 'event_espresso' ));
50
+		if (empty($widget_id) || ! is_array($setup_args) || empty($setup_args['widget_paths'])) {
51
+			throw new EE_Error(__('In order to register Widgets with EE_Register_Widget::register(), you must include a "widget_id" (a unique identifier for this set of widgets), and an array containing the following keys: "widget_paths" (an array of full server paths to folders that contain widgets, or to the widget files themselves)', 'event_espresso'));
52 52
 		}
53 53
 
54 54
 		//make sure we don't register twice
55
-		if( isset( self::$_settings[ $widget_id ] ) ){
55
+		if (isset(self::$_settings[$widget_id])) {
56 56
 			return;
57 57
 		}
58 58
 
59 59
 
60 60
 		//make sure this was called in the right place!
61
-		if ( ! did_action( 'AHEE__EE_System__load_espresso_addons' ) || did_action( 'AHEE__EE_System__register_shortcodes_modules_and_widgets' )) {
61
+		if ( ! did_action('AHEE__EE_System__load_espresso_addons') || did_action('AHEE__EE_System__register_shortcodes_modules_and_widgets')) {
62 62
 			EE_Error::doing_it_wrong(
63 63
 				__METHOD__,
64
-				__( 'An attempt to register widgets has failed because it was not registered at the correct time.  Please use the "AHEE__EE_System__register_shortcodes_modules_and_widgets" hook to register widgets.','event_espresso'),
64
+				__('An attempt to register widgets has failed because it was not registered at the correct time.  Please use the "AHEE__EE_System__register_shortcodes_modules_and_widgets" hook to register widgets.', 'event_espresso'),
65 65
 				'4.3.0'
66 66
 			);
67 67
 		}
68 68
 		//setup $_settings array from incoming values.
69
-		self::$_settings[ $widget_id ] = array(
69
+		self::$_settings[$widget_id] = array(
70 70
 			// array of full server paths to any EED_Widgets used by the widget
71
-			'widget_paths'  => isset( $setup_args['widget_paths'] ) ? (array)$setup_args['widget_paths'] : array(),
71
+			'widget_paths'  => isset($setup_args['widget_paths']) ? (array) $setup_args['widget_paths'] : array(),
72 72
 		);
73 73
 		// add to list of widgets to be registered
74
-		add_filter( 'FHEE__EE_Config__register_widgets__widgets_to_register', array( 'EE_Register_Widget', 'add_widgets' ));
74
+		add_filter('FHEE__EE_Config__register_widgets__widgets_to_register', array('EE_Register_Widget', 'add_widgets'));
75 75
 	}
76 76
 
77 77
 
@@ -83,9 +83,9 @@  discard block
 block discarded – undo
83 83
 	 * @param array $widgets_to_register  array of paths to all widgets that require registering
84 84
 	 * @return array
85 85
 	 */
86
-	public static function add_widgets( $widgets_to_register = array() ) {
87
-		foreach( self::$_settings as $settings ) {
88
-			$widgets_to_register = array_merge( $widgets_to_register, $settings['widget_paths'] );
86
+	public static function add_widgets($widgets_to_register = array()) {
87
+		foreach (self::$_settings as $settings) {
88
+			$widgets_to_register = array_merge($widgets_to_register, $settings['widget_paths']);
89 89
 		}
90 90
 		return $widgets_to_register;
91 91
 	}
@@ -101,9 +101,9 @@  discard block
 block discarded – undo
101 101
 	 * @param string  $widget_id the name for the widget that was previously registered
102 102
 	 * @return void
103 103
 	 */
104
-	public static function deregister( $widget_id = NULL ) {
105
-		if ( isset( self::$_settings[ $widget_id ] )) {
106
-			unset( self::$_settings[ $widget_id ] );
104
+	public static function deregister($widget_id = NULL) {
105
+		if (isset(self::$_settings[$widget_id])) {
106
+			unset(self::$_settings[$widget_id]);
107 107
 		}
108 108
 	}
109 109
 
Please login to merge, or discard this patch.
core/libraries/plugin_api/db/EEE_Base_Class.lib.php 2 patches
Spacing   +21 added lines, -21 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,12 +47,12 @@  discard block
 block discarded – undo
47 47
 	 */
48 48
 	protected $_ = NULL;
49 49
 
50
-	public function __construct(){
51
-		if( ! $this->_model_name_extended){
50
+	public function __construct() {
51
+		if ( ! $this->_model_name_extended) {
52 52
 			throw new EE_Error(sprintf(__("When declaring a class extension, you must define its _model_name_extended property. It should be a model name like 'Attendee' or 'Event'", "event_espresso")));
53 53
 		}
54
-		if(did_action('AHEE__EE_'.$this->_model_name_extended.'__construct__end')){
55
-			throw new EE_Error(sprintf(__("Hooked in model object extension '%s' too late! The model object %s has already been used!", "event_espresso"),get_class($this),$this->_model_name_extended));
54
+		if (did_action('AHEE__EE_'.$this->_model_name_extended.'__construct__end')) {
55
+			throw new EE_Error(sprintf(__("Hooked in model object extension '%s' too late! The model object %s has already been used!", "event_espresso"), get_class($this), $this->_model_name_extended));
56 56
 		}
57 57
 		$this->_register_extending_methods();
58 58
 	}
@@ -61,13 +61,13 @@  discard block
 block discarded – undo
61 61
 	 * scans the child of EEME_Base for functions starting with ext_, and magically makes them functions on the
62 62
 	 * model extended. (Internally uses filters, and the __call magic method)
63 63
 	 */
64
-	protected function _register_extending_methods(){
64
+	protected function _register_extending_methods() {
65 65
 		$all_methods = get_class_methods(get_class($this));
66
-		foreach($all_methods as $method_name){
67
-			if(strpos($method_name, self::extending_method_prefix) === 0){
66
+		foreach ($all_methods as $method_name) {
67
+			if (strpos($method_name, self::extending_method_prefix) === 0) {
68 68
 				$method_name_on_model = str_replace(self::extending_method_prefix, '', $method_name);
69 69
 				$callback_name = "FHEE__EE_{$this->_model_name_extended}__$method_name_on_model";
70
-				add_filter($callback_name,array($this,self::dynamic_callback_method_prefix.$method_name_on_model),10,10);
70
+				add_filter($callback_name, array($this, self::dynamic_callback_method_prefix.$method_name_on_model), 10, 10);
71 71
 			}
72 72
 		}
73 73
 	}
@@ -75,20 +75,20 @@  discard block
 block discarded – undo
75 75
 	 * scans the child of EEME_Base for functions starting with ext_, and magically REMOVES them as functions on the
76 76
 	 * model extended. (Internally uses filters, and the __call magic method)
77 77
 	 */
78
-	public function deregister(){
78
+	public function deregister() {
79 79
 		$all_methods = get_class_methods(get_class($this));
80
-		foreach($all_methods as $method_name){
81
-			if(strpos($method_name, self::extending_method_prefix) === 0){
80
+		foreach ($all_methods as $method_name) {
81
+			if (strpos($method_name, self::extending_method_prefix) === 0) {
82 82
 				$method_name_on_model = str_replace(self::extending_method_prefix, '', $method_name);
83 83
 				$callback_name = "FHEE__EE_{$this->_model_name_extended}__$method_name_on_model";
84
-				remove_filter($callback_name,array($this,self::dynamic_callback_method_prefix.$method_name_on_model),10);
84
+				remove_filter($callback_name, array($this, self::dynamic_callback_method_prefix.$method_name_on_model), 10);
85 85
 			}
86 86
 		}
87 87
 	}
88 88
 
89 89
 
90
-	public function __call($callback_method_name,$args){
91
-		if(strpos($callback_method_name, self::dynamic_callback_method_prefix) === 0){
90
+	public function __call($callback_method_name, $args) {
91
+		if (strpos($callback_method_name, self::dynamic_callback_method_prefix) === 0) {
92 92
 			//it's a dynamic callback for a method name
93 93
 			$method_called_on_model = str_replace(self::dynamic_callback_method_prefix, '', $callback_method_name);
94 94
 			$original_return_val = $args[0];
@@ -96,14 +96,14 @@  discard block
 block discarded – undo
96 96
 			$this->_ = $model_called;
97 97
 			$args_provided_to_method_on_model = $args[2];
98 98
 			$extending_method = self::extending_method_prefix.$method_called_on_model;
99
-			if(method_exists($this, $extending_method)){
100
-				return call_user_func_array(array($this,$extending_method), $args_provided_to_method_on_model);
101
-			}else{
102
-				throw new EE_Error(sprintf(__("An odd error occurred. Model '%s' had a method called on it that it didn't recognize. So it passed it onto the model extension '%s' (because it had a function named '%s' which should be able to handle it), but the function '%s' doesnt exist!)", "event_espresso"),$this->_model_name_extended,get_class($this),$extending_method,$extending_method));
99
+			if (method_exists($this, $extending_method)) {
100
+				return call_user_func_array(array($this, $extending_method), $args_provided_to_method_on_model);
101
+			} else {
102
+				throw new EE_Error(sprintf(__("An odd error occurred. Model '%s' had a method called on it that it didn't recognize. So it passed it onto the model extension '%s' (because it had a function named '%s' which should be able to handle it), but the function '%s' doesnt exist!)", "event_espresso"), $this->_model_name_extended, get_class($this), $extending_method, $extending_method));
103 103
 			}
104 104
 
105
-		}else{
106
-			throw new EE_Error(sprintf(__("There is no method named '%s' on '%s'", "event_espresso"),$callback_method_name,get_class($this)));
105
+		} else {
106
+			throw new EE_Error(sprintf(__("There is no method named '%s' on '%s'", "event_espresso"), $callback_method_name, get_class($this)));
107 107
 		}
108 108
 	}
109 109
 
Please login to merge, or discard this patch.
Braces   +4 added lines, -3 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
  *
@@ -159,11 +160,11 @@  discard block
 block discarded – undo
159 160
 			$extending_method = self::extending_method_prefix.$method_called_on_model;
160 161
 			if(method_exists($this, $extending_method)){
161 162
 				return call_user_func_array(array($this,$extending_method), $args_provided_to_method_on_model);
162
-			}else{
163
+			} else{
163 164
 				throw new EE_Error(sprintf(__("An odd error occurred. Model '%s' had a method called on it that it didn't recognize. So it passed it onto the model extension '%s' (because it had a function named '%s' which should be able to handle it), but the function '%s' doesnt exist!)", "event_espresso"),$this->_model_name_extended,get_class($this),$extending_method,$extending_method));
164 165
 			}
165 166
 
166
-		}else{
167
+		} else{
167 168
 			throw new EE_Error(sprintf(__("There is no method named '%s' on '%s'", "event_espresso"),$callback_method_name,get_class($this)));
168 169
 		}
169 170
 	}
Please login to merge, or discard this patch.
core/libraries/plugin_api/db/EEME_Base.lib.php 2 patches
Braces   +4 added lines, -3 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
  *
@@ -159,11 +160,11 @@  discard block
 block discarded – undo
159 160
 			$extending_method = self::extending_method_prefix.$method_called_on_model;
160 161
 			if(method_exists($this, $extending_method)){
161 162
 				return call_user_func_array(array($this,$extending_method), $args_provided_to_method_on_model);
162
-			}else{
163
+			} else{
163 164
 				throw new EE_Error(sprintf(__("An odd error occurred. Model '%s' had a method called on it that it didn't recognize. So it passed it onto the model extension '%s' (because it had a function named '%s' which should be able to handle it), but the function '%s' doesnt exist!)", "event_espresso"),$this->_model_name_extended,get_class($this),$extending_method,$extending_method));
164 165
 			}
165 166
 
166
-		}else{
167
+		} else{
167 168
 			throw new EE_Error(sprintf(__("There is no method named '%s' on '%s'", "event_espresso"),$callback_method_name,get_class($this)));
168 169
 		}
169 170
 	}
Please login to merge, or discard this patch.
Spacing   +39 added lines, -39 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
 /**
@@ -69,58 +69,58 @@  discard block
 block discarded – undo
69 69
 	/**
70 70
 	 * @throws \EE_Error
71 71
 	 */
72
-	public function __construct(){
73
-		if( ! $this->_model_name_extended){
72
+	public function __construct() {
73
+		if ( ! $this->_model_name_extended) {
74 74
 			throw new EE_Error(sprintf(__("When declaring a model extension, you must define its _model_name_extended property. It should be a model name like 'Attendee' or 'Event'", "event_espresso")));
75 75
 		}
76 76
 		$construct_end_action = 'AHEE__EEM_'.$this->_model_name_extended.'__construct__end';
77
-		if ( did_action( $construct_end_action )) {
77
+		if (did_action($construct_end_action)) {
78 78
 			throw new EE_Error(
79 79
 				sprintf(
80
-					__( "Hooked in model extension '%s' too late! The model %s has already been used! We know because the action %s has been fired", "event_espresso"),
80
+					__("Hooked in model extension '%s' too late! The model %s has already been used! We know because the action %s has been fired", "event_espresso"),
81 81
 					get_class($this),
82 82
 					$this->_model_name_extended,
83 83
 					$construct_end_action
84 84
 				)
85 85
 			);
86 86
 		}
87
-		add_filter('FHEE__EEM_'.$this->_model_name_extended.'__construct__tables',array($this,'add_extra_tables_on_filter'));
88
-		add_filter('FHEE__EEM_'.$this->_model_name_extended.'__construct__fields',array($this,'add_extra_fields_on_filter'));
89
-		add_filter('FHEE__EEM_'.$this->_model_name_extended.'__construct__model_relations',array($this,'add_extra_relations_on_filter'));
87
+		add_filter('FHEE__EEM_'.$this->_model_name_extended.'__construct__tables', array($this, 'add_extra_tables_on_filter'));
88
+		add_filter('FHEE__EEM_'.$this->_model_name_extended.'__construct__fields', array($this, 'add_extra_fields_on_filter'));
89
+		add_filter('FHEE__EEM_'.$this->_model_name_extended.'__construct__model_relations', array($this, 'add_extra_relations_on_filter'));
90 90
 		$this->_register_extending_methods();
91 91
 	}
92 92
 
93
-	public function add_extra_tables_on_filter( $existing_tables ){
94
-		$tables = array_merge( $existing_tables, $this->_extra_tables );
93
+	public function add_extra_tables_on_filter($existing_tables) {
94
+		$tables = array_merge($existing_tables, $this->_extra_tables);
95 95
 		return $tables;
96 96
 	}
97
-	public function add_extra_fields_on_filter($existing_fields){
98
-		if( $this->_extra_fields){
99
-			foreach($this->_extra_fields as $table_alias => $fields){
100
-				if( ! isset( $existing_fields[ $table_alias ] ) ){
101
-					$existing_fields[ $table_alias ] = array();
97
+	public function add_extra_fields_on_filter($existing_fields) {
98
+		if ($this->_extra_fields) {
99
+			foreach ($this->_extra_fields as $table_alias => $fields) {
100
+				if ( ! isset($existing_fields[$table_alias])) {
101
+					$existing_fields[$table_alias] = array();
102 102
 				}
103
-				$existing_fields[$table_alias] = array_merge($existing_fields[$table_alias],$this->_extra_fields[$table_alias]);
103
+				$existing_fields[$table_alias] = array_merge($existing_fields[$table_alias], $this->_extra_fields[$table_alias]);
104 104
 
105 105
 			}
106 106
 		}
107 107
 		return $existing_fields;
108 108
 	}
109
-	public function add_extra_relations_on_filter($existing_relations){
110
-		$relations =  array_merge($existing_relations,$this->_extra_relations);
109
+	public function add_extra_relations_on_filter($existing_relations) {
110
+		$relations = array_merge($existing_relations, $this->_extra_relations);
111 111
 		return $relations;
112 112
 	}
113 113
 	/**
114 114
 	 * scans the child of EEME_Base for functions starting with ext_, and magically makes them functions on the
115 115
 	 * model extended. (Internally uses filters, and the __call magic method)
116 116
 	 */
117
-	protected function _register_extending_methods(){
117
+	protected function _register_extending_methods() {
118 118
 		$all_methods = get_class_methods(get_class($this));
119
-		foreach($all_methods as $method_name){
120
-			if(strpos($method_name, self::extending_method_prefix) === 0){
119
+		foreach ($all_methods as $method_name) {
120
+			if (strpos($method_name, self::extending_method_prefix) === 0) {
121 121
 				$method_name_on_model = str_replace(self::extending_method_prefix, '', $method_name);
122 122
 				$callback_name = "FHEE__EEM_{$this->_model_name_extended}__$method_name_on_model";
123
-				add_filter($callback_name,array($this,self::dynamic_callback_method_prefix.$method_name_on_model),10,10);
123
+				add_filter($callback_name, array($this, self::dynamic_callback_method_prefix.$method_name_on_model), 10, 10);
124 124
 			}
125 125
 		}
126 126
 	}
@@ -129,27 +129,27 @@  discard block
 block discarded – undo
129 129
 	 * scans the child of EEME_Base for functions starting with ext_, and magically REMOVES them as functions on the
130 130
 	 * model extended. (Internally uses filters, and the __call magic method)
131 131
 	 */
132
-	public function deregister(){
133
-		remove_filter('FHEE__EEM_'.$this->_model_name_extended.'__construct__tables',array($this,'add_extra_tables_on_filter'));
134
-		remove_filter('FHEE__EEM_'.$this->_model_name_extended.'__construct__fields',array($this,'add_extra_fields_on_filter'));
135
-		remove_filter('FHEE__EEM_'.$this->_model_name_extended.'__construct__model_relations',array($this,'add_extra_relations_on_filter'));
132
+	public function deregister() {
133
+		remove_filter('FHEE__EEM_'.$this->_model_name_extended.'__construct__tables', array($this, 'add_extra_tables_on_filter'));
134
+		remove_filter('FHEE__EEM_'.$this->_model_name_extended.'__construct__fields', array($this, 'add_extra_fields_on_filter'));
135
+		remove_filter('FHEE__EEM_'.$this->_model_name_extended.'__construct__model_relations', array($this, 'add_extra_relations_on_filter'));
136 136
 		$all_methods = get_class_methods(get_class($this));
137
-		foreach($all_methods as $method_name){
138
-			if(strpos($method_name, self::extending_method_prefix) === 0){
137
+		foreach ($all_methods as $method_name) {
138
+			if (strpos($method_name, self::extending_method_prefix) === 0) {
139 139
 				$method_name_on_model = str_replace(self::extending_method_prefix, '', $method_name);
140 140
 				$callback_name = "FHEE__EEM_{$this->_model_name_extended}__$method_name_on_model";
141
-				remove_filter($callback_name,array($this,self::dynamic_callback_method_prefix.$method_name_on_model),10);
141
+				remove_filter($callback_name, array($this, self::dynamic_callback_method_prefix.$method_name_on_model), 10);
142 142
 			}
143 143
 		}
144
-		$model_to_reset = 'EEM_' . $this->_model_name_extended;
145
-		if ( class_exists( $model_to_reset ) ) {
144
+		$model_to_reset = 'EEM_'.$this->_model_name_extended;
145
+		if (class_exists($model_to_reset)) {
146 146
 			$model_to_reset::reset();
147 147
 		}
148 148
 	}
149 149
 
150 150
 
151
-	public function __call($callback_method_name,$args){
152
-		if(strpos($callback_method_name, self::dynamic_callback_method_prefix) === 0){
151
+	public function __call($callback_method_name, $args) {
152
+		if (strpos($callback_method_name, self::dynamic_callback_method_prefix) === 0) {
153 153
 			//it's a dynamic callback for a method name
154 154
 			$method_called_on_model = str_replace(self::dynamic_callback_method_prefix, '', $callback_method_name);
155 155
 			$original_return_val = $args[0];
@@ -157,14 +157,14 @@  discard block
 block discarded – undo
157 157
 			$this->_ = $model_called;
158 158
 			$args_provided_to_method_on_model = $args[2];
159 159
 			$extending_method = self::extending_method_prefix.$method_called_on_model;
160
-			if(method_exists($this, $extending_method)){
161
-				return call_user_func_array(array($this,$extending_method), $args_provided_to_method_on_model);
162
-			}else{
163
-				throw new EE_Error(sprintf(__("An odd error occurred. Model '%s' had a method called on it that it didn't recognize. So it passed it onto the model extension '%s' (because it had a function named '%s' which should be able to handle it), but the function '%s' doesnt exist!)", "event_espresso"),$this->_model_name_extended,get_class($this),$extending_method,$extending_method));
160
+			if (method_exists($this, $extending_method)) {
161
+				return call_user_func_array(array($this, $extending_method), $args_provided_to_method_on_model);
162
+			} else {
163
+				throw new EE_Error(sprintf(__("An odd error occurred. Model '%s' had a method called on it that it didn't recognize. So it passed it onto the model extension '%s' (because it had a function named '%s' which should be able to handle it), but the function '%s' doesnt exist!)", "event_espresso"), $this->_model_name_extended, get_class($this), $extending_method, $extending_method));
164 164
 			}
165 165
 
166
-		}else{
167
-			throw new EE_Error(sprintf(__("There is no method named '%s' on '%s'", "event_espresso"),$callback_method_name,get_class($this)));
166
+		} else {
167
+			throw new EE_Error(sprintf(__("There is no method named '%s' on '%s'", "event_espresso"), $callback_method_name, get_class($this)));
168 168
 		}
169 169
 	}
170 170
 
Please login to merge, or discard this patch.
core/libraries/shortcodes/EE_Attendee_List_Shortcodes.lib.php 2 patches
Spacing   +15 added lines, -15 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
 /**
@@ -48,8 +48,8 @@  discard block
 block discarded – undo
48 48
 
49 49
 
50 50
 
51
-	protected function _parser( $shortcode ) {
52
-		switch ( $shortcode ) {
51
+	protected function _parser($shortcode) {
52
+		switch ($shortcode) {
53 53
 			case '[ATTENDEE_LIST]' :
54 54
 				return $this->_get_attendee_list();
55 55
 				break;
@@ -67,13 +67,13 @@  discard block
 block discarded – undo
67 67
 		$this->_validate_list_requirements();
68 68
 		$this->_set_shortcode_helper();
69 69
 
70
-		if ( $this->_data['data'] instanceof EE_Messages_Addressee )
70
+		if ($this->_data['data'] instanceof EE_Messages_Addressee)
71 71
 			return $this->_get_attendee_list_for_main();
72 72
 
73
-		else if ( $this->_data['data'] instanceof EE_Event )
73
+		else if ($this->_data['data'] instanceof EE_Event)
74 74
 			return $this->_get_attendee_list_for_event();
75 75
 
76
-		else if ( $this->_data['data'] instanceof EE_Ticket )
76
+		else if ($this->_data['data'] instanceof EE_Ticket)
77 77
 			return $this->_get_registration_list_for_ticket();
78 78
 
79 79
 		//prevent recursive loop
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 
94 94
 
95 95
 		//now we need to loop through the attendee list and send data to the EE_Parser helper.
96
-		foreach ( $data->reg_objs as $registration ) {
96
+		foreach ($data->reg_objs as $registration) {
97 97
 			$attnds .= $this->_shortcode_helper->parse_attendee_list_template($template, $registration, $valid_shortcodes, $this->_extra_data);
98 98
 		}
99 99
 
@@ -107,8 +107,8 @@  discard block
 block discarded – undo
107 107
 	 * @return string
108 108
 	 */
109 109
 	private function _get_attendee_list_for_event() {
110
-		$valid_shortcodes = array('attendee', 'ticket_list', 'question_list', 'recipient_details' );
111
-		$template = is_array( $this->_data['template'] ) && isset($this->_data['template']['attendee_list']) ? $this->_data['template']['attendee_list'] : $this->_extra_data['template']['attendee_list'];
110
+		$valid_shortcodes = array('attendee', 'ticket_list', 'question_list', 'recipient_details');
111
+		$template = is_array($this->_data['template']) && isset($this->_data['template']['attendee_list']) ? $this->_data['template']['attendee_list'] : $this->_extra_data['template']['attendee_list'];
112 112
 		$event = $this->_data['data'];
113 113
 
114 114
 		//let's remove any existing [EVENT_LIST] shortcode from the attendee list template so that we don't get recursion.
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
 		$registrations = $this->_get_registrations_from_event($event);
120 120
 
121 121
 		//each attendee in this case should be an attendee object.
122
-		foreach ( $registrations as $registration ) {
122
+		foreach ($registrations as $registration) {
123 123
 			$att_result .= $this->_shortcode_helper->parse_attendee_list_template($template, $registration, $valid_shortcodes, $this->_extra_data);
124 124
 		}
125 125
 
@@ -133,8 +133,8 @@  discard block
 block discarded – undo
133 133
 	 * @return string
134 134
 	 */
135 135
 	private function _get_registration_list_for_ticket() {
136
-		$valid_shortcodes = array( 'attendee', 'event_list', 'question_list', 'recipient_details' );
137
-		$template = is_array( $this->_data['template'] ) && isset($this->_data['template']['attendee_list']) ? $this->_data['template']['attendee_list'] : $this->_extra_data['template']['attendee_list'];
136
+		$valid_shortcodes = array('attendee', 'event_list', 'question_list', 'recipient_details');
137
+		$template = is_array($this->_data['template']) && isset($this->_data['template']['attendee_list']) ? $this->_data['template']['attendee_list'] : $this->_extra_data['template']['attendee_list'];
138 138
 		$ticket = $this->_data['data'];
139 139
 
140 140
 		//let's remove any existing [TICKET_LIST] (or related) shortcode from the attendee list template so that we don't get recursion.
@@ -144,10 +144,10 @@  discard block
 block discarded – undo
144 144
 
145 145
 		//here we're setting up the attendees for the attendee_list template for THIS ticket.
146 146
 		$att_result = '';
147
-		$registrations = isset( $this->_extra_data['data']->tickets ) ? $this->_extra_data['data']->tickets[$ticket->ID()]['reg_objs'] : array();
147
+		$registrations = isset($this->_extra_data['data']->tickets) ? $this->_extra_data['data']->tickets[$ticket->ID()]['reg_objs'] : array();
148 148
 
149 149
 		//each attendee in this case should be an attendee object.
150
-		foreach ( $registrations as $registration ) {
150
+		foreach ($registrations as $registration) {
151 151
 			$att_result .= $this->_shortcode_helper->parse_attendee_list_template($template, $registration, $valid_shortcodes, $this->_extra_data);
152 152
 		}
153 153
 
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
 
158 158
 
159 159
 
160
-	private function _get_registrations_from_event( EE_Event $event ) {
160
+	private function _get_registrations_from_event(EE_Event $event) {
161 161
 		return isset($this->_extra_data['data']->events) ? $this->_extra_data['data']->events[$event->ID()]['reg_objs'] : array();
162 162
 	}
163 163
 
Please login to merge, or discard this patch.
Braces   +12 added lines, -11 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
@@ -67,18 +68,18 @@  discard block
 block discarded – undo
67 68
 		$this->_validate_list_requirements();
68 69
 		$this->_set_shortcode_helper();
69 70
 
70
-		if ( $this->_data['data'] instanceof EE_Messages_Addressee )
71
-			return $this->_get_attendee_list_for_main();
72
-
73
-		else if ( $this->_data['data'] instanceof EE_Event )
74
-			return $this->_get_attendee_list_for_event();
75
-
76
-		else if ( $this->_data['data'] instanceof EE_Ticket )
77
-			return $this->_get_registration_list_for_ticket();
71
+		if ( $this->_data['data'] instanceof EE_Messages_Addressee ) {
72
+					return $this->_get_attendee_list_for_main();
73
+		} else if ( $this->_data['data'] instanceof EE_Event ) {
74
+					return $this->_get_attendee_list_for_event();
75
+		} else if ( $this->_data['data'] instanceof EE_Ticket ) {
76
+					return $this->_get_registration_list_for_ticket();
77
+		}
78 78
 
79 79
 		//prevent recursive loop
80
-		else
81
-			return '';
80
+		else {
81
+					return '';
82
+		}
82 83
 	}
83 84
 
84 85
 
Please login to merge, or discard this patch.
core/libraries/shortcodes/EE_Datetime_List_Shortcodes.lib.php 2 patches
Spacing   +12 added lines, -12 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
 /**
@@ -44,8 +44,8 @@  discard block
 block discarded – undo
44 44
 
45 45
 
46 46
 
47
-	protected function _parser( $shortcode ) {
48
-		switch ( $shortcode ) {
47
+	protected function _parser($shortcode) {
48
+		switch ($shortcode) {
49 49
 			case '[DATETIME_LIST]' :
50 50
 				return $this->_get_datetime_list();
51 51
 				break;
@@ -63,13 +63,13 @@  discard block
 block discarded – undo
63 63
 		$this->_validate_list_requirements();
64 64
 		$this->_set_shortcode_helper();
65 65
 
66
-		if ( $this->_data['data'] instanceof EE_Ticket )
66
+		if ($this->_data['data'] instanceof EE_Ticket)
67 67
 			return $this->_get_datetime_list_for_ticket();
68 68
 
69
-		else if ( $this->_data['data'] instanceof EE_Event )
69
+		else if ($this->_data['data'] instanceof EE_Event)
70 70
 			return $this->_get_datetime_list_for_event();
71 71
 
72
-		else if ( $this->_data['data'] instanceof EE_Messages_Addressee && $this->_data['data']->reg_obj instanceof EE_Registration ) {
72
+		else if ($this->_data['data'] instanceof EE_Messages_Addressee && $this->_data['data']->reg_obj instanceof EE_Registration) {
73 73
 			return $this->_get_datetime_list_for_registration();
74 74
 		}
75 75
 
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 	 */
87 87
 	private function _get_datetime_list_for_event() {
88 88
 		$valid_shortcodes = array('datetime', 'attendee');
89
-		$template = is_array($this->_data['template'] ) && isset($this->_data['template']['datetime_list']) ? $this->_data['template']['datetime_list'] : $this->_extra_data['template']['datetime_list'];
89
+		$template = is_array($this->_data['template']) && isset($this->_data['template']['datetime_list']) ? $this->_data['template']['datetime_list'] : $this->_extra_data['template']['datetime_list'];
90 90
 		$event = $this->_data['data'];
91 91
 
92 92
 		//here we're setting up the datetimes for the datetime list template for THIS event.
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
 		$datetimes = $this->_get_datetimes_from_event($event);
95 95
 
96 96
 		//each datetime in this case should be an datetime object.
97
-		foreach ( $datetimes as $datetime ) {
97
+		foreach ($datetimes as $datetime) {
98 98
 			$dtt_parsed .= $this->_shortcode_helper->parse_datetime_list_template($template, $datetime, $valid_shortcodes, $this->_extra_data);
99 99
 		}
100 100
 
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
 	private function _get_datetime_list_for_ticket() {
111 111
 		$valid_shortcodes = array('datetime', 'attendee');
112 112
 
113
-		$template = is_array($this->_data['template'] ) && isset($this->_data['template']['datetime_list']) ? $this->_data['template']['datetime_list'] : $this->_extra_data['template']['datetime_list'];
113
+		$template = is_array($this->_data['template']) && isset($this->_data['template']['datetime_list']) ? $this->_data['template']['datetime_list'] : $this->_extra_data['template']['datetime_list'];
114 114
 		$ticket = $this->_data['data'];
115 115
 
116 116
 		//here we're setting up the datetimes for the datetime list template for THIS ticket.
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
 		$datetimes = $this->_get_datetimes_from_ticket($ticket);
119 119
 
120 120
 		//each datetime in this case should be an datetime object.
121
-		foreach ( $datetimes as $datetime ) {
121
+		foreach ($datetimes as $datetime) {
122 122
 			$dtt_parsed .= $this->_shortcode_helper->parse_datetime_list_template($template, $datetime, $valid_shortcodes, $this->_extra_data);
123 123
 		}
124 124
 
@@ -143,11 +143,11 @@  discard block
 block discarded – undo
143 143
 
144 144
 
145 145
 
146
-	private function _get_datetimes_from_event( EE_Event $event, $att = NULL ) {
146
+	private function _get_datetimes_from_event(EE_Event $event, $att = NULL) {
147 147
 		 return isset($this->_extra_data['data']->events) ? $this->_extra_data['data']->events[$event->ID()]['dtt_objs'] : array();
148 148
 	}
149 149
 
150
-	private function _get_datetimes_from_ticket( EE_Ticket $ticket, $att = NULL ) {
150
+	private function _get_datetimes_from_ticket(EE_Ticket $ticket, $att = NULL) {
151 151
 		return isset($this->_extra_data['data']->tickets) ? $this->_extra_data['data']->tickets[$ticket->ID()]['dtt_objs'] : array();
152 152
 	}
153 153
 
Please login to merge, or discard this patch.
Braces   +10 added lines, -10 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
@@ -63,19 +64,18 @@  discard block
 block discarded – undo
63 64
 		$this->_validate_list_requirements();
64 65
 		$this->_set_shortcode_helper();
65 66
 
66
-		if ( $this->_data['data'] instanceof EE_Ticket )
67
-			return $this->_get_datetime_list_for_ticket();
68
-
69
-		else if ( $this->_data['data'] instanceof EE_Event )
70
-			return $this->_get_datetime_list_for_event();
71
-
72
-		else if ( $this->_data['data'] instanceof EE_Messages_Addressee && $this->_data['data']->reg_obj instanceof EE_Registration ) {
67
+		if ( $this->_data['data'] instanceof EE_Ticket ) {
68
+					return $this->_get_datetime_list_for_ticket();
69
+		} else if ( $this->_data['data'] instanceof EE_Event ) {
70
+					return $this->_get_datetime_list_for_event();
71
+		} else if ( $this->_data['data'] instanceof EE_Messages_Addressee && $this->_data['data']->reg_obj instanceof EE_Registration ) {
73 72
 			return $this->_get_datetime_list_for_registration();
74 73
 		}
75 74
 
76 75
 		//prevent recursive loop
77
-		else
78
-			return '';
76
+		else {
77
+					return '';
78
+		}
79 79
 	}
80 80
 
81 81
 
Please login to merge, or discard this patch.
core/libraries/shortcodes/EE_Email_Shortcodes.lib.php 2 patches
Braces   +8 added lines, -4 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
@@ -101,8 +102,9 @@  discard block
 block discarded – undo
101 102
 	private function _get_event_admin_emails( $fancy_headers = TRUE ) {
102 103
 
103 104
 		if ( !empty( $this->_data->admin_email ) ) {
104
-			if ( ! $fancy_headers )
105
-				return $this->_data->admin_email;
105
+			if ( ! $fancy_headers ) {
106
+							return $this->_data->admin_email;
107
+			}
106 108
 			return !empty( $this->_data->fname ) ? $this->_data->fname . ' ' . $this->_data->lname . ' <' . $this->_data->admin_email . '>' : EE_Registry::instance()->CFG->organization->get_pretty( 'name' ) . ' <' . $this->_data->admin_email . '>';
107 109
 		}
108 110
 
@@ -142,7 +144,9 @@  discard block
 block discarded – undo
142 144
 
143 145
 		foreach ( $admin_details as $admin ) {
144 146
 			//only add an admin email if it is present.
145
-			if ( empty( $admin->email ) || $admin->email == '' ) continue;
147
+			if ( empty( $admin->email ) || $admin->email == '' ) {
148
+				continue;
149
+			}
146 150
 
147 151
 			if ( ! $fancy_headers ) {
148 152
 				$admin_email[] = $admin->email;
Please login to merge, or discard this patch.
Spacing   +29 added lines, -29 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
 /**
@@ -43,19 +43,19 @@  discard block
 block discarded – undo
43 43
 		$this->description = esc_html__('All shortcodes related to emails', 'event_espresso');
44 44
 		$this->_shortcodes = array(
45 45
 			'[SITE_ADMIN_EMAIL]' => esc_html__('Will be replaced with the admin email for the site that Event Espresso is installed on', 'event_espresso'),
46
-			'[EVENT_AUTHOR_FORMATTED_EMAIL]' => sprintf( esc_html__('This will be replaced with a properly formatted list of Event Creator emails for the events in a registration. %1$sNOTE:%2$s If the event author has not filled out their WordPress user profile then the organization name will be used as the "From" name.', 'event_espresso'),'<strong>','</strong>' ),
47
-			'[EVENT_AUTHOR_EMAIL]' => sprintf( esc_html__('This is the same as %1$s shortcode except it is just a list of emails (not fancy headers).', 'event_espresso'), '[EVENT_AUTHOR_FORMATTED_EMAIL]' ),
48
-			'[CO_FORMATTED_EMAIL]' => esc_html__('This parses to the formatted email address of the organization name set in Your Organization Settings. "My Organization &lt;[email protected]&gt;"', 'event_espresso' ),
46
+			'[EVENT_AUTHOR_FORMATTED_EMAIL]' => sprintf(esc_html__('This will be replaced with a properly formatted list of Event Creator emails for the events in a registration. %1$sNOTE:%2$s If the event author has not filled out their WordPress user profile then the organization name will be used as the "From" name.', 'event_espresso'), '<strong>', '</strong>'),
47
+			'[EVENT_AUTHOR_EMAIL]' => sprintf(esc_html__('This is the same as %1$s shortcode except it is just a list of emails (not fancy headers).', 'event_espresso'), '[EVENT_AUTHOR_FORMATTED_EMAIL]'),
48
+			'[CO_FORMATTED_EMAIL]' => esc_html__('This parses to the formatted email address of the organization name set in Your Organization Settings. "My Organization &lt;[email protected]&gt;"', 'event_espresso'),
49 49
 			'[CO_EMAIL]' => esc_html__('This will parse to the email address only for the organization set in Your Organization Settings.', 'event_espresso'),
50
-			'[ESPRESSO_ADMIN_FORMATTED_EMAIL]' => esc_html__('This parses to the formatted email address of the organization name set in Your Organization Settings. "My Organization &lt;[email protected]&gt;"', 'event_espresso' ),
50
+			'[ESPRESSO_ADMIN_FORMATTED_EMAIL]' => esc_html__('This parses to the formatted email address of the organization name set in Your Organization Settings. "My Organization &lt;[email protected]&gt;"', 'event_espresso'),
51 51
 			'[ESPRESSO_ADMIN_EMAIL]' => esc_html__('This parses to the email address only for the organization set in Your Organization Settings page.', 'event_espresso')
52 52
 			);
53 53
 	}
54 54
 
55 55
 
56
-	protected function _parser( $shortcode ) {
56
+	protected function _parser($shortcode) {
57 57
 
58
-		switch ( $shortcode ) {
58
+		switch ($shortcode) {
59 59
 
60 60
 			case '[SITE_ADMIN_EMAIL]' :
61 61
 				return $this->_get_site_admin_email();
@@ -66,17 +66,17 @@  discard block
 block discarded – undo
66 66
 				break;
67 67
 
68 68
 			case '[EVENT_AUTHOR_EMAIL]' :
69
-				return $this->_get_event_admin_emails( FALSE );
69
+				return $this->_get_event_admin_emails(FALSE);
70 70
 				break;
71 71
 
72 72
 			case '[CO_FORMATTED_EMAIL]' :
73 73
 			case '[ESPRESSO_ADMIN_FORMATTED_EMAIL]' :
74
-				return EE_Registry::instance()->CFG->organization->get_pretty( 'name' ) . ' <' . EE_Registry::instance()->CFG->organization->get_pretty( 'email' ) . '>';
74
+				return EE_Registry::instance()->CFG->organization->get_pretty('name').' <'.EE_Registry::instance()->CFG->organization->get_pretty('email').'>';
75 75
 				break;
76 76
 
77 77
 			case '[CO_EMAIL]' :
78 78
 			case '[ESPRESSO_ADMIN_EMAIL]' :
79
-				return EE_Registry::instance()->CFG->organization->get_pretty( 'email' );
79
+				return EE_Registry::instance()->CFG->organization->get_pretty('email');
80 80
 				break;
81 81
 
82 82
 			default :
@@ -98,12 +98,12 @@  discard block
 block discarded – undo
98 98
 	}
99 99
 
100 100
 
101
-	private function _get_event_admin_emails( $fancy_headers = TRUE ) {
101
+	private function _get_event_admin_emails($fancy_headers = TRUE) {
102 102
 
103
-		if ( !empty( $this->_data->admin_email ) ) {
104
-			if ( ! $fancy_headers )
103
+		if ( ! empty($this->_data->admin_email)) {
104
+			if ( ! $fancy_headers)
105 105
 				return $this->_data->admin_email;
106
-			return !empty( $this->_data->fname ) ? $this->_data->fname . ' ' . $this->_data->lname . ' <' . $this->_data->admin_email . '>' : EE_Registry::instance()->CFG->organization->get_pretty( 'name' ) . ' <' . $this->_data->admin_email . '>';
106
+			return ! empty($this->_data->fname) ? $this->_data->fname.' '.$this->_data->lname.' <'.$this->_data->admin_email.'>' : EE_Registry::instance()->CFG->organization->get_pretty('name').' <'.$this->_data->admin_email.'>';
107 107
 		}
108 108
 
109 109
 		//k this shortcode has been used else where.  Since we don't know what particular event this is for, let's loop through the events and get an array of event admins for the events.  We'll return the formatted list of admin emails and let the messenger make sure we only pick one if this is for a field that can only have ONE!.
@@ -111,18 +111,18 @@  discard block
 block discarded – undo
111 111
 		$admin_email = array();
112 112
 
113 113
 		//loop through events and set the list of event_ids to retrieve so we can do ONE query.
114
-		foreach ( $this->_data->events as $event ) {
114
+		foreach ($this->_data->events as $event) {
115 115
 			$ids[] = $event['ID'];
116 116
 		}
117 117
 
118 118
 		//get all the events
119
-		$events = EE_Registry::instance()->load_model('Event')->get_all( array(array('EVT_ID' => array('IN', $ids ) ) ) );
119
+		$events = EE_Registry::instance()->load_model('Event')->get_all(array(array('EVT_ID' => array('IN', $ids))));
120 120
 
121 121
 		//now loop through each event and setup the details
122 122
 		$admin_details = array();
123 123
 		$cnt = 0;
124
-		foreach ( $events as $event ) {
125
-			$user = get_userdata($event->get('EVT_wp_user') );
124
+		foreach ($events as $event) {
125
+			$user = get_userdata($event->get('EVT_wp_user'));
126 126
 			$admin_details[$cnt] = new stdClass();
127 127
 			$admin_details[$cnt]->email = $user->user_email;
128 128
 			$admin_details[$cnt]->first_name = $user->user_firstname;
@@ -131,28 +131,28 @@  discard block
 block discarded – undo
131 131
 		}
132 132
 
133 133
 		//results?
134
-		if ( empty($admin_details) || !is_array($admin_details) ) {
134
+		if (empty($admin_details) || ! is_array($admin_details)) {
135 135
 			$msg[] = esc_html__('The admin details could not be retrieved from the database.', 'event_espresso');
136
-			$msg[] = sprintf( esc_html__('Query: %s', 'event_espresso'), $sql );
137
-			$msg[] = sprintf( esc_html__('Events Data: %s', 'event_espresso'), var_export($this->_data->events, TRUE) );
138
-			$msg[] = sprintf( esc_html__('Event IDS: %s', 'event_espresso'), var_export($ids, TRUE) );
139
-			$msg[] = sprintf( esc_html__('Query Results: %s', 'event_espresso'), var_export($admin_details) );
140
-			do_action( 'AHEE_log', __FILE__, __FUNCTION__, implode( PHP_EOL, $msg ), 'shortcode_parser' );
136
+			$msg[] = sprintf(esc_html__('Query: %s', 'event_espresso'), $sql);
137
+			$msg[] = sprintf(esc_html__('Events Data: %s', 'event_espresso'), var_export($this->_data->events, TRUE));
138
+			$msg[] = sprintf(esc_html__('Event IDS: %s', 'event_espresso'), var_export($ids, TRUE));
139
+			$msg[] = sprintf(esc_html__('Query Results: %s', 'event_espresso'), var_export($admin_details));
140
+			do_action('AHEE_log', __FILE__, __FUNCTION__, implode(PHP_EOL, $msg), 'shortcode_parser');
141 141
 		}
142 142
 
143
-		foreach ( $admin_details as $admin ) {
143
+		foreach ($admin_details as $admin) {
144 144
 			//only add an admin email if it is present.
145
-			if ( empty( $admin->email ) || $admin->email == '' ) continue;
145
+			if (empty($admin->email) || $admin->email == '') continue;
146 146
 
147
-			if ( ! $fancy_headers ) {
147
+			if ( ! $fancy_headers) {
148 148
 				$admin_email[] = $admin->email;
149 149
 				continue;
150 150
 			}
151 151
 
152
-			$admin_email[] = !empty( $admin->first_name ) ? $admin->first_name . ' ' . $admin->last_name . ' <' . $admin->email . '>' : EE_Registry::instance()->CFG->organization->get_pretty( 'name' ) . ' <' . $admin->email . '>';
152
+			$admin_email[] = ! empty($admin->first_name) ? $admin->first_name.' '.$admin->last_name.' <'.$admin->email.'>' : EE_Registry::instance()->CFG->organization->get_pretty('name').' <'.$admin->email.'>';
153 153
 		}
154 154
 
155
-		$admin_email = implode( ',', $admin_email );
155
+		$admin_email = implode(',', $admin_email);
156 156
 		return $admin_email;
157 157
 	}
158 158
 
Please login to merge, or discard this patch.
core/libraries/shortcodes/EE_Event_Author_Shortcodes.lib.php 2 patches
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 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
 /**
@@ -49,54 +49,54 @@  discard block
 block discarded – undo
49 49
 
50 50
 
51 51
 
52
-	protected function _parser( $shortcode ) {
52
+	protected function _parser($shortcode) {
53 53
 		//make sure we end up with a copy of the EE_Messages_Addressee object
54 54
 		$recipient = $this->_data instanceof EE_Messages_Addressee ? $this->_data : NULL;
55
-		$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;
56
-		$recipient = ! $recipient instanceof EE_Messages_Addressee && !empty( $this->_extra_data['data'] ) && $this->_extra_data['data'] instanceof EE_Messages_Addressee ? $this->_extra_data['data'] : $recipient;
55
+		$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;
56
+		$recipient = ! $recipient instanceof EE_Messages_Addressee && ! empty($this->_extra_data['data']) && $this->_extra_data['data'] instanceof EE_Messages_Addressee ? $this->_extra_data['data'] : $recipient;
57 57
 
58 58
 		//now it's possible that $recipient is not an instance of EE_Messages_Addressee in which case we need to see if $this->_data is an instance of $event.
59 59
 		$event = $this->_data instanceof EE_Event ? $this->_data : NULL;
60 60
 
61
-		if ( ! $recipient instanceof EE_Messages_Addressee && ! $event instanceof EE_Event )
61
+		if ( ! $recipient instanceof EE_Messages_Addressee && ! $event instanceof EE_Event)
62 62
 			return '';
63 63
 
64
-		switch ( $shortcode ) {
64
+		switch ($shortcode) {
65 65
 			case '[EVENT_AUTHOR_FNAME]' :
66
-				$fname =  !empty( $recipient ) ? $recipient->fname : NULL;
67
-				if ( empty( $fname ) && !empty( $event ) ) {
68
-					$user = $this->_get_author_for_event( $event );
66
+				$fname = ! empty($recipient) ? $recipient->fname : NULL;
67
+				if (empty($fname) && ! empty($event)) {
68
+					$user = $this->_get_author_for_event($event);
69 69
 					$fname = $user->first_name;
70 70
 				}
71 71
 				return $fname;
72 72
 				break;
73 73
 
74 74
 			case '[EVENT_AUTHOR_LNAME]' :
75
-				$lname =  !empty( $recipient ) ? $recipient->lname : NULL;
76
-				if ( empty( $lname ) && !empty( $event ) ) {
77
-					$user = $this->_get_author_for_event( $event );
75
+				$lname = ! empty($recipient) ? $recipient->lname : NULL;
76
+				if (empty($lname) && ! empty($event)) {
77
+					$user = $this->_get_author_for_event($event);
78 78
 					$lname = $user->last_name;
79 79
 				}
80 80
 				return $lname;
81 81
 				break;
82 82
 
83 83
 			case '[EVENT_AUTHOR_FORMATTED_EMAIL]' :
84
-				if ( !empty( $recipient ) ) {
85
-					$email =  !empty( $recipient->fname ) ? $recipient->fname . ' ' . $recipient->lname . '<' . $recipient->admin_email . '>' : EE_Registry::instance()->CFG->organization->get_pretty( 'name' ) . '<' . $recipient->admin_email . '>';
84
+				if ( ! empty($recipient)) {
85
+					$email = ! empty($recipient->fname) ? $recipient->fname.' '.$recipient->lname.'<'.$recipient->admin_email.'>' : EE_Registry::instance()->CFG->organization->get_pretty('name').'<'.$recipient->admin_email.'>';
86 86
 				} else {
87 87
 					$email = NULL;
88 88
 				}
89
-				if ( empty( $email ) && ! empty( $event ) ) {
90
-					$user = $this->_get_author_for_event( $event );
91
-					$email = ! empty( $user->first_name ) ? $user->first_name . ' ' . $user->last_name . '<' . $user->user_email . '>' : EE_Registry::instance()->CFG->organization->get_pretty( 'name' ) . '<' . $user->user_email . '>';
89
+				if (empty($email) && ! empty($event)) {
90
+					$user = $this->_get_author_for_event($event);
91
+					$email = ! empty($user->first_name) ? $user->first_name.' '.$user->last_name.'<'.$user->user_email.'>' : EE_Registry::instance()->CFG->organization->get_pretty('name').'<'.$user->user_email.'>';
92 92
 				}
93 93
 				return $email;
94 94
 				break;
95 95
 
96 96
 			case '[EVENT_AUTHOR_EMAIL]' :
97
-				$email = ! empty( $recipient ) ? $recipient->admin_email : NULL;
98
-				if ( empty( $email ) && !empty( $event ) ) {
99
-					$user = $this->_get_author_for_event( $event );
97
+				$email = ! empty($recipient) ? $recipient->admin_email : NULL;
98
+				if (empty($email) && ! empty($event)) {
99
+					$user = $this->_get_author_for_event($event);
100 100
 					$email = $user->user_email;
101 101
 				}
102 102
 				return $email;
@@ -117,9 +117,9 @@  discard block
 block discarded – undo
117 117
 	 *
118 118
 	 * @return WP_User
119 119
 	 */
120
-	private function _get_author_for_event( EE_Event $event ) {
120
+	private function _get_author_for_event(EE_Event $event) {
121 121
 		$author_id = $event->wp_user();
122
-		$user_data = get_userdata( (int) $author_id );
122
+		$user_data = get_userdata((int) $author_id);
123 123
 		return $user_data;
124 124
 		break;
125 125
 	}
Please login to merge, or discard this patch.
Braces   +5 added lines, -3 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
@@ -58,8 +59,9 @@  discard block
 block discarded – undo
58 59
 		//now it's possible that $recipient is not an instance of EE_Messages_Addressee in which case we need to see if $this->_data is an instance of $event.
59 60
 		$event = $this->_data instanceof EE_Event ? $this->_data : NULL;
60 61
 
61
-		if ( ! $recipient instanceof EE_Messages_Addressee && ! $event instanceof EE_Event )
62
-			return '';
62
+		if ( ! $recipient instanceof EE_Messages_Addressee && ! $event instanceof EE_Event ) {
63
+					return '';
64
+		}
63 65
 
64 66
 		switch ( $shortcode ) {
65 67
 			case '[EVENT_AUTHOR_FNAME]' :
Please login to merge, or discard this patch.