Completed
Branch FET-4710-for-BETA-4.8-CORE (b46867)
by
unknown
693:23 queued 665:02
created
admin_pages/events/Event_Categories_Admin_List_Table.class.php 2 patches
Spacing   +19 added lines, -19 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
 /**
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
 
32 32
 class Event_Categories_Admin_List_Table extends EE_Admin_List_Table {
33 33
 
34
-	public function __construct( $admin_page ) {
34
+	public function __construct($admin_page) {
35 35
 		parent::__construct($admin_page);
36 36
 	}
37 37
 
@@ -39,8 +39,8 @@  discard block
 block discarded – undo
39 39
 
40 40
 
41 41
 	protected function _setup_data() {
42
-		$this->_data = $this->_admin_page->get_categories( $this->_per_page, $this->_current_page);
43
-		$this->_all_data_count = EEM_Term_Taxonomy::instance()->count( array( array( 'taxonomy' => 'espresso_event_categories' ) ) );
42
+		$this->_data = $this->_admin_page->get_categories($this->_per_page, $this->_current_page);
43
+		$this->_all_data_count = EEM_Term_Taxonomy::instance()->count(array(array('taxonomy' => 'espresso_event_categories')));
44 44
 	}
45 45
 
46 46
 
@@ -49,8 +49,8 @@  discard block
 block discarded – undo
49 49
 
50 50
 	protected function _set_properties() {
51 51
 		$this->_wp_list_args = array(
52
-			'singular' => __('event category', 'event_espresso' ),
53
-			'plural' => __('event categories', 'event_espresso' ),
52
+			'singular' => __('event category', 'event_espresso'),
53
+			'plural' => __('event categories', 'event_espresso'),
54 54
 			'ajax' => TRUE, //for now,
55 55
 			'screen' => $this->_admin_page->get_current_screen()->id
56 56
 			);
@@ -64,9 +64,9 @@  discard block
 block discarded – undo
64 64
 			);
65 65
 
66 66
 		$this->_sortable_columns = array(
67
-			'id' => array( 'Term.term_id' => true ),
68
-			'name' => array( 'Term.slug' => false ),
69
-			'count' => array( 'term_count' => false )
67
+			'id' => array('Term.term_id' => true),
68
+			'name' => array('Term.slug' => false),
69
+			'count' => array('term_count' => false)
70 70
 			);
71 71
 
72 72
 		$this->_hidden_columns = array();
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 
97 97
 
98 98
 	public function column_cb($item) {
99
-		return sprintf( '<input type="checkbox" name="EVT_CAT_ID[]" value="%s" />', $item->get('term_id') );
99
+		return sprintf('<input type="checkbox" name="EVT_CAT_ID[]" value="%s" />', $item->get('term_id'));
100 100
 	}
101 101
 
102 102
 
@@ -123,17 +123,17 @@  discard block
 block discarded – undo
123 123
 			'EVT_CAT_ID' => $item->get('term_id')
124 124
 		);
125 125
 
126
-		$edit_link = EE_Admin_Page::add_query_args_and_nonce( $edit_query_args, EVENTS_ADMIN_URL );
127
-		$delete_link = EE_Admin_Page::add_query_args_and_nonce( $delete_query_args, EVENTS_ADMIN_URL );
126
+		$edit_link = EE_Admin_Page::add_query_args_and_nonce($edit_query_args, EVENTS_ADMIN_URL);
127
+		$delete_link = EE_Admin_Page::add_query_args_and_nonce($delete_query_args, EVENTS_ADMIN_URL);
128 128
 
129 129
 		$actions = array(
130
-			'edit' => '<a href="' . $edit_link . '" title="' . esc_attr__('Edit Category', 'event_espresso') . '">' . __('Edit', 'event_espresso') . '</a>'
130
+			'edit' => '<a href="'.$edit_link.'" title="'.esc_attr__('Edit Category', 'event_espresso').'">'.__('Edit', 'event_espresso').'</a>'
131 131
 			);
132 132
 
133 133
 
134
-		$actions['delete'] = '<a href="' . $delete_link . '" title="' . esc_attr__('Delete Category', 'event_espresso') . '">' . __('Delete', 'event_espresso') . '</a>';
134
+		$actions['delete'] = '<a href="'.$delete_link.'" title="'.esc_attr__('Delete Category', 'event_espresso').'">'.__('Delete', 'event_espresso').'</a>';
135 135
 
136
-		$content = '<strong><a class="row-title" href="' . $edit_link . '">' . $item->get_first_related('Term')->get('name') . '</a></strong>';
136
+		$content = '<strong><a class="row-title" href="'.$edit_link.'">'.$item->get_first_related('Term')->get('name').'</a></strong>';
137 137
 		$content .= $this->row_actions($actions);
138 138
 		return $content;
139 139
 	}
@@ -142,20 +142,20 @@  discard block
 block discarded – undo
142 142
 
143 143
 
144 144
 	public function column_shortcode($item) {
145
-		$content = '[ESPRESSO_EVENTS category_slug="' . $item->get_first_related('Term')->get('slug') . '"]';
145
+		$content = '[ESPRESSO_EVENTS category_slug="'.$item->get_first_related('Term')->get('slug').'"]';
146 146
 		return $content;
147 147
 	}
148 148
 
149 149
 
150 150
 
151 151
 
152
-	public function column_count( $item ) {
152
+	public function column_count($item) {
153 153
 		$e_args = array(
154 154
 			'action' => 'default',
155 155
 			'EVT_CAT' => $item->get_first_related('Term')->ID()
156 156
 			);
157
-		$e_link = EE_Admin_Page::add_query_args_and_nonce( $e_args, EVENTS_ADMIN_URL );
158
-		$content = '<a href="' . $e_link . '">' . $item->get('term_count') . '</a>';
157
+		$e_link = EE_Admin_Page::add_query_args_and_nonce($e_args, EVENTS_ADMIN_URL);
158
+		$content = '<a href="'.$e_link.'">'.$item->get('term_count').'</a>';
159 159
 		return $content;
160 160
 	}
161 161
 }
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,8 +6,9 @@
 block discarded – undo
6 6
  * @package Event Espresso
7 7
  * @subpackage messages
8 8
  */
