Completed
Branch BETA-4.9-message-activity (c2a8e0)
by
unknown
18:28 queued 10s
created
modules/venues_archive/EED_Venues_Archive.module.php 3 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
 	 *
98 98
 	 *  	@access 	public
99 99
 	 * 	@param		string 	$title
100
-	 *  	@return 		void
100
+	 *  	@return 		string
101 101
 	 */
102 102
 	public function the_title( $title = '', $id = '' ) {
103 103
 		return $title;
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
 	 *
138 138
 	 *  	@access 	public
139 139
 	 * 	@param		string 	$content
140
-	 *  	@return 		void
140
+	 *  	@return 		string
141 141
 	 */
142 142
 	public function venue_location( $content ) {
143 143
 		return $content . EEH_Template::locate_template( 'content-espresso_venues-location.php' );
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,6 @@
 block discarded – undo
1
-<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3
+}
2 4
 /**
3 5
  * Event Espresso
4 6
  *
Please login to merge, or discard this patch.
Spacing   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 	 * @return EED_Venues_Archive
28 28
 	 */
29 29
 	public static function instance() {
30
-		return parent::get_instance( __CLASS__ );
30
+		return parent::get_instance(__CLASS__);
31 31
 	}
32 32
 
33 33
 	/**
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 	 *  @return 	void
38 38
 	 */
39 39
 	public static function set_hooks() {
40
-		EE_Config::register_route( 'venues', 'Venues_Archive', 'run' );
40
+		EE_Config::register_route('venues', 'Venues_Archive', 'run');
41 41
 //		EE_Config::register_view( 'venues', 0, EE_TEMPLATES . EE_Config::get_current_theme() . DS . 'archive-espresso_venues.php' );
42 42
 	}
43 43
 
@@ -58,10 +58,10 @@  discard block
 block discarded – undo
58 58
 	 *  @access 	public
59 59
 	 *  @return 	void
60 60
 	 */
61
-	public function run( $WP ) {
61
+	public function run($WP) {
62 62
 		// check what template is loaded
63
-		add_filter( 'template_include',  array( $this, 'template_include' ), 999, 1 );
64
-		add_action('wp_enqueue_scripts', array( $this, 'wp_enqueue_scripts' ), 10 );
63
+		add_filter('template_include', array($this, 'template_include'), 999, 1);
64
+		add_action('wp_enqueue_scripts', array($this, 'wp_enqueue_scripts'), 10);
65 65
 	}
66 66
 
67 67
 
@@ -72,20 +72,20 @@  discard block
 block discarded – undo
72 72
 	 *  	@access 	public
73 73
 	 *  	@return 	void
74 74
 	 */
75
-	public function template_include( $template ) {
75
+	public function template_include($template) {
76 76
 		// not a custom template?
77
-		if ( EE_Registry::instance()->load_core( 'Front_Controller', array(), false, true )->get_selected_template() != 'archive-espresso_venues.php' ) {
77
+		if (EE_Registry::instance()->load_core('Front_Controller', array(), false, true)->get_selected_template() != 'archive-espresso_venues.php') {
78 78
 			EEH_Template::load_espresso_theme_functions();
79 79
 			// then add extra event data via hooks
80
-			add_filter( 'the_title', array( $this, 'the_title' ), 100, 2 );
80
+			add_filter('the_title', array($this, 'the_title'), 100, 2);
81 81
 			// don't know if theme uses the_excerpt
82
-			add_filter( 'the_excerpt', array( $this, 'venue_details' ), 100 );
83
-			add_filter( 'the_excerpt', array( $this, 'venue_location' ), 110 );
82
+			add_filter('the_excerpt', array($this, 'venue_details'), 100);
83
+			add_filter('the_excerpt', array($this, 'venue_location'), 110);
84 84
 			// or the_content
85
-			add_filter( 'the_content', array( $this, 'venue_details' ), 100 );
86
-			add_filter( 'the_content', array( $this, 'venue_location' ), 110 );
85
+			add_filter('the_content', array($this, 'venue_details'), 100);
86
+			add_filter('the_content', array($this, 'venue_location'), 110);
87 87
 			// don't diplay entry meta because the existing theme will take car of that
88
-			add_filter( 'FHEE__content_espresso_venues_details_template__display_entry_meta', '__return_false' );
88
+			add_filter('FHEE__content_espresso_venues_details_template__display_entry_meta', '__return_false');
89 89
 		}
90 90
 		return $template;
91 91
 	}
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
 	 * 	@param		string 	$title
100 100
 	 *  	@return 		void
101 101
 	 */
102
-	public function the_title( $title = '', $id = '' ) {
102
+	public function the_title($title = '', $id = '') {
103 103
 		return $title;
104 104
 //		global $post;
105 105
 //		return in_the_loop() && $post->ID == $id ? espresso_event_status_banner( $post->ID ) . $title :  $title;
@@ -113,21 +113,21 @@  discard block
 block discarded – undo
113 113
 	 * 	@param		string 	$content
114 114
 	 *  	@return 		void
115 115
 	 */
116
-	public function venue_details( $content ) {
116
+	public function venue_details($content) {
117 117
 		global $post;
118 118
 		// since the 'content-espresso_venues-details.php' template might be used directly from within a theme,
119 119
 		// it uses the_content() for displaying the $post->post_content
120 120
 		// so in order to load a template that uses the_content() from within a callback being used to filter the_content(),
121 121
 		// we need to first remove this callback from being applied to the_content() (otherwise it will recurse and blow up the interweb)
122
-		remove_filter( 'the_excerpt', array( $this, 'venue_details' ), 100 );
123
-		remove_filter( 'the_content', array( $this, 'venue_details' ), 100 );
122
+		remove_filter('the_excerpt', array($this, 'venue_details'), 100);
123
+		remove_filter('the_content', array($this, 'venue_details'), 100);
124 124
 		// now load our template
125
-		$template = EEH_Template::locate_template( 'content-espresso_venues-details.php' );
125
+		$template = EEH_Template::locate_template('content-espresso_venues-details.php');
126 126
 		//now add our filter back in, plus some others
127
-		add_filter( 'the_excerpt', array( $this, 'venue_details' ), 100 );
128
-		add_filter( 'the_content', array( $this, 'venue_details' ), 100 );
127
+		add_filter('the_excerpt', array($this, 'venue_details'), 100);
128
+		add_filter('the_content', array($this, 'venue_details'), 100);
129 129
 		// we're not returning the $content directly because the template we are loading uses the_content (or the_excerpt)
130
-		return ! empty( $template ) ? $template : $content;
130
+		return ! empty($template) ? $template : $content;
131 131
 	}
132 132
 
133 133
 
@@ -139,8 +139,8 @@  discard block
 block discarded – undo
139 139
 	 * 	@param		string 	$content
140 140
 	 *  	@return 		void
141 141
 	 */
142
-	public function venue_location( $content ) {
143
-		return $content . EEH_Template::locate_template( 'content-espresso_venues-location.php' );
142
+	public function venue_location($content) {
143
+		return $content.EEH_Template::locate_template('content-espresso_venues-location.php');
144 144
 	}
145 145
 
146 146
 
@@ -154,19 +154,19 @@  discard block
 block discarded – undo
154 154
 	 */
155 155
 	public function wp_enqueue_scripts() {
156 156
 		// get some style
157
-		if ( apply_filters( 'FHEE_enable_default_espresso_css', TRUE ) && is_archive() ) {
157
+		if (apply_filters('FHEE_enable_default_espresso_css', TRUE) && is_archive()) {
158 158
 			// first check theme folder
159
-			if ( is_readable( get_stylesheet_directory() . $this->theme . DS . 'style.css' )) {
160
-				wp_register_style( $this->theme, get_stylesheet_directory_uri() . $this->theme . DS . 'style.css', array( 'dashicons', 'espresso_default' ) );
161
-			} else if ( is_readable( EE_TEMPLATES . $this->theme . DS . 'style.css' )) {
162
-				wp_register_style( $this->theme, EE_TEMPLATES_URL . $this->theme . DS . 'style.css', array( 'dashicons', 'espresso_default' ) );
159
+			if (is_readable(get_stylesheet_directory().$this->theme.DS.'style.css')) {
160
+				wp_register_style($this->theme, get_stylesheet_directory_uri().$this->theme.DS.'style.css', array('dashicons', 'espresso_default'));
161
+			} else if (is_readable(EE_TEMPLATES.$this->theme.DS.'style.css')) {
162
+				wp_register_style($this->theme, EE_TEMPLATES_URL.$this->theme.DS.'style.css', array('dashicons', 'espresso_default'));
163 163
 			}
164 164
 //			if ( is_readable( get_stylesheet_directory() . EE_Config::get_current_theme() . DS . 'archive-espresso_venues.js' )) {
165 165
 //				wp_register_script( 'archive-espresso_venues', get_stylesheet_directory_uri() . EE_Config::get_current_theme() . DS . 'archive-espresso_venues.js', array('espresso_core'), '1.0', TRUE  );
166 166
 //			} else if ( is_readable( EE_TEMPLATES . EE_Config::get_current_theme() . DS . 'archive-espresso_venues.js' )) {
167 167
 //				wp_register_script( 'archive-espresso_venues', EE_TEMPLATES_URL . EE_Config::get_current_theme() . DS . 'archive-espresso_venues.js', array('espresso_core'), '1.0', TRUE );
168 168
 //			}
169
-			wp_enqueue_style( $this->theme );
169
+			wp_enqueue_style($this->theme);
170 170
 //			wp_enqueue_script( 'archive-espresso_venues' );
171 171
 
172 172
 		}
Please login to merge, or discard this patch.
public/template_tags.php 2 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
  * can_use_espresso_conditionals
148 148
  * tests whether the Espresso Conditional tags like is_espresso_event_single() can be called
149 149
  *
150
- * @param $conditional_tag
150
+ * @param string $conditional_tag
151 151
  * @return bool
152 152
  */
153 153
 function can_use_espresso_conditionals( $conditional_tag ) {
@@ -875,7 +875,7 @@  discard block
 block discarded – undo
875 875
 	/**
876 876
 	 * espresso_event_venues
877 877
 	 *
878
-	 * @return array  all venues related to an event
878
+	 * @return EE_Venue[]  all venues related to an event
879 879
 	 */
880 880
 	function espresso_event_venues() {
881 881
 		EE_Registry::instance()->load_helper( 'Venue_View' );
@@ -910,7 +910,7 @@  discard block
 block discarded – undo
910 910
 	 *
911 911
 	 * @param int     $VNU_ID optional, the venue id to check.
912 912
 	 *
913
-	 * @return bool | null
913
+	 * @return null|boolean | null
914 914
 	 */
915 915
 	function espresso_is_venue_private( $VNU_ID = 0 ) {
916 916
 		EE_Registry::instance()->load_helper( 'Venue_View' );
Please login to merge, or discard this patch.
Spacing   +268 added lines, -268 removed lines patch added patch discarded remove patch
@@ -27,12 +27,12 @@  discard block
 block discarded – undo
27 27
  * @param int | \EE_Event $event
28 28
  * @return bool
29 29
  */
30
-function is_espresso_event( $event = NULL ) {
31
-	if ( can_use_espresso_conditionals( __FUNCTION__ )) {
30
+function is_espresso_event($event = NULL) {
31
+	if (can_use_espresso_conditionals(__FUNCTION__)) {
32 32
 		// extract EE_Event object from passed param regardless of what it is (within reason of course)
33
-		$event = EEH_Event_View::get_event( $event );
33
+		$event = EEH_Event_View::get_event($event);
34 34
 		// do we have a valid event ?
35
-		return $event instanceof EE_Event  ? TRUE : FALSE;
35
+		return $event instanceof EE_Event ? TRUE : FALSE;
36 36
 	}
37 37
 	return FALSE;
38 38
 }
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
  * @return bool
45 45
  */
46 46
 function is_espresso_event_single() {
47
-	if ( can_use_espresso_conditionals( __FUNCTION__ )) {
47
+	if (can_use_espresso_conditionals(__FUNCTION__)) {
48 48
 		global $wp_query;
49 49
 		// return conditionals set by CPTs
50 50
 		return $wp_query instanceof WP_Query ? $wp_query->is_espresso_event_single : FALSE;
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
  * @return bool
60 60
  */
61 61
 function is_espresso_event_archive() {
62
-	if ( can_use_espresso_conditionals( __FUNCTION__ )) {
62
+	if (can_use_espresso_conditionals(__FUNCTION__)) {
63 63
 		global $wp_query;
64 64
 		return $wp_query instanceof WP_Query ? $wp_query->is_espresso_event_archive : FALSE;
65 65
 	}
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
  * @return bool
74 74
  */
75 75
 function is_espresso_event_taxonomy() {
76
-	if ( can_use_espresso_conditionals( __FUNCTION__ )) {
76
+	if (can_use_espresso_conditionals(__FUNCTION__)) {
77 77
 		global $wp_query;
78 78
 		return $wp_query instanceof WP_Query ? $wp_query->is_espresso_event_taxonomy : FALSE;
79 79
 	}
@@ -87,10 +87,10 @@  discard block
 block discarded – undo
87 87
  * @param int | \EE_Venue $venue
88 88
  * @return bool
89 89
  */
90
-function is_espresso_venue( $venue = NULL ) {
91
-	if ( can_use_espresso_conditionals( __FUNCTION__ )) {
90
+function is_espresso_venue($venue = NULL) {
91
+	if (can_use_espresso_conditionals(__FUNCTION__)) {
92 92
 		// extract EE_Venue object from passed param regardless of what it is (within reason of course)
93
-		$venue = EEH_Venue_View::get_venue( $venue, FALSE );
93
+		$venue = EEH_Venue_View::get_venue($venue, FALSE);
94 94
 		// do we have a valid event ?
95 95
 		return $venue instanceof EE_Venue ? TRUE : FALSE;
96 96
 	}
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
  * @return bool
105 105
  */
106 106
 function is_espresso_venue_single() {
107
-	if ( can_use_espresso_conditionals( __FUNCTION__ )) {
107
+	if (can_use_espresso_conditionals(__FUNCTION__)) {
108 108
 		global $wp_query;
109 109
 		return $wp_query instanceof WP_Query ? $wp_query->is_espresso_venue_single : FALSE;
110 110
 	}
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
  * @return bool
119 119
  */
120 120
 function is_espresso_venue_archive() {
121
-	if ( can_use_espresso_conditionals( __FUNCTION__ )) {
121
+	if (can_use_espresso_conditionals(__FUNCTION__)) {
122 122
 		global $wp_query;
123 123
 		return $wp_query instanceof WP_Query ? $wp_query->is_espresso_venue_archive : FALSE;
124 124
 	}
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
  * @return bool
133 133
  */
134 134
 function is_espresso_venue_taxonomy() {
135
-	if ( can_use_espresso_conditionals( __FUNCTION__ )) {
135
+	if (can_use_espresso_conditionals(__FUNCTION__)) {
136 136
 		global $wp_query;
137 137
 		return $wp_query instanceof WP_Query ? $wp_query->is_espresso_venue_taxonomy : FALSE;
138 138
 	}
@@ -146,12 +146,12 @@  discard block
 block discarded – undo
146 146
  * @param $conditional_tag
147 147
  * @return bool
148 148
  */
149
-function can_use_espresso_conditionals( $conditional_tag ) {
150
-	if ( ! did_action( 'AHEE__EE_System__initialize' )) {
149
+function can_use_espresso_conditionals($conditional_tag) {
150
+	if ( ! did_action('AHEE__EE_System__initialize')) {
151 151
 		EE_Error::doing_it_wrong(
152 152
 			__FUNCTION__,
153 153
 			sprintf(
154
-				__( 'The "%s" conditional tag can not be used until after the "init" hook has run, but works best when used within a theme\'s template files.','event_espresso'),
154
+				__('The "%s" conditional tag can not be used until after the "init" hook has run, but works best when used within a theme\'s template files.', 'event_espresso'),
155 155
 				$conditional_tag
156 156
 			),
157 157
 			'4.4.0'
@@ -166,13 +166,13 @@  discard block
 block discarded – undo
166 166
 
167 167
 /*************************** Event Queries ***************************/
168 168
 
169
-if ( ! function_exists( 'espresso_get_events' )) {
169
+if ( ! function_exists('espresso_get_events')) {
170 170
 	/**
171 171
 	 * 	espresso_get_events
172 172
 	 * @param array $params
173 173
 	 * @return array
174 174
 	 */
175
-	function espresso_get_events( $params = array() ) {
175
+	function espresso_get_events($params = array()) {
176 176
 		//set default params
177 177
 		$default_espresso_events_params = array(
178 178
 			'limit' => 10,
@@ -183,18 +183,18 @@  discard block
 block discarded – undo
183 183
 			'sort' => 'ASC'
184 184
 		);
185 185
 		// allow the defaults to be filtered
186
-		$default_espresso_events_params = apply_filters( 'espresso_get_events__default_espresso_events_params', $default_espresso_events_params );
186
+		$default_espresso_events_params = apply_filters('espresso_get_events__default_espresso_events_params', $default_espresso_events_params);
187 187
 		// grab params and merge with defaults, then extract
188
-		$params = array_merge( $default_espresso_events_params, $params );
188
+		$params = array_merge($default_espresso_events_params, $params);
189 189
 		// run the query
190
-		$events_query = new EE_Event_List_Query( $params );
190
+		$events_query = new EE_Event_List_Query($params);
191 191
 		// assign results to a variable so we can return it
192 192
 		$events = $events_query->have_posts() ? $events_query->posts : array();
193 193
 		// but first reset the query and postdata
194 194
 		wp_reset_query();
195 195
 		wp_reset_postdata();
196 196
 		EED_Events_Archive::remove_all_events_archive_filters();
197
-		unset( $events_query );
197
+		unset($events_query);
198 198
 		return $events;
199 199
 	}
200 200
 }
@@ -208,32 +208,32 @@  discard block
 block discarded – undo
208 208
  * espresso_load_ticket_selector
209 209
  */
210 210
 function espresso_load_ticket_selector() {
211
-	EE_Registry::instance()->load_file( EE_MODULES . 'ticket_selector', 'EED_Ticket_Selector', 'module' );
211
+	EE_Registry::instance()->load_file(EE_MODULES.'ticket_selector', 'EED_Ticket_Selector', 'module');
212 212
 }
213 213
 
214
-if ( ! function_exists( 'espresso_ticket_selector' )) {
214
+if ( ! function_exists('espresso_ticket_selector')) {
215 215
 	/**
216 216
 	 * espresso_ticket_selector
217 217
 	 * @param null $event
218 218
 	 */
219
-	function espresso_ticket_selector( $event = NULL ) {
220
-		if (  ! apply_filters( 'FHEE_disable_espresso_ticket_selector', FALSE ) ) {
219
+	function espresso_ticket_selector($event = NULL) {
220
+		if ( ! apply_filters('FHEE_disable_espresso_ticket_selector', FALSE)) {
221 221
 			espresso_load_ticket_selector();
222
-			echo EED_Ticket_Selector::display_ticket_selector( $event );
222
+			echo EED_Ticket_Selector::display_ticket_selector($event);
223 223
 		}
224 224
 	}
225 225
 }
226 226
 
227 227
 
228
-	if ( ! function_exists( 'espresso_view_details_btn' )) {
228
+	if ( ! function_exists('espresso_view_details_btn')) {
229 229
 	/**
230 230
 	 * espresso_view_details_btn
231 231
 	 * @param null $event
232 232
 	 */
233
-	function espresso_view_details_btn( $event = NULL ) {
234
-		if (  ! apply_filters( 'FHEE_disable_espresso_view_details_btn', FALSE ) ) {
233
+	function espresso_view_details_btn($event = NULL) {
234
+		if ( ! apply_filters('FHEE_disable_espresso_view_details_btn', FALSE)) {
235 235
 			espresso_load_ticket_selector();
236
-			echo EED_Ticket_Selector::display_ticket_selector( $event, TRUE );
236
+			echo EED_Ticket_Selector::display_ticket_selector($event, TRUE);
237 237
 		}
238 238
 	}
239 239
 }
@@ -243,7 +243,7 @@  discard block
 block discarded – undo
243 243
 
244 244
 /*************************** EEH_Event_View ***************************/
245 245
 
246
-if ( ! function_exists( 'espresso_load_event_list_assets' )) {
246
+if ( ! function_exists('espresso_load_event_list_assets')) {
247 247
 	/**
248 248
 	 * espresso_load_event_list_assets
249 249
 	 * ensures that event list styles and scripts are loaded
@@ -252,13 +252,13 @@  discard block
 block discarded – undo
252 252
 	 */
253 253
 	function espresso_load_event_list_assets() {
254 254
 		$event_list = EED_Events_Archive::instance();
255
-		add_action( 'AHEE__EE_System__initialize_last', array( $event_list, 'load_event_list_assets' ), 10 );
256
-		add_filter( 'FHEE_enable_default_espresso_css', '__return_true' );
255
+		add_action('AHEE__EE_System__initialize_last', array($event_list, 'load_event_list_assets'), 10);
256
+		add_filter('FHEE_enable_default_espresso_css', '__return_true');
257 257
 	}
258 258
 }
259 259
 
260 260
 
261
-if ( ! function_exists( 'espresso_event_reg_button' )) {
261
+if ( ! function_exists('espresso_event_reg_button')) {
262 262
 	/**
263 263
 	 * espresso_event_reg_button
264 264
 	 * returns the "Register Now" button if event is active,
@@ -270,9 +270,9 @@  discard block
 block discarded – undo
270 270
 	 * @param bool $EVT_ID
271 271
 	 * @return string
272 272
 	 */
273
-	function espresso_event_reg_button( $btn_text_if_active = NULL, $btn_text_if_inactive = FALSE, $EVT_ID = FALSE ) {
274
-		$event_status = EEH_Event_View::event_active_status( $EVT_ID );
275
-		switch ( $event_status ) {
273
+	function espresso_event_reg_button($btn_text_if_active = NULL, $btn_text_if_inactive = FALSE, $EVT_ID = FALSE) {
274
+		$event_status = EEH_Event_View::event_active_status($EVT_ID);
275
+		switch ($event_status) {
276 276
 			case EE_Datetime::sold_out :
277 277
 				$btn_text = __('Sold Out', 'event_espresso');
278 278
 				$class = 'ee-pink';
@@ -288,10 +288,10 @@  discard block
 block discarded – undo
288 288
 			case EE_Datetime::upcoming :
289 289
 			case EE_Datetime::active :
290 290
 			default :
291
-				$btn_text =! empty( $btn_text_if_active ) ? $btn_text_if_active : __( 'Register Now', 'event_espresso' );
291
+				$btn_text = ! empty($btn_text_if_active) ? $btn_text_if_active : __('Register Now', 'event_espresso');
292 292
 				$class = 'ee-green';
293 293
 		}
294
-		if ( $event_status < 1 && ! empty( $btn_text_if_inactive )) {
294
+		if ($event_status < 1 && ! empty($btn_text_if_inactive)) {
295 295
 			$btn_text = $btn_text_if_inactive;
296 296
 			$class = 'ee-grey';
297 297
 		}
@@ -305,7 +305,7 @@  discard block
 block discarded – undo
305 305
 
306 306
 
307 307
 
308
-if ( ! function_exists( 'espresso_display_ticket_selector' )) {
308
+if ( ! function_exists('espresso_display_ticket_selector')) {
309 309
 	/**
310 310
 	 * espresso_display_ticket_selector
311 311
 	 * whether or not to display the Ticket Selector for an event
@@ -313,14 +313,14 @@  discard block
 block discarded – undo
313 313
 	 * @param bool $EVT_ID
314 314
 	 * @return boolean
315 315
 	 */
316
-	function espresso_display_ticket_selector( $EVT_ID = FALSE ) {
317
-		return EEH_Event_View::display_ticket_selector( $EVT_ID );
316
+	function espresso_display_ticket_selector($EVT_ID = FALSE) {
317
+		return EEH_Event_View::display_ticket_selector($EVT_ID);
318 318
 	}
319 319
 }
320 320
 
321 321
 
322 322
 
323
-if ( ! function_exists( 'espresso_event_status_banner' )) {
323
+if ( ! function_exists('espresso_event_status_banner')) {
324 324
 	/**
325 325
 	 * espresso_event_status
326 326
 	 * returns a banner showing the event status if it is sold out, expired, or inactive
@@ -328,13 +328,13 @@  discard block
 block discarded – undo
328 328
 	 * @param bool $EVT_ID
329 329
 	 * @return string
330 330
 	 */
331
-	function espresso_event_status_banner( $EVT_ID = FALSE ) {
332
-		return EEH_Event_View::event_status( $EVT_ID );
331
+	function espresso_event_status_banner($EVT_ID = FALSE) {
332
+		return EEH_Event_View::event_status($EVT_ID);
333 333
 	}
334 334
 }
335 335
 
336 336
 
337
-if ( ! function_exists( 'espresso_event_status' )) {
337
+if ( ! function_exists('espresso_event_status')) {
338 338
 	/**
339 339
 	 * espresso_event_status
340 340
 	 * returns the event status if it is sold out, expired, or inactive
@@ -343,17 +343,17 @@  discard block
 block discarded – undo
343 343
 	 * @param bool $echo
344 344
 	 * @return string
345 345
 	 */
346
-	function espresso_event_status( $EVT_ID = 0, $echo = TRUE ) {
347
-		if ( $echo ) {
348
-			echo EEH_Event_View::event_active_status( $EVT_ID );
346
+	function espresso_event_status($EVT_ID = 0, $echo = TRUE) {
347
+		if ($echo) {
348
+			echo EEH_Event_View::event_active_status($EVT_ID);
349 349
 			return '';
350 350
 		}
351
-		return EEH_Event_View::event_active_status( $EVT_ID );
351
+		return EEH_Event_View::event_active_status($EVT_ID);
352 352
 	}
353 353
 }
354 354
 
355 355
 
356
-if ( ! function_exists( 'espresso_event_categories' )) {
356
+if ( ! function_exists('espresso_event_categories')) {
357 357
 	/**
358 358
 	 * espresso_event_categories
359 359
 	 * returns the terms associated with an event
@@ -363,17 +363,17 @@  discard block
 block discarded – undo
363 363
 	 * @param bool $echo
364 364
 	 * @return string
365 365
 	 */
366
-	function espresso_event_categories( $EVT_ID = 0, $hide_uncategorized = TRUE, $echo = TRUE ) {
367
-		if ( $echo ) {
368
-			echo EEH_Event_View::event_categories( $EVT_ID, $hide_uncategorized );
366
+	function espresso_event_categories($EVT_ID = 0, $hide_uncategorized = TRUE, $echo = TRUE) {
367
+		if ($echo) {
368
+			echo EEH_Event_View::event_categories($EVT_ID, $hide_uncategorized);
369 369
 			return '';
370 370
 		}
371
-		return EEH_Event_View::event_categories( $EVT_ID, $hide_uncategorized );
371
+		return EEH_Event_View::event_categories($EVT_ID, $hide_uncategorized);
372 372
 	}
373 373
 }
374 374
 
375 375
 
376
-if ( ! function_exists( 'espresso_event_tickets_available' )) {
376
+if ( ! function_exists('espresso_event_tickets_available')) {
377 377
 	/**
378 378
 	 * espresso_event_tickets_available
379 379
 	 * returns the ticket types available for purchase for an event
@@ -383,26 +383,26 @@  discard block
 block discarded – undo
383 383
 	 * @param bool $format
384 384
 	 * @return string
385 385
 	 */
386
-	function espresso_event_tickets_available( $EVT_ID = 0, $echo = TRUE, $format = TRUE ) {
387
-		$tickets = EEH_Event_View::event_tickets_available( $EVT_ID );
388
-		if ( is_array( $tickets ) && ! empty( $tickets )) {
386
+	function espresso_event_tickets_available($EVT_ID = 0, $echo = TRUE, $format = TRUE) {
387
+		$tickets = EEH_Event_View::event_tickets_available($EVT_ID);
388
+		if (is_array($tickets) && ! empty($tickets)) {
389 389
 			// if formatting then $html will be a string, else it will be an array of ticket objects
390
-			$html = $format ? '<ul id="ee-event-tickets-ul-' . $EVT_ID . '" class="ee-event-tickets-ul">' : array();
391
-			foreach ( $tickets as $ticket ) {
392
-				if ( $ticket instanceof EE_Ticket ) {
393
-					if ( $format ) {
394
-						$html .= '<li id="ee-event-tickets-li-' . $ticket->ID() . '" class="ee-event-tickets-li">';
395
-						$html .= $ticket->name() . ' ' . EEH_Template::format_currency( $ticket->get_ticket_total_with_taxes() );
390
+			$html = $format ? '<ul id="ee-event-tickets-ul-'.$EVT_ID.'" class="ee-event-tickets-ul">' : array();
391
+			foreach ($tickets as $ticket) {
392
+				if ($ticket instanceof EE_Ticket) {
393
+					if ($format) {
394
+						$html .= '<li id="ee-event-tickets-li-'.$ticket->ID().'" class="ee-event-tickets-li">';
395
+						$html .= $ticket->name().' '.EEH_Template::format_currency($ticket->get_ticket_total_with_taxes());
396 396
 						$html .= '</li>';
397 397
 					} else {
398 398
 						$html[] = $ticket;
399 399
 					}
400 400
 				}
401 401
 			}
402
-			if ( $format ) {
402
+			if ($format) {
403 403
 				$html .= '</ul>';
404 404
 			}
405
-			if ( $echo && ! $format ) {
405
+			if ($echo && ! $format) {
406 406
 				echo $html;
407 407
 				return '';
408 408
 			}
@@ -412,7 +412,7 @@  discard block
 block discarded – undo
412 412
 	}
413 413
 }
414 414
 
415
-if ( ! function_exists( 'espresso_event_date_obj' )) {
415
+if ( ! function_exists('espresso_event_date_obj')) {
416 416
 	/**
417 417
 	 * espresso_event_date_obj
418 418
 	 * returns the primary date object for an event
@@ -420,13 +420,13 @@  discard block
 block discarded – undo
420 420
 	 * @param bool $EVT_ID
421 421
 	 * @return object
422 422
 	 */
423
-	function espresso_event_date_obj( $EVT_ID = FALSE ) {
424
-		return EEH_Event_View::get_primary_date_obj( $EVT_ID );
423
+	function espresso_event_date_obj($EVT_ID = FALSE) {
424
+		return EEH_Event_View::get_primary_date_obj($EVT_ID);
425 425
 	}
426 426
 }
427 427
 
428 428
 
429
-if ( ! function_exists( 'espresso_event_date' )) {
429
+if ( ! function_exists('espresso_event_date')) {
430 430
 	/**
431 431
 	 * espresso_event_date
432 432
 	 * returns the primary date for an event
@@ -437,22 +437,22 @@  discard block
 block discarded – undo
437 437
 	 * @param bool $echo
438 438
 	 * @return string
439 439
 	 */
440
-	function espresso_event_date( $date_format = '', $time_format = '', $EVT_ID = FALSE, $echo = TRUE ) {
441
-		$date_format = ! empty( $date_format ) ? $date_format : get_option( 'date_format' );
442
-		$time_format = ! empty( $time_format ) ? $time_format : get_option( 'time_format' );
443
-		$date_format = apply_filters( 'FHEE__espresso_event_date__date_format', $date_format );
444
-		$time_format = apply_filters( 'FHEE__espresso_event_date__time_format', $time_format );
445
-		if($echo){
446
-			echo EEH_Event_View::the_event_date( $date_format, $time_format, $EVT_ID );
440
+	function espresso_event_date($date_format = '', $time_format = '', $EVT_ID = FALSE, $echo = TRUE) {
441
+		$date_format = ! empty($date_format) ? $date_format : get_option('date_format');
442
+		$time_format = ! empty($time_format) ? $time_format : get_option('time_format');
443
+		$date_format = apply_filters('FHEE__espresso_event_date__date_format', $date_format);
444
+		$time_format = apply_filters('FHEE__espresso_event_date__time_format', $time_format);
445
+		if ($echo) {
446
+			echo EEH_Event_View::the_event_date($date_format, $time_format, $EVT_ID);
447 447
 			return '';
448 448
 		}
449
-		return EEH_Event_View::the_event_date( $date_format, $time_format, $EVT_ID );
449
+		return EEH_Event_View::the_event_date($date_format, $time_format, $EVT_ID);
450 450
 
451 451
 	}
452 452
 }
453 453
 
454 454
 
455
-if ( ! function_exists( 'espresso_list_of_event_dates' )) {
455
+if ( ! function_exists('espresso_list_of_event_dates')) {
456 456
 	/**
457 457
 	 * espresso_list_of_event_dates
458 458
 	 * returns a unordered list of dates for an event
@@ -467,40 +467,40 @@  discard block
 block discarded – undo
467 467
 	 * @param null   $limit
468 468
 	 * @return string
469 469
 	 */
470
-	function espresso_list_of_event_dates( $EVT_ID = 0, $date_format = '', $time_format = '', $echo = TRUE, $show_expired = NULL, $format = TRUE, $add_breaks = TRUE, $limit = NULL ) {
471
-		$date_format = ! empty( $date_format ) ? $date_format : get_option( 'date_format' );
472
-		$time_format = ! empty( $time_format ) ? $time_format : get_option( 'time_format' );
473
-		$date_format = apply_filters( 'FHEE__espresso_list_of_event_dates__date_format', $date_format );
474
-		$time_format = apply_filters( 'FHEE__espresso_list_of_event_dates__time_format', $time_format );
475
-		$datetimes = EEH_Event_View::get_all_date_obj( $EVT_ID, $show_expired, FALSE, $limit );
476
-		if ( ! $format ) {
477
-			return apply_filters( 'FHEE__espresso_list_of_event_dates__datetimes', $datetimes );
470
+	function espresso_list_of_event_dates($EVT_ID = 0, $date_format = '', $time_format = '', $echo = TRUE, $show_expired = NULL, $format = TRUE, $add_breaks = TRUE, $limit = NULL) {
471
+		$date_format = ! empty($date_format) ? $date_format : get_option('date_format');
472
+		$time_format = ! empty($time_format) ? $time_format : get_option('time_format');
473
+		$date_format = apply_filters('FHEE__espresso_list_of_event_dates__date_format', $date_format);
474
+		$time_format = apply_filters('FHEE__espresso_list_of_event_dates__time_format', $time_format);
475
+		$datetimes = EEH_Event_View::get_all_date_obj($EVT_ID, $show_expired, FALSE, $limit);
476
+		if ( ! $format) {
477
+			return apply_filters('FHEE__espresso_list_of_event_dates__datetimes', $datetimes);
478 478
 		}
479 479
 		//d( $datetimes );
480
-		if ( is_array( $datetimes ) && ! empty( $datetimes )) {
480
+		if (is_array($datetimes) && ! empty($datetimes)) {
481 481
 			global $post;
482
-			$html = $format ? '<ul id="ee-event-datetimes-ul-' . $post->ID . '" class="ee-event-datetimes-ul">' : '';
483
-			foreach ( $datetimes as $datetime ) {
484
-				if ( $datetime instanceof EE_Datetime ) {
485
-					$html .= '<li id="ee-event-datetimes-li-' . $datetime->ID();
486
-					$html .= '" class="ee-event-datetimes-li ee-event-datetimes-li-' . $datetime->get_active_status() . '">';
482
+			$html = $format ? '<ul id="ee-event-datetimes-ul-'.$post->ID.'" class="ee-event-datetimes-ul">' : '';
483
+			foreach ($datetimes as $datetime) {
484
+				if ($datetime instanceof EE_Datetime) {
485
+					$html .= '<li id="ee-event-datetimes-li-'.$datetime->ID();
486
+					$html .= '" class="ee-event-datetimes-li ee-event-datetimes-li-'.$datetime->get_active_status().'">';
487 487
 					$datetime_name = $datetime->name();
488
-					$html .= ! empty( $datetime_name ) ? '<strong>' . $datetime_name . '</strong>' : '';
489
-					$html .= ! empty( $datetime_name )  && $add_breaks ? '<br />' : '';
490
-					$html .= '<span class="dashicons dashicons-calendar"></span>' . $datetime->date_range( $date_format ) . '<br/>';
491
-					$html .= '<span class="dashicons dashicons-clock"></span>' . $datetime->time_range( $time_format );
488
+					$html .= ! empty($datetime_name) ? '<strong>'.$datetime_name.'</strong>' : '';
489
+					$html .= ! empty($datetime_name) && $add_breaks ? '<br />' : '';
490
+					$html .= '<span class="dashicons dashicons-calendar"></span>'.$datetime->date_range($date_format).'<br/>';
491
+					$html .= '<span class="dashicons dashicons-clock"></span>'.$datetime->time_range($time_format);
492 492
 					$datetime_description = $datetime->description();
493
-					$html .= ! empty( $datetime_description )  && $add_breaks ? '<br />' : '';
494
-					$html .= ! empty( $datetime_description ) ? ' - ' . $datetime_description : '';
495
-					$html = apply_filters( 'FHEE__espresso_list_of_event_dates__datetime_html', $html, $datetime );
493
+					$html .= ! empty($datetime_description) && $add_breaks ? '<br />' : '';
494
+					$html .= ! empty($datetime_description) ? ' - '.$datetime_description : '';
495
+					$html = apply_filters('FHEE__espresso_list_of_event_dates__datetime_html', $html, $datetime);
496 496
 					$html .= '</li>';
497 497
 				}
498 498
 			}
499 499
 			$html .= $format ? '</ul>' : '';
500 500
 		} else {
501
-			$html = $format ?  '<p><span class="dashicons dashicons-marker pink-text"></span>' . __( 'There are no upcoming dates for this event.', 'event_espresso' ) . '</p><br/>' : '';
501
+			$html = $format ? '<p><span class="dashicons dashicons-marker pink-text"></span>'.__('There are no upcoming dates for this event.', 'event_espresso').'</p><br/>' : '';
502 502
 		}
503
-		if ( $echo ) {
503
+		if ($echo) {
504 504
 			echo $html;
505 505
 			return '';
506 506
 		}
@@ -509,7 +509,7 @@  discard block
 block discarded – undo
509 509
 }
510 510
 
511 511
 
512
-if ( ! function_exists( 'espresso_event_end_date' )) {
512
+if ( ! function_exists('espresso_event_end_date')) {
513 513
 	/**
514 514
 	 * espresso_event_end_date
515 515
 	 * returns the last date for an event
@@ -520,20 +520,20 @@  discard block
 block discarded – undo
520 520
 	 * @param bool   $echo
521 521
 	 * @return string
522 522
 	 */
523
-	function espresso_event_end_date( $date_format = '', $time_format = '', $EVT_ID = FALSE, $echo = TRUE ) {
524
-		$date_format = ! empty( $date_format ) ? $date_format : get_option( 'date_format' );
525
-		$time_format = ! empty( $time_format ) ? $time_format : get_option( 'time_format' );
526
-		$date_format = apply_filters( 'FHEE__espresso_event_end_date__date_format', $date_format );
527
-		$time_format = apply_filters( 'FHEE__espresso_event_end_date__time_format', $time_format );
528
-		if($echo){
529
-			echo EEH_Event_View::the_event_end_date( $date_format, $time_format, $EVT_ID );
523
+	function espresso_event_end_date($date_format = '', $time_format = '', $EVT_ID = FALSE, $echo = TRUE) {
524
+		$date_format = ! empty($date_format) ? $date_format : get_option('date_format');
525
+		$time_format = ! empty($time_format) ? $time_format : get_option('time_format');
526
+		$date_format = apply_filters('FHEE__espresso_event_end_date__date_format', $date_format);
527
+		$time_format = apply_filters('FHEE__espresso_event_end_date__time_format', $time_format);
528
+		if ($echo) {
529
+			echo EEH_Event_View::the_event_end_date($date_format, $time_format, $EVT_ID);
530 530
 			return '';
531 531
 		}
532
-		return EEH_Event_View::the_event_end_date( $date_format, $time_format, $EVT_ID );
532
+		return EEH_Event_View::the_event_end_date($date_format, $time_format, $EVT_ID);
533 533
 	}
534 534
 }
535 535
 
536
-if ( ! function_exists( 'espresso_event_date_range' )) {
536
+if ( ! function_exists('espresso_event_date_range')) {
537 537
 	/**
538 538
 	 * espresso_event_date_range
539 539
 	 * returns the first and last chronologically ordered dates for an event (if different)
@@ -545,31 +545,31 @@  discard block
 block discarded – undo
545 545
 	 * @param bool   $EVT_ID
546 546
 	 * @return string
547 547
 	 */
548
-	function espresso_event_date_range( $date_format = '', $time_format = '', $single_date_format = '', $single_time_format = '', $EVT_ID = FALSE, $echo = TRUE ) {
548
+	function espresso_event_date_range($date_format = '', $time_format = '', $single_date_format = '', $single_time_format = '', $EVT_ID = FALSE, $echo = TRUE) {
549 549
 		// set and filter date and time formats when a range is returned
550
-		$date_format = ! empty( $date_format ) ? $date_format : get_option( 'date_format' );
551
-		$date_format = apply_filters( 'FHEE__espresso_event_date_range__date_format', $date_format );
550
+		$date_format = ! empty($date_format) ? $date_format : get_option('date_format');
551
+		$date_format = apply_filters('FHEE__espresso_event_date_range__date_format', $date_format);
552 552
 		// get the start and end date with NO time portion
553
-		$the_event_date = EEH_Event_View::the_earliest_event_date( $date_format, '', $EVT_ID );
554
-		$the_event_end_date = EEH_Event_View::the_latest_event_date( $date_format, '', $EVT_ID );
553
+		$the_event_date = EEH_Event_View::the_earliest_event_date($date_format, '', $EVT_ID);
554
+		$the_event_end_date = EEH_Event_View::the_latest_event_date($date_format, '', $EVT_ID);
555 555
 		// now we can determine if date range spans more than one day
556
-		if ( $the_event_date != $the_event_end_date ) {
557
-			$time_format = ! empty( $time_format ) ? $time_format : get_option( 'time_format' );
558
-			$time_format = apply_filters( 'FHEE__espresso_event_date_range__time_format', $time_format );
556
+		if ($the_event_date != $the_event_end_date) {
557
+			$time_format = ! empty($time_format) ? $time_format : get_option('time_format');
558
+			$time_format = apply_filters('FHEE__espresso_event_date_range__time_format', $time_format);
559 559
 			$html = sprintf(
560
-				__( '%1$s - %2$s', 'event_espresso' ),
561
-				EEH_Event_View::the_earliest_event_date( $date_format, $time_format, $EVT_ID ),
562
-				EEH_Event_View::the_latest_event_date( $date_format, $time_format, $EVT_ID )
560
+				__('%1$s - %2$s', 'event_espresso'),
561
+				EEH_Event_View::the_earliest_event_date($date_format, $time_format, $EVT_ID),
562
+				EEH_Event_View::the_latest_event_date($date_format, $time_format, $EVT_ID)
563 563
 			);
564 564
 		} else {
565 565
 			// set and filter date and time formats when only a single datetime is returned
566
-			$single_date_format = ! empty( $single_date_format ) ? $single_date_format : get_option( 'date_format' );
567
-			$single_time_format = ! empty( $single_time_format ) ? $single_time_format : get_option( 'time_format' );
568
-			$single_date_format = apply_filters( 'FHEE__espresso_event_date_range__single_date_format', $single_date_format );
569
-			$single_time_format = apply_filters( 'FHEE__espresso_event_date_range__single_time_format', $single_time_format );
570
-			$html = EEH_Event_View::the_earliest_event_date( $single_date_format, $single_time_format, $EVT_ID );
566
+			$single_date_format = ! empty($single_date_format) ? $single_date_format : get_option('date_format');
567
+			$single_time_format = ! empty($single_time_format) ? $single_time_format : get_option('time_format');
568
+			$single_date_format = apply_filters('FHEE__espresso_event_date_range__single_date_format', $single_date_format);
569
+			$single_time_format = apply_filters('FHEE__espresso_event_date_range__single_time_format', $single_time_format);
570
+			$html = EEH_Event_View::the_earliest_event_date($single_date_format, $single_time_format, $EVT_ID);
571 571
 		}
572
-		if ( $echo ) {
572
+		if ($echo) {
573 573
 			echo $html;
574 574
 			return '';
575 575
 		}
@@ -578,7 +578,7 @@  discard block
 block discarded – undo
578 578
 }
579 579
 
580 580
 
581
-if ( ! function_exists( 'espresso_event_date_as_calendar_page' )) {
581
+if ( ! function_exists('espresso_event_date_as_calendar_page')) {
582 582
 	/**
583 583
 	 * espresso_event_date_as_calendar_page
584 584
 	 * returns the primary date for an event, stylized to appear as the page of a calendar
@@ -586,15 +586,15 @@  discard block
 block discarded – undo
586 586
 	 * @param bool $EVT_ID
587 587
 	 * @return string
588 588
 	 */
589
-	function espresso_event_date_as_calendar_page( $EVT_ID = FALSE ) {
590
-		EEH_Event_View::event_date_as_calendar_page( $EVT_ID );
589
+	function espresso_event_date_as_calendar_page($EVT_ID = FALSE) {
590
+		EEH_Event_View::event_date_as_calendar_page($EVT_ID);
591 591
 	}
592 592
 }
593 593
 
594 594
 
595 595
 
596 596
 
597
-if ( ! function_exists( 'espresso_event_link_url' )) {
597
+if ( ! function_exists('espresso_event_link_url')) {
598 598
 	/**
599 599
 	 * espresso_event_link_url
600 600
 	 *
@@ -602,18 +602,18 @@  discard block
 block discarded – undo
602 602
 	 * @param bool $echo
603 603
 	 * @return string
604 604
 	 */
605
-	function espresso_event_link_url( $EVT_ID = 0, $echo = TRUE ) {
606
-		if ( $echo ) {
607
-			echo EEH_Event_View::event_link_url( $EVT_ID );
605
+	function espresso_event_link_url($EVT_ID = 0, $echo = TRUE) {
606
+		if ($echo) {
607
+			echo EEH_Event_View::event_link_url($EVT_ID);
608 608
 			return '';
609 609
 		}
610
-		return EEH_Event_View::event_link_url( $EVT_ID );
610
+		return EEH_Event_View::event_link_url($EVT_ID);
611 611
 	}
612 612
 }
613 613
 
614 614
 
615 615
 
616
-if ( ! function_exists( 'espresso_event_has_content_or_excerpt' )) {
616
+if ( ! function_exists('espresso_event_has_content_or_excerpt')) {
617 617
 	/**
618 618
 	 *    espresso_event_has_content_or_excerpt
619 619
 	 *
@@ -621,15 +621,15 @@  discard block
 block discarded – undo
621 621
 	 * @param bool $EVT_ID
622 622
 	 * @return    boolean
623 623
 	 */
624
-	function espresso_event_has_content_or_excerpt( $EVT_ID = FALSE ) {
625
-		return EEH_Event_View::event_has_content_or_excerpt( $EVT_ID );
624
+	function espresso_event_has_content_or_excerpt($EVT_ID = FALSE) {
625
+		return EEH_Event_View::event_has_content_or_excerpt($EVT_ID);
626 626
 	}
627 627
 }
628 628
 
629 629
 
630 630
 
631 631
 
632
-if ( ! function_exists( 'espresso_event_content_or_excerpt' )) {
632
+if ( ! function_exists('espresso_event_content_or_excerpt')) {
633 633
 	/**
634 634
 	 * espresso_event_content_or_excerpt
635 635
 	 *
@@ -638,18 +638,18 @@  discard block
 block discarded – undo
638 638
 	 * @param bool $echo
639 639
 	 * @return string
640 640
 	 */
641
-	function espresso_event_content_or_excerpt( $num_words = 55, $more = NULL, $echo = TRUE ) {
642
-		if ( $echo ) {
643
-			echo EEH_Event_View::event_content_or_excerpt( $num_words, $more );
641
+	function espresso_event_content_or_excerpt($num_words = 55, $more = NULL, $echo = TRUE) {
642
+		if ($echo) {
643
+			echo EEH_Event_View::event_content_or_excerpt($num_words, $more);
644 644
 			return '';
645 645
 		}
646
-		return EEH_Event_View::event_content_or_excerpt( $num_words, $more );
646
+		return EEH_Event_View::event_content_or_excerpt($num_words, $more);
647 647
 	}
648 648
 }
649 649
 
650 650
 
651 651
 
652
-if ( ! function_exists( 'espresso_event_phone' )) {
652
+if ( ! function_exists('espresso_event_phone')) {
653 653
 	/**
654 654
 	 * espresso_event_phone
655 655
 	 *
@@ -657,18 +657,18 @@  discard block
 block discarded – undo
657 657
 	 * @param bool $echo
658 658
 	 * @return string
659 659
 	 */
660
-	function espresso_event_phone( $EVT_ID = 0, $echo = TRUE ) {
661
-		if ( $echo ) {
662
-			echo EEH_Event_View::event_phone( $EVT_ID );
660
+	function espresso_event_phone($EVT_ID = 0, $echo = TRUE) {
661
+		if ($echo) {
662
+			echo EEH_Event_View::event_phone($EVT_ID);
663 663
 			return '';
664 664
 		}
665
-		return EEH_Event_View::event_phone( $EVT_ID );
665
+		return EEH_Event_View::event_phone($EVT_ID);
666 666
 	}
667 667
 }
668 668
 
669 669
 
670 670
 
671
-if ( ! function_exists( 'espresso_edit_event_link' )) {
671
+if ( ! function_exists('espresso_edit_event_link')) {
672 672
 	/**
673 673
 	 * espresso_edit_event_link
674 674
 	 * returns a link to edit an event
@@ -677,39 +677,39 @@  discard block
 block discarded – undo
677 677
 	 * @param bool $echo
678 678
 	 * @return string
679 679
 	 */
680
-	function espresso_edit_event_link( $EVT_ID = 0, $echo = TRUE ) {
681
-		if ( $echo ) {
682
-			echo EEH_Event_View::edit_event_link( $EVT_ID );
680
+	function espresso_edit_event_link($EVT_ID = 0, $echo = TRUE) {
681
+		if ($echo) {
682
+			echo EEH_Event_View::edit_event_link($EVT_ID);
683 683
 			return '';
684 684
 		}
685
-		return EEH_Event_View::edit_event_link( $EVT_ID );
685
+		return EEH_Event_View::edit_event_link($EVT_ID);
686 686
 	}
687 687
 }
688 688
 
689 689
 
690
-if ( ! function_exists( 'espresso_organization_name' )) {
690
+if ( ! function_exists('espresso_organization_name')) {
691 691
 	/**
692 692
 	 * espresso_organization_name
693 693
 	 * @param bool $echo
694 694
 	 * @return string
695 695
 	 */
696 696
 	function espresso_organization_name($echo = TRUE) {
697
-		if($echo){
698
-			echo EE_Registry::instance()->CFG->organization->get_pretty( 'name' );
697
+		if ($echo) {
698
+			echo EE_Registry::instance()->CFG->organization->get_pretty('name');
699 699
 			return '';
700 700
 		}
701
-		return EE_Registry::instance()->CFG->organization->get_pretty( 'name' );
701
+		return EE_Registry::instance()->CFG->organization->get_pretty('name');
702 702
 	}
703 703
 }
704 704
 
705
-if ( ! function_exists( 'espresso_organization_address' )) {
705
+if ( ! function_exists('espresso_organization_address')) {
706 706
 	/**
707 707
 	 * espresso_organization_address
708 708
 	 * @param string $type
709 709
 	 * @return string
710 710
 	 */
711
-	function espresso_organization_address( $type = 'inline' ) {
712
-		if ( EE_Registry::instance()->CFG->organization instanceof EE_Organization_Config ) {
711
+	function espresso_organization_address($type = 'inline') {
712
+		if (EE_Registry::instance()->CFG->organization instanceof EE_Organization_Config) {
713 713
 			$address = new EventEspresso\core\entities\GenericAddress(
714 714
 				EE_Registry::instance()->CFG->organization->address_1,
715 715
 				EE_Registry::instance()->CFG->organization->address_2,
@@ -718,129 +718,129 @@  discard block
 block discarded – undo
718 718
 				EE_Registry::instance()->CFG->organization->zip,
719 719
 				EE_Registry::instance()->CFG->organization->CNT_ISO
720 720
 			);
721
-			return EEH_Address::format( $address, $type );
721
+			return EEH_Address::format($address, $type);
722 722
 		}
723 723
 		return '';
724 724
 	}
725 725
 }
726 726
 
727
-if ( ! function_exists( 'espresso_organization_email' )) {
727
+if ( ! function_exists('espresso_organization_email')) {
728 728
 	/**
729 729
 	 * espresso_organization_email
730 730
 	 * @param bool $echo
731 731
 	 * @return string
732 732
 	 */
733
-	function espresso_organization_email( $echo = TRUE ) {
734
-		if($echo){
735
-			echo EE_Registry::instance()->CFG->organization->get_pretty( 'email' );
733
+	function espresso_organization_email($echo = TRUE) {
734
+		if ($echo) {
735
+			echo EE_Registry::instance()->CFG->organization->get_pretty('email');
736 736
 			return '';
737 737
 		}
738
-		return EE_Registry::instance()->CFG->organization->get_pretty( 'email' );
738
+		return EE_Registry::instance()->CFG->organization->get_pretty('email');
739 739
 	}
740 740
 }
741 741
 
742
-if ( ! function_exists( 'espresso_organization_logo_url' )) {
742
+if ( ! function_exists('espresso_organization_logo_url')) {
743 743
 	/**
744 744
 	 * espresso_organization_logo_url
745 745
 	 * @param bool $echo
746 746
 	 * @return string
747 747
 	 */
748
-	function espresso_organization_logo_url( $echo = TRUE ) {
749
-		if($echo){
750
-			echo EE_Registry::instance()->CFG->organization->get_pretty( 'logo_url' );
748
+	function espresso_organization_logo_url($echo = TRUE) {
749
+		if ($echo) {
750
+			echo EE_Registry::instance()->CFG->organization->get_pretty('logo_url');
751 751
 			return '';
752 752
 		}
753
-		return EE_Registry::instance()->CFG->organization->get_pretty( 'logo_url' );
753
+		return EE_Registry::instance()->CFG->organization->get_pretty('logo_url');
754 754
 	}
755 755
 }
756 756
 
757
-if ( ! function_exists( 'espresso_organization_facebook' )) {
757
+if ( ! function_exists('espresso_organization_facebook')) {
758 758
 	/**
759 759
 	 * espresso_organization_facebook
760 760
 	 * @param bool $echo
761 761
 	 * @return string
762 762
 	 */
763
-	function espresso_organization_facebook( $echo = TRUE ) {
764
-		if($echo){
765
-			echo EE_Registry::instance()->CFG->organization->get_pretty( 'facebook' );
763
+	function espresso_organization_facebook($echo = TRUE) {
764
+		if ($echo) {
765
+			echo EE_Registry::instance()->CFG->organization->get_pretty('facebook');
766 766
 			return '';
767 767
 		}
768
-		return EE_Registry::instance()->CFG->organization->get_pretty( 'facebook' );
768
+		return EE_Registry::instance()->CFG->organization->get_pretty('facebook');
769 769
 	}
770 770
 }
771 771
 
772
-if ( ! function_exists( 'espresso_organization_twitter' )) {
772
+if ( ! function_exists('espresso_organization_twitter')) {
773 773
 	/**
774 774
 	 * espresso_organization_twitter
775 775
 	 * @param bool $echo
776 776
 	 * @return string
777 777
 	 */
778
-	function espresso_organization_twitter( $echo = TRUE ) {
779
-		if($echo){
780
-			echo EE_Registry::instance()->CFG->organization->get_pretty( 'twitter' );
778
+	function espresso_organization_twitter($echo = TRUE) {
779
+		if ($echo) {
780
+			echo EE_Registry::instance()->CFG->organization->get_pretty('twitter');
781 781
 			return '';
782 782
 		}
783
-		return EE_Registry::instance()->CFG->organization->get_pretty( 'twitter' );
783
+		return EE_Registry::instance()->CFG->organization->get_pretty('twitter');
784 784
 	}
785 785
 }
786 786
 
787
-if ( ! function_exists( 'espresso_organization_linkedin' )) {
787
+if ( ! function_exists('espresso_organization_linkedin')) {
788 788
 	/**
789 789
 	 * espresso_organization_linkedin
790 790
 	 * @param bool $echo
791 791
 	 * @return string
792 792
 	 */
793
-	function espresso_organization_linkedin( $echo = TRUE ) {
794
-		if($echo){
795
-			echo EE_Registry::instance()->CFG->organization->get_pretty( 'linkedin' );
793
+	function espresso_organization_linkedin($echo = TRUE) {
794
+		if ($echo) {
795
+			echo EE_Registry::instance()->CFG->organization->get_pretty('linkedin');
796 796
 			return '';
797 797
 		}
798
-		return EE_Registry::instance()->CFG->organization->get_pretty( 'linkedin' );
798
+		return EE_Registry::instance()->CFG->organization->get_pretty('linkedin');
799 799
 	}
800 800
 }
801 801
 
802
-if ( ! function_exists( 'espresso_organization_pinterest' )) {
802
+if ( ! function_exists('espresso_organization_pinterest')) {
803 803
 	/**
804 804
 	 * espresso_organization_pinterest
805 805
 	 * @param bool $echo
806 806
 	 * @return string
807 807
 	 */
808
-	function espresso_organization_pinterest( $echo = TRUE ) {
809
-		if($echo){
810
-			echo EE_Registry::instance()->CFG->organization->get_pretty( 'pinterest' );
808
+	function espresso_organization_pinterest($echo = TRUE) {
809
+		if ($echo) {
810
+			echo EE_Registry::instance()->CFG->organization->get_pretty('pinterest');
811 811
 			return '';
812 812
 		}
813
-		return EE_Registry::instance()->CFG->organization->get_pretty( 'pinterest' );
813
+		return EE_Registry::instance()->CFG->organization->get_pretty('pinterest');
814 814
 	}
815 815
 }
816 816
 
817
-if ( ! function_exists( 'espresso_organization_google' )) {
817
+if ( ! function_exists('espresso_organization_google')) {
818 818
 	/**
819 819
 	 * espresso_organization_google
820 820
 	 * @param bool $echo
821 821
 	 * @return string
822 822
 	 */
823
-	function espresso_organization_google( $echo = TRUE ) {
824
-		if($echo){
825
-			echo EE_Registry::instance()->CFG->organization->get_pretty( 'google' );
823
+	function espresso_organization_google($echo = TRUE) {
824
+		if ($echo) {
825
+			echo EE_Registry::instance()->CFG->organization->get_pretty('google');
826 826
 			return '';
827 827
 		}
828
-		return EE_Registry::instance()->CFG->organization->get_pretty( 'google' );
828
+		return EE_Registry::instance()->CFG->organization->get_pretty('google');
829 829
 	}
830 830
 }
831 831
 
832
-if ( ! function_exists( 'espresso_organization_instagram' )) {
832
+if ( ! function_exists('espresso_organization_instagram')) {
833 833
 	/**
834 834
 	 * espresso_organization_instagram
835 835
 	 * @param bool $echo
836 836
 	 * @return string
837 837
 	 */
838
-	function espresso_organization_instagram( $echo = TRUE ) {
839
-		if($echo){
840
-			echo EE_Registry::instance()->CFG->organization->get_pretty( 'instagram' );
838
+	function espresso_organization_instagram($echo = TRUE) {
839
+		if ($echo) {
840
+			echo EE_Registry::instance()->CFG->organization->get_pretty('instagram');
841 841
 			return '';
842 842
 		}
843
-		return EE_Registry::instance()->CFG->organization->get_pretty( 'instagram' );
843
+		return EE_Registry::instance()->CFG->organization->get_pretty('instagram');
844 844
 	}
845 845
 }
846 846
 
@@ -850,7 +850,7 @@  discard block
 block discarded – undo
850 850
 
851 851
 
852 852
 
853
-if ( ! function_exists( 'espresso_event_venues' )) {
853
+if ( ! function_exists('espresso_event_venues')) {
854 854
 	/**
855 855
 	 * espresso_event_venues
856 856
 	 *
@@ -864,7 +864,7 @@  discard block
 block discarded – undo
864 864
 
865 865
 
866 866
 
867
-if ( ! function_exists( 'espresso_venue_id' )) {
867
+if ( ! function_exists('espresso_venue_id')) {
868 868
 	/**
869 869
 	 *    espresso_venue_name
870 870
 	 *
@@ -872,15 +872,15 @@  discard block
 block discarded – undo
872 872
 	 * @param     int $EVT_ID
873 873
 	 * @return    string
874 874
 	 */
875
-	function espresso_venue_id( $EVT_ID = 0 ) {
876
-		$venue = EEH_Venue_View::get_venue( $EVT_ID );
875
+	function espresso_venue_id($EVT_ID = 0) {
876
+		$venue = EEH_Venue_View::get_venue($EVT_ID);
877 877
 		return $venue instanceof EE_Venue ? $venue->ID() : 0;
878 878
 	}
879 879
 }
880 880
 
881 881
 
882 882
 
883
-if ( ! function_exists( 'espresso_is_venue_private' ) ) {
883
+if ( ! function_exists('espresso_is_venue_private')) {
884 884
 	/**
885 885
 	 * Return whether a venue is private or not.
886 886
 	 * @see EEH_Venue_View::get_venue() for more info on expected return results.
@@ -889,15 +889,15 @@  discard block
 block discarded – undo
889 889
 	 *
890 890
 	 * @return bool | null
891 891
 	 */
892
-	function espresso_is_venue_private( $VNU_ID = 0 ) {
893
-		return EEH_Venue_View::is_venue_private( $VNU_ID );
892
+	function espresso_is_venue_private($VNU_ID = 0) {
893
+		return EEH_Venue_View::is_venue_private($VNU_ID);
894 894
 	}
895 895
 }
896 896
 
897 897
 
898 898
 
899 899
 
900
-if ( ! function_exists( 'espresso_venue_name' )) {
900
+if ( ! function_exists('espresso_venue_name')) {
901 901
 	/**
902 902
 	 *    espresso_venue_name
903 903
 	 *
@@ -907,19 +907,19 @@  discard block
 block discarded – undo
907 907
 	 * @param bool   $echo
908 908
 	 * @return    string
909 909
 	 */
910
-	function espresso_venue_name( $VNU_ID = 0, $link_to = 'details', $echo = TRUE ) {
911
-		if($echo){
912
-			echo EEH_Venue_View::venue_name( $link_to, $VNU_ID );
910
+	function espresso_venue_name($VNU_ID = 0, $link_to = 'details', $echo = TRUE) {
911
+		if ($echo) {
912
+			echo EEH_Venue_View::venue_name($link_to, $VNU_ID);
913 913
 			return '';
914 914
 		}
915
-		return EEH_Venue_View::venue_name( $link_to, $VNU_ID );
915
+		return EEH_Venue_View::venue_name($link_to, $VNU_ID);
916 916
 	}
917 917
 }
918 918
 
919 919
 
920 920
 
921 921
 
922
-if ( ! function_exists( 'espresso_venue_link' )) {
922
+if ( ! function_exists('espresso_venue_link')) {
923 923
 	/**
924 924
 	 * 	espresso_venue_link
925 925
 	 *
@@ -928,14 +928,14 @@  discard block
 block discarded – undo
928 928
 	 *  @param 	string 	$text
929 929
 	 *  @return 	string
930 930
 	 */
931
-	function espresso_venue_link( $VNU_ID = 0, $text = '' ) {
932
-		return EEH_Venue_View::venue_details_link( $VNU_ID, $text );
931
+	function espresso_venue_link($VNU_ID = 0, $text = '') {
932
+		return EEH_Venue_View::venue_details_link($VNU_ID, $text);
933 933
 	}
934 934
 }
935 935
 
936 936
 
937 937
 
938
-if ( ! function_exists( 'espresso_venue_description' )) {
938
+if ( ! function_exists('espresso_venue_description')) {
939 939
 	/**
940 940
 	 *    espresso_venue_description
941 941
 	 *
@@ -944,17 +944,17 @@  discard block
 block discarded – undo
944 944
 	 * @param bool $echo
945 945
 	 * @return    string
946 946
 	 */
947
-	function espresso_venue_description( $VNU_ID = FALSE, $echo = TRUE ) {
948
-		if($echo){
949
-			echo EEH_Venue_View::venue_description( $VNU_ID );
947
+	function espresso_venue_description($VNU_ID = FALSE, $echo = TRUE) {
948
+		if ($echo) {
949
+			echo EEH_Venue_View::venue_description($VNU_ID);
950 950
 			return '';
951 951
 		}
952
-		return EEH_Venue_View::venue_description( $VNU_ID );
952
+		return EEH_Venue_View::venue_description($VNU_ID);
953 953
 	}
954 954
 }
955 955
 
956 956
 
957
-if ( ! function_exists( 'espresso_venue_excerpt' )) {
957
+if ( ! function_exists('espresso_venue_excerpt')) {
958 958
 	/**
959 959
 	 *    espresso_venue_excerpt
960 960
 	 *
@@ -963,18 +963,18 @@  discard block
 block discarded – undo
963 963
 	 * @param bool $echo
964 964
 	 * @return    string
965 965
 	 */
966
-	function espresso_venue_excerpt( $VNU_ID = 0,  $echo = TRUE ) {
967
-		if ( $echo ) {
968
-			echo EEH_Venue_View::venue_excerpt( $VNU_ID );
966
+	function espresso_venue_excerpt($VNU_ID = 0, $echo = TRUE) {
967
+		if ($echo) {
968
+			echo EEH_Venue_View::venue_excerpt($VNU_ID);
969 969
 			return '';
970 970
 		}
971
-		return EEH_Venue_View::venue_excerpt( $VNU_ID );
971
+		return EEH_Venue_View::venue_excerpt($VNU_ID);
972 972
 	}
973 973
 }
974 974
 
975 975
 
976 976
 
977
-if ( ! function_exists( 'espresso_venue_categories' )) {
977
+if ( ! function_exists('espresso_venue_categories')) {
978 978
 	/**
979 979
 	 * espresso_venue_categories
980 980
 	 * returns the terms associated with a venue
@@ -984,17 +984,17 @@  discard block
 block discarded – undo
984 984
 	 * @param bool $echo
985 985
 	 * @return string
986 986
 	 */
987
-	function espresso_venue_categories( $VNU_ID = 0, $hide_uncategorized = TRUE,  $echo = TRUE ) {
988
-		if ( $echo ) {
989
-			echo EEH_Venue_View::venue_categories( $VNU_ID, $hide_uncategorized );
987
+	function espresso_venue_categories($VNU_ID = 0, $hide_uncategorized = TRUE, $echo = TRUE) {
988
+		if ($echo) {
989
+			echo EEH_Venue_View::venue_categories($VNU_ID, $hide_uncategorized);
990 990
 			return '';
991 991
 		}
992
-		return EEH_Venue_View::venue_categories( $VNU_ID, $hide_uncategorized );
992
+		return EEH_Venue_View::venue_categories($VNU_ID, $hide_uncategorized);
993 993
 	}
994 994
 }
995 995
 
996 996
 
997
-if ( ! function_exists( 'espresso_venue_address' )) {
997
+if ( ! function_exists('espresso_venue_address')) {
998 998
 	/**
999 999
 	 * espresso_venue_address
1000 1000
 	 * returns a formatted block of html  for displaying a venue's address
@@ -1004,17 +1004,17 @@  discard block
 block discarded – undo
1004 1004
 	 * @param bool   $echo
1005 1005
 	 * @return string
1006 1006
 	 */
1007
-	function espresso_venue_address( $type = 'multiline', $VNU_ID = 0, $echo = TRUE ) {
1008
-		if ( $echo ) {
1009
-			echo EEH_Venue_View::venue_address( $type, $VNU_ID );
1007
+	function espresso_venue_address($type = 'multiline', $VNU_ID = 0, $echo = TRUE) {
1008
+		if ($echo) {
1009
+			echo EEH_Venue_View::venue_address($type, $VNU_ID);
1010 1010
 			return '';
1011 1011
 		}
1012
-		return EEH_Venue_View::venue_address( $type, $VNU_ID );
1012
+		return EEH_Venue_View::venue_address($type, $VNU_ID);
1013 1013
 	}
1014 1014
 }
1015 1015
 
1016 1016
 
1017
-if ( ! function_exists( 'espresso_venue_raw_address' )) {
1017
+if ( ! function_exists('espresso_venue_raw_address')) {
1018 1018
 	/**
1019 1019
 	 * espresso_venue_address
1020 1020
 	 * returns an UN-formatted string containing a venue's address
@@ -1024,17 +1024,17 @@  discard block
 block discarded – undo
1024 1024
 	 * @param bool     $echo
1025 1025
 	 * @return string
1026 1026
 	 */
1027
-	function espresso_venue_raw_address( $type = 'multiline', $VNU_ID = 0, $echo = TRUE ) {
1028
-		if ( $echo ) {
1029
-			echo EEH_Venue_View::venue_address( $type, $VNU_ID, FALSE, FALSE );
1027
+	function espresso_venue_raw_address($type = 'multiline', $VNU_ID = 0, $echo = TRUE) {
1028
+		if ($echo) {
1029
+			echo EEH_Venue_View::venue_address($type, $VNU_ID, FALSE, FALSE);
1030 1030
 			return '';
1031 1031
 		}
1032
-		return EEH_Venue_View::venue_address( $type, $VNU_ID, FALSE, FALSE );
1032
+		return EEH_Venue_View::venue_address($type, $VNU_ID, FALSE, FALSE);
1033 1033
 	}
1034 1034
 }
1035 1035
 
1036 1036
 
1037
-if ( ! function_exists( 'espresso_venue_has_address' )) {
1037
+if ( ! function_exists('espresso_venue_has_address')) {
1038 1038
 	/**
1039 1039
 	 * espresso_venue_has_address
1040 1040
 	 * returns TRUE or FALSE if a Venue has address information
@@ -1042,13 +1042,13 @@  discard block
 block discarded – undo
1042 1042
 	 * @param int $VNU_ID
1043 1043
 	 * @return bool
1044 1044
 	 */
1045
-	function espresso_venue_has_address( $VNU_ID = 0 ) {
1046
-		return EEH_Venue_View::venue_has_address( $VNU_ID );
1045
+	function espresso_venue_has_address($VNU_ID = 0) {
1046
+		return EEH_Venue_View::venue_has_address($VNU_ID);
1047 1047
 	}
1048 1048
 }
1049 1049
 
1050 1050
 
1051
-if ( ! function_exists( 'espresso_venue_gmap' )) {
1051
+if ( ! function_exists('espresso_venue_gmap')) {
1052 1052
 	/**
1053 1053
 	 * espresso_venue_gmap
1054 1054
 	 * returns a google map for the venue address
@@ -1059,17 +1059,17 @@  discard block
 block discarded – undo
1059 1059
 	 * @param bool     $echo
1060 1060
 	 * @return string
1061 1061
 	 */
1062
-	function espresso_venue_gmap( $VNU_ID = 0, $map_ID = FALSE, $gmap = array(), $echo = TRUE  ) {
1063
-		if ( $echo ) {
1064
-			echo EEH_Venue_View::venue_gmap( $VNU_ID, $map_ID, $gmap );
1062
+	function espresso_venue_gmap($VNU_ID = 0, $map_ID = FALSE, $gmap = array(), $echo = TRUE) {
1063
+		if ($echo) {
1064
+			echo EEH_Venue_View::venue_gmap($VNU_ID, $map_ID, $gmap);
1065 1065
 			return '';
1066 1066
 		}
1067
-		return EEH_Venue_View::venue_gmap( $VNU_ID, $map_ID, $gmap );
1067
+		return EEH_Venue_View::venue_gmap($VNU_ID, $map_ID, $gmap);
1068 1068
 	}
1069 1069
 }
1070 1070
 
1071 1071
 
1072
-if ( ! function_exists( 'espresso_venue_phone' )) {
1072
+if ( ! function_exists('espresso_venue_phone')) {
1073 1073
 	/**
1074 1074
 	 * espresso_venue_phone
1075 1075
 	 *
@@ -1077,18 +1077,18 @@  discard block
 block discarded – undo
1077 1077
 	 * @param bool $echo
1078 1078
 	 * @return string
1079 1079
 	 */
1080
-	function espresso_venue_phone( $VNU_ID = 0, $echo = TRUE ) {
1081
-		if ( $echo ) {
1082
-			echo EEH_Venue_View::venue_phone( $VNU_ID );
1080
+	function espresso_venue_phone($VNU_ID = 0, $echo = TRUE) {
1081
+		if ($echo) {
1082
+			echo EEH_Venue_View::venue_phone($VNU_ID);
1083 1083
 			return '';
1084 1084
 		}
1085
-		return EEH_Venue_View::venue_phone( $VNU_ID );
1085
+		return EEH_Venue_View::venue_phone($VNU_ID);
1086 1086
 	}
1087 1087
 }
1088 1088
 
1089 1089
 
1090 1090
 
1091
-if ( ! function_exists( 'espresso_venue_website' )) {
1091
+if ( ! function_exists('espresso_venue_website')) {
1092 1092
 	/**
1093 1093
 	 * espresso_venue_website
1094 1094
 	 *
@@ -1096,18 +1096,18 @@  discard block
 block discarded – undo
1096 1096
 	 * @param bool $echo
1097 1097
 	 * @return string
1098 1098
 	 */
1099
-	function espresso_venue_website( $VNU_ID = 0, $echo = TRUE ) {
1100
-		if ( $echo ) {
1101
-			echo EEH_Venue_View::venue_website_link( $VNU_ID );
1099
+	function espresso_venue_website($VNU_ID = 0, $echo = TRUE) {
1100
+		if ($echo) {
1101
+			echo EEH_Venue_View::venue_website_link($VNU_ID);
1102 1102
 			return '';
1103 1103
 		}
1104
-		return EEH_Venue_View::venue_website_link( $VNU_ID );
1104
+		return EEH_Venue_View::venue_website_link($VNU_ID);
1105 1105
 	}
1106 1106
 }
1107 1107
 
1108 1108
 
1109 1109
 
1110
-if ( ! function_exists( 'espresso_edit_venue_link' )) {
1110
+if ( ! function_exists('espresso_edit_venue_link')) {
1111 1111
 	/**
1112 1112
 	 * espresso_edit_venue_link
1113 1113
 	 *
@@ -1115,12 +1115,12 @@  discard block
 block discarded – undo
1115 1115
 	 * @param bool $echo
1116 1116
 	 * @return string
1117 1117
 	 */
1118
-	function espresso_edit_venue_link( $VNU_ID = 0, $echo = TRUE ) {
1119
-		if($echo){
1120
-			echo EEH_Venue_View::edit_venue_link( $VNU_ID );
1118
+	function espresso_edit_venue_link($VNU_ID = 0, $echo = TRUE) {
1119
+		if ($echo) {
1120
+			echo EEH_Venue_View::edit_venue_link($VNU_ID);
1121 1121
 			return '';
1122 1122
 		}
1123
-		return EEH_Venue_View::edit_venue_link( $VNU_ID );
1123
+		return EEH_Venue_View::edit_venue_link($VNU_ID);
1124 1124
 	}
1125 1125
 }
1126 1126
 
Please login to merge, or discard this patch.
shortcodes/espresso_events/EES_Espresso_Events.shortcode.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -229,7 +229,7 @@
 block discarded – undo
229 229
 	 *
230 230
 	 * @access    public
231 231
 	 * @param string $event_list_css
232
-	 * @return    array
232
+	 * @return    string
233 233
 	 */
234 234
 	public function event_list_css( $event_list_css = '' ) {
235 235
 		$event_list_css .=  ! empty( $event_list_css ) ? ' ' : '';
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,6 @@
 block discarded – undo
1
-<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3
+}
2 4
 /**
3 5
  * Event Espresso
4 6
  *
Please login to merge, or discard this patch.
Spacing   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -50,14 +50,14 @@  discard block
 block discarded – undo
50 50
 	 * @param WP $WP
51 51
 	 * @return    void
52 52
 	 */
53
-	public function run( WP $WP ) {
54
-		if ( did_action( 'pre_get_posts' ) && did_action( 'send_headers' ) ) {
53
+	public function run(WP $WP) {
54
+		if (did_action('pre_get_posts') && did_action('send_headers')) {
55 55
 			EED_Events_Archive::instance()->event_list();
56 56
 		} else {
57 57
 			// this will trigger the EED_Events_Archive module's event_list() method during the pre_get_posts hook point,
58 58
 			// this allows us to initialize things, enqueue assets, etc,
59 59
 			// as well, this saves an instantiation of the module in an array using 'espresso_events' as the key, so that we can retrieve it
60
-			add_action( 'pre_get_posts', array( EED_Events_Archive::instance(), 'event_list' ) );
60
+			add_action('pre_get_posts', array(EED_Events_Archive::instance(), 'event_list'));
61 61
 		}
62 62
 	}
63 63
 
@@ -79,13 +79,13 @@  discard block
 block discarded – undo
79 79
 	 *  @param 	array 	$attributes
80 80
 	 *  @return 	string
81 81
 	 */
82
-	public function process_shortcode( $attributes = array() ) {
82
+	public function process_shortcode($attributes = array()) {
83 83
 		// make sure EED_Events_Archive is setup properly
84
-		if ( apply_filters( 'FHEE__fallback_shortcode_processor__EES_Espresso_Events', FALSE )) {
84
+		if (apply_filters('FHEE__fallback_shortcode_processor__EES_Espresso_Events', FALSE)) {
85 85
 			EED_Events_Archive::instance()->event_list();
86 86
 		}
87 87
 		// merge in any attributes passed via fallback shortcode processor
88
-		$attributes = array_merge( (array)$attributes, (array)$this->_attributes );
88
+		$attributes = array_merge((array) $attributes, (array) $this->_attributes);
89 89
 		//set default attributes
90 90
 		$default_espresso_events_shortcode_atts = array(
91 91
 			'title' => NULL,
@@ -99,26 +99,26 @@  discard block
 block discarded – undo
99 99
 			'fallback_shortcode_processor' => FALSE
100 100
 		);
101 101
 		// allow the defaults to be filtered
102
-		$default_espresso_events_shortcode_atts = apply_filters( 'EES_Espresso_Events__process_shortcode__default_espresso_events_shortcode_atts', $default_espresso_events_shortcode_atts );
102
+		$default_espresso_events_shortcode_atts = apply_filters('EES_Espresso_Events__process_shortcode__default_espresso_events_shortcode_atts', $default_espresso_events_shortcode_atts);
103 103
 		// grab attributes and merge with defaults, then extract
104
-		$attributes = array_merge( $default_espresso_events_shortcode_atts, $attributes );
104
+		$attributes = array_merge($default_espresso_events_shortcode_atts, $attributes);
105 105
 		// make sure we use the_excerpt()
106
-		add_filter( 'FHEE__EES_Espresso_Events__process_shortcode__true', '__return_true' );
106
+		add_filter('FHEE__EES_Espresso_Events__process_shortcode__true', '__return_true');
107 107
 		// apply query filters
108
-		add_filter( 'FHEE__EEH_Event_Query__apply_query_filters', '__return_true' );
108
+		add_filter('FHEE__EEH_Event_Query__apply_query_filters', '__return_true');
109 109
 		// run the query
110 110
 		global $wp_query;
111
-		$wp_query = new EE_Event_List_Query( $attributes );
111
+		$wp_query = new EE_Event_List_Query($attributes);
112 112
 		// check what template is loaded and load filters accordingly
113
-		EED_Events_Archive::instance()->template_include( 'loop-espresso_events.php' );
113
+		EED_Events_Archive::instance()->template_include('loop-espresso_events.php');
114 114
 		// load our template
115
-		$event_list = EEH_Template::locate_template( 'loop-espresso_events.php', array(), TRUE, TRUE );
115
+		$event_list = EEH_Template::locate_template('loop-espresso_events.php', array(), TRUE, TRUE);
116 116
 		// now reset the query and postdata
117 117
 		wp_reset_query();
118 118
 		wp_reset_postdata();
119 119
 		EED_Events_Archive::remove_all_events_archive_filters();
120 120
 		// remove query filters
121
-		remove_filter( 'FHEE__EEH_Event_Query__apply_query_filters', '__return_true' );
121
+		remove_filter('FHEE__EEH_Event_Query__apply_query_filters', '__return_true');
122 122
 		// pull our content from the output buffer and return it
123 123
 		return $event_list;
124 124
 	}
@@ -163,44 +163,44 @@  discard block
 block discarded – undo
163 163
 	 * @param array $args
164 164
 	 * @return \EE_Event_List_Query
165 165
 	 */
166
-	function __construct( $args = array() ) {
166
+	function __construct($args = array()) {
167 167
 //		EEH_Debug_Tools::printr( $args, '$args  <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span>', 'auto' );
168 168
 		// incoming args could be a mix of WP query args + EE shortcode args
169
-		foreach ( $args as $key =>$value ) {
170
-			$property = '_' . $key;
169
+		foreach ($args as $key =>$value) {
170
+			$property = '_'.$key;
171 171
 			// if the arg is a property of this class, then it's an EE shortcode arg
172
-			if ( property_exists( $this, $property )) {
172
+			if (property_exists($this, $property)) {
173 173
 				// set the property value
174 174
 				$this->{$property} = $value;
175 175
 				// then remove it from the array of args that will later be passed to WP_Query()
176
-				unset( $args[ $key ] );
176
+				unset($args[$key]);
177 177
 			}
178 178
 		}
179 179
 		//add query filters
180 180
 		EEH_Event_Query::add_query_filters();
181 181
 		// set params that will get used by the filters
182
-		EEH_Event_Query::set_query_params( $this->_month, $this->_category_slug, $this->_show_expired, $this->_order_by, $this->_sort );
182
+		EEH_Event_Query::set_query_params($this->_month, $this->_category_slug, $this->_show_expired, $this->_order_by, $this->_sort);
183 183
 		// first off, let's remove any filters from previous queries
184
-		remove_filter( 'FHEE__archive_espresso_events_template__upcoming_events_h1', array( $this, 'event_list_title' ));
185
-		remove_all_filters( 'FHEE__content_espresso_events__event_class' );
184
+		remove_filter('FHEE__archive_espresso_events_template__upcoming_events_h1', array($this, 'event_list_title'));
185
+		remove_all_filters('FHEE__content_espresso_events__event_class');
186 186
 		// Event List Title ?
187
-		add_filter( 'FHEE__archive_espresso_events_template__upcoming_events_h1', array( $this, 'event_list_title' ), 10, 1 );
187
+		add_filter('FHEE__archive_espresso_events_template__upcoming_events_h1', array($this, 'event_list_title'), 10, 1);
188 188
 		// add the css class
189
-		add_filter( 'FHEE__content_espresso_events__event_class', array( $this, 'event_list_css' ), 10, 1 );
189
+		add_filter('FHEE__content_espresso_events__event_class', array($this, 'event_list_css'), 10, 1);
190 190
 		// the current "page" we are viewing
191
-		$paged = max( 1, get_query_var( 'paged' ));
191
+		$paged = max(1, get_query_var('paged'));
192 192
 		// Force these args
193
-		$args = array_merge( $args, array(
193
+		$args = array_merge($args, array(
194 194
 			'post_type' => 'espresso_events',
195 195
 			'posts_per_page' => $this->_limit,
196 196
 			'update_post_term_cache' => FALSE,
197 197
 			'update_post_meta_cache' => FALSE,
198 198
 			'paged' => $paged,
199
-			'offset' => ( $paged - 1 ) * $this->_limit
199
+			'offset' => ($paged - 1) * $this->_limit
200 200
 		));
201 201
 
202 202
 		// run the query
203
-		parent::__construct( $args );
203
+		parent::__construct($args);
204 204
 	}
205 205
 
206 206
 
@@ -213,8 +213,8 @@  discard block
 block discarded – undo
213 213
 	 * @param string $event_list_title
214 214
 	 * @return    string
215 215
 	 */
216
-	public function event_list_title( $event_list_title = '' ) {
217
-		if ( ! empty( $this->_title )) {
216
+	public function event_list_title($event_list_title = '') {
217
+		if ( ! empty($this->_title)) {
218 218
 			return $this->_title;
219 219
 		}
220 220
 		return $event_list_title;
@@ -229,11 +229,11 @@  discard block
 block discarded – undo
229 229
 	 * @param string $event_list_css
230 230
 	 * @return    array
231 231
 	 */
232
-	public function event_list_css( $event_list_css = '' ) {
233
-		$event_list_css .=  ! empty( $event_list_css ) ? ' ' : '';
234
-		$event_list_css .=  ! empty( $this->_css_class ) ? $this->_css_class : '';
235
-		$event_list_css .=  ! empty( $event_list_css ) ? ' ' : '';
236
-		$event_list_css .=  ! empty( $this->_category_slug ) ? $this->_category_slug : '';
232
+	public function event_list_css($event_list_css = '') {
233
+		$event_list_css .= ! empty($event_list_css) ? ' ' : '';
234
+		$event_list_css .= ! empty($this->_css_class) ? $this->_css_class : '';
235
+		$event_list_css .= ! empty($event_list_css) ? ' ' : '';
236
+		$event_list_css .= ! empty($this->_category_slug) ? $this->_category_slug : '';
237 237
 		return $event_list_css;
238 238
 	}
239 239
 
Please login to merge, or discard this patch.
admin_pages/about/About_Admin_Page.core.php 2 patches
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if (!defined('EVENT_ESPRESSO_VERSION') )
2
+if ( ! defined('EVENT_ESPRESSO_VERSION'))
3 3
 	exit('NO direct script access allowed');
4 4
 
5 5
 /**
@@ -117,11 +117,11 @@  discard block
 block discarded – undo
117 117
 		//Copied from _whats_new()
118 118
 		$steps = EE_Maintenance_Mode::instance()->level() != EE_Maintenance_Mode::level_2_complete_maintenance ? $this->_get_started_steps() : FALSE;
119 119
 		$steps = $steps !== FALSE ? $steps : '';
120
-		$this->_admin_page_title = sprintf( __('Welcome to Event Espresso %s', 'event_espresso'), EVENT_ESPRESSO_VERSION );
120
+		$this->_admin_page_title = sprintf(__('Welcome to Event Espresso %s', 'event_espresso'), EVENT_ESPRESSO_VERSION);
121 121
 		$settings_message = $steps;
122
-		$this->_template_args['admin_page_subtitle'] = __('Thank you for choosing Event Espresso, the most powerful, and free, Event Management plugin for WordPress.', 'event_espresso' ) . $settings_message;
123
-		$template = EE_ABOUT_TEMPLATE_PATH . 'ee4-overview.template.php';
124
-		$this->_template_args['about_admin_page_content'] = EEH_Template::display_template( $template, $this->_template_args, TRUE );
122
+		$this->_template_args['admin_page_subtitle'] = __('Thank you for choosing Event Espresso, the most powerful, and free, Event Management plugin for WordPress.', 'event_espresso').$settings_message;
123
+		$template = EE_ABOUT_TEMPLATE_PATH.'ee4-overview.template.php';
124
+		$this->_template_args['about_admin_page_content'] = EEH_Template::display_template($template, $this->_template_args, TRUE);
125 125
 		$this->display_about_admin_page();
126 126
 	}
127 127
 
@@ -129,36 +129,36 @@  discard block
 block discarded – undo
129 129
 
130 130
 	protected function _get_started_steps() {
131 131
 		$steps = '<h3>'.__('Getting Started').'</h3>';
132
-		$step_one = '<p>'.sprintf( __('%sStep 1%s: Visit your %sOrganization Settings%s and add/update your details.', 'event_espresso'), '<strong>', '</strong>', '<a href="admin.php?page=espresso_general_settings">', '</a>') .'</strong></p>';
133
-		$step_two = '<p>'.sprintf( __('%sStep 2%s: Setup your %sPayment Methods%s.', 'event_espresso'), '<strong>', '</strong>', '<a href="admin.php?page=espresso_payment_settings">', '</a>') .'</strong></p>';
134
-		$step_three = '<p>'.sprintf( __('%sStep 3%s: Create your %sFirst Event%s.', 'event_espresso'), '<strong>', '</strong>', '<a href="admin.php?page=espresso_events&action=create_new">', '</a>') .'</strong></p>';
132
+		$step_one = '<p>'.sprintf(__('%sStep 1%s: Visit your %sOrganization Settings%s and add/update your details.', 'event_espresso'), '<strong>', '</strong>', '<a href="admin.php?page=espresso_general_settings">', '</a>').'</strong></p>';
133
+		$step_two = '<p>'.sprintf(__('%sStep 2%s: Setup your %sPayment Methods%s.', 'event_espresso'), '<strong>', '</strong>', '<a href="admin.php?page=espresso_payment_settings">', '</a>').'</strong></p>';
134
+		$step_three = '<p>'.sprintf(__('%sStep 3%s: Create your %sFirst Event%s.', 'event_espresso'), '<strong>', '</strong>', '<a href="admin.php?page=espresso_events&action=create_new">', '</a>').'</strong></p>';
135 135
 
136 136
 		//done?
137 137
 		$done_step_one = EE_Registry::instance()->CFG->organization->address_1 == '123 Onna Road' ? FALSE : TRUE;
138
-		$active_invoice_pm = EEM_Payment_Method::instance()->get_one_active( EEM_Payment_Method::scope_cart, array( array( 'PMD_type' => 'Invoice' ) ) );
139
-		$active_pms_count = EEM_Payment_Method::instance()->count_active( EEM_Payment_Method::scope_cart );
138
+		$active_invoice_pm = EEM_Payment_Method::instance()->get_one_active(EEM_Payment_Method::scope_cart, array(array('PMD_type' => 'Invoice')));
139
+		$active_pms_count = EEM_Payment_Method::instance()->count_active(EEM_Payment_Method::scope_cart);
140 140
 		//done step two if a non-invoice paymetn method is active; or there is more than one PM active, or
141 141
 		//if only teh invoice is active but it's clearly been updated
142
-		$done_step_two = $active_pms_count > 1  ||
143
-						 ( $active_pms_count === 1 && ! $active_invoice_pm )	||
144
-						 ( $active_invoice_pm instanceof EE_Payment_Method && (
145
-								 $active_invoice_pm->get_extra_meta( 'pdf_payee_name', TRUE, '' ) ||
146
-								 $active_invoice_pm->get_extra_meta( 'pdf_payee_email', TRUE, '' ) ||
147
-								 $active_invoice_pm->get_extra_meta( 'pdf_payee_tax_number', TRUE, '' ) ||
148
-								 $active_invoice_pm->get_extra_meta( 'pdf_payee_address', TRUE, '' ) ||
149
-								 $active_invoice_pm->get_extra_meta( 'page_extra_info', TRUE, '' )
142
+		$done_step_two = $active_pms_count > 1 ||
143
+						 ($active_pms_count === 1 && ! $active_invoice_pm) ||
144
+						 ($active_invoice_pm instanceof EE_Payment_Method && (
145
+								 $active_invoice_pm->get_extra_meta('pdf_payee_name', TRUE, '') ||
146
+								 $active_invoice_pm->get_extra_meta('pdf_payee_email', TRUE, '') ||
147
+								 $active_invoice_pm->get_extra_meta('pdf_payee_tax_number', TRUE, '') ||
148
+								 $active_invoice_pm->get_extra_meta('pdf_payee_address', TRUE, '') ||
149
+								 $active_invoice_pm->get_extra_meta('page_extra_info', TRUE, '')
150 150
 								)
151 151
 				);
152 152
 		$done_step_three = EE_Registry::instance()->load_model('Event')->count() > 0 ? TRUE : FALSE;
153 153
 
154 154
 		//if ALL steps are done, let's just return FALSE so we don't display anything
155
-		if ( $done_step_one && $done_step_two && $done_step_three )
155
+		if ($done_step_one && $done_step_two && $done_step_three)
156 156
 			return FALSE;
157 157
 
158 158
 		//now let's put it together
159
-		$steps .= sprintf( '%s' . $step_one . '%s', $done_step_one ? '<strike>' : '', $done_step_one ? '</strike>': '' );
160
-		$steps .= sprintf( '%s' . $step_two . '%s', $done_step_two ? '<strike>' : '', $done_step_two ? '</strike>': '' );
161
-		$steps .= sprintf( '%s' . $step_three . '%s', $done_step_three ? '<strike>' : '', $done_step_three ? '</strike>': '' );
159
+		$steps .= sprintf('%s'.$step_one.'%s', $done_step_one ? '<strike>' : '', $done_step_one ? '</strike>' : '');
160
+		$steps .= sprintf('%s'.$step_two.'%s', $done_step_two ? '<strike>' : '', $done_step_two ? '</strike>' : '');
161
+		$steps .= sprintf('%s'.$step_three.'%s', $done_step_three ? '<strike>' : '', $done_step_three ? '</strike>' : '');
162 162
 
163 163
 		return $steps;
164 164
 	}
@@ -166,10 +166,10 @@  discard block
 block discarded – undo
166 166
 
167 167
 
168 168
 	protected function _credits() {
169
-		$this->_template_args['admin_page_title'] = sprintf( __('Welcome to Event Espresso %s', 'event_espresso'), EVENT_ESPRESSO_VERSION );
169
+		$this->_template_args['admin_page_title'] = sprintf(__('Welcome to Event Espresso %s', 'event_espresso'), EVENT_ESPRESSO_VERSION);
170 170
 		$this->_template_args['admin_page_subtitle'] = __('Thank you for choosing Event Espresso Decaf, the most powerful, and free, Event Management plugin for WordPress.', 'event_espresso');
171
-		$template = EE_ABOUT_TEMPLATE_PATH . 'credits.template.php';
172
-		$this->_template_args['about_admin_page_content'] = EEH_Template::display_template( $template, $this->_template_args, TRUE );
171
+		$template = EE_ABOUT_TEMPLATE_PATH.'credits.template.php';
172
+		$this->_template_args['about_admin_page_content'] = EEH_Template::display_template($template, $this->_template_args, TRUE);
173 173
 		$this->display_about_admin_page();
174 174
 	}
175 175
 
Please login to merge, or discard this patch.
Braces   +5 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if (!defined('EVENT_ESPRESSO_VERSION') )
2
+if (!defined('EVENT_ESPRESSO_VERSION') ) {
3 3
 	exit('NO direct script access allowed');
4
+}
4 5
 
5 6
 /**
6 7
  *
@@ -152,8 +153,9 @@  discard block
 block discarded – undo
152 153
 		$done_step_three = EE_Registry::instance()->load_model('Event')->count() > 0 ? TRUE : FALSE;
153 154
 
154 155
 		//if ALL steps are done, let's just return FALSE so we don't display anything
155
-		if ( $done_step_one && $done_step_two && $done_step_three )
156
-			return FALSE;
156
+		if ( $done_step_one && $done_step_two && $done_step_three ) {
157
+					return FALSE;
158
+		}
157 159
 
158 160
 		//now let's put it together
159 161
 		$steps .= sprintf( '%s' . $step_one . '%s', $done_step_one ? '<strike>' : '', $done_step_one ? '</strike>': '' );
Please login to merge, or discard this patch.
admin_pages/about/About_Admin_Page_Init.core.php 2 patches
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -30,12 +30,12 @@  discard block
 block discarded – undo
30 30
 
31 31
 	public function __construct() {
32 32
 		//define some events related constants
33
-		define( 'EE_ABOUT_PG_SLUG', 'espresso_about' );
34
-		define( 'EE_ABOUT_LABEL', __('About', 'event_espresso'));
35
-		define( 'EE_ABOUT_ADMIN', EE_ADMIN_PAGES . 'about' . DS );
36
-		define( 'EE_ABOUT_ADMIN_URL', admin_url( 'admin.php?page=' . EE_ABOUT_PG_SLUG ));
37
-		define( 'EE_ABOUT_TEMPLATE_PATH', EE_ABOUT_ADMIN . 'templates' . DS );
38
-		define( 'EE_ABOUT_ASSETS_URL', EE_ADMIN_PAGES_URL . 'about/assets/' );
33
+		define('EE_ABOUT_PG_SLUG', 'espresso_about');
34
+		define('EE_ABOUT_LABEL', __('About', 'event_espresso'));
35
+		define('EE_ABOUT_ADMIN', EE_ADMIN_PAGES.'about'.DS);
36
+		define('EE_ABOUT_ADMIN_URL', admin_url('admin.php?page='.EE_ABOUT_PG_SLUG));
37
+		define('EE_ABOUT_TEMPLATE_PATH', EE_ABOUT_ADMIN.'templates'.DS);
38
+		define('EE_ABOUT_ASSETS_URL', EE_ADMIN_PAGES_URL.'about/assets/');
39 39
 		parent::__construct();
40 40
 	}
41 41
 
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 	}
45 45
 
46 46
 	protected function _set_menu_map() {
47
-		$this->_menu_map = new EE_Admin_Page_Sub_Menu( array(
47
+		$this->_menu_map = new EE_Admin_Page_Sub_Menu(array(
48 48
 			'menu_group' => 'extras',
49 49
 			'menu_order' => 40,
50 50
 			'show_on_menu' => EE_Admin_Page_Menu_Map::BLOG_AND_NETWORK_ADMIN,
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,6 @@
 block discarded – undo
1
-<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3
+}
2 4
 /**
3 5
  * Event Espresso
4 6
  *
Please login to merge, or discard this patch.
admin_pages/about/templates/credits.template.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
 <ul class="wp-people-group" id="ee-people-group-owners">
4 4
 	<li class="wp-person" id="ee-person-sshoultes">
5 5
 		<a href="<?php esp_gravatar_profile('[email protected]'); ?>">
6
-			<?php echo esp_gravatar_image( '[email protected]', 'Seth Shoultes' ); ?>
6
+			<?php echo esp_gravatar_image('[email protected]', 'Seth Shoultes'); ?>
7 7
 		</a>
8 8
 		<a class="web" href="<?php esp_gravatar_profile('[email protected]'); ?>">
9 9
 			Seth Shoultes
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
 	</li>
13 13
 	<li class="wp-person" id="ee-person-gkoyle">
14 14
 		<a href="<?php esp_gravatar_profile('[email protected]'); ?>">
15
-			<?php echo esp_gravatar_image( '[email protected]', 'Garth Koyle' ); ?>
15
+			<?php echo esp_gravatar_image('[email protected]', 'Garth Koyle'); ?>
16 16
 		</a>
17 17
 		<a class="web" href="<?php esp_gravatar_profile('[email protected]'); ?>">
18 18
 			Garth Koyle
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 <ul class="wp-people-group" id="ee-people-group-core-developers">
25 25
 	<li class="wp-person" id="ee-person-bchristensen">
26 26
 		<a href="<?php esp_gravatar_profile('[email protected]'); ?>">
27
-			<?php echo esp_gravatar_image( '[email protected]', 'Brent Christensen' ); ?>
27
+			<?php echo esp_gravatar_image('[email protected]', 'Brent Christensen'); ?>
28 28
 		</a>
29 29
 		<a class="web" href="<?php esp_gravatar_profile('[email protected]'); ?>">
30 30
 			Brent Christensen
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 	</li>
34 34
 	<li class="wp-person" id="ee-person-dethier">
35 35
 		<a href="<?php esp_gravatar_profile('[email protected]'); ?>">
36
-			<?php echo esp_gravatar_image( '[email protected]', 'Darren Ethier' ); ?>
36
+			<?php echo esp_gravatar_image('[email protected]', 'Darren Ethier'); ?>
37 37
 		</a>
38 38
 		<a class="web" href="<?php esp_gravatar_profile('[email protected]'); ?>">
39 39
 			Darren Ethier
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 	</li>
43 43
 	<li class="wp-person" id="ee-person-mnelson">
44 44
 		<a href="<?php esp_gravatar_profile('[email protected]'); ?>">
45
-			<?php echo esp_gravatar_image( '[email protected]', 'Michael Nelson' ); ?>
45
+			<?php echo esp_gravatar_image('[email protected]', 'Michael Nelson'); ?>
46 46
 		</a>
47 47
 		<a class="web" href="<?php esp_gravatar_profile('[email protected]'); ?>">
48 48
 			Michael Nelson
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
 	</li>
52 52
 	<li class="wp-person" id="ee-person-nkolivoshka">
53 53
 		<a href="<?php esp_gravatar_profile('[email protected]'); ?>">
54
-			<?php echo esp_gravatar_image( '[email protected]', 'Nazar Kolivoshka' ); ?>
54
+			<?php echo esp_gravatar_image('[email protected]', 'Nazar Kolivoshka'); ?>
55 55
 		</a>
56 56
 		<a class="web" href="<?php esp_gravatar_profile('[email protected]'); ?>">
57 57
 			Nazar Kolivoshka
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
 <ul class="wp-people-group" id="ee-people-group-support-staff">
64 64
 	<li class="wp-person" id="ee-person-jfeck">
65 65
 		<a href="<?php esp_gravatar_profile('[email protected]'); ?>">
66
-			<?php echo esp_gravatar_image( '[email protected]', 'Josh Feck' ); ?>
66
+			<?php echo esp_gravatar_image('[email protected]', 'Josh Feck'); ?>
67 67
 		</a>
68 68
 		<a class="web" href="<?php esp_gravatar_profile('[email protected]'); ?>">
69 69
 			Josh Feck
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
 	</li>
72 72
 	<li class="wp-person" id="ee-person-drobinson">
73 73
 		<a href="<?php esp_gravatar_profile('[email protected]'); ?>">
74
-			<?php echo esp_gravatar_image( '[email protected]', 'Dean Robinson' ); ?>
74
+			<?php echo esp_gravatar_image('[email protected]', 'Dean Robinson'); ?>
75 75
 		</a>
76 76
 		<a class="web" href="<?php esp_gravatar_profile('[email protected]'); ?>">
77 77
 			Dean Robinson
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
 	</li>
80 80
 	<li class="wp-person" id="ee-person-jwilson">
81 81
 		<a href="<?php esp_gravatar_profile('[email protected]'); ?>">
82
-			<?php echo esp_gravatar_image( '[email protected]', 'Jonathan Wilson' ); ?>
82
+			<?php echo esp_gravatar_image('[email protected]', 'Jonathan Wilson'); ?>
83 83
 		</a>
84 84
 		<a class="web" href="<?php esp_gravatar_profile('[email protected]'); ?>">
85 85
 			Jonathan Wilson
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
 	</li>
88 88
 	<li class="wp-person" id="ee-person-twarwick">
89 89
 		<a href="<?php esp_gravatar_profile('[email protected]'); ?>">
90
-			<?php echo esp_gravatar_image( '[email protected]', 'Tony Warwick' ); ?>
90
+			<?php echo esp_gravatar_image('[email protected]', 'Tony Warwick'); ?>
91 91
 		</a>
92 92
 		<a class="web" href="<?php esp_gravatar_profile('[email protected]'); ?>">
93 93
 			Tony Warwick
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
 	</li>
96 96
 	<li class="wp-person" id="ee-person-lcaum">
97 97
 		<a href="<?php esp_gravatar_profile('[email protected]'); ?>">
98
-			<?php echo esp_gravatar_image( '[email protected]', 'Lorenzo Caum' ); ?>
98
+			<?php echo esp_gravatar_image('[email protected]', 'Lorenzo Caum'); ?>
99 99
 		</a>
100 100
 		<a class="web" href="<?php esp_gravatar_profile('[email protected]'); ?>">
101 101
 			Lorenzo Caum
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
 </ul>
106 106
 <h4 class="wp-people-group"><?php _e('Contributor Recognition', 'event_espresso'); ?></h4>
107 107
 <p class="description">
108
-	<?php printf( __('For every major release we want to recognize the people who contributed to the release via a GitHub pull request. Want to see your name listed here? %sWhen you submit a pull request that gets included in a major release%s, we\'ll add your name here linked to your GitHub profile.', 'event_espresso'), '<a href="https://github.com/eventespresso/event-espresso-core" title="Contribute to Event Espresso by making a pull request via GitHub">', '</a>' ); ?>
108
+	<?php printf(__('For every major release we want to recognize the people who contributed to the release via a GitHub pull request. Want to see your name listed here? %sWhen you submit a pull request that gets included in a major release%s, we\'ll add your name here linked to your GitHub profile.', 'event_espresso'), '<a href="https://github.com/eventespresso/event-espresso-core" title="Contribute to Event Espresso by making a pull request via GitHub">', '</a>'); ?>
109 109
 </p>
110 110
 <p class="wp-credits-list">
111 111
 	<ul>
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
 </p>
120 120
 <h4 class="wp-people-group"><?php _e('External Libraries', 'event_espresso'); ?></h4>
121 121
 <p class="description">
122
-	<?php printf( __('Along with the libraries %sincluded with WordPress%s, Event Espresso utilizes the following third party libraries:', 'event_espresso'), '<a href="credits.php">', '</a>' ); ?>
122
+	<?php printf(__('Along with the libraries %sincluded with WordPress%s, Event Espresso utilizes the following third party libraries:', 'event_espresso'), '<a href="credits.php">', '</a>'); ?>
123 123
 </p>
124 124
 <p class="wp-credits-list">
125 125
 	<a href="http://josscrowcroft.github.io/accounting.js/"><?php _e('accounting.js', 'event_espresso'); ?></a>,
@@ -135,10 +135,10 @@  discard block
 block discarded – undo
135 135
 
136 136
 <?php
137 137
 	function esp_gravatar_profile($email) {
138
-		echo 'http://www.gravatar.com/' . md5($email);
138
+		echo 'http://www.gravatar.com/'.md5($email);
139 139
 	}
140 140
 
141 141
 	function esp_gravatar_image($email, $name) {
142
-		echo '<img src="http://0.gravatar.com/avatar/' . md5($email) . '?s=60" class="gravatar" alt="' . $name . '"/>';
142
+		echo '<img src="http://0.gravatar.com/avatar/'.md5($email).'?s=60" class="gravatar" alt="'.$name.'"/>';
143 143
 	}
144 144
 ?>
Please login to merge, or discard this patch.
admin_pages/about/templates/ee4-overview.template.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@  discard block
 block discarded – undo
1 1
 <div class="changelog">
2 2
 	<?php
3 3
 	//maintenance mode on?
4
-	if ( EE_Maintenance_Mode::instance()->level() == EE_Maintenance_Mode::level_2_complete_maintenance ) {
4
+	if (EE_Maintenance_Mode::instance()->level() == EE_Maintenance_Mode::level_2_complete_maintenance) {
5 5
 		?>
6 6
 		<div class="ee-attention">
7
-			<h2 class="ee-maintenance-mode-callout"><?php  _e('Event Espresso is in full maintenance mode.' , 'event_espresso'); ?></h2>
7
+			<h2 class="ee-maintenance-mode-callout"><?php  _e('Event Espresso is in full maintenance mode.', 'event_espresso'); ?></h2>
8 8
 			<p>
9 9
 				<?php
10 10
 				printf(
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
 			<h3><?php _e('Turn your blog into a complete event registration and management system', 'event_espresso'); ?></h3>
83 83
 			<p><?php _e('Create a beautiful event page with ticket selection, venue details, and an integrated single page checkout system. With WordPress, Event Espresso, and Espresso Arabica 2014 (based on the "Twenty Fourteen" theme by WordPress), your events will certainly sell out faster than ever!', 'event_espresso'); ?></p>
84 84
 			<p><?php _e('With a striking design that does not compromise the simplicity of WordPress and Event Espresso 4, Espresso Arabica 2014 will be the best event theme on the market.', 'event_espresso'); ?></p>
85
-			<p><?php echo sprintf( __('%sLearn more >>%s', 'event_espresso'), '<a href="http://eventespresso.com/wiki/setup-event-espresso-arabica-theme/">', '</a>' ); ?></p>
85
+			<p><?php echo sprintf(__('%sLearn more >>%s', 'event_espresso'), '<a href="http://eventespresso.com/wiki/setup-event-espresso-arabica-theme/">', '</a>'); ?></p>
86 86
 		</div>
87 87
 	</div>
88 88
 	<img src="<?php echo EE_GLOBAL_ASSETS_URL; ?>images/screenshots/single-event-page.jpg">
Please login to merge, or discard this patch.
admin_pages/about/templates/whats_new.template.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -1,25 +1,25 @@
 block discarded – undo
1 1
 <div class="changelog point-releases">
2
-	<h3><?php echo _n( 'Minor Release Information', 'Minor Releases', 1 ); ?></h3>
3
-	<!-- <h3><?php echo _n( 'Major Release Information', 'Major Releases', 1 ); ?></h3>-->
2
+	<h3><?php echo _n('Minor Release Information', 'Minor Releases', 1); ?></h3>
3
+	<!-- <h3><?php echo _n('Major Release Information', 'Major Releases', 1); ?></h3>-->
4 4
 	<?php $type = 'minor'; ?>
5 5
 	<?php //$type = 'major'; ?>
6
-	<p><?php printf( __( '<strong>Version %1$s</strong> is a %2$s bug fix/enhancement release.', 'event_espresso'), EVENT_ESPRESSO_VERSION, $type ); ?>
6
+	<p><?php printf(__('<strong>Version %1$s</strong> is a %2$s bug fix/enhancement release.', 'event_espresso'), EVENT_ESPRESSO_VERSION, $type); ?>
7 7
 		<?php
8
-			$ver = explode( '.', EVENT_ESPRESSO_VERSION );
9
-			array_pop( $ver );
10
-			$ver = implode( '.', $ver );
8
+			$ver = explode('.', EVENT_ESPRESSO_VERSION);
9
+			array_pop($ver);
10
+			$ver = implode('.', $ver);
11 11
 		?>
12
-		<?php printf( __( 'For more information, see <a href="%s">the release notes</a>.' ), 'http://eventespresso.com/wiki/ee4-changelog/#' . $ver ); ?>
12
+		<?php printf(__('For more information, see <a href="%s">the release notes</a>.'), 'http://eventespresso.com/wiki/ee4-changelog/#'.$ver); ?>
13 13
  	</p>
14 14
 </div>
15 15
 
16 16
 <div class="changelog">
17 17
 	<?php
18 18
 	//maintenance mode on?
19
-	if ( EE_Maintenance_Mode::instance()->level() == EE_Maintenance_Mode::level_2_complete_maintenance ) {
19
+	if (EE_Maintenance_Mode::instance()->level() == EE_Maintenance_Mode::level_2_complete_maintenance) {
20 20
 		?>
21 21
 		<div class="ee-attention">
22
-			<h2 class="ee-maintenance-mode-callout"><?php  _e('Event Espresso is in full maintenance mode.' , 'event_espresso'); ?></h2>
22
+			<h2 class="ee-maintenance-mode-callout"><?php  _e('Event Espresso is in full maintenance mode.', 'event_espresso'); ?></h2>
23 23
 			<p>
24 24
 			<?php
25 25
 				printf(
Please login to merge, or discard this patch.
admin_pages/events/Events_Admin_List_Table.class.php 3 patches
Braces   +8 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,6 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if (!defined('EVENT_ESPRESSO_VERSION') )
2
+if (!defined('EVENT_ESPRESSO_VERSION') ) {
3 3
 	exit('NO direct script access allowed');
4
+}
4 5
 
5 6
 /**
6 7
  * Event Espresso
@@ -150,8 +151,9 @@  discard block
 block discarded – undo
150 151
 	 */
151 152
 	protected function _column_name_action_setup( EE_Event $item ) {
152 153
 		//todo: remove when attendees is active
153
-		if ( !defined('REG_ADMIN_URL') )
154
-			define('REG_ADMIN_URL', EVENTS_ADMIN_URL);
154
+		if ( !defined('REG_ADMIN_URL') ) {
155
+					define('REG_ADMIN_URL', EVENTS_ADMIN_URL);
156
+		}
155 157
 
156 158
 		$actions = array();
157 159
 
@@ -293,8 +295,9 @@  discard block
 block discarded – undo
293 295
 
294 296
 	public function column_actions($item) {
295 297
 		//todo: remove when attendees is active
296
-		if ( !defined('REG_ADMIN_URL') )
297
-			define('REG_ADMIN_URL', EVENTS_ADMIN_URL);
298
+		if ( !defined('REG_ADMIN_URL') ) {
299
+					define('REG_ADMIN_URL', EVENTS_ADMIN_URL);
300
+		}
298 301
 		$actionlinks = array();
299 302
 
300 303
 		$view_link = get_permalink($item->ID());
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -503,7 +503,7 @@
 block discarded – undo
503 503
 	/**
504 504
 	 * @param $message_types
505 505
 	 * @param array $extra
506
-	 * @return mixed|string
506
+	 * @return string
507 507
 	 */
508 508
 	protected function _get_admin_content_events_edit( $message_types, $extra ) {
509 509
 		//defaults
Please login to merge, or discard this patch.
Spacing   +79 added lines, -79 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if (!defined('EVENT_ESPRESSO_VERSION') )
2
+if ( ! defined('EVENT_ESPRESSO_VERSION'))
3 3
 	exit('NO direct script access allowed');
4 4
 
5 5
 /**
@@ -43,9 +43,9 @@  discard block
 block discarded – undo
43 43
 	 *
44 44
 	 * @param EE_Admin_Page $admin_page
45 45
 	 */
46
-	public function __construct( $admin_page ) {
46
+	public function __construct($admin_page) {
47 47
 		parent::__construct($admin_page);
48
-		require_once( EE_HELPERS . 'EEH_DTT_Helper.helper.php' );
48
+		require_once(EE_HELPERS.'EEH_DTT_Helper.helper.php');
49 49
 	}
50 50
 
51 51
 
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 	 */
55 55
 	protected function _setup_data() {
56 56
 		$this->_data = $this->_admin_page->get_events($this->_per_page, $this->_current_page);
57
- 		$this->_all_data_count = $this->_admin_page->get_events(0,0, TRUE);
57
+ 		$this->_all_data_count = $this->_admin_page->get_events(0, 0, TRUE);
58 58
 	}
59 59
 
60 60
 
@@ -85,17 +85,17 @@  discard block
 block discarded – undo
85 85
 
86 86
 
87 87
 		$this->_sortable_columns = array(
88
-			'id' => array( 'EVT_ID' => true ),
89
-			'name' => array( 'EVT_name' => false ),
90
-			'author' => array( 'EVT_wp_user' => false ),
91
-			'venue' => array( 'Venue.VNU_name' => false ),
88
+			'id' => array('EVT_ID' => true),
89
+			'name' => array('EVT_name' => false),
90
+			'author' => array('EVT_wp_user' => false),
91
+			'venue' => array('Venue.VNU_name' => false),
92 92
 			'start_date_time' => array('Datetime.DTT_EVT_start' => false),
93 93
 			'reg_begins' => array('Datetime.Ticket.TKT_start_date' => false),
94 94
 			);
95 95
 
96 96
 		$this->_primary_column = 'id';
97 97
 
98
-		$this->_hidden_columns = array( 'author' );
98
+		$this->_hidden_columns = array('author');
99 99
 	}
100 100
 
101 101
 
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
 	protected function _add_view_counts() {
114 114
 		$this->_views['all']['count'] = $this->_admin_page->total_events();
115 115
 		$this->_views['draft']['count'] = $this->_admin_page->total_events_draft();
116
-		if ( EE_Registry::instance()->CAP->current_user_can( 'ee_delete_events', 'espresso_events_trash_events' ) ) {
116
+		if (EE_Registry::instance()->CAP->current_user_can('ee_delete_events', 'espresso_events_trash_events')) {
117 117
 			$this->_views['trash']['count'] = $this->_admin_page->total_trashed_events();
118 118
 		}
119 119
 	}
@@ -124,11 +124,11 @@  discard block
 block discarded – undo
124 124
 	 *
125 125
 	 * @return string
126 126
 	 */
127
-	protected function _get_row_class( $item ) {
128
-		$class = parent::_get_row_class( $item );
127
+	protected function _get_row_class($item) {
128
+		$class = parent::_get_row_class($item);
129 129
 		//add status class
130
-		$class .= $item instanceof EE_Event ? ' ee-status-strip event-status-' . $item->get_active_status() : '';
131
-		if ( $this->_has_checkbox_column ) {
130
+		$class .= $item instanceof EE_Event ? ' ee-status-strip event-status-'.$item->get_active_status() : '';
131
+		if ($this->_has_checkbox_column) {
132 132
 			$class .= ' has-checkbox-column';
133 133
 		}
134 134
 		return $class;
@@ -140,8 +140,8 @@  discard block
 block discarded – undo
140 140
 	 *
141 141
 	 * @return string
142 142
 	 */
143
-	public function column_status( EE_Event $item ) {
144
-		return '<span class="ee-status-strip ee-status-strip-td event-status-' . $item->get_active_status() . '"></span>';
143
+	public function column_status(EE_Event $item) {
144
+		return '<span class="ee-status-strip ee-status-strip-td event-status-'.$item->get_active_status().'"></span>';
145 145
 	}/**/
146 146
 
147 147
 
@@ -150,14 +150,14 @@  discard block
 block discarded – undo
150 150
 	 *
151 151
 	 * @return string
152 152
 	 */
153
-	public function column_cb( $item ) {
154
-		if ( ! $item instanceof EE_Event ) {
153
+	public function column_cb($item) {
154
+		if ( ! $item instanceof EE_Event) {
155 155
 			return '';
156 156
 		}
157 157
 		$this->_dtt = $item->primary_datetime(); //set this for use in other columns
158 158
 
159 159
 		//does event have any attached registrations?
160
-		$regs = $item->count_related( 'Registration' );
160
+		$regs = $item->count_related('Registration');
161 161
 		return $regs > 0 && $this->_view == 'trash' ? '<span class="ee-lock-icon"></span>' : sprintf(
162 162
 			'<input type="checkbox" name="EVT_IDs[]" value="%s" />', $item->ID()
163 163
 		);
@@ -169,9 +169,9 @@  discard block
 block discarded – undo
169 169
 	 *
170 170
 	 * @return mixed|string
171 171
 	 */
172
-	public function column_id( EE_Event $item ) {
172
+	public function column_id(EE_Event $item) {
173 173
 		$content = $item->ID();
174
-		$content .= '  <span class="show-on-mobile-view-only">' . $item->name() . '</span>';
174
+		$content .= '  <span class="show-on-mobile-view-only">'.$item->name().'</span>';
175 175
 		return $content;
176 176
 	}
177 177
 
@@ -181,16 +181,16 @@  discard block
 block discarded – undo
181 181
 	 *
182 182
 	 * @return string
183 183
 	 */
184
-	public function column_name( EE_Event $item ) {
184
+	public function column_name(EE_Event $item) {
185 185
 		$edit_query_args = array(
186 186
 				'action' => 'edit',
187 187
 				'post' => $item->ID()
188 188
 			);
189
-		$edit_link = EE_Admin_Page::add_query_args_and_nonce( $edit_query_args, EVENTS_ADMIN_URL );
190
-		$actions = $this->_column_name_action_setup( $item );
189
+		$edit_link = EE_Admin_Page::add_query_args_and_nonce($edit_query_args, EVENTS_ADMIN_URL);
190
+		$actions = $this->_column_name_action_setup($item);
191 191
 		$status = ''; //$item->status() !== 'publish' ? ' (' . $item->status() . ')' : '';
192
-		$content = '<strong><a class="row-title" href="' . $edit_link . '">' . $item->name() . '</a></strong>' . $status;
193
-		$content .= '<br><span class="ee-status-text-small">' . EEH_Template::pretty_status( $item->get_active_status(), false, 'sentence' ) . '</span>';
192
+		$content = '<strong><a class="row-title" href="'.$edit_link.'">'.$item->name().'</a></strong>'.$status;
193
+		$content .= '<br><span class="ee-status-text-small">'.EEH_Template::pretty_status($item->get_active_status(), false, 'sentence').'</span>';
194 194
 		$content .= $this->row_actions($actions);
195 195
 		return $content;
196 196
 
@@ -207,72 +207,72 @@  discard block
 block discarded – undo
207 207
 	 *
208 208
 	 * @return array array of actions
209 209
 	 */
210
-	protected function _column_name_action_setup( EE_Event $item ) {
210
+	protected function _column_name_action_setup(EE_Event $item) {
211 211
 		//todo: remove when attendees is active
212
-		if ( !defined('REG_ADMIN_URL') )
212
+		if ( ! defined('REG_ADMIN_URL'))
213 213
 			define('REG_ADMIN_URL', EVENTS_ADMIN_URL);
214 214
 
215 215
 		$actions = array();
216 216
 
217
-		if ( EE_Registry::instance()->CAP->current_user_can('ee_edit_event', 'espresso_events_edit', $item->ID() ) ) {
217
+		if (EE_Registry::instance()->CAP->current_user_can('ee_edit_event', 'espresso_events_edit', $item->ID())) {
218 218
 			$edit_query_args = array(
219 219
 					'action' => 'edit',
220 220
 					'post' => $item->ID()
221 221
 				);
222
-			$edit_link = EE_Admin_Page::add_query_args_and_nonce( $edit_query_args, EVENTS_ADMIN_URL );
223
-			$actions['edit'] = '<a href="' . $edit_link . '" title="' . esc_attr__('Edit Event', 'event_espresso') . '">' . __('Edit', 'event_espresso') . '</a>';
222
+			$edit_link = EE_Admin_Page::add_query_args_and_nonce($edit_query_args, EVENTS_ADMIN_URL);
223
+			$actions['edit'] = '<a href="'.$edit_link.'" title="'.esc_attr__('Edit Event', 'event_espresso').'">'.__('Edit', 'event_espresso').'</a>';
224 224
 
225 225
 		}
226 226
 
227
-		if ( EE_Registry::instance()->CAP->current_user_can( 'ee_read_registration', 'espresso_registrations_view_registration', $item->ID() ) ) {
227
+		if (EE_Registry::instance()->CAP->current_user_can('ee_read_registration', 'espresso_registrations_view_registration', $item->ID())) {
228 228
 			$attendees_query_args = array(
229 229
 					'action' => 'default',
230 230
 					'event_id' => $item->ID()
231 231
 				);
232
-			$attendees_link = EE_Admin_Page::add_query_args_and_nonce( $attendees_query_args, REG_ADMIN_URL );
233
-			$actions['attendees'] = '<a href="' . $attendees_link . '" title="' . esc_attr__('View Registrations', 'event_espresso') . '">' . __('Registrations', 'event_espresso') . '</a>';
232
+			$attendees_link = EE_Admin_Page::add_query_args_and_nonce($attendees_query_args, REG_ADMIN_URL);
233
+			$actions['attendees'] = '<a href="'.$attendees_link.'" title="'.esc_attr__('View Registrations', 'event_espresso').'">'.__('Registrations', 'event_espresso').'</a>';
234 234
 		}
235 235
 
236
-		if ( EE_Registry::instance()->CAP->current_user_can( 'ee_delete_event', 'espresso_events_trash_event', $item->ID() ) ) {
236
+		if (EE_Registry::instance()->CAP->current_user_can('ee_delete_event', 'espresso_events_trash_event', $item->ID())) {
237 237
 			$trash_event_query_args = array(
238 238
 					'action' => 'trash_event',
239 239
 					'EVT_ID' => $item->ID()
240 240
 				);
241
-			$trash_event_link = EE_Admin_Page::add_query_args_and_nonce( $trash_event_query_args, EVENTS_ADMIN_URL );
241
+			$trash_event_link = EE_Admin_Page::add_query_args_and_nonce($trash_event_query_args, EVENTS_ADMIN_URL);
242 242
 		}
243 243
 
244
-		if ( EE_Registry::instance()->CAP->current_user_can( 'ee_delete_event', 'espresso_events_restore_event', $item->ID() ) ) {
244
+		if (EE_Registry::instance()->CAP->current_user_can('ee_delete_event', 'espresso_events_restore_event', $item->ID())) {
245 245
 			$restore_event_query_args = array(
246 246
 					'action' => 'restore_event',
247 247
 					'EVT_ID' => $item->ID()
248 248
 				);
249
-			$restore_event_link = EE_Admin_Page::add_query_args_and_nonce( $restore_event_query_args, EVENTS_ADMIN_URL );
249
+			$restore_event_link = EE_Admin_Page::add_query_args_and_nonce($restore_event_query_args, EVENTS_ADMIN_URL);
250 250
 		}
251 251
 
252
-		if ( EE_Registry::instance()->CAP->current_user_can( 'ee_delete_event', 'espresso_events_delete_event', $item->ID() ) ) {
252
+		if (EE_Registry::instance()->CAP->current_user_can('ee_delete_event', 'espresso_events_delete_event', $item->ID())) {
253 253
 			$delete_event_query_args = array(
254 254
 					'action' => 'delete_event',
255 255
 					'EVT_ID' => $item->ID()
256 256
 				);
257
-			$delete_event_link = EE_Admin_Page::add_query_args_and_nonce( $delete_event_query_args, EVENTS_ADMIN_URL );
257
+			$delete_event_link = EE_Admin_Page::add_query_args_and_nonce($delete_event_query_args, EVENTS_ADMIN_URL);
258 258
 		}
259 259
 
260 260
 		$view_link = get_permalink($item->ID());
261 261
 
262
-		$actions['view'] = '<a href="' . $view_link . '" title="' . esc_attr__('View Event', 'event_espresso') . '">' . __('View', 'event_espresso') . '</a>';
262
+		$actions['view'] = '<a href="'.$view_link.'" title="'.esc_attr__('View Event', 'event_espresso').'">'.__('View', 'event_espresso').'</a>';
263 263
 
264
-		switch ( $item->get( 'status' ) ) {
264
+		switch ($item->get('status')) {
265 265
 			case 'trash' :
266
-					if ( EE_Registry::instance()->CAP->current_user_can( 'ee_delete_event', 'espresso_events_restore_event', $item->ID() ) ) {
267
-						$actions['restore_from_trash'] = '<a href="' . $restore_event_link . '" title="' . esc_attr__('Restore from Trash', 'event_espresso') . '">' . __('Restore from Trash', 'event_espresso') . '</a>';
266
+					if (EE_Registry::instance()->CAP->current_user_can('ee_delete_event', 'espresso_events_restore_event', $item->ID())) {
267
+						$actions['restore_from_trash'] = '<a href="'.$restore_event_link.'" title="'.esc_attr__('Restore from Trash', 'event_espresso').'">'.__('Restore from Trash', 'event_espresso').'</a>';
268 268
 					}
269
-					if ( $item->count_related('Registration') === 0 && EE_Registry::instance()->CAP->current_user_can( 'ee_delete_event', 'espresso_events_delete_event', $item->ID() ) ) {
270
-						$actions['delete'] = '<a href="' . $delete_event_link . '" title="' . esc_attr__('Delete Permanently', 'event_espresso') . '">' . __('Delete Permanently', 'event_espresso') . '</a>';
269
+					if ($item->count_related('Registration') === 0 && EE_Registry::instance()->CAP->current_user_can('ee_delete_event', 'espresso_events_delete_event', $item->ID())) {
270
+						$actions['delete'] = '<a href="'.$delete_event_link.'" title="'.esc_attr__('Delete Permanently', 'event_espresso').'">'.__('Delete Permanently', 'event_espresso').'</a>';
271 271
 					}
272 272
 				break;
273 273
 			default :
274
-					if ( EE_Registry::instance()->CAP->current_user_can( 'ee_delete_event', 'espresso_events_trash_event', $item->ID() ) ) {
275
-						$actions['move to trash'] = '<a href="' . $trash_event_link . '" title="' . esc_attr__('Trash Event', 'event_espresso') . '">' . __('Trash', 'event_espresso') . '</a>';
274
+					if (EE_Registry::instance()->CAP->current_user_can('ee_delete_event', 'espresso_events_trash_event', $item->ID())) {
275
+						$actions['move to trash'] = '<a href="'.$trash_event_link.'" title="'.esc_attr__('Trash Event', 'event_espresso').'">'.__('Trash', 'event_espresso').'</a>';
276 276
 					}
277 277
 		}
278 278
 		return $actions;
@@ -284,17 +284,17 @@  discard block
 block discarded – undo
284 284
 	 *
285 285
 	 * @return string
286 286
 	 */
287
-	public function column_author( EE_Event $item ) {
287
+	public function column_author(EE_Event $item) {
288 288
 		//user author info
289
-		$event_author = get_userdata( $item->wp_user() );
290
-		$gravatar = get_avatar( $item->wp_user(), '15' );
289
+		$event_author = get_userdata($item->wp_user());
290
+		$gravatar = get_avatar($item->wp_user(), '15');
291 291
 		//filter link
292 292
 		$query_args = array(
293 293
 			'action' => 'default',
294 294
 			'EVT_wp_user' => $item->wp_user()
295 295
 			);
296
-		$filter_url = EE_Admin_Page::add_query_args_and_nonce( $query_args, EVENTS_ADMIN_URL );
297
-		return $gravatar . '  <a href="' . $filter_url . '" title="' . esc_attr__('Click to filter events by this author.', 'event_espresso') . '">' . $event_author->display_name . '</a>';
296
+		$filter_url = EE_Admin_Page::add_query_args_and_nonce($query_args, EVENTS_ADMIN_URL);
297
+		return $gravatar.'  <a href="'.$filter_url.'" title="'.esc_attr__('Click to filter events by this author.', 'event_espresso').'">'.$event_author->display_name.'</a>';
298 298
 	}
299 299
 
300 300
 
@@ -303,9 +303,9 @@  discard block
 block discarded – undo
303 303
 	 *
304 304
 	 * @return string
305 305
 	 */
306
-	public function column_venue( EE_Event $item ) {
307
-		$venue = $item->get_first_related( 'Venue' );
308
-		return !empty( $venue ) ? $venue->name() : '';
306
+	public function column_venue(EE_Event $item) {
307
+		$venue = $item->get_first_related('Venue');
308
+		return ! empty($venue) ? $venue->name() : '';
309 309
 	}
310 310
 
311 311
 
@@ -314,10 +314,10 @@  discard block
 block discarded – undo
314 314
 	 *
315 315
 	 * @throws EE_Error
316 316
 	 */
317
-	public function column_start_date_time( EE_Event $item ) {
318
-		echo !empty( $this->_dtt ) ?  $this->_dtt->get_i18n_datetime('DTT_EVT_start') : __('No Date was saved for this Event', 'event_espresso');
317
+	public function column_start_date_time(EE_Event $item) {
318
+		echo ! empty($this->_dtt) ? $this->_dtt->get_i18n_datetime('DTT_EVT_start') : __('No Date was saved for this Event', 'event_espresso');
319 319
 		//display in user's timezone?
320
-		echo !empty( $this->_dtt ) ? $this->_dtt->display_in_my_timezone('DTT_EVT_start', 'get_i18n_datetime', '', 'My Timezone: ' ) : '';
320
+		echo ! empty($this->_dtt) ? $this->_dtt->display_in_my_timezone('DTT_EVT_start', 'get_i18n_datetime', '', 'My Timezone: ') : '';
321 321
 
322 322
 	}
323 323
 
@@ -327,11 +327,11 @@  discard block
 block discarded – undo
327 327
 	 *
328 328
 	 * @throws EE_Error
329 329
 	 */
330
-	public function column_reg_begins( EE_Event $item ) {
330
+	public function column_reg_begins(EE_Event $item) {
331 331
 		$reg_start = $item->get_ticket_with_earliest_start_time();
332
-		echo !empty( $reg_start ) ? $reg_start->get_i18n_datetime('TKT_start_date') : __('No Tickets have been setup for this Event', 'event_espresso');
332
+		echo ! empty($reg_start) ? $reg_start->get_i18n_datetime('TKT_start_date') : __('No Tickets have been setup for this Event', 'event_espresso');
333 333
 		//display in user's timezone?
334
-		echo !empty( $reg_start ) ? $reg_start->display_in_my_timezone('TKT_start_date', 'get_i18n_datetime', '', 'My Timezone: ' ) : '';/**/
334
+		echo ! empty($reg_start) ? $reg_start->display_in_my_timezone('TKT_start_date', 'get_i18n_datetime', '', 'My Timezone: ') : ''; /**/
335 335
 	}
336 336
 
337 337
 
@@ -340,14 +340,14 @@  discard block
 block discarded – undo
340 340
 	 *
341 341
 	 * @return int|string
342 342
 	 */
343
-	public function column_attendees( EE_Event $item ) {
343
+	public function column_attendees(EE_Event $item) {
344 344
 		$attendees_query_args = array(
345 345
 				'action' => 'default',
346 346
 				'event_id' => $item->ID()
347 347
 			);
348
-		$attendees_link = EE_Admin_Page::add_query_args_and_nonce( $attendees_query_args, REG_ADMIN_URL );
349
-		$registered_attendees = EEM_Registration::instance()->get_event_registration_count( $item->ID() );
350
-		return  EE_Registry::instance()->CAP->current_user_can( 'ee_read_registration', 'espresso_registrations_view_registration', $item->ID() ) ? '<a href="' . $attendees_link . '">' . $registered_attendees . '</a>' : $registered_attendees;
348
+		$attendees_link = EE_Admin_Page::add_query_args_and_nonce($attendees_query_args, REG_ADMIN_URL);
349
+		$registered_attendees = EEM_Registration::instance()->get_event_registration_count($item->ID());
350
+		return  EE_Registry::instance()->CAP->current_user_can('ee_read_registration', 'espresso_registrations_view_registration', $item->ID()) ? '<a href="'.$attendees_link.'">'.$registered_attendees.'</a>' : $registered_attendees;
351 351
 	}
352 352
 
353 353
 
@@ -356,8 +356,8 @@  discard block
 block discarded – undo
356 356
 	 *
357 357
 	 * @return float
358 358
 	 */
359
-	public function column_tkts_sold( EE_Event $item ) {
360
-		return EEM_Ticket::instance()->sum(array( array('Datetime.EVT_ID' => $item->ID() )), 'TKT_sold' );
359
+	public function column_tkts_sold(EE_Event $item) {
360
+		return EEM_Ticket::instance()->sum(array(array('Datetime.EVT_ID' => $item->ID())), 'TKT_sold');
361 361
 	}
362 362
 
363 363
 
@@ -366,38 +366,38 @@  discard block
 block discarded – undo
366 366
 	 *
367 367
 	 * @return string
368 368
 	 */
369
-	public function column_actions( EE_Event $item ) {
369
+	public function column_actions(EE_Event $item) {
370 370
 		//todo: remove when attendees is active
371
-		if ( !defined('REG_ADMIN_URL') )
371
+		if ( ! defined('REG_ADMIN_URL'))
372 372
 			define('REG_ADMIN_URL', EVENTS_ADMIN_URL);
373 373
 		$actionlinks = array();
374 374
 
375 375
 		$view_link = get_permalink($item->ID());
376 376
 
377
-		$actionlinks[] = '<a href="' .  $view_link . '" title="' . esc_attr__('View Event', 'event_espresso') . '" target="_blank">';
377
+		$actionlinks[] = '<a href="'.$view_link.'" title="'.esc_attr__('View Event', 'event_espresso').'" target="_blank">';
378 378
 		$actionlinks[] = '<div class="dashicons dashicons-search"></div></a>';
379 379
 
380
-		if ( EE_Registry::instance()->CAP->current_user_can( 'ee_edit_event', 'espresso_events_edit', $item->ID() ) ) {
380
+		if (EE_Registry::instance()->CAP->current_user_can('ee_edit_event', 'espresso_events_edit', $item->ID())) {
381 381
 			$edit_query_args = array(
382 382
 					'action' => 'edit',
383 383
 					'post' => $item->ID()
384 384
 				);
385
-			$edit_link = EE_Admin_Page::add_query_args_and_nonce( $edit_query_args, EVENTS_ADMIN_URL );
386
-			$actionlinks[] = '<a href="' . $edit_link . '" title="' . esc_attr__('Edit Event', 'event_espresso') . '"><div class="ee-icon ee-icon-calendar-edit"></div></a>';
385
+			$edit_link = EE_Admin_Page::add_query_args_and_nonce($edit_query_args, EVENTS_ADMIN_URL);
386
+			$actionlinks[] = '<a href="'.$edit_link.'" title="'.esc_attr__('Edit Event', 'event_espresso').'"><div class="ee-icon ee-icon-calendar-edit"></div></a>';
387 387
 		}
388 388
 
389
-		if ( EE_Registry::instance()->CAP->current_user_can( 'ee_read_registration', 'espresso_registrations_view_registration', $item->ID() ) ) {
389
+		if (EE_Registry::instance()->CAP->current_user_can('ee_read_registration', 'espresso_registrations_view_registration', $item->ID())) {
390 390
 			$attendees_query_args = array(
391 391
 				'action' => 'default',
392 392
 				'event_id' => $item->ID()
393 393
 			);
394
-			$attendees_link = EE_Admin_Page::add_query_args_and_nonce( $attendees_query_args, REG_ADMIN_URL );
395
-			$actionlinks[] = '<a href="' . $attendees_link . '" title="' . esc_attr__('View Registrants', 'event_espresso') . '"><div class="dashicons dashicons-groups"></div></a>';
394
+			$attendees_link = EE_Admin_Page::add_query_args_and_nonce($attendees_query_args, REG_ADMIN_URL);
395
+			$actionlinks[] = '<a href="'.$attendees_link.'" title="'.esc_attr__('View Registrants', 'event_espresso').'"><div class="dashicons dashicons-groups"></div></a>';
396 396
 		}
397 397
 
398
-		$actionlinks = apply_filters( 'FHEE__Events_Admin_List_Table__column_actions__action_links', $actionlinks, $item );
398
+		$actionlinks = apply_filters('FHEE__Events_Admin_List_Table__column_actions__action_links', $actionlinks, $item);
399 399
 
400
-		return $this->_action_string( implode( "\n\t", $actionlinks ), $item, 'div' );
400
+		return $this->_action_string(implode("\n\t", $actionlinks), $item, 'div');
401 401
 	}
402 402
 
403 403
 
Please login to merge, or discard this patch.