9
-if (!defined('EVENT_ESPRESSO_VERSION') )
9
+if (!defined('EVENT_ESPRESSO_VERSION') ) {
10 10
 	exit('NO direct script access allowed');
11
+}
11 12
 
12 13
 /**
13 14
  *
Please login to merge, or discard this patch.
admin_pages/events/Events_Admin_List_Table.class.php 3 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -111,8 +111,8 @@
 block discarded – undo
111 111
 		$regs = $item->count_related('Registration');
112 112
 		return $regs > 0 && $this->_view == 'trash' ? '<span class="ee-lock-icon"></span>' : sprintf(
113 113
 			'<input type="checkbox" name="EVT_IDs[]" value="%s" />', $item->ID()
114
-        );
115
-    }
114
+		);
115
+	}
116 116
 
117 117
 
118 118
 
Please login to merge, or discard this patch.
Spacing   +62 added lines, -62 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
 /**
@@ -33,14 +33,14 @@  discard block
 block discarded – undo
33 33
 
34 34
 	private $_dtt;
35 35
 
36
-	public function __construct( $admin_page ) {
36
+	public function __construct($admin_page) {
37 37
 		parent::__construct($admin_page);
38
-		require_once( EE_HELPERS . 'EEH_DTT_Helper.helper.php' );
38
+		require_once(EE_HELPERS.'EEH_DTT_Helper.helper.php');
39 39
 	}
40 40
 
41 41
 	protected function _setup_data() {
42 42
 		$this->_data = $this->_admin_page->get_events($this->_per_page, $this->_current_page);
43
- 		$this->_all_data_count = $this->_admin_page->get_events(0,0, TRUE);
43
+ 		$this->_all_data_count = $this->_admin_page->get_events(0, 0, TRUE);
44 44
 	}
45 45
 
46 46
 	protected function _set_properties() {
@@ -68,15 +68,15 @@  discard block
 block discarded – undo
68 68
 
69 69
 
70 70
 		$this->_sortable_columns = array(
71
-			'id' => array( 'EVT_ID' => true ),
72
-			'name' => array( 'EVT_name' => false ),
73
-			'author' => array( 'EVT_wp_user' => false ),
74
-			'venue' => array( 'Venue.VNU_name' => false ),
71
+			'id' => array('EVT_ID' => true),
72
+			'name' => array('EVT_name' => false),
73
+			'author' => array('EVT_wp_user' => false),
74
+			'venue' => array('Venue.VNU_name' => false),
75 75
 			'start_date_time' => array('Datetime.DTT_EVT_start' => false),
76 76
 			'reg_begins' => array('Datetime.Ticket.TKT_start_date' => false),
77 77
 			);
78 78
 
79
-		$this->_hidden_columns = array( 'author' );
79
+		$this->_hidden_columns = array('author');
80 80
 	}
81 81
 
82 82
 
@@ -91,15 +91,15 @@  discard block
 block discarded – undo
91 91
 	protected function _add_view_counts() {
92 92
 		$this->_views['all']['count'] = $this->_admin_page->total_events();
93 93
 		$this->_views['draft']['count'] = $this->_admin_page->total_events_draft();
94
-		if ( EE_Registry::instance()->CAP->current_user_can( 'ee_delete_events', 'espresso_events_trash_events' ) ) {
94
+		if (EE_Registry::instance()->CAP->current_user_can('ee_delete_events', 'espresso_events_trash_events')) {
95 95
 			$this->_views['trash']['count'] = $this->_admin_page->total_trashed_events();
96 96
 		}
97 97
 	}
98 98
 
99 99
 
100 100
 
101
-	public function column_status( EE_Event $item ) {
102
-		return '<span class="ee-status-strip ee-status-strip-td event-status-' . $item->get_active_status() . '"></span>';
101
+	public function column_status(EE_Event $item) {
102
+		return '<span class="ee-status-strip ee-status-strip-td event-status-'.$item->get_active_status().'"></span>';
103 103
 	}/**/
104 104
 
105 105
 
@@ -128,10 +128,10 @@  discard block
 block discarded – undo
128 128
 				'action' => 'edit',
129 129
 				'post' => $item->ID()
130 130
 			);
131
-		$edit_link = EE_Admin_Page::add_query_args_and_nonce( $edit_query_args, EVENTS_ADMIN_URL );
132
-		$actions = $this->_column_name_action_setup( $item );
131
+		$edit_link = EE_Admin_Page::add_query_args_and_nonce($edit_query_args, EVENTS_ADMIN_URL);
132
+		$actions = $this->_column_name_action_setup($item);
133 133
 		$status = ''; //$item->status() !== 'publish' ? ' (' . $item->status() . ')' : '';
134
-		$content = '<strong><a class="row-title" href="' . $edit_link . '">' . $item->name() . '</a></strong>' . $status;
134
+		$content = '<strong><a class="row-title" href="'.$edit_link.'">'.$item->name().'</a></strong>'.$status;
135 135
 		$content .= $this->row_actions($actions);
136 136
 		return $content;
137 137
 
@@ -148,72 +148,72 @@  discard block
 block discarded – undo
148 148
 	 *
149 149
 	 * @return array array of actions
150 150
 	 */
151
-	protected function _column_name_action_setup( EE_Event $item ) {
151
+	protected function _column_name_action_setup(EE_Event $item) {
152 152
 		//todo: remove when attendees is active
153
-		if ( !defined('REG_ADMIN_URL') )
153
+		if ( ! defined('REG_ADMIN_URL'))
154 154
 			define('REG_ADMIN_URL', EVENTS_ADMIN_URL);
155 155
 
156 156
 		$actions = array();
157 157
 
158
-		if ( EE_Registry::instance()->CAP->current_user_can('ee_edit_event', 'espresso_events_edit', $item->ID() ) ) {
158
+		if (EE_Registry::instance()->CAP->current_user_can('ee_edit_event', 'espresso_events_edit', $item->ID())) {
159 159
 			$edit_query_args = array(
160 160
 					'action' => 'edit',
161 161
 					'post' => $item->ID()
162 162
 				);
163
-			$edit_link = EE_Admin_Page::add_query_args_and_nonce( $edit_query_args, EVENTS_ADMIN_URL );
164
-			$actions['edit'] = '<a href="' . $edit_link . '" title="' . esc_attr__('Edit Event', 'event_espresso') . '">' . __('Edit', 'event_espresso') . '</a>';
163
+			$edit_link = EE_Admin_Page::add_query_args_and_nonce($edit_query_args, EVENTS_ADMIN_URL);
164
+			$actions['edit'] = '<a href="'.$edit_link.'" title="'.esc_attr__('Edit Event', 'event_espresso').'">'.__('Edit', 'event_espresso').'</a>';
165 165
 
166 166
 		}
167 167
 
168
-		if ( EE_Registry::instance()->CAP->current_user_can( 'ee_read_registration', 'espresso_registrations_view_registration', $item->ID() ) ) {
168
+		if (EE_Registry::instance()->CAP->current_user_can('ee_read_registration', 'espresso_registrations_view_registration', $item->ID())) {
169 169
 			$attendees_query_args = array(
170 170
 					'action' => 'default',
171 171
 					'event_id' => $item->ID()
172 172
 				);
173
-			$attendees_link = EE_Admin_Page::add_query_args_and_nonce( $attendees_query_args, REG_ADMIN_URL );
174
-			$actions['attendees'] = '<a href="' . $attendees_link . '" title="' . esc_attr__('View Registrations', 'event_espresso') . '">' . __('Registrations', 'event_espresso') . '</a>';
173
+			$attendees_link = EE_Admin_Page::add_query_args_and_nonce($attendees_query_args, REG_ADMIN_URL);
174
+			$actions['attendees'] = '<a href="'.$attendees_link.'" title="'.esc_attr__('View Registrations', 'event_espresso').'">'.__('Registrations', 'event_espresso').'</a>';
175 175
 		}
176 176
 
177
-		if ( EE_Registry::instance()->CAP->current_user_can( 'ee_delete_event', 'espresso_events_trash_event', $item->ID() ) ) {
177
+		if (EE_Registry::instance()->CAP->current_user_can('ee_delete_event', 'espresso_events_trash_event', $item->ID())) {
178 178
 			$trash_event_query_args = array(
179 179
 					'action' => 'trash_event',
180 180
 					'EVT_ID' => $item->ID()
181 181
 				);
182
-			$trash_event_link = EE_Admin_Page::add_query_args_and_nonce( $trash_event_query_args, EVENTS_ADMIN_URL );
182
+			$trash_event_link = EE_Admin_Page::add_query_args_and_nonce($trash_event_query_args, EVENTS_ADMIN_URL);
183 183
 		}
184 184
 
185
-		if ( EE_Registry::instance()->CAP->current_user_can( 'ee_delete_event', 'espresso_events_restore_event', $item->ID() ) ) {
185
+		if (EE_Registry::instance()->CAP->current_user_can('ee_delete_event', 'espresso_events_restore_event', $item->ID())) {
186 186
 			$restore_event_query_args = array(
187 187
 					'action' => 'restore_event',
188 188
 					'EVT_ID' => $item->ID()
189 189
 				);
190
-			$restore_event_link = EE_Admin_Page::add_query_args_and_nonce( $restore_event_query_args, EVENTS_ADMIN_URL );
190
+			$restore_event_link = EE_Admin_Page::add_query_args_and_nonce($restore_event_query_args, EVENTS_ADMIN_URL);
191 191
 		}
192 192
 
193
-		if ( EE_Registry::instance()->CAP->current_user_can( 'ee_delete_event', 'espresso_events_delete_event', $item->ID() ) ) {
193
+		if (EE_Registry::instance()->CAP->current_user_can('ee_delete_event', 'espresso_events_delete_event', $item->ID())) {
194 194
 			$delete_event_query_args = array(
195 195
 					'action' => 'delete_event',
196 196
 					'EVT_ID' => $item->ID()
197 197
 				);
198
-			$delete_event_link = EE_Admin_Page::add_query_args_and_nonce( $delete_event_query_args, EVENTS_ADMIN_URL );
198
+			$delete_event_link = EE_Admin_Page::add_query_args_and_nonce($delete_event_query_args, EVENTS_ADMIN_URL);
199 199
 		}
200 200
 
201 201
 		$view_link = get_permalink($item->ID());
202 202
 
203
-		$actions['view'] = '<a href="' . $view_link . '" title="' . esc_attr__('View Event', 'event_espresso') . '">' . __('View', 'event_espresso') . '</a>';
203
+		$actions['view'] = '<a href="'.$view_link.'" title="'.esc_attr__('View Event', 'event_espresso').'">'.__('View', 'event_espresso').'</a>';
204 204
 
205
-		switch ( $item->get( 'status' ) ) {
205
+		switch ($item->get('status')) {
206 206
 			case 'trash' :
207
-					if ( EE_Registry::instance()->CAP->current_user_can( 'ee_delete_event', 'espresso_events_restore_event', $item->ID() ) ) {
208
-						$actions['restore_from_trash'] = '<a href="' . $restore_event_link . '" title="' . esc_attr__('Restore from Trash', 'event_espresso') . '">' . __('Restore from Trash', 'event_espresso') . '</a>';
207
+					if (EE_Registry::instance()->CAP->current_user_can('ee_delete_event', 'espresso_events_restore_event', $item->ID())) {
208
+						$actions['restore_from_trash'] = '<a href="'.$restore_event_link.'" title="'.esc_attr__('Restore from Trash', 'event_espresso').'">'.__('Restore from Trash', 'event_espresso').'</a>';
209 209
 					}
210
-					if ( $item->count_related('Registration') === 0 && EE_Registry::instance()->CAP->current_user_can( 'ee_delete_event', 'espresso_events_delete_event', $item->ID() ) ) {
211
-						$actions['delete permanently'] = '<a href="' . $delete_event_link . '" title="' . esc_attr__('Delete Permanently', 'event_espresso') . '">' . __('Delete Permanently', 'event_espresso') . '</a>';
210
+					if ($item->count_related('Registration') === 0 && EE_Registry::instance()->CAP->current_user_can('ee_delete_event', 'espresso_events_delete_event', $item->ID())) {
211
+						$actions['delete permanently'] = '<a href="'.$delete_event_link.'" title="'.esc_attr__('Delete Permanently', 'event_espresso').'">'.__('Delete Permanently', 'event_espresso').'</a>';
212 212
 					}
213 213
 				break;
214 214
 			default :
215
-					if ( EE_Registry::instance()->CAP->current_user_can( 'ee_delete_event', 'espresso_events_trash_event', $item->ID() ) ) {
216
-						$actions['move to trash'] = '<a href="' . $trash_event_link . '" title="' . esc_attr__('Trash Event', 'event_espresso') . '">' . __('Trash', 'event_espresso') . '</a>';
215
+					if (EE_Registry::instance()->CAP->current_user_can('ee_delete_event', 'espresso_events_trash_event', $item->ID())) {
216
+						$actions['move to trash'] = '<a href="'.$trash_event_link.'" title="'.esc_attr__('Trash Event', 'event_espresso').'">'.__('Trash', 'event_espresso').'</a>';
217 217
 					}
218 218
 		}
219 219
 		return $actions;
@@ -222,34 +222,34 @@  discard block
 block discarded – undo
222 222
 
223 223
 
224 224
 
225
-	public function column_author( EE_Event $item ) {
225
+	public function column_author(EE_Event $item) {
226 226
 		//user author info
227
-		$event_author = get_userdata( $item->wp_user() );
228
-		$gravatar = get_avatar( $item->wp_user(), '15' );
227
+		$event_author = get_userdata($item->wp_user());
228
+		$gravatar = get_avatar($item->wp_user(), '15');
229 229
 		//filter link
230 230
 		$query_args = array(
231 231
 			'action' => 'default',
232 232
 			'EVT_wp_user' => $item->wp_user()
233 233
 			);
234
-		$filter_url = EE_Admin_Page::add_query_args_and_nonce( $query_args, EVENTS_ADMIN_URL );
235
-		return $gravatar . '  <a href="' . $filter_url . '" title="' . esc_attr__('Click to filter events by this author.', 'event_espresso') . '">' . $event_author->display_name . '</a>';
234
+		$filter_url = EE_Admin_Page::add_query_args_and_nonce($query_args, EVENTS_ADMIN_URL);
235
+		return $gravatar.'  <a href="'.$filter_url.'" title="'.esc_attr__('Click to filter events by this author.', 'event_espresso').'">'.$event_author->display_name.'</a>';
236 236
 	}
237 237
 
238 238
 
239 239
 
240 240
 
241 241
 	public function column_venue($item) {
242
-		$venue = $item->get_first_related( 'Venue' );
243
-		return !empty( $venue ) ? $venue->name() : '';
242
+		$venue = $item->get_first_related('Venue');
243
+		return ! empty($venue) ? $venue->name() : '';
244 244
 	}
245 245
 
246 246
 
247 247
 
248 248
 
249 249
 	public function column_start_date_time($item) {
250
-		echo !empty( $this->_dtt ) ?  $this->_dtt->get_i18n_datetime('DTT_EVT_start') : __('No Date was saved for this Event', 'event_espresso');
250
+		echo ! empty($this->_dtt) ? $this->_dtt->get_i18n_datetime('DTT_EVT_start') : __('No Date was saved for this Event', 'event_espresso');
251 251
 		//display in user's timezone?
252
-		echo !empty( $this->_dtt ) ? $this->_dtt->display_in_my_timezone('DTT_EVT_start', 'get_i18n_datetime', '', 'My Timezone: ' ) : '';
252
+		echo ! empty($this->_dtt) ? $this->_dtt->display_in_my_timezone('DTT_EVT_start', 'get_i18n_datetime', '', 'My Timezone: ') : '';
253 253
 
254 254
 	}
255 255
 
@@ -258,9 +258,9 @@  discard block
 block discarded – undo
258 258
 
259 259
 	public function column_reg_begins($item) {
260 260
 		$reg_start = $item->get_ticket_with_earliest_start_time();
261
-		echo !empty( $reg_start ) ? $reg_start->get_i18n_datetime('TKT_start_date') : __('No Tickets have been setup for this Event', 'event_espresso');
261
+		echo ! empty($reg_start) ? $reg_start->get_i18n_datetime('TKT_start_date') : __('No Tickets have been setup for this Event', 'event_espresso');
262 262
 		//display in user's timezone?
263
-		echo !empty( $reg_start ) ? $reg_start->display_in_my_timezone('TKT_start_date', 'get_i18n_datetime', '', 'My Timezone: ' ) : '';/**/
263
+		echo ! empty($reg_start) ? $reg_start->display_in_my_timezone('TKT_start_date', 'get_i18n_datetime', '', 'My Timezone: ') : ''; /**/
264 264
 	}
265 265
 
266 266
 
@@ -278,51 +278,51 @@  discard block
 block discarded – undo
278 278
 				'action' => 'default',
279 279
 				'event_id' => $item->ID()
280 280
 			);
281
-		$attendees_link = EE_Admin_Page::add_query_args_and_nonce( $attendees_query_args, REG_ADMIN_URL );
282
-		$registered_attendees = EEM_Registration::instance()->get_event_registration_count( $item->ID() );
283
-		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;
281
+		$attendees_link = EE_Admin_Page::add_query_args_and_nonce($attendees_query_args, REG_ADMIN_URL);
282
+		$registered_attendees = EEM_Registration::instance()->get_event_registration_count($item->ID());
283
+		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;
284 284
 	}
285 285
 
286 286
 
287 287
 
288 288
 	public function column_tkts_sold($item) {
289
-		return EEM_Ticket::instance()->sum(array( array('Datetime.EVT_ID' => $item->ID() )), 'TKT_sold' );
289
+		return EEM_Ticket::instance()->sum(array(array('Datetime.EVT_ID' => $item->ID())), 'TKT_sold');
290 290
 	}
291 291
 
292 292
 
293 293
 
294 294
 	public function column_actions($item) {
295 295
 		//todo: remove when attendees is active
296
-		if ( !defined('REG_ADMIN_URL') )
296
+		if ( ! defined('REG_ADMIN_URL'))
297 297
 			define('REG_ADMIN_URL', EVENTS_ADMIN_URL);
298 298
 		$actionlinks = array();
299 299
 
300 300
 		$view_link = get_permalink($item->ID());
301 301
 
302
-		$actionlinks[] = '<a href="' .  $view_link . '" title="' . esc_attr__('View Event', 'event_espresso') . '" target="_blank">';
302
+		$actionlinks[] = '<a href="'.$view_link.'" title="'.esc_attr__('View Event', 'event_espresso').'" target="_blank">';
303 303
 		$actionlinks[] = '<div class="dashicons dashicons-search"></div></a>';
304 304
 
305
-		if ( EE_Registry::instance()->CAP->current_user_can( 'ee_edit_event', 'espresso_events_edit', $item->ID() ) ) {
305
+		if (EE_Registry::instance()->CAP->current_user_can('ee_edit_event', 'espresso_events_edit', $item->ID())) {
306 306
 			$edit_query_args = array(
307 307
 					'action' => 'edit',
308 308
 					'post' => $item->ID()
309 309
 				);
310
-			$edit_link = EE_Admin_Page::add_query_args_and_nonce( $edit_query_args, EVENTS_ADMIN_URL );
311
-			$actionlinks[] = '<a href="' . $edit_link . '" title="' . esc_attr__('Edit Event', 'event_espresso') . '"><div class="ee-icon ee-icon-calendar-edit"></div></a>';
310
+			$edit_link = EE_Admin_Page::add_query_args_and_nonce($edit_query_args, EVENTS_ADMIN_URL);
311
+			$actionlinks[] = '<a href="'.$edit_link.'" title="'.esc_attr__('Edit Event', 'event_espresso').'"><div class="ee-icon ee-icon-calendar-edit"></div></a>';
312 312
 		}
313 313
 
314
-		if ( EE_Registry::instance()->CAP->current_user_can( 'ee_read_registration', 'espresso_registrations_view_registration', $item->ID() ) ) {
314
+		if (EE_Registry::instance()->CAP->current_user_can('ee_read_registration', 'espresso_registrations_view_registration', $item->ID())) {
315 315
 			$attendees_query_args = array(
316 316
 				'action' => 'default',
317 317
 				'event_id' => $item->ID()
318 318
 			);
319
-			$attendees_link = EE_Admin_Page::add_query_args_and_nonce( $attendees_query_args, REG_ADMIN_URL );
320
-			$actionlinks[] = '<a href="' . $attendees_link . '" title="' . esc_attr__('View Registrants', 'event_espresso') . '"><div class="dashicons dashicons-groups"></div></a>';
319
+			$attendees_link = EE_Admin_Page::add_query_args_and_nonce($attendees_query_args, REG_ADMIN_URL);
320
+			$actionlinks[] = '<a href="'.$attendees_link.'" title="'.esc_attr__('View Registrants', 'event_espresso').'"><div class="dashicons dashicons-groups"></div></a>';
321 321
 		}
322 322
 
323
-		$actionlinks = apply_filters( 'FHEE__Events_Admin_List_Table__column_actions__action_links', $actionlinks, $item );
323
+		$actionlinks = apply_filters('FHEE__Events_Admin_List_Table__column_actions__action_links', $actionlinks, $item);
324 324
 
325
-		return $this->_action_string( implode( "\n\t", $actionlinks ), $item, 'div' );
325
+		return $this->_action_string(implode("\n\t", $actionlinks), $item, 'div');
326 326
 	}
327 327
 
328 328
 
Please login to merge, or discard this patch.
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.
admin_pages/events/Events_Admin_Page_Init.core.php 2 patches
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -33,13 +33,13 @@  discard block
 block discarded – undo
33 33
 		 * define some events related constants but only if not defined (need to check because unit tests
34 34
 		 *  may load)
35 35
 		 */
36
-		if ( ! defined( 'EVENTS_PG_SLUG' ) ) {
37
-			define( 'EVENTS_PG_SLUG', 'espresso_events' );
38
-			define( 'EVENTS_LABEL', __('Events', 'event_espresso'));
39
-			define( 'EVENTS_ADMIN', EE_ADMIN_PAGES . 'events' . DS );
40
-			define( 'EVENTS_ADMIN_URL', admin_url( 'admin.php?page=' . EVENTS_PG_SLUG ));
41
-			define( 'EVENTS_TEMPLATE_PATH', EVENTS_ADMIN . 'templates' . DS );
42
-			define( 'EVENTS_ASSETS_URL', EE_ADMIN_PAGES_URL . 'events/assets/' );
36
+		if ( ! defined('EVENTS_PG_SLUG')) {
37
+			define('EVENTS_PG_SLUG', 'espresso_events');
38
+			define('EVENTS_LABEL', __('Events', 'event_espresso'));
39
+			define('EVENTS_ADMIN', EE_ADMIN_PAGES.'events'.DS);
40
+			define('EVENTS_ADMIN_URL', admin_url('admin.php?page='.EVENTS_PG_SLUG));
41
+			define('EVENTS_TEMPLATE_PATH', EVENTS_ADMIN.'templates'.DS);
42
+			define('EVENTS_ASSETS_URL', EE_ADMIN_PAGES_URL.'events/assets/');
43 43
 		}
44 44
 		parent::__construct();
45 45
 	}
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 	}
50 50
 
51 51
 	protected function _set_menu_map() {
52
-		$this->_menu_map = new EE_Admin_Page_Main_Menu( array(
52
+		$this->_menu_map = new EE_Admin_Page_Main_Menu(array(
53 53
 			'menu_group' => 'main',
54 54
 			'menu_order' => 10,
55 55
 			'subtitle' => __('Events', 'event_espresso'),
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/events/help_tabs/event_editor_venue_details.help_tab.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,5 +3,5 @@
 block discarded – undo
3 3
 <?php _e('A venue is the place or location that is hosting your event. This setting is optional which means that you are not required to select a venue for your event.', 'event_espresso'); ?>
4 4
 </p>
5 5
 <p>
6
-<?php echo sprintf(__('Venues can be managed through the %sVenues page%s. This feature is only available in the caffeinated version of Event Espresso.', 'event_espresso'),'<a href="admin.php?page=espresso_venues">','</a>'); ?>
6
+<?php echo sprintf(__('Venues can be managed through the %sVenues page%s. This feature is only available in the caffeinated version of Event Espresso.', 'event_espresso'), '<a href="admin.php?page=espresso_venues">', '</a>'); ?>
7 7
 </p>
8 8
\ No newline at end of file
Please login to merge, or discard this patch.
admin_pages/events/help_tabs/events_default_settings_status.help_tab.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@
 block discarded – undo
1 1
 <h3><?php _e('Default Registration Status', 'event_espresso'); ?></h3>
2 2
 <p>
3
-<strong><?php echo EEH_Template::pretty_status( EEM_Registration::status_id_approved, FALSE, 'sentence' ); ?></strong><br />
4
-<?php printf( __('A status of %s means that a registration has been accepted as complete. The registration will count towards the registration limit, remaining tickets, and calculations for available seats. Payments (if necessary) can also be made by primary registrants with this status.', 'event_espresso'), EEH_Template::pretty_status( EEM_Registration::status_id_approved, FALSE, 'sentence' ) ); ?>
3
+<strong><?php echo EEH_Template::pretty_status(EEM_Registration::status_id_approved, FALSE, 'sentence'); ?></strong><br />
4
+<?php printf(__('A status of %s means that a registration has been accepted as complete. The registration will count towards the registration limit, remaining tickets, and calculations for available seats. Payments (if necessary) can also be made by primary registrants with this status.', 'event_espresso'), EEH_Template::pretty_status(EEM_Registration::status_id_approved, FALSE, 'sentence')); ?>
5 5
 </p>
6 6
 <p>
7
-<strong><?php echo EEH_Template::pretty_status( EEM_Registration::status_id_pending_payment, FALSE, 'sentence' ); ?></strong><br />
8
-<?php printf( __('A status of %1$s means that a registration has not paid but they ARE able to make payments (if necessary).  %2$s registrations do NOT count towards registration limits, remaining tickets, and calculations for available seats.  If registration for a free event occurs, then registrations are automatically set to %3$s. For paid tickets, %1$s registrations are set to %3$s when full payment is recorded.', 'event_espresso'), EEH_Template::pretty_status( EEM_Registration::status_id_pending_payment, FALSE, 'sentence' ), EEH_Template::pretty_status( EEM_Registration::status_id_pending_payment, FALSE, 'sentence'), EEH_Template::pretty_status( EEM_Registration::status_id_approved, FALSE, 'sentence' ) ); ?>
7
+<strong><?php echo EEH_Template::pretty_status(EEM_Registration::status_id_pending_payment, FALSE, 'sentence'); ?></strong><br />
8
+<?php printf(__('A status of %1$s means that a registration has not paid but they ARE able to make payments (if necessary).  %2$s registrations do NOT count towards registration limits, remaining tickets, and calculations for available seats.  If registration for a free event occurs, then registrations are automatically set to %3$s. For paid tickets, %1$s registrations are set to %3$s when full payment is recorded.', 'event_espresso'), EEH_Template::pretty_status(EEM_Registration::status_id_pending_payment, FALSE, 'sentence'), EEH_Template::pretty_status(EEM_Registration::status_id_pending_payment, FALSE, 'sentence'), EEH_Template::pretty_status(EEM_Registration::status_id_approved, FALSE, 'sentence')); ?>
9 9
 </p>
10 10
 <p>
11
-<strong><?php echo EEH_Template::pretty_status( EEM_Registration::status_id_not_approved, FALSE, 'sentence' ); ?></strong><br />
12
-<?php printf( __('A status of %1$s means that a registration has not paid and they cannot make payments for towards an event.  Un-approved registrations do NOT count towards registration limits, remaining tickets, and calculations for available seats.  This setting differs from the "%2$s" default in that free ticket registrations and paid in full ticket registrations do NOT automatically switch the Registration to %3$s.  Instead, the event admin must manually set the registration to either "%2$s" for registrations requiring payments, or "%3$s" for free events.', 'event_espresso'), EEH_Template::pretty_status( EEM_Registration::status_id_not_approved, FALSE, 'sentence' ), EEH_Template::pretty_status( EEM_Registration::status_id_pending_payment, FALSE, 'upper' ), EEH_Template::pretty_status( EEM_Registration::status_id_approved, FALSE, 'upper' ) ); ?>
11
+<strong><?php echo EEH_Template::pretty_status(EEM_Registration::status_id_not_approved, FALSE, 'sentence'); ?></strong><br />
12
+<?php printf(__('A status of %1$s means that a registration has not paid and they cannot make payments for towards an event.  Un-approved registrations do NOT count towards registration limits, remaining tickets, and calculations for available seats.  This setting differs from the "%2$s" default in that free ticket registrations and paid in full ticket registrations do NOT automatically switch the Registration to %3$s.  Instead, the event admin must manually set the registration to either "%2$s" for registrations requiring payments, or "%3$s" for free events.', 'event_espresso'), EEH_Template::pretty_status(EEM_Registration::status_id_not_approved, FALSE, 'sentence'), EEH_Template::pretty_status(EEM_Registration::status_id_pending_payment, FALSE, 'upper'), EEH_Template::pretty_status(EEM_Registration::status_id_approved, FALSE, 'upper')); ?>
13 13
 </p>
14 14
\ No newline at end of file
Please login to merge, or discard this patch.
admin_pages/events/help_tabs/general_settings_templates.help_tab.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 </li>
34 34
 <li>
35 35
 <strong><?php _e('Display Descriptions', 'event_espresso'); ?></strong><br />
36
-<?php printf( __('Whether descriptions should be shown on the event list page.%sSelecting "none" will NOT display any of the text content you entered into the main text editor on the event admin page.%sSelecting "excerpt" will display the text you entered into the "Excerpt" textarea on the event admin page, OR, any text in the main text editor above the "' . htmlentities( '<!--more-->' ) . '" tag.%sSelecting "full description" will display ALL of the text content you entered into the main text editor on the event admin page.', 'event_espresso'), '<br/>', '<br/>', '<br/>' );?>
36
+<?php printf(__('Whether descriptions should be shown on the event list page.%sSelecting "none" will NOT display any of the text content you entered into the main text editor on the event admin page.%sSelecting "excerpt" will display the text you entered into the "Excerpt" textarea on the event admin page, OR, any text in the main text editor above the "'.htmlentities('<!--more-->').'" tag.%sSelecting "full description" will display ALL of the text content you entered into the main text editor on the event admin page.', 'event_espresso'), '<br/>', '<br/>', '<br/>'); ?>
37 37
 </li>
38 38
 <li>
39 39
 <strong><?php _e('Display Ticket Selector', 'event_espresso'); ?></strong><br />
Please login to merge, or discard this patch.
admin_pages/events/help_tours/Event_Add_Category_Help_Tour.class.php 3 patches
Spacing   +6 added lines, -6 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
 /**
@@ -72,21 +72,21 @@  discard block
 block discarded – undo
72 72
 
73 73
 
74 74
 	protected function _stop_one() {
75
-		$content = '<h3>' . __('Add New Event Category', 'event_espresso') . '</h3>';
76
-		$content .= '<p>' . __('This tour of the Add New Event Category page will go over different areas of the screen to help you understand what they are used for.', 'event_espresso') . '</p>';
75
+		$content = '<h3>'.__('Add New Event Category', 'event_espresso').'</h3>';
76
+		$content .= '<p>'.__('This tour of the Add New Event Category page will go over different areas of the screen to help you understand what they are used for.', 'event_espresso').'</p>';
77 77
 		return $content;
78 78
 	}
79 79
 
80 80
 	protected function _stop_two() {
81
-		return '<p>' . __('Enter a name for your new category.', 'event_espresso') . '</p>';
81
+		return '<p>'.__('Enter a name for your new category.', 'event_espresso').'</p>';
82 82
 	}
83 83
 
84 84
 	protected function _stop_three() {
85
-		return '<p>' . __('Enter a unique ID for your new category.', 'event_espresso') . '</p>';
85
+		return '<p>'.__('Enter a unique ID for your new category.', 'event_espresso').'</p>';
86 86
 	}
87 87
 
88 88
 	protected function _stop_four() {
89
-		return '<p>' . __('The rich text editor can be used to add information about your category. Images and links can also be added along with your text.', 'event_espresso') . '</p>';
89
+		return '<p>'.__('The rich text editor can be used to add information about your category. Images and links can also be added along with your text.', 'event_espresso').'</p>';
90 90
 	}
91 91
 
92 92
 }
93 93
\ No newline at end of file
Please login to merge, or discard this patch.
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 				'options' => array(
55 55
 					'tipLocation' => 'right',
56 56
 					'tipAdjustmentY' => -55,
57
-                    'tipAdjustmentX' => 5
57
+					'tipAdjustmentX' => 5
58 58
 					)
59 59
 				),
60 60
 			40 => array(
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
 				'options' => array(
64 64
 					'tipLocation' => 'top',
65 65
 					'tipAdjustmentY' => -75,
66
-                    'tipAdjustmentX' => 250
66
+					'tipAdjustmentX' => 250
67 67
 					)
68 68
 				)
69 69
 			);
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,8 +6,9 @@
 block discarded – undo
6 6
  * @package Event Espresso
7 7
  * @subpackage messages
8 8
  */
9
-if (!defined('EVENT_ESPRESSO_VERSION') )
9
+if (!defined('EVENT_ESPRESSO_VERSION') ) {
10 10
 	exit('NO direct script access allowed');
11
+}
11 12
 
12 13
 /**
13 14
  *
Please login to merge, or discard this patch.
admin_pages/events/help_tours/Event_Categories_Help_Tour.class.php 3 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
 		$this->_slug = 'event-categories-joyride';
35 35
 	}
36 36
     
37
-    protected function _set_tour_stops() {
37
+	protected function _set_tour_stops() {
38 38
 		$this->_stops = array(
39 39
 			10 => array(
40 40
 				'content' => $this->_start(),
Please login to merge, or discard this patch.
Spacing   +10 added lines, -10 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
 /**
@@ -107,36 +107,36 @@  discard block
 block discarded – undo
107 107
 
108 108
 
109 109
 	protected function _start() {
110
-		$content = '<h3>' . __('Event Categories', 'event_espresso') . '</h3>';
111
-		$content .= '<p>' . __('This tour of the Event Categories page will provide an overview of the different areas of the screen to help you understand what they are used for.', 'event_espresso') . '</p>';
110
+		$content = '<h3>'.__('Event Categories', 'event_espresso').'</h3>';
111
+		$content .= '<p>'.__('This tour of the Event Categories page will provide an overview of the different areas of the screen to help you understand what they are used for.', 'event_espresso').'</p>';
112 112
 		return $content;
113 113
 	}
114 114
 	
115 115
 	protected function _id_stop() {
116
-		return '<p>' . __('View the event category ID. Can be sorted by ascending or descending order.', 'event_espresso') . '</p>';
116
+		return '<p>'.__('View the event category ID. Can be sorted by ascending or descending order.', 'event_espresso').'</p>';
117 117
 	}
118 118
 	
119 119
 	protected function _name_stop() {
120
-		return '<p>' . __('View the name of each event category. Can be sorted by ascending or descending order.', 'event_espresso') . '</p>';
120
+		return '<p>'.__('View the name of each event category. Can be sorted by ascending or descending order.', 'event_espresso').'</p>';
121 121
 	}
122 122
 
123 123
 	protected function _shortcode_stop() {
124
-		return '<p>' . __('View the shortcode for an event. This shortcode can be added to a WordPress post or WordPress page. ', 'event_espresso') . '</p>';
124
+		return '<p>'.__('View the shortcode for an event. This shortcode can be added to a WordPress post or WordPress page. ', 'event_espresso').'</p>';
125 125
 	}
126 126
 
127 127
 	protected function _count_stop() {
128
-		return '<p>' . __('View the number of events that are associated with an event category.', 'event_espresso') . '</p>';
128
+		return '<p>'.__('View the number of events that are associated with an event category.', 'event_espresso').'</p>';
129 129
 	}
130 130
 
131 131
 	protected function _bulk_actions_stop() {
132
-		return '<p>' . __('Perform bulk actions to multiple event categories.', 'event_espresso') . '</p>';
132
+		return '<p>'.__('Perform bulk actions to multiple event categories.', 'event_espresso').'</p>';
133 133
 	}
134 134
 
135 135
 	protected function _search_stop() {
136
-		return '<p>' . __('Search through event categories. The following sources will be searched: Event Category Name, Event Category Description.', 'event_espresso') . '</p>';
136
+		return '<p>'.__('Search through event categories. The following sources will be searched: Event Category Name, Event Category Description.', 'event_espresso').'</p>';
137 137
 	}
138 138
 	
139 139
 	protected function _new_category_stop() {
140
-		return '<p>' . __('Click here to add a new event category.', 'event_espresso') . '</p>';
140
+		return '<p>'.__('Click here to add a new event category.', 'event_espresso').'</p>';
141 141
 	}
142 142
 }
143 143
\ No newline at end of file
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,8 +6,9 @@
 block discarded – undo
6 6
  * @package Event Espresso
7 7
  * @subpackage messages
8 8
  */
9
-if (!defined('EVENT_ESPRESSO_VERSION') )
9
+if (!defined('EVENT_ESPRESSO_VERSION') ) {
10 10
 	exit('NO direct script access allowed');
11
+}
11 12
 
12 13
 /**
13 14
  *
Please login to merge, or discard this patch.
admin_pages/events/help_tours/Event_Default_Settings_Help_Tour.class.php 3 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
 		return $content;
60 60
 	}
61 61
 
62
-    //Options below are showing in full caps. Manually adding statuses and leaving code as is.
62
+	//Options below are showing in full caps. Manually adding statuses and leaving code as is.
63 63
 	protected function _stop_two() {
64 64
 		return '<p>' . sprintf( __('Specify whether the default registration status be set to Approved, Not Approved, or Pending Payment.', 'event_espresso'), EEH_Template::pretty_status( EEM_Registration::status_id_not_approved, 'lowercase' ), EEH_Template::pretty_status( EEM_Registration::status_id_pending_payment, 'lowercase' ), EEH_Template::pretty_status( EEM_Registration::status_id_approved, 'lowercase' ) ) . '</p>';
65 65
 	}
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if (!defined('EVENT_ESPRESSO_VERSION') )
2
+if ( ! defined('EVENT_ESPRESSO_VERSION'))
3 3
 	exit('NO direct script access allowed');
4 4
 
5 5
 /**
@@ -54,14 +54,14 @@  discard block
 block discarded – undo
54 54
 
55 55
 
56 56
 	protected function _stop_one() {
57
-		$content = '<h3>' . __('Event Default Settings', 'event_espresso') . '</h3>';
58
-		$content .= '<p>' . __('This tour of the Default Settings page will go over different areas of the screen to help you understand what they are used for.', 'event_espresso') . '</p>';
57
+		$content = '<h3>'.__('Event Default Settings', 'event_espresso').'</h3>';
58
+		$content .= '<p>'.__('This tour of the Default Settings page will go over different areas of the screen to help you understand what they are used for.', 'event_espresso').'</p>';
59 59
 		return $content;
60 60
 	}
61 61
 
62 62
     //Options below are showing in full caps. Manually adding statuses and leaving code as is.
63 63
 	protected function _stop_two() {
64
-		return '<p>' . sprintf( __('Specify whether the default registration status be set to Approved, Not Approved, or Pending Payment.', 'event_espresso'), EEH_Template::pretty_status( EEM_Registration::status_id_not_approved, 'lowercase' ), EEH_Template::pretty_status( EEM_Registration::status_id_pending_payment, 'lowercase' ), EEH_Template::pretty_status( EEM_Registration::status_id_approved, 'lowercase' ) ) . '</p>';
64
+		return '<p>'.sprintf(__('Specify whether the default registration status be set to Approved, Not Approved, or Pending Payment.', 'event_espresso'), EEH_Template::pretty_status(EEM_Registration::status_id_not_approved, 'lowercase'), EEH_Template::pretty_status(EEM_Registration::status_id_pending_payment, 'lowercase'), EEH_Template::pretty_status(EEM_Registration::status_id_approved, 'lowercase')).'</p>';
65 65
 	}
66 66
 
67 67
 }
68 68
\ No newline at end of file
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,8 +6,9 @@
 block discarded – undo
6 6
  * @package Event Espresso
7 7
  * @subpackage messages
8 8
  */
9
-if (!defined('EVENT_ESPRESSO_VERSION') )
9
+if (!defined('EVENT_ESPRESSO_VERSION') ) {
10 10
 	exit('NO direct script access allowed');
11
+}
11 12
 
12 13
 /**
13 14
  *
Please login to merge, or discard this patch.