Completed
Branch BUG/fix-table-exists-query (bbef99)
by
unknown
02:41 queued 26s
created
registrations/help_tours/Registration_Overview_Help_Tour.class.php 2 patches
Indentation   +253 added lines, -253 removed lines patch added patch discarded remove patch
@@ -15,275 +15,275 @@
 block discarded – undo
15 15
 class Registration_Overview_Help_Tour extends EE_Help_Tour
16 16
 {
17 17
 
18
-    protected function _set_tour_properties()
19
-    {
20
-        $this->_label = __('Registrations Overview Tour', 'event_espresso');
21
-        if (isset($this->_req_data['event_id'])) {
22
-            $this->_slug = 'registration-per-event-overview-joyride';
23
-        } else {
24
-            $this->_slug = 'registration-overview-joyride';
25
-        }
26
-    }
18
+	protected function _set_tour_properties()
19
+	{
20
+		$this->_label = __('Registrations Overview Tour', 'event_espresso');
21
+		if (isset($this->_req_data['event_id'])) {
22
+			$this->_slug = 'registration-per-event-overview-joyride';
23
+		} else {
24
+			$this->_slug = 'registration-overview-joyride';
25
+		}
26
+	}
27 27
 
28 28
 
29
-    protected function _set_tour_stops()
30
-    {
31
-        $this->_stops = array(
32
-            10  => array(
33
-                'content' => $this->_start(),
34
-            ),
35
-            20  => array(
36
-                'id'      => '_REG_ID',
37
-                'content' => $this->_reg_id_stop(),
38
-                'options' => array(
39
-                    'tipLocation'    => 'top',
40
-                    'tipAdjustmentX' => -20,
41
-                    'tipAdjustmentY' => -30,
42
-                ),
43
-            ),
44
-            30  => array(
45
-                'id'      => '_REG_count',
46
-                'content' => $this->_reg_count_stop(),
47
-                'options' => array(
48
-                    'tipLocation'    => 'top',
49
-                    'tipAdjustmentX' => -5,
50
-                    'tipAdjustmentY' => -30,
51
-                ),
52
-            ),
53
-            40  => array(
54
-                'id'      => 'ATT_fname',
55
-                'content' => $this->_attendee_name_stop(),
56
-                'options' => array(
57
-                    'tipLocation'    => 'top',
58
-                    'tipAdjustmentX' => -5,
59
-                    'tipAdjustmentY' => -30,
60
-                ),
61
-            ),
62
-            50  => array(
63
-                'id'      => '_REG_date',
64
-                'content' => $this->_reg_date_stop(),
65
-                'options' => array(
66
-                    'tipLocation'    => 'top',
67
-                    'tipAdjustmentX' => 5,
68
-                    'tipAdjustmentY' => -30,
69
-                ),
70
-            ),
71
-            60  => array(
72
-                'id'      => 'event_name',
73
-                'content' => $this->_event_name_stop(),
74
-                'options' => array(
75
-                    'tipLocation'    => 'top',
76
-                    'tipAdjustmentX' => -5,
77
-                    'tipAdjustmentY' => -30,
78
-                ),
79
-            ),
80
-            70  => array(
81
-                'id'      => 'DTT_EVT_start',
82
-                'content' => $this->_dtt_evt_start_stop(),
83
-                'options' => array(
84
-                    'tipLocation'    => 'top',
85
-                    'tipAdjustmentX' => 5,
86
-                    'tipAdjustmentY' => -30,
87
-                ),
88
-            ),
89
-            80  => array(
90
-                'id'      => '_REG_code',
91
-                'content' => $this->_reg_code_stop(),
92
-                'options' => array(
93
-                    'tipLocation'    => 'top',
94
-                    'tipAdjustmentX' => 0,
95
-                    'tipAdjustmentY' => -30,
96
-                ),
97
-            ),
98
-            90  => array(
99
-                'id'      => '_REG_final_price',
100
-                'content' => $this->_txn_total_stop(),
101
-                'options' => array(
102
-                    'tipLocation'    => 'left',
103
-                    'tipAdjustmentX' => 5,
104
-                    'tipAdjustmentY' => -50,
105
-                ),
106
-            ),
107
-            100 => array(
108
-                'id'      => 'actions',
109
-                'content' => $this->_actions_stop(),
110
-                'options' => array(
111
-                    'tipLocation'    => 'left',
112
-                    'tipAdjustmentX' => 0,
113
-                    'tipAdjustmentY' => -50,
114
-                ),
115
-            ),
116
-            110 => array(
117
-                'class'   => 'ee-list-table-legend-container',
118
-                'content' => $this->_legend_stop(),
119
-                'options' => array(
120
-                    'tipLocation'    => 'right',
121
-                    'tipAdjustmentX' => 15,
122
-                    'tipAdjustmentY' => -40,
123
-                ),
124
-            ),
125
-            120 => array(
126
-                'class'   => 'subsubsub',
127
-                'content' => $this->_views_stop(),
128
-                'options' => array(
129
-                    'tipLocation'    => 'right',
130
-                    'tipAdjustmentY' => -50,
131
-                    'tipAdjustmentX' => 15,
132
-                ),
133
-            ),
134
-            130 => array(
135
-                'class'   => 'bulkactions',
136
-                'content' => $this->_bulkactions_stop(),
137
-                'options' => array(
138
-                    'tipLocation'    => 'bottom',
139
-                    'tipAdjustmentY' => -30,
140
-                    'tipAdjustmentX' => 15,
141
-                ),
142
-            ),
143
-            140 => array(
144
-                'id'      => 'EVT_CAT',
145
-                'content' => $this->_stop_about_filters(),
146
-                'options' => array(
147
-                    'tipLocation'    => 'top',
148
-                    'tipAdjustmentY' => -40,
149
-                    'tipAdjustmentX' => 25,
150
-                ),
151
-            ),
152
-            150 => array(
153
-                'id'      => 'event-espresso_page_espresso_registrations-search-input',
154
-                'content' => $this->_search_stop(),
155
-                'options' => array(
156
-                    'tipLocation'    => 'left',
157
-                    'tipAdjustmentY' => -50,
158
-                    'tipAdjustmentX' => -15,
159
-                ),
160
-            ),
161
-        );
162
-    }
29
+	protected function _set_tour_stops()
30
+	{
31
+		$this->_stops = array(
32
+			10  => array(
33
+				'content' => $this->_start(),
34
+			),
35
+			20  => array(
36
+				'id'      => '_REG_ID',
37
+				'content' => $this->_reg_id_stop(),
38
+				'options' => array(
39
+					'tipLocation'    => 'top',
40
+					'tipAdjustmentX' => -20,
41
+					'tipAdjustmentY' => -30,
42
+				),
43
+			),
44
+			30  => array(
45
+				'id'      => '_REG_count',
46
+				'content' => $this->_reg_count_stop(),
47
+				'options' => array(
48
+					'tipLocation'    => 'top',
49
+					'tipAdjustmentX' => -5,
50
+					'tipAdjustmentY' => -30,
51
+				),
52
+			),
53
+			40  => array(
54
+				'id'      => 'ATT_fname',
55
+				'content' => $this->_attendee_name_stop(),
56
+				'options' => array(
57
+					'tipLocation'    => 'top',
58
+					'tipAdjustmentX' => -5,
59
+					'tipAdjustmentY' => -30,
60
+				),
61
+			),
62
+			50  => array(
63
+				'id'      => '_REG_date',
64
+				'content' => $this->_reg_date_stop(),
65
+				'options' => array(
66
+					'tipLocation'    => 'top',
67
+					'tipAdjustmentX' => 5,
68
+					'tipAdjustmentY' => -30,
69
+				),
70
+			),
71
+			60  => array(
72
+				'id'      => 'event_name',
73
+				'content' => $this->_event_name_stop(),
74
+				'options' => array(
75
+					'tipLocation'    => 'top',
76
+					'tipAdjustmentX' => -5,
77
+					'tipAdjustmentY' => -30,
78
+				),
79
+			),
80
+			70  => array(
81
+				'id'      => 'DTT_EVT_start',
82
+				'content' => $this->_dtt_evt_start_stop(),
83
+				'options' => array(
84
+					'tipLocation'    => 'top',
85
+					'tipAdjustmentX' => 5,
86
+					'tipAdjustmentY' => -30,
87
+				),
88
+			),
89
+			80  => array(
90
+				'id'      => '_REG_code',
91
+				'content' => $this->_reg_code_stop(),
92
+				'options' => array(
93
+					'tipLocation'    => 'top',
94
+					'tipAdjustmentX' => 0,
95
+					'tipAdjustmentY' => -30,
96
+				),
97
+			),
98
+			90  => array(
99
+				'id'      => '_REG_final_price',
100
+				'content' => $this->_txn_total_stop(),
101
+				'options' => array(
102
+					'tipLocation'    => 'left',
103
+					'tipAdjustmentX' => 5,
104
+					'tipAdjustmentY' => -50,
105
+				),
106
+			),
107
+			100 => array(
108
+				'id'      => 'actions',
109
+				'content' => $this->_actions_stop(),
110
+				'options' => array(
111
+					'tipLocation'    => 'left',
112
+					'tipAdjustmentX' => 0,
113
+					'tipAdjustmentY' => -50,
114
+				),
115
+			),
116
+			110 => array(
117
+				'class'   => 'ee-list-table-legend-container',
118
+				'content' => $this->_legend_stop(),
119
+				'options' => array(
120
+					'tipLocation'    => 'right',
121
+					'tipAdjustmentX' => 15,
122
+					'tipAdjustmentY' => -40,
123
+				),
124
+			),
125
+			120 => array(
126
+				'class'   => 'subsubsub',
127
+				'content' => $this->_views_stop(),
128
+				'options' => array(
129
+					'tipLocation'    => 'right',
130
+					'tipAdjustmentY' => -50,
131
+					'tipAdjustmentX' => 15,
132
+				),
133
+			),
134
+			130 => array(
135
+				'class'   => 'bulkactions',
136
+				'content' => $this->_bulkactions_stop(),
137
+				'options' => array(
138
+					'tipLocation'    => 'bottom',
139
+					'tipAdjustmentY' => -30,
140
+					'tipAdjustmentX' => 15,
141
+				),
142
+			),
143
+			140 => array(
144
+				'id'      => 'EVT_CAT',
145
+				'content' => $this->_stop_about_filters(),
146
+				'options' => array(
147
+					'tipLocation'    => 'top',
148
+					'tipAdjustmentY' => -40,
149
+					'tipAdjustmentX' => 25,
150
+				),
151
+			),
152
+			150 => array(
153
+				'id'      => 'event-espresso_page_espresso_registrations-search-input',
154
+				'content' => $this->_search_stop(),
155
+				'options' => array(
156
+					'tipLocation'    => 'left',
157
+					'tipAdjustmentY' => -50,
158
+					'tipAdjustmentX' => -15,
159
+				),
160
+			),
161
+		);
162
+	}
163 163
 
164 164
 
165
-    protected function _start()
166
-    {
167
-        $content = '<h3>' . __('Registration Overview', 'event_espresso') . '</h3>';
168
-        if (isset($this->_req_data['event_id'])) {
169
-            $content .= '<p>'
170
-                        . __(
171
-                            'An introduction to the Registration Overview page for a single event. This view is pretty much the same as the default overview registration page except you are only seeing registrations for a specific event.  There are also some changes to the available columns in this view.',
172
-                            'event_espresso'
173
-                        ) . '</p>';
174
-        } else {
175
-            $content .= '<p>'
176
-                        . __(
177
-                            'This tour of the Registration Overview page will go over different areas of the screen to help you understand what they are used for.',
178
-                            'event_espresso'
179
-                        ) . '</p>';
180
-        }
181
-        return $content;
182
-    }
165
+	protected function _start()
166
+	{
167
+		$content = '<h3>' . __('Registration Overview', 'event_espresso') . '</h3>';
168
+		if (isset($this->_req_data['event_id'])) {
169
+			$content .= '<p>'
170
+						. __(
171
+							'An introduction to the Registration Overview page for a single event. This view is pretty much the same as the default overview registration page except you are only seeing registrations for a specific event.  There are also some changes to the available columns in this view.',
172
+							'event_espresso'
173
+						) . '</p>';
174
+		} else {
175
+			$content .= '<p>'
176
+						. __(
177
+							'This tour of the Registration Overview page will go over different areas of the screen to help you understand what they are used for.',
178
+							'event_espresso'
179
+						) . '</p>';
180
+		}
181
+		return $content;
182
+	}
183 183
 
184
-    protected function _reg_id_stop()
185
-    {
186
-        return '<p>'
187
-               . __(
188
-                   'View the registration ID. Can be sorted in ascending or descending order.',
189
-                   'event_espresso'
190
-               ) . '</p>';
191
-    }
184
+	protected function _reg_id_stop()
185
+	{
186
+		return '<p>'
187
+			   . __(
188
+				   'View the registration ID. Can be sorted in ascending or descending order.',
189
+				   'event_espresso'
190
+			   ) . '</p>';
191
+	}
192 192
 
193
-    protected function _reg_count_stop()
194
-    {
195
-        return '<p>' . __('View registration number.', 'event_espresso') . '</p>';
196
-    }
193
+	protected function _reg_count_stop()
194
+	{
195
+		return '<p>' . __('View registration number.', 'event_espresso') . '</p>';
196
+	}
197 197
 
198
-    protected function _attendee_name_stop()
199
-    {
200
-        return '<p>'
201
-               . __(
202
-                   'View the name of the registrant. Can be sorted in ascending or descending order.',
203
-                   'event_espresso'
204
-               ) . '</p>';
205
-    }
198
+	protected function _attendee_name_stop()
199
+	{
200
+		return '<p>'
201
+			   . __(
202
+				   'View the name of the registrant. Can be sorted in ascending or descending order.',
203
+				   'event_espresso'
204
+			   ) . '</p>';
205
+	}
206 206
 
207
-    protected function _reg_date_stop()
208
-    {
209
-        return '<p>'
210
-               . __(
211
-                   'View registration date. Can be sorted in ascending or descending order.',
212
-                   'event_espresso'
213
-               ) . '</p>';
214
-    }
207
+	protected function _reg_date_stop()
208
+	{
209
+		return '<p>'
210
+			   . __(
211
+				   'View registration date. Can be sorted in ascending or descending order.',
212
+				   'event_espresso'
213
+			   ) . '</p>';
214
+	}
215 215
 
216
-    protected function _event_name_stop()
217
-    {
218
-        return '<p>'
219
-               . __(
220
-                   'View the name of the event. Can be sorted in ascending or descending order.',
221
-                   'event_espresso'
222
-               ) . '</p>';
223
-    }
216
+	protected function _event_name_stop()
217
+	{
218
+		return '<p>'
219
+			   . __(
220
+				   'View the name of the event. Can be sorted in ascending or descending order.',
221
+				   'event_espresso'
222
+			   ) . '</p>';
223
+	}
224 224
 
225
-    protected function _dtt_evt_start_stop()
226
-    {
227
-        return '<p>'
228
-               . __(
229
-                   'View the date of the event. Can be sorted in ascending or descending order.',
230
-                   'event_espresso'
231
-               ) . '</p>';
232
-    }
225
+	protected function _dtt_evt_start_stop()
226
+	{
227
+		return '<p>'
228
+			   . __(
229
+				   'View the date of the event. Can be sorted in ascending or descending order.',
230
+				   'event_espresso'
231
+			   ) . '</p>';
232
+	}
233 233
 
234
-    protected function _reg_code_stop()
235
-    {
236
-        return '<p>' . __('View registration code for a registrant.', 'event_espresso') . '</p>';
237
-    }
234
+	protected function _reg_code_stop()
235
+	{
236
+		return '<p>' . __('View registration code for a registrant.', 'event_espresso') . '</p>';
237
+	}
238 238
 
239
-    protected function _txn_total_stop()
240
-    {
241
-        return '<p>' . __('View price of registration.', 'event_espresso') . '</p>';
242
-    }
239
+	protected function _txn_total_stop()
240
+	{
241
+		return '<p>' . __('View price of registration.', 'event_espresso') . '</p>';
242
+	}
243 243
 
244
-    protected function _actions_stop()
245
-    {
246
-        return '<p>'
247
-               . __(
248
-                   'Perform an action to a registration. See legend in bottom left corner.',
249
-                   'event_espresso'
250
-               ) . '</p>';
251
-    }
244
+	protected function _actions_stop()
245
+	{
246
+		return '<p>'
247
+			   . __(
248
+				   'Perform an action to a registration. See legend in bottom left corner.',
249
+				   'event_espresso'
250
+			   ) . '</p>';
251
+	}
252 252
 
253
-    protected function _legend_stop()
254
-    {
255
-        return '<p>'
256
-               . __(
257
-                   'This is the legend that describes the actions available in the actions column. Also shows available statuses for a registration.',
258
-                   'event_espresso'
259
-               ) . '</p>';
260
-    }
253
+	protected function _legend_stop()
254
+	{
255
+		return '<p>'
256
+			   . __(
257
+				   'This is the legend that describes the actions available in the actions column. Also shows available statuses for a registration.',
258
+				   'event_espresso'
259
+			   ) . '</p>';
260
+	}
261 261
 
262
-    protected function _views_stop()
263
-    {
264
-        return '<p>'
265
-               . __(
266
-                   'You can select different views by time period or look at registrations which have been moved to the trash.',
267
-                   'event_espresso'
268
-               ) . '</p>';
269
-    }
262
+	protected function _views_stop()
263
+	{
264
+		return '<p>'
265
+			   . __(
266
+				   'You can select different views by time period or look at registrations which have been moved to the trash.',
267
+				   'event_espresso'
268
+			   ) . '</p>';
269
+	}
270 270
 
271
-    protected function _bulkactions_stop()
272
-    {
273
-        return '<p>' . __('Perform a bulk action to multiple registrations.', 'event_espresso') . '</p>';
274
-    }
271
+	protected function _bulkactions_stop()
272
+	{
273
+		return '<p>' . __('Perform a bulk action to multiple registrations.', 'event_espresso') . '</p>';
274
+	}
275 275
 
276
-    protected function _stop_about_filters()
277
-    {
278
-        return '<p>' . __('Registrations can be filtered by date, categories, or status.', 'event_espresso') . '</p>';
279
-    }
276
+	protected function _stop_about_filters()
277
+	{
278
+		return '<p>' . __('Registrations can be filtered by date, categories, or status.', 'event_espresso') . '</p>';
279
+	}
280 280
 
281
-    protected function _search_stop()
282
-    {
283
-        return '<p>'
284
-               . __(
285
-                   'Search through registrations. The following sources will be searched: Event Name, Event Description, First Name, Last Name, Biography, Email Address, Address, Comments, Notes, Registration Final Price, Registration Code, Registration Group Size, Ticket Name, and Ticket Description.',
286
-                   'event_espresso'
287
-               ) . '</p>';
288
-    }
281
+	protected function _search_stop()
282
+	{
283
+		return '<p>'
284
+			   . __(
285
+				   'Search through registrations. The following sources will be searched: Event Name, Event Description, First Name, Last Name, Biography, Email Address, Address, Comments, Notes, Registration Final Price, Registration Code, Registration Group Size, Ticket Name, and Ticket Description.',
286
+				   'event_espresso'
287
+			   ) . '</p>';
288
+	}
289 289
 }
Please login to merge, or discard this patch.
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -164,19 +164,19 @@  discard block
 block discarded – undo
164 164
 
165 165
     protected function _start()
166 166
     {
167
-        $content = '<h3>' . __('Registration Overview', 'event_espresso') . '</h3>';
167
+        $content = '<h3>'.__('Registration Overview', 'event_espresso').'</h3>';
168 168
         if (isset($this->_req_data['event_id'])) {
169 169
             $content .= '<p>'
170 170
                         . __(
171 171
                             'An introduction to the Registration Overview page for a single event. This view is pretty much the same as the default overview registration page except you are only seeing registrations for a specific event.  There are also some changes to the available columns in this view.',
172 172
                             'event_espresso'
173
-                        ) . '</p>';
173
+                        ).'</p>';
174 174
         } else {
175 175
             $content .= '<p>'
176 176
                         . __(
177 177
                             'This tour of the Registration Overview page will go over different areas of the screen to help you understand what they are used for.',
178 178
                             'event_espresso'
179
-                        ) . '</p>';
179
+                        ).'</p>';
180 180
         }
181 181
         return $content;
182 182
     }
@@ -187,12 +187,12 @@  discard block
 block discarded – undo
187 187
                . __(
188 188
                    'View the registration ID. Can be sorted in ascending or descending order.',
189 189
                    'event_espresso'
190
-               ) . '</p>';
190
+               ).'</p>';
191 191
     }
192 192
 
193 193
     protected function _reg_count_stop()
194 194
     {
195
-        return '<p>' . __('View registration number.', 'event_espresso') . '</p>';
195
+        return '<p>'.__('View registration number.', 'event_espresso').'</p>';
196 196
     }
197 197
 
198 198
     protected function _attendee_name_stop()
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
                . __(
202 202
                    'View the name of the registrant. Can be sorted in ascending or descending order.',
203 203
                    'event_espresso'
204
-               ) . '</p>';
204
+               ).'</p>';
205 205
     }
206 206
 
207 207
     protected function _reg_date_stop()
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
                . __(
211 211
                    'View registration date. Can be sorted in ascending or descending order.',
212 212
                    'event_espresso'
213
-               ) . '</p>';
213
+               ).'</p>';
214 214
     }
215 215
 
216 216
     protected function _event_name_stop()
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
                . __(
220 220
                    'View the name of the event. Can be sorted in ascending or descending order.',
221 221
                    'event_espresso'
222
-               ) . '</p>';
222
+               ).'</p>';
223 223
     }
224 224
 
225 225
     protected function _dtt_evt_start_stop()
@@ -228,17 +228,17 @@  discard block
 block discarded – undo
228 228
                . __(
229 229
                    'View the date of the event. Can be sorted in ascending or descending order.',
230 230
                    'event_espresso'
231
-               ) . '</p>';
231
+               ).'</p>';
232 232
     }
233 233
 
234 234
     protected function _reg_code_stop()
235 235
     {
236
-        return '<p>' . __('View registration code for a registrant.', 'event_espresso') . '</p>';
236
+        return '<p>'.__('View registration code for a registrant.', 'event_espresso').'</p>';
237 237
     }
238 238
 
239 239
     protected function _txn_total_stop()
240 240
     {
241
-        return '<p>' . __('View price of registration.', 'event_espresso') . '</p>';
241
+        return '<p>'.__('View price of registration.', 'event_espresso').'</p>';
242 242
     }
243 243
 
244 244
     protected function _actions_stop()
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
                . __(
248 248
                    'Perform an action to a registration. See legend in bottom left corner.',
249 249
                    'event_espresso'
250
-               ) . '</p>';
250
+               ).'</p>';
251 251
     }
252 252
 
253 253
     protected function _legend_stop()
@@ -256,7 +256,7 @@  discard block
 block discarded – undo
256 256
                . __(
257 257
                    'This is the legend that describes the actions available in the actions column. Also shows available statuses for a registration.',
258 258
                    'event_espresso'
259
-               ) . '</p>';
259
+               ).'</p>';
260 260
     }
261 261
 
262 262
     protected function _views_stop()
@@ -265,17 +265,17 @@  discard block
 block discarded – undo
265 265
                . __(
266 266
                    'You can select different views by time period or look at registrations which have been moved to the trash.',
267 267
                    'event_espresso'
268
-               ) . '</p>';
268
+               ).'</p>';
269 269
     }
270 270
 
271 271
     protected function _bulkactions_stop()
272 272
     {
273
-        return '<p>' . __('Perform a bulk action to multiple registrations.', 'event_espresso') . '</p>';
273
+        return '<p>'.__('Perform a bulk action to multiple registrations.', 'event_espresso').'</p>';
274 274
     }
275 275
 
276 276
     protected function _stop_about_filters()
277 277
     {
278
-        return '<p>' . __('Registrations can be filtered by date, categories, or status.', 'event_espresso') . '</p>';
278
+        return '<p>'.__('Registrations can be filtered by date, categories, or status.', 'event_espresso').'</p>';
279 279
     }
280 280
 
281 281
     protected function _search_stop()
@@ -284,6 +284,6 @@  discard block
 block discarded – undo
284 284
                . __(
285 285
                    'Search through registrations. The following sources will be searched: Event Name, Event Description, First Name, Last Name, Biography, Email Address, Address, Comments, Notes, Registration Final Price, Registration Code, Registration Group Size, Ticket Name, and Ticket Description.',
286 286
                    'event_espresso'
287
-               ) . '</p>';
287
+               ).'</p>';
288 288
     }
289 289
 }
Please login to merge, or discard this patch.
registrations/help_tours/Registration_Details_Help_Tour.class.php 2 patches
Indentation   +113 added lines, -113 removed lines patch added patch discarded remove patch
@@ -15,127 +15,127 @@
 block discarded – undo
15 15
 class Registration_Details_Help_Tour extends EE_Help_Tour
16 16
 {
17 17
 
18
-    protected function _set_tour_properties()
19
-    {
20
-        $this->_label = __('Registration Details Tour', 'event_espresso');
21
-        $this->_slug = 'registration-view-joyride';
22
-    }
18
+	protected function _set_tour_properties()
19
+	{
20
+		$this->_label = __('Registration Details Tour', 'event_espresso');
21
+		$this->_slug = 'registration-view-joyride';
22
+	}
23 23
 
24 24
 
25
-    protected function _set_tour_stops()
26
-    {
27
-        $this->_stops = array(
28
-            10 => array(
29
-                'content' => $this->_start(),
30
-            ),
31
-            20 => array(
32
-                'id'      => 'reg-admin-reg-details-reg-date-hdr',
33
-                'content' => $this->_reg_date_title(),
34
-                'options' => array(
35
-                    'tipLocation'    => 'top',
36
-                    'tipAdjustmentY' => -40,
37
-                    'tipAdjustmentX' => 200,
38
-                ),
39
-            ),
40
-            30 => array(
41
-                'id'      => 'reg-admin-reg-details-reg-status-hdr',
42
-                'content' => $this->_reg_details_stop(),
43
-                'options' => array(
44
-                    'tipLocation'    => 'top',
45
-                    'tipAdjustmentY' => -40,
46
-                    'tipAdjustmentX' => 200,
47
-                ),
48
-            ),
49
-            40 => array(
50
-                'id'      => 'display-additional-registration-session-info',
51
-                'content' => $this->_reg_details_table(),
52
-                'options' => array(
53
-                    'tipLocation'    => 'top',
54
-                    'tipAdjustmentY' => -225,
55
-                    'tipAdjustmentX' => 50,
56
-                ),
57
-            ),
58
-            50 => array(
59
-                'id'      => 'display-additional-registration-session-info',
60
-                'content' => $this->_display_additional_info_stop(),
61
-                'options' => array(
62
-                    'tipLocation'    => 'top',
63
-                    'tipAdjustmentY' => -35,
64
-                    'tipAdjustmentX' => 45,
65
-                ),
66
-            ),
67
-            60 => array(
68
-                'id'      => 'edit-reg-questions-mbox',
69
-                'content' => $this->_edit_reg_question_stop(),
70
-                'options' => array(
71
-                    'tipLocation'    => 'top',
72
-                    'tipAdjustmentY' => -30,
73
-                    'tipAdjustmentX' => 75,
74
-                ),
75
-            ),
76
-            70 => array(
77
-                'id'      => 'edit-reg-registrant-mbox',
78
-                'content' => $this->_attendee_details_stop(),
79
-                'options' => array(
80
-                    'tipLocation'    => 'left',
81
-                    'tipAdjustmentY' => 0,
82
-                    'tipAdjustmentX' => 0,
83
-                ),
84
-            ),
85
-        );
86
-    }
25
+	protected function _set_tour_stops()
26
+	{
27
+		$this->_stops = array(
28
+			10 => array(
29
+				'content' => $this->_start(),
30
+			),
31
+			20 => array(
32
+				'id'      => 'reg-admin-reg-details-reg-date-hdr',
33
+				'content' => $this->_reg_date_title(),
34
+				'options' => array(
35
+					'tipLocation'    => 'top',
36
+					'tipAdjustmentY' => -40,
37
+					'tipAdjustmentX' => 200,
38
+				),
39
+			),
40
+			30 => array(
41
+				'id'      => 'reg-admin-reg-details-reg-status-hdr',
42
+				'content' => $this->_reg_details_stop(),
43
+				'options' => array(
44
+					'tipLocation'    => 'top',
45
+					'tipAdjustmentY' => -40,
46
+					'tipAdjustmentX' => 200,
47
+				),
48
+			),
49
+			40 => array(
50
+				'id'      => 'display-additional-registration-session-info',
51
+				'content' => $this->_reg_details_table(),
52
+				'options' => array(
53
+					'tipLocation'    => 'top',
54
+					'tipAdjustmentY' => -225,
55
+					'tipAdjustmentX' => 50,
56
+				),
57
+			),
58
+			50 => array(
59
+				'id'      => 'display-additional-registration-session-info',
60
+				'content' => $this->_display_additional_info_stop(),
61
+				'options' => array(
62
+					'tipLocation'    => 'top',
63
+					'tipAdjustmentY' => -35,
64
+					'tipAdjustmentX' => 45,
65
+				),
66
+			),
67
+			60 => array(
68
+				'id'      => 'edit-reg-questions-mbox',
69
+				'content' => $this->_edit_reg_question_stop(),
70
+				'options' => array(
71
+					'tipLocation'    => 'top',
72
+					'tipAdjustmentY' => -30,
73
+					'tipAdjustmentX' => 75,
74
+				),
75
+			),
76
+			70 => array(
77
+				'id'      => 'edit-reg-registrant-mbox',
78
+				'content' => $this->_attendee_details_stop(),
79
+				'options' => array(
80
+					'tipLocation'    => 'left',
81
+					'tipAdjustmentY' => 0,
82
+					'tipAdjustmentX' => 0,
83
+				),
84
+			),
85
+		);
86
+	}
87 87
 
88 88
 
89
-    protected function _start()
90
-    {
91
-        $content = '<h3>' . __('Registration Details', 'event_espresso') . '</h3>';
92
-        $content .= '<p>'
93
-                    . __(
94
-                        'This tour of the Registration Details page will go over different areas of the screen to help you understand what they are used for.',
95
-                        'event_espresso'
96
-                    ) . '</p>';
97
-        return $content;
98
-    }
89
+	protected function _start()
90
+	{
91
+		$content = '<h3>' . __('Registration Details', 'event_espresso') . '</h3>';
92
+		$content .= '<p>'
93
+					. __(
94
+						'This tour of the Registration Details page will go over different areas of the screen to help you understand what they are used for.',
95
+						'event_espresso'
96
+					) . '</p>';
97
+		return $content;
98
+	}
99 99
 
100
-    protected function _reg_date_title()
101
-    {
102
-        return '<p>' . __('This is the date that the registration occurred on.', 'event_espresso') . '</p>';
103
-    }
100
+	protected function _reg_date_title()
101
+	{
102
+		return '<p>' . __('This is the date that the registration occurred on.', 'event_espresso') . '</p>';
103
+	}
104 104
 
105
-    protected function _reg_details_stop()
106
-    {
107
-        return '<p>'
108
-               . __(
109
-                   'The buttons below allow you to perform an action with a registration. The options are Approved, Not Approved, Declined, and Cancelled.',
110
-                   'event_espresso'
111
-               ) . '</p>';
112
-    }
105
+	protected function _reg_details_stop()
106
+	{
107
+		return '<p>'
108
+			   . __(
109
+				   'The buttons below allow you to perform an action with a registration. The options are Approved, Not Approved, Declined, and Cancelled.',
110
+				   'event_espresso'
111
+			   ) . '</p>';
112
+	}
113 113
 
114
-    protected function _reg_details_table()
115
-    {
116
-        return '<p>'
117
-               . __(
118
-                   'The registration items area displays various information including Line Item ID, Event Name, Event Date, Ticket Option, Price, Quantity, Line Total, Sales Tax, and the Grand Total.',
119
-                   'event_espresso'
120
-               ) . '</p>';
121
-    }
114
+	protected function _reg_details_table()
115
+	{
116
+		return '<p>'
117
+			   . __(
118
+				   'The registration items area displays various information including Line Item ID, Event Name, Event Date, Ticket Option, Price, Quantity, Line Total, Sales Tax, and the Grand Total.',
119
+				   'event_espresso'
120
+			   ) . '</p>';
121
+	}
122 122
 
123
-    protected function _display_additional_info_stop()
124
-    {
125
-        return '<p>'
126
-               . __(
127
-                   'You can view additional information about the registration by clicking on the link below. Examples of available information includes Registration ID, IP Address, and User Agent.',
128
-                   'event_espresso'
129
-               ) . '</p>';
130
-    }
123
+	protected function _display_additional_info_stop()
124
+	{
125
+		return '<p>'
126
+			   . __(
127
+				   'You can view additional information about the registration by clicking on the link below. Examples of available information includes Registration ID, IP Address, and User Agent.',
128
+				   'event_espresso'
129
+			   ) . '</p>';
130
+	}
131 131
 
132
-    protected function _edit_reg_question_stop()
133
-    {
134
-        return '<p>' . __('View the answers to your custom questions below.', 'event_espresso') . '</p>';
135
-    }
132
+	protected function _edit_reg_question_stop()
133
+	{
134
+		return '<p>' . __('View the answers to your custom questions below.', 'event_espresso') . '</p>';
135
+	}
136 136
 
137
-    protected function _attendee_details_stop()
138
-    {
139
-        return '<p>' . __('View details on the registrant attached to this registration.', 'event_espresso') . '</p>';
140
-    }
137
+	protected function _attendee_details_stop()
138
+	{
139
+		return '<p>' . __('View details on the registrant attached to this registration.', 'event_espresso') . '</p>';
140
+	}
141 141
 }
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -88,18 +88,18 @@  discard block
 block discarded – undo
88 88
 
89 89
     protected function _start()
90 90
     {
91
-        $content = '<h3>' . __('Registration Details', 'event_espresso') . '</h3>';
91
+        $content = '<h3>'.__('Registration Details', 'event_espresso').'</h3>';
92 92
         $content .= '<p>'
93 93
                     . __(
94 94
                         'This tour of the Registration Details page will go over different areas of the screen to help you understand what they are used for.',
95 95
                         'event_espresso'
96
-                    ) . '</p>';
96
+                    ).'</p>';
97 97
         return $content;
98 98
     }
99 99
 
100 100
     protected function _reg_date_title()
101 101
     {
102
-        return '<p>' . __('This is the date that the registration occurred on.', 'event_espresso') . '</p>';
102
+        return '<p>'.__('This is the date that the registration occurred on.', 'event_espresso').'</p>';
103 103
     }
104 104
 
105 105
     protected function _reg_details_stop()
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
                . __(
109 109
                    'The buttons below allow you to perform an action with a registration. The options are Approved, Not Approved, Declined, and Cancelled.',
110 110
                    'event_espresso'
111
-               ) . '</p>';
111
+               ).'</p>';
112 112
     }
113 113
 
114 114
     protected function _reg_details_table()
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
                . __(
118 118
                    'The registration items area displays various information including Line Item ID, Event Name, Event Date, Ticket Option, Price, Quantity, Line Total, Sales Tax, and the Grand Total.',
119 119
                    'event_espresso'
120
-               ) . '</p>';
120
+               ).'</p>';
121 121
     }
122 122
 
123 123
     protected function _display_additional_info_stop()
@@ -126,16 +126,16 @@  discard block
 block discarded – undo
126 126
                . __(
127 127
                    'You can view additional information about the registration by clicking on the link below. Examples of available information includes Registration ID, IP Address, and User Agent.',
128 128
                    'event_espresso'
129
-               ) . '</p>';
129
+               ).'</p>';
130 130
     }
131 131
 
132 132
     protected function _edit_reg_question_stop()
133 133
     {
134
-        return '<p>' . __('View the answers to your custom questions below.', 'event_espresso') . '</p>';
134
+        return '<p>'.__('View the answers to your custom questions below.', 'event_espresso').'</p>';
135 135
     }
136 136
 
137 137
     protected function _attendee_details_stop()
138 138
     {
139
-        return '<p>' . __('View details on the registrant attached to this registration.', 'event_espresso') . '</p>';
139
+        return '<p>'.__('View details on the registrant attached to this registration.', 'event_espresso').'</p>';
140 140
     }
141 141
 }
Please login to merge, or discard this patch.
registrations/help_tours/Registration_Reports_Help_Tour.class.php 2 patches
Indentation   +47 added lines, -47 removed lines patch added patch discarded remove patch
@@ -15,56 +15,56 @@
 block discarded – undo
15 15
 class Registration_Reports_Help_Tour extends EE_Help_Tour
16 16
 {
17 17
 
18
-    protected function _set_tour_properties()
19
-    {
20
-        $this->_label = __('Registration Reports Tour', 'event_espresso');
21
-        $this->_slug = 'registration-reports-joyride';
22
-    }
18
+	protected function _set_tour_properties()
19
+	{
20
+		$this->_label = __('Registration Reports Tour', 'event_espresso');
21
+		$this->_slug = 'registration-reports-joyride';
22
+	}
23 23
 
24 24
 
25
-    protected function _set_tour_stops()
26
-    {
27
-        $this->_stops = array(
28
-            10 => array(
29
-                'content' => $this->_start(),
30
-            ),
31
-            20 => array(
32
-                'id'      => 'reg-admin-registrations-per-day-report-dv',
33
-                'content' => $this->_reg_per_day_report_stop(),
34
-                'options' => array(
35
-                    'tipLocation'    => 'top',
36
-                    'tipAdjustmentY' => -40,
37
-                ),
38
-            ),
39
-            30 => array(
40
-                'id'      => 'reg-admin-registrations-per-event-report-dv',
41
-                'content' => $this->_reg_per_event_report_stop(),
42
-                'options' => array(
43
-                    'tipLocation'    => 'top',
44
-                    'tipAdjustmentY' => -40,
45
-                ),
46
-            ),
47
-        );
48
-    }
25
+	protected function _set_tour_stops()
26
+	{
27
+		$this->_stops = array(
28
+			10 => array(
29
+				'content' => $this->_start(),
30
+			),
31
+			20 => array(
32
+				'id'      => 'reg-admin-registrations-per-day-report-dv',
33
+				'content' => $this->_reg_per_day_report_stop(),
34
+				'options' => array(
35
+					'tipLocation'    => 'top',
36
+					'tipAdjustmentY' => -40,
37
+				),
38
+			),
39
+			30 => array(
40
+				'id'      => 'reg-admin-registrations-per-event-report-dv',
41
+				'content' => $this->_reg_per_event_report_stop(),
42
+				'options' => array(
43
+					'tipLocation'    => 'top',
44
+					'tipAdjustmentY' => -40,
45
+				),
46
+			),
47
+		);
48
+	}
49 49
 
50
-    protected function _start()
51
-    {
52
-        $content = '<h3>' . __('Registration Reports', 'event_espresso') . '</h3>';
53
-        $content .= '<p>'
54
-                    . __(
55
-                        'This tour of the Registration Reports page will go over different areas of the screen to help you understand what they are used for.',
56
-                        'event_espresso'
57
-                    ) . '</p>';
58
-        return $content;
59
-    }
50
+	protected function _start()
51
+	{
52
+		$content = '<h3>' . __('Registration Reports', 'event_espresso') . '</h3>';
53
+		$content .= '<p>'
54
+					. __(
55
+						'This tour of the Registration Reports page will go over different areas of the screen to help you understand what they are used for.',
56
+						'event_espresso'
57
+					) . '</p>';
58
+		return $content;
59
+	}
60 60
 
61
-    protected function _reg_per_day_report_stop()
62
-    {
63
-        return '<p>' . __('This graph shows registrations for each day.', 'event_espresso') . '</p>';
64
-    }
61
+	protected function _reg_per_day_report_stop()
62
+	{
63
+		return '<p>' . __('This graph shows registrations for each day.', 'event_espresso') . '</p>';
64
+	}
65 65
 
66
-    protected function _reg_per_event_report_stop()
67
-    {
68
-        return '<p>' . __('This graph shows registrations for each event.', 'event_espresso') . '</p>';
69
-    }
66
+	protected function _reg_per_event_report_stop()
67
+	{
68
+		return '<p>' . __('This graph shows registrations for each event.', 'event_espresso') . '</p>';
69
+	}
70 70
 }
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -49,22 +49,22 @@
 block discarded – undo
49 49
 
50 50
     protected function _start()
51 51
     {
52
-        $content = '<h3>' . __('Registration Reports', 'event_espresso') . '</h3>';
52
+        $content = '<h3>'.__('Registration Reports', 'event_espresso').'</h3>';
53 53
         $content .= '<p>'
54 54
                     . __(
55 55
                         'This tour of the Registration Reports page will go over different areas of the screen to help you understand what they are used for.',
56 56
                         'event_espresso'
57
-                    ) . '</p>';
57
+                    ).'</p>';
58 58
         return $content;
59 59
     }
60 60
 
61 61
     protected function _reg_per_day_report_stop()
62 62
     {
63
-        return '<p>' . __('This graph shows registrations for each day.', 'event_espresso') . '</p>';
63
+        return '<p>'.__('This graph shows registrations for each day.', 'event_espresso').'</p>';
64 64
     }
65 65
 
66 66
     protected function _reg_per_event_report_stop()
67 67
     {
68
-        return '<p>' . __('This graph shows registrations for each event.', 'event_espresso') . '</p>';
68
+        return '<p>'.__('This graph shows registrations for each event.', 'event_espresso').'</p>';
69 69
     }
70 70
 }
Please login to merge, or discard this patch.
admin_pages/registrations/help_tours/Registration_View_Help_Tour.class.php 2 patches
Indentation   +119 added lines, -119 removed lines patch added patch discarded remove patch
@@ -15,123 +15,123 @@
 block discarded – undo
15 15
 class Registration_View_Help_Tour extends EE_Help_Tour
16 16
 {
17 17
 
18
-    public function _set_tour_properties()
19
-    {
20
-        $this->_label = __('Registration View Tour', 'event_espresso');
21
-        $this->_slug = 'registration-view-joyride';
22
-    }
23
-
24
-
25
-    protected function _set_tour_stops()
26
-    {
27
-        $this->_stops = array(
28
-            10 => array(
29
-                'content' => $this->_start(),
30
-            ),
31
-            20 => array(
32
-                'id'      => 'reg-admin-reg-details-reg-date-hdr',
33
-                'content' => $this->_reg_date_title(),
34
-                'options' => array(
35
-                    'tipLocation'    => 'top',
36
-                    'tipAdjustmentY' => -40,
37
-                    'tipAdjustmentX' => 200,
38
-                ),
39
-            ),
40
-            30 => array(
41
-                'id'      => 'reg-admin-reg-details-reg-status-hdr',
42
-                'content' => $this->_reg_details_stop(),
43
-                'options' => array(
44
-                    'tipLocation'    => 'top',
45
-                    'tipAdjustmentY' => -50,
46
-                    'tipAdjustmentX' => 300,
47
-                ),
48
-            ),
49
-            40 => array(
50
-                'id'      => 'admin-primary-mbox-reg-session-info-tbl',
51
-                'content' => $this->_reg_details_table(),
52
-                'options' => array(
53
-                    'tipLocation'    => 'top',
54
-                    'tipAdjustmentY' => 50,
55
-                    'tipAdjustmentX' => 300,
56
-                ),
57
-            ),
58
-            50 => array(
59
-                'id'      => 'display-additional-registration-session-info',
60
-                'content' => $this->_display_additional_info_stop(),
61
-                'options' => array(
62
-                    'tipLocation'    => 'top',
63
-                    'tipAdjustmentY' => -30,
64
-                    'tipAdjustmentX' => 0,
65
-                ),
66
-            ),
67
-            60 => array(
68
-                'id'      => 'edit-reg-registrant-mbox',
69
-                'content' => $this->_attendee_details_stop(),
70
-                'options' => array(
71
-                    'tipLocation'    => 'left',
72
-                    'tipAdjustmentY' => 0,
73
-                ),
74
-            ),
75
-            70 => array(
76
-                'id'      => 'edit-reg-questions-mbox',
77
-                'content' => $this->_edit_reg_question_stop(),
78
-                'options' => array(
79
-                    'tipLocation'    => 'top',
80
-                    'tipAdjustmentY' => 0,
81
-                ),
82
-            ),
83
-        );
84
-    }
85
-
86
-
87
-    protected function _start()
88
-    {
89
-        $content = '<h3>' . __('Welcome to the Registration Details page!', 'event_espresso') . '</h3>';
90
-        $content .= '<p>' . __('An introduction to the registration details page', 'event_espresso') . '</p>';
91
-        return $content;
92
-    }
93
-
94
-
95
-    protected function _reg_date_title()
96
-    {
97
-        return '<p>' . __('About the reg date', 'event_espresso') . '</p>';
98
-    }
99
-
100
-
101
-    protected function _reg_details_stop()
102
-    {
103
-        return '<p>'
104
-               . __(
105
-                   'About the reg details area (pending, buttons they can push and what happens)',
106
-                   'event_espresso'
107
-               ) . '</p>';
108
-    }
109
-
110
-
111
-    protected function _reg_details_table()
112
-    {
113
-        return '<p>' . __('about the registration details metabox', 'event_espresso') . '</p>';
114
-    }
115
-
116
-
117
-    protected function _display_additional_info_stop()
118
-    {
119
-        return '<p>' . __('what happens when they click this link?  What\'s it here for', 'event_espresso') . '</p>';
120
-    }
121
-
122
-
123
-    protected function _attendee_details_stop()
124
-    {
125
-        return '<p>' . __('details on the registrant attached to this registration', 'event_espresso') . '</p>';
126
-    }
127
-
128
-
129
-    protected function _edit_reg_question_stop()
130
-    {
131
-        return '<p>'
132
-               . __(
133
-                   'info about how they can edit the questions related to this registration here',
134
-                   'event_espresso'
135
-               ) . '</p>';
136
-    }
18
+	public function _set_tour_properties()
19
+	{
20
+		$this->_label = __('Registration View Tour', 'event_espresso');
21
+		$this->_slug = 'registration-view-joyride';
22
+	}
23
+
24
+
25
+	protected function _set_tour_stops()
26
+	{
27
+		$this->_stops = array(
28
+			10 => array(
29
+				'content' => $this->_start(),
30
+			),
31
+			20 => array(
32
+				'id'      => 'reg-admin-reg-details-reg-date-hdr',
33
+				'content' => $this->_reg_date_title(),
34
+				'options' => array(
35
+					'tipLocation'    => 'top',
36
+					'tipAdjustmentY' => -40,
37
+					'tipAdjustmentX' => 200,
38
+				),
39
+			),
40
+			30 => array(
41
+				'id'      => 'reg-admin-reg-details-reg-status-hdr',
42
+				'content' => $this->_reg_details_stop(),
43
+				'options' => array(
44
+					'tipLocation'    => 'top',
45
+					'tipAdjustmentY' => -50,
46
+					'tipAdjustmentX' => 300,
47
+				),
48
+			),
49
+			40 => array(
50
+				'id'      => 'admin-primary-mbox-reg-session-info-tbl',
51
+				'content' => $this->_reg_details_table(),
52
+				'options' => array(
53
+					'tipLocation'    => 'top',
54
+					'tipAdjustmentY' => 50,
55
+					'tipAdjustmentX' => 300,
56
+				),
57
+			),
58
+			50 => array(
59
+				'id'      => 'display-additional-registration-session-info',
60
+				'content' => $this->_display_additional_info_stop(),
61
+				'options' => array(
62
+					'tipLocation'    => 'top',
63
+					'tipAdjustmentY' => -30,
64
+					'tipAdjustmentX' => 0,
65
+				),
66
+			),
67
+			60 => array(
68
+				'id'      => 'edit-reg-registrant-mbox',
69
+				'content' => $this->_attendee_details_stop(),
70
+				'options' => array(
71
+					'tipLocation'    => 'left',
72
+					'tipAdjustmentY' => 0,
73
+				),
74
+			),
75
+			70 => array(
76
+				'id'      => 'edit-reg-questions-mbox',
77
+				'content' => $this->_edit_reg_question_stop(),
78
+				'options' => array(
79
+					'tipLocation'    => 'top',
80
+					'tipAdjustmentY' => 0,
81
+				),
82
+			),
83
+		);
84
+	}
85
+
86
+
87
+	protected function _start()
88
+	{
89
+		$content = '<h3>' . __('Welcome to the Registration Details page!', 'event_espresso') . '</h3>';
90
+		$content .= '<p>' . __('An introduction to the registration details page', 'event_espresso') . '</p>';
91
+		return $content;
92
+	}
93
+
94
+
95
+	protected function _reg_date_title()
96
+	{
97
+		return '<p>' . __('About the reg date', 'event_espresso') . '</p>';
98
+	}
99
+
100
+
101
+	protected function _reg_details_stop()
102
+	{
103
+		return '<p>'
104
+			   . __(
105
+				   'About the reg details area (pending, buttons they can push and what happens)',
106
+				   'event_espresso'
107
+			   ) . '</p>';
108
+	}
109
+
110
+
111
+	protected function _reg_details_table()
112
+	{
113
+		return '<p>' . __('about the registration details metabox', 'event_espresso') . '</p>';
114
+	}
115
+
116
+
117
+	protected function _display_additional_info_stop()
118
+	{
119
+		return '<p>' . __('what happens when they click this link?  What\'s it here for', 'event_espresso') . '</p>';
120
+	}
121
+
122
+
123
+	protected function _attendee_details_stop()
124
+	{
125
+		return '<p>' . __('details on the registrant attached to this registration', 'event_espresso') . '</p>';
126
+	}
127
+
128
+
129
+	protected function _edit_reg_question_stop()
130
+	{
131
+		return '<p>'
132
+			   . __(
133
+				   'info about how they can edit the questions related to this registration here',
134
+				   'event_espresso'
135
+			   ) . '</p>';
136
+	}
137 137
 }
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -86,15 +86,15 @@  discard block
 block discarded – undo
86 86
 
87 87
     protected function _start()
88 88
     {
89
-        $content = '<h3>' . __('Welcome to the Registration Details page!', 'event_espresso') . '</h3>';
90
-        $content .= '<p>' . __('An introduction to the registration details page', 'event_espresso') . '</p>';
89
+        $content = '<h3>'.__('Welcome to the Registration Details page!', 'event_espresso').'</h3>';
90
+        $content .= '<p>'.__('An introduction to the registration details page', 'event_espresso').'</p>';
91 91
         return $content;
92 92
     }
93 93
 
94 94
 
95 95
     protected function _reg_date_title()
96 96
     {
97
-        return '<p>' . __('About the reg date', 'event_espresso') . '</p>';
97
+        return '<p>'.__('About the reg date', 'event_espresso').'</p>';
98 98
     }
99 99
 
100 100
 
@@ -104,25 +104,25 @@  discard block
 block discarded – undo
104 104
                . __(
105 105
                    'About the reg details area (pending, buttons they can push and what happens)',
106 106
                    'event_espresso'
107
-               ) . '</p>';
107
+               ).'</p>';
108 108
     }
109 109
 
110 110
 
111 111
     protected function _reg_details_table()
112 112
     {
113
-        return '<p>' . __('about the registration details metabox', 'event_espresso') . '</p>';
113
+        return '<p>'.__('about the registration details metabox', 'event_espresso').'</p>';
114 114
     }
115 115
 
116 116
 
117 117
     protected function _display_additional_info_stop()
118 118
     {
119
-        return '<p>' . __('what happens when they click this link?  What\'s it here for', 'event_espresso') . '</p>';
119
+        return '<p>'.__('what happens when they click this link?  What\'s it here for', 'event_espresso').'</p>';
120 120
     }
121 121
 
122 122
 
123 123
     protected function _attendee_details_stop()
124 124
     {
125
-        return '<p>' . __('details on the registrant attached to this registration', 'event_espresso') . '</p>';
125
+        return '<p>'.__('details on the registrant attached to this registration', 'event_espresso').'</p>';
126 126
     }
127 127
 
128 128
 
@@ -132,6 +132,6 @@  discard block
 block discarded – undo
132 132
                . __(
133 133
                    'info about how they can edit the questions related to this registration here',
134 134
                    'event_espresso'
135
-               ) . '</p>';
135
+               ).'</p>';
136 136
     }
137 137
 }
Please login to merge, or discard this patch.
payments/help_tours/Payment_Methods_Settings_Help_Tour.class.php 2 patches
Indentation   +40 added lines, -40 removed lines patch added patch discarded remove patch
@@ -15,48 +15,48 @@
 block discarded – undo
15 15
 class Payment_Methods_Settings_Help_Tour extends EE_Help_Tour
16 16
 {
17 17
 
18
-    protected function _set_tour_properties()
19
-    {
20
-        $this->_label = __('Payment Settings Tour', 'event_espresso');
21
-        $this->_slug = 'payment-settings-joyride';
22
-    }
18
+	protected function _set_tour_properties()
19
+	{
20
+		$this->_label = __('Payment Settings Tour', 'event_espresso');
21
+		$this->_slug = 'payment-settings-joyride';
22
+	}
23 23
 
24
-    protected function _set_tour_stops()
25
-    {
26
-        $this->_stops = array(
27
-            10 => array(
28
-                'content' => $this->_start(),
29
-            ),
30
-            20 => array(
31
-                'id'      => 'show_pending_payment_options',
32
-                'content' => $this->_show_pending_options_stop(),
33
-                'options' => array(
34
-                    'tipLocation'    => 'right',
35
-                    'tipAdjustmentY' => -50,
36
-                    'tipAdjustmentX' => 15,
37
-                ),
38
-            ),
39
-        );
40
-    }
24
+	protected function _set_tour_stops()
25
+	{
26
+		$this->_stops = array(
27
+			10 => array(
28
+				'content' => $this->_start(),
29
+			),
30
+			20 => array(
31
+				'id'      => 'show_pending_payment_options',
32
+				'content' => $this->_show_pending_options_stop(),
33
+				'options' => array(
34
+					'tipLocation'    => 'right',
35
+					'tipAdjustmentY' => -50,
36
+					'tipAdjustmentX' => 15,
37
+				),
38
+			),
39
+		);
40
+	}
41 41
 
42 42
 
43
-    protected function _start()
44
-    {
45
-        $content = '<h3>' . __('Payment Settings', 'event_espresso') . '</h3>';
46
-        $content .= '<p>'
47
-                    . __(
48
-                        'This tour of the Payment Settings page will go over different areas of the screen to help you understand what they are used for.',
49
-                        'event_espresso'
50
-                    ) . '</p>';
51
-        return $content;
52
-    }
43
+	protected function _start()
44
+	{
45
+		$content = '<h3>' . __('Payment Settings', 'event_espresso') . '</h3>';
46
+		$content .= '<p>'
47
+					. __(
48
+						'This tour of the Payment Settings page will go over different areas of the screen to help you understand what they are used for.',
49
+						'event_espresso'
50
+					) . '</p>';
51
+		return $content;
52
+	}
53 53
 
54
-    protected function _show_pending_options_stop()
55
-    {
56
-        return '<p>'
57
-               . __(
58
-                   'Specify whether to provide your registrants with the option to retry payments.',
59
-                   'event_espresso'
60
-               ) . '</p>';
61
-    }
54
+	protected function _show_pending_options_stop()
55
+	{
56
+		return '<p>'
57
+			   . __(
58
+				   'Specify whether to provide your registrants with the option to retry payments.',
59
+				   'event_espresso'
60
+			   ) . '</p>';
61
+	}
62 62
 }
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -42,12 +42,12 @@  discard block
 block discarded – undo
42 42
 
43 43
     protected function _start()
44 44
     {
45
-        $content = '<h3>' . __('Payment Settings', 'event_espresso') . '</h3>';
45
+        $content = '<h3>'.__('Payment Settings', 'event_espresso').'</h3>';
46 46
         $content .= '<p>'
47 47
                     . __(
48 48
                         'This tour of the Payment Settings page will go over different areas of the screen to help you understand what they are used for.',
49 49
                         'event_espresso'
50
-                    ) . '</p>';
50
+                    ).'</p>';
51 51
         return $content;
52 52
     }
53 53
 
@@ -57,6 +57,6 @@  discard block
 block discarded – undo
57 57
                . __(
58 58
                    'Specify whether to provide your registrants with the option to retry payments.',
59 59
                    'event_espresso'
60
-               ) . '</p>';
60
+               ).'</p>';
61 61
     }
62 62
 }
Please login to merge, or discard this patch.
payments/help_tours/Payment_Methods_Selection_Help_Tour.class.php 2 patches
Indentation   +74 added lines, -74 removed lines patch added patch discarded remove patch
@@ -15,84 +15,84 @@
 block discarded – undo
15 15
 class Payment_Methods_Selection_Help_Tour extends EE_Help_Tour
16 16
 {
17 17
 
18
-    protected function _set_tour_properties()
19
-    {
20
-        $this->_label = __('Payment Methods Tour', 'event_espresso');
21
-        $this->_slug = 'payment-methods-joyride';
22
-    }
18
+	protected function _set_tour_properties()
19
+	{
20
+		$this->_label = __('Payment Methods Tour', 'event_espresso');
21
+		$this->_slug = 'payment-methods-joyride';
22
+	}
23 23
 
24
-    protected function _set_tour_stops()
25
-    {
26
-        $this->_stops = array(
27
-            10 => array(
28
-                'content' => $this->_start(),
29
-            ),
30
-            20 => array(
31
-                'class'   => 'gateway_links',
32
-                'content' => $this->_gateway_links_stop(),
33
-                'options' => array(
34
-                    'tipLocation'    => 'top',
35
-                    'tipAdjustmentY' => -40,
36
-                    'tipAdjustmentX' => 20,
37
-                ),
38
-            ),
39
-            30 => array(
40
-                'id'      => 'postbox-container-2',
41
-                'content' => $this->_gateway_settings_metabox_stop(),
42
-                'options' => array(
43
-                    'tipLocation'    => 'top',
44
-                    'tipAdjustmentY' => -25,
45
-                    'tipAdjustmentX' => 20,
46
-                ),
47
-            ),
48
-            40 => array(
49
-                'content' => $this->_end_tour_stop(),
50
-                'options' => array(
51
-                    'tipLocation' => 'top',
52
-                ),
53
-            ),
54
-        );
55
-    }
24
+	protected function _set_tour_stops()
25
+	{
26
+		$this->_stops = array(
27
+			10 => array(
28
+				'content' => $this->_start(),
29
+			),
30
+			20 => array(
31
+				'class'   => 'gateway_links',
32
+				'content' => $this->_gateway_links_stop(),
33
+				'options' => array(
34
+					'tipLocation'    => 'top',
35
+					'tipAdjustmentY' => -40,
36
+					'tipAdjustmentX' => 20,
37
+				),
38
+			),
39
+			30 => array(
40
+				'id'      => 'postbox-container-2',
41
+				'content' => $this->_gateway_settings_metabox_stop(),
42
+				'options' => array(
43
+					'tipLocation'    => 'top',
44
+					'tipAdjustmentY' => -25,
45
+					'tipAdjustmentX' => 20,
46
+				),
47
+			),
48
+			40 => array(
49
+				'content' => $this->_end_tour_stop(),
50
+				'options' => array(
51
+					'tipLocation' => 'top',
52
+				),
53
+			),
54
+		);
55
+	}
56 56
 
57 57
 
58
-    protected function _start()
59
-    {
60
-        $content = '<h3>' . __('Payment Methods', 'event_espresso') . '</h3>';
61
-        $content .= '<p>'
62
-                    . __(
63
-                        'This tour of the Payment Methods page will go over different areas of the screen to help you understand what they are used for.',
64
-                        'event_espresso'
65
-                    )
66
-                    . '</p>';
67
-        return $content;
68
-    }
58
+	protected function _start()
59
+	{
60
+		$content = '<h3>' . __('Payment Methods', 'event_espresso') . '</h3>';
61
+		$content .= '<p>'
62
+					. __(
63
+						'This tour of the Payment Methods page will go over different areas of the screen to help you understand what they are used for.',
64
+						'event_espresso'
65
+					)
66
+					. '</p>';
67
+		return $content;
68
+	}
69 69
 
70
-    protected function _gateway_links_stop()
71
-    {
72
-        return '<p>'
73
-               . __(
74
-                   'Available payment methods are shown here. Clicking on a payment method will provide you with an option to activate that payment gateway.',
75
-                   'event_espresso'
76
-               )
77
-               . '</p>';
78
-    }
70
+	protected function _gateway_links_stop()
71
+	{
72
+		return '<p>'
73
+			   . __(
74
+				   'Available payment methods are shown here. Clicking on a payment method will provide you with an option to activate that payment gateway.',
75
+				   'event_espresso'
76
+			   )
77
+			   . '</p>';
78
+	}
79 79
 
80
-    protected function _gateway_settings_metabox_stop()
81
-    {
82
-        return '<p>'
83
-               . __(
84
-                   'A payment gateway must first be enabled. You will then be able to configure the payment gateway. Be sure to save settings after configuring your payment gateway.',
85
-                   'event_espresso'
86
-               )
87
-               . '</p>';
88
-    }
80
+	protected function _gateway_settings_metabox_stop()
81
+	{
82
+		return '<p>'
83
+			   . __(
84
+				   'A payment gateway must first be enabled. You will then be able to configure the payment gateway. Be sure to save settings after configuring your payment gateway.',
85
+				   'event_espresso'
86
+			   )
87
+			   . '</p>';
88
+	}
89 89
 
90
-    protected function _end_tour_stop()
91
-    {
92
-        return '<p>'
93
-               . __(
94
-                   'After configuring your payment gateway, go to the Event Editor to create your first event with Event Espresso.',
95
-                   'event_espresso'
96
-               ) . '</p>';
97
-    }
90
+	protected function _end_tour_stop()
91
+	{
92
+		return '<p>'
93
+			   . __(
94
+				   'After configuring your payment gateway, go to the Event Editor to create your first event with Event Espresso.',
95
+				   'event_espresso'
96
+			   ) . '</p>';
97
+	}
98 98
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 
58 58
     protected function _start()
59 59
     {
60
-        $content = '<h3>' . __('Payment Methods', 'event_espresso') . '</h3>';
60
+        $content = '<h3>'.__('Payment Methods', 'event_espresso').'</h3>';
61 61
         $content .= '<p>'
62 62
                     . __(
63 63
                         'This tour of the Payment Methods page will go over different areas of the screen to help you understand what they are used for.',
@@ -93,6 +93,6 @@  discard block
 block discarded – undo
93 93
                . __(
94 94
                    'After configuring your payment gateway, go to the Event Editor to create your first event with Event Espresso.',
95 95
                    'event_espresso'
96
-               ) . '</p>';
96
+               ).'</p>';
97 97
     }
98 98
 }
Please login to merge, or discard this patch.
admin_pages/payments/Payment_Log_Admin_List_Table.class.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
              . __(
57 57
                  'Download Results',
58 58
                  'event_espresso'
59
-             ) . "'>";
59
+             )."'>";
60 60
     }
61 61
 
62 62
 
Please login to merge, or discard this patch.
Indentation   +225 added lines, -225 removed lines patch added patch discarded remove patch
@@ -13,111 +13,111 @@  discard block
 block discarded – undo
13 13
 class Payment_Log_Admin_List_Table extends EE_Admin_List_Table
14 14
 {
15 15
 
16
-    /**
17
-     * @param \EE_Admin_Page $admin_page
18
-     * @return Payment_Log_Admin_List_Table
19
-     */
20
-    public function __construct($admin_page)
21
-    {
22
-        parent::__construct($admin_page);
23
-    }
24
-
25
-
26
-    /**
27
-     * _setup_data
28
-     *
29
-     * @return void
30
-     */
31
-    protected function _setup_data()
32
-    {
33
-        $this->_data = $this->_admin_page->get_payment_logs($this->_per_page, $this->_current_page);
34
-        // if (isset($this->_req_data['status']) && $this->_req_data['status'] == 'trash') {
35
-        //     $this->_data = $this->_admin_page->get_trashed_questions($this->_per_page, $this->_current_page, false);
36
-        // } else {
37
-        //     $this->_data = $this->_admin_page->get_questions($this->_per_page, $this->_current_page, false);
38
-        // }
39
-        $this->_all_data_count = $this->_admin_page->get_payment_logs($this->_per_page, $this->_current_page, true);
40
-        add_action(
41
-            'AHEE__EE_Admin_List_Table__extra_tablenav__after_bottom_buttons',
42
-            array($this, 'add_download_logs_checkbox')
43
-        );
44
-    }
45
-
46
-
47
-    /**
48
-     * add_download_logs_checkbox
49
-     * adds a checkbox to the bottom of the list table, instead of at the top with the rest of the filters
50
-     *
51
-     * @return void
52
-     */
53
-    public function add_download_logs_checkbox()
54
-    {
55
-        echo "<input type='submit' class='button-primary' id='download_results' name='download_results' value='"
56
-             . __(
57
-                 'Download Results',
58
-                 'event_espresso'
59
-             ) . "'>";
60
-    }
61
-
62
-
63
-    /**
64
-     * _set_properties
65
-     *
66
-     * @return void
67
-     */
68
-    protected function _set_properties()
69
-    {
70
-        $this->_wp_list_args = array(
71
-            'singular' => __('payment log', 'event_espresso'),
72
-            'plural'   => __('payment logs', 'event_espresso'),
73
-            'ajax'     => true, // for now,
74
-            'screen'   => $this->_admin_page->get_current_screen()->id,
75
-        );
76
-        $this->_columns = array(
77
-            'cb'       => '<input type="checkbox" />',
78
-            'id'       => __('ID', 'event_espresso'),
79
-            'LOG_time' => __('Time', 'event_espresso'),
80
-            'PMD_ID'   => __('Payment Method', 'event_espresso'),
81
-            'TXN_ID'   => __('Transaction ID', 'event_espresso'),
82
-        );
83
-        $this->_sortable_columns = array(
84
-            'LOG_time' => array('LOG_time' => true),
85
-        );
86
-        $this->_hidden_columns = array();
87
-    }
88
-
89
-
90
-    /**
91
-     * _get_table_filters
92
-     *
93
-     * @return array
94
-     */
95
-    protected function _get_table_filters()
96
-    {
97
-        $filters = array();
98
-        // todo we're currently using old functions here. We need to move things into the Events_Admin_Page() class as methods.
99
-        $payment_methods = EEM_Payment_Method::instance()->get_all();
100
-        $payment_method_names = array(
101
-            array('id' => 'all', 'text' => __("All", 'event_espresso')),
102
-            array('id' => '0', 'text' => __("Unknown Payment Method", 'event_espresso')),
103
-        );
104
-        foreach ($payment_methods as $payment_method) {
105
-            $payment_method_names[] = array('id' => $payment_method->ID(), 'text' => $payment_method->admin_name());
106
-        }
107
-        $filters[] = EEH_Form_Fields::select_input(
108
-            '_payment_method',
109
-            $payment_method_names,
110
-            isset($this->_req_data['_payment_method'])
111
-                ? $this->_req_data['_payment_method'] : 'all'
112
-        );
113
-        $start_date = isset($this->_req_data['payment-filter-start-date']) ? wp_strip_all_tags(
114
-            $this->_req_data['payment-filter-start-date']
115
-        ) : date('m/d/Y', strtotime('-6 months'));
116
-        $end_date = isset($this->_req_data['payment-filter-end-date']) ? wp_strip_all_tags(
117
-            $this->_req_data['payment-filter-end-date']
118
-        ) : date('m/d/Y');
119
-        ob_start();
120
-        ?>
16
+	/**
17
+	 * @param \EE_Admin_Page $admin_page
18
+	 * @return Payment_Log_Admin_List_Table
19
+	 */
20
+	public function __construct($admin_page)
21
+	{
22
+		parent::__construct($admin_page);
23
+	}
24
+
25
+
26
+	/**
27
+	 * _setup_data
28
+	 *
29
+	 * @return void
30
+	 */
31
+	protected function _setup_data()
32
+	{
33
+		$this->_data = $this->_admin_page->get_payment_logs($this->_per_page, $this->_current_page);
34
+		// if (isset($this->_req_data['status']) && $this->_req_data['status'] == 'trash') {
35
+		//     $this->_data = $this->_admin_page->get_trashed_questions($this->_per_page, $this->_current_page, false);
36
+		// } else {
37
+		//     $this->_data = $this->_admin_page->get_questions($this->_per_page, $this->_current_page, false);
38
+		// }
39
+		$this->_all_data_count = $this->_admin_page->get_payment_logs($this->_per_page, $this->_current_page, true);
40
+		add_action(
41
+			'AHEE__EE_Admin_List_Table__extra_tablenav__after_bottom_buttons',
42
+			array($this, 'add_download_logs_checkbox')
43
+		);
44
+	}
45
+
46
+
47
+	/**
48
+	 * add_download_logs_checkbox
49
+	 * adds a checkbox to the bottom of the list table, instead of at the top with the rest of the filters
50
+	 *
51
+	 * @return void
52
+	 */
53
+	public function add_download_logs_checkbox()
54
+	{
55
+		echo "<input type='submit' class='button-primary' id='download_results' name='download_results' value='"
56
+			 . __(
57
+				 'Download Results',
58
+				 'event_espresso'
59
+			 ) . "'>";
60
+	}
61
+
62
+
63
+	/**
64
+	 * _set_properties
65
+	 *
66
+	 * @return void
67
+	 */
68
+	protected function _set_properties()
69
+	{
70
+		$this->_wp_list_args = array(
71
+			'singular' => __('payment log', 'event_espresso'),
72
+			'plural'   => __('payment logs', 'event_espresso'),
73
+			'ajax'     => true, // for now,
74
+			'screen'   => $this->_admin_page->get_current_screen()->id,
75
+		);
76
+		$this->_columns = array(
77
+			'cb'       => '<input type="checkbox" />',
78
+			'id'       => __('ID', 'event_espresso'),
79
+			'LOG_time' => __('Time', 'event_espresso'),
80
+			'PMD_ID'   => __('Payment Method', 'event_espresso'),
81
+			'TXN_ID'   => __('Transaction ID', 'event_espresso'),
82
+		);
83
+		$this->_sortable_columns = array(
84
+			'LOG_time' => array('LOG_time' => true),
85
+		);
86
+		$this->_hidden_columns = array();
87
+	}
88
+
89
+
90
+	/**
91
+	 * _get_table_filters
92
+	 *
93
+	 * @return array
94
+	 */
95
+	protected function _get_table_filters()
96
+	{
97
+		$filters = array();
98
+		// todo we're currently using old functions here. We need to move things into the Events_Admin_Page() class as methods.
99
+		$payment_methods = EEM_Payment_Method::instance()->get_all();
100
+		$payment_method_names = array(
101
+			array('id' => 'all', 'text' => __("All", 'event_espresso')),
102
+			array('id' => '0', 'text' => __("Unknown Payment Method", 'event_espresso')),
103
+		);
104
+		foreach ($payment_methods as $payment_method) {
105
+			$payment_method_names[] = array('id' => $payment_method->ID(), 'text' => $payment_method->admin_name());
106
+		}
107
+		$filters[] = EEH_Form_Fields::select_input(
108
+			'_payment_method',
109
+			$payment_method_names,
110
+			isset($this->_req_data['_payment_method'])
111
+				? $this->_req_data['_payment_method'] : 'all'
112
+		);
113
+		$start_date = isset($this->_req_data['payment-filter-start-date']) ? wp_strip_all_tags(
114
+			$this->_req_data['payment-filter-start-date']
115
+		) : date('m/d/Y', strtotime('-6 months'));
116
+		$end_date = isset($this->_req_data['payment-filter-end-date']) ? wp_strip_all_tags(
117
+			$this->_req_data['payment-filter-end-date']
118
+		) : date('m/d/Y');
119
+		ob_start();
120
+		?>
121 121
         <label for="txn-filter-start-date"><?php _e('Display Transactions from ', 'event_espresso'); ?></label>
122 122
         <input id="payment-filter-start-date" class="datepicker" type="text" value="<?php echo $start_date; ?>"
123 123
                name="payment-filter-start-date" size="15"/>
@@ -125,124 +125,124 @@  discard block
 block discarded – undo
125 125
         <input id="payment-filter-end-date" class="datepicker" type="text" value="<?php echo $end_date; ?>"
126 126
                name="payment-filter-end-date" size="15"/>
127 127
         <?php
128
-        $filters[] = ob_get_clean();
129
-        return $filters;
130
-    }
131
-
132
-
133
-    /**
134
-     * _add_view_counts
135
-     *
136
-     * @return void
137
-     */
138
-    protected function _add_view_counts()
139
-    {
140
-        $this->_views['all']['count'] = $this->_admin_page->get_payment_logs(
141
-            $this->_per_page,
142
-            $this->_current_page,
143
-            true
144
-        );
145
-    }
146
-
147
-
148
-    /**
149
-     * column_cb
150
-     *
151
-     * @param \EE_Change_Log $item
152
-     * @return string
153
-     */
154
-    public function column_cb($item)
155
-    {
156
-        return sprintf('<input type="checkbox" class="option_id" name="checkbox[%1$d]" value="%1$d" />', $item->ID());
157
-    }
158
-
159
-
160
-    /**
161
-     * column_id
162
-     *
163
-     * @param \EE_Change_Log $item
164
-     * @return string
165
-     */
166
-    public function column_id(EE_Change_Log $item)
167
-    {
168
-        $details_query_args = array(
169
-            'action' => 'payment_log_details',
170
-            'ID'     => $item->ID(),
171
-        );
172
-        $url = EE_Admin_Page::add_query_args_and_nonce($details_query_args, EE_PAYMENTS_ADMIN_URL);
173
-        return "<a href='$url'>{$item->ID()}</a>";
174
-    }
175
-
176
-
177
-    /**
178
-     * column_LOG_time
179
-     *
180
-     * @param \EE_Change_Log $item
181
-     * @return string
182
-     */
183
-    public function column_LOG_time(EE_Change_Log $item)
184
-    {
185
-        return $item->get_datetime('LOG_time');
186
-    }
187
-
188
-
189
-    /**
190
-     * column_PMD_ID
191
-     *
192
-     * @param \EE_Change_Log $item
193
-     * @return string
194
-     */
195
-    public function column_PMD_ID(EE_Change_Log $item)
196
-    {
197
-        if ($item->object() instanceof EE_Payment_Method) {
198
-            return $item->object()->admin_name();
199
-        } elseif ($item->object() instanceof EE_Payment && $item->object()->payment_method()) {
200
-            return $item->object()->payment_method()->admin_name();
201
-        } elseif ($item->object() instanceof EE_Transaction) {
202
-            return esc_html__('Unknown', 'event_espresso');
203
-        } else {
204
-            return esc_html__("No longer exists", 'event_espresso');
205
-        }
206
-    }
207
-
208
-
209
-    /**
210
-     * column_TXN_ID
211
-     *
212
-     * @param \EE_Change_Log $item
213
-     * @return string
214
-     */
215
-    public function column_TXN_ID(EE_Change_Log $item)
216
-    {
217
-        if ($item->object() instanceof EE_Payment) {
218
-            $transaction_id = $item->object()->TXN_ID();
219
-        } elseif ($item->object() instanceof EE_Transaction) {
220
-            $transaction_id = $item->object()->ID();
221
-        } else {
222
-            $transaction_id = null;
223
-        }
224
-        if ($transaction_id
225
-            && EE_Registry::instance()->CAP->current_user_can(
226
-                'ee_read_transaction',
227
-                'espresso_transactions_view_transaction',
228
-                $transaction_id
229
-            )) {
230
-            $view_txn_lnk_url = EE_Admin_Page::add_query_args_and_nonce(
231
-                array('action' => 'view_transaction', 'TXN_ID' => $transaction_id),
232
-                TXN_ADMIN_URL
233
-            );
234
-            return '<a href="'
235
-                   . $view_txn_lnk_url
236
-                   . '"  title="'
237
-                   . sprintf(
238
-                       esc_attr__('click to view transaction #%s', 'event_espresso'),
239
-                       $transaction_id
240
-                   )
241
-                   . '">'
242
-                   . sprintf(esc_html__('view txn %s', 'event_espresso'), $transaction_id)
243
-                   . '</a>';
244
-        }
245
-        // No transaction id or use can not view the transaction.
246
-        return __("Unable to find transaction", 'event_espresso');
247
-    }
128
+		$filters[] = ob_get_clean();
129
+		return $filters;
130
+	}
131
+
132
+
133
+	/**
134
+	 * _add_view_counts
135
+	 *
136
+	 * @return void
137
+	 */
138
+	protected function _add_view_counts()
139
+	{
140
+		$this->_views['all']['count'] = $this->_admin_page->get_payment_logs(
141
+			$this->_per_page,
142
+			$this->_current_page,
143
+			true
144
+		);
145
+	}
146
+
147
+
148
+	/**
149
+	 * column_cb
150
+	 *
151
+	 * @param \EE_Change_Log $item
152
+	 * @return string
153
+	 */
154
+	public function column_cb($item)
155
+	{
156
+		return sprintf('<input type="checkbox" class="option_id" name="checkbox[%1$d]" value="%1$d" />', $item->ID());
157
+	}
158
+
159
+
160
+	/**
161
+	 * column_id
162
+	 *
163
+	 * @param \EE_Change_Log $item
164
+	 * @return string
165
+	 */
166
+	public function column_id(EE_Change_Log $item)
167
+	{
168
+		$details_query_args = array(
169
+			'action' => 'payment_log_details',
170
+			'ID'     => $item->ID(),
171
+		);
172
+		$url = EE_Admin_Page::add_query_args_and_nonce($details_query_args, EE_PAYMENTS_ADMIN_URL);
173
+		return "<a href='$url'>{$item->ID()}</a>";
174
+	}
175
+
176
+
177
+	/**
178
+	 * column_LOG_time
179
+	 *
180
+	 * @param \EE_Change_Log $item
181
+	 * @return string
182
+	 */
183
+	public function column_LOG_time(EE_Change_Log $item)
184
+	{
185
+		return $item->get_datetime('LOG_time');
186
+	}
187
+
188
+
189
+	/**
190
+	 * column_PMD_ID
191
+	 *
192
+	 * @param \EE_Change_Log $item
193
+	 * @return string
194
+	 */
195
+	public function column_PMD_ID(EE_Change_Log $item)
196
+	{
197
+		if ($item->object() instanceof EE_Payment_Method) {
198
+			return $item->object()->admin_name();
199
+		} elseif ($item->object() instanceof EE_Payment && $item->object()->payment_method()) {
200
+			return $item->object()->payment_method()->admin_name();
201
+		} elseif ($item->object() instanceof EE_Transaction) {
202
+			return esc_html__('Unknown', 'event_espresso');
203
+		} else {
204
+			return esc_html__("No longer exists", 'event_espresso');
205
+		}
206
+	}
207
+
208
+
209
+	/**
210
+	 * column_TXN_ID
211
+	 *
212
+	 * @param \EE_Change_Log $item
213
+	 * @return string
214
+	 */
215
+	public function column_TXN_ID(EE_Change_Log $item)
216
+	{
217
+		if ($item->object() instanceof EE_Payment) {
218
+			$transaction_id = $item->object()->TXN_ID();
219
+		} elseif ($item->object() instanceof EE_Transaction) {
220
+			$transaction_id = $item->object()->ID();
221
+		} else {
222
+			$transaction_id = null;
223
+		}
224
+		if ($transaction_id
225
+			&& EE_Registry::instance()->CAP->current_user_can(
226
+				'ee_read_transaction',
227
+				'espresso_transactions_view_transaction',
228
+				$transaction_id
229
+			)) {
230
+			$view_txn_lnk_url = EE_Admin_Page::add_query_args_and_nonce(
231
+				array('action' => 'view_transaction', 'TXN_ID' => $transaction_id),
232
+				TXN_ADMIN_URL
233
+			);
234
+			return '<a href="'
235
+				   . $view_txn_lnk_url
236
+				   . '"  title="'
237
+				   . sprintf(
238
+					   esc_attr__('click to view transaction #%s', 'event_espresso'),
239
+					   $transaction_id
240
+				   )
241
+				   . '">'
242
+				   . sprintf(esc_html__('view txn %s', 'event_espresso'), $transaction_id)
243
+				   . '</a>';
244
+		}
245
+		// No transaction id or use can not view the transaction.
246
+		return __("Unable to find transaction", 'event_espresso');
247
+	}
248 248
 }
Please login to merge, or discard this patch.
admin_pages/transactions/help_tours/Transaction_Reports_Help_Tour.class.php 2 patches
Indentation   +47 added lines, -47 removed lines patch added patch discarded remove patch
@@ -15,56 +15,56 @@
 block discarded – undo
15 15
 class Transaction_Reports_Help_Tour extends EE_Help_Tour
16 16
 {
17 17
 
18
-    protected function _set_tour_properties()
19
-    {
20
-        $this->_label = __('Transaction Reports Tour', 'event_espresso');
21
-        $this->_slug = 'transaction-reports-joyride';
22
-    }
18
+	protected function _set_tour_properties()
19
+	{
20
+		$this->_label = __('Transaction Reports Tour', 'event_espresso');
21
+		$this->_slug = 'transaction-reports-joyride';
22
+	}
23 23
 
24
-    protected function _set_tour_stops()
25
-    {
26
-        $this->_stops = array(
27
-            10 => array(
28
-                'content' => $this->_start(),
29
-            ),
30
-            20 => array(
31
-                'id'      => 'txn-admin-revenue-per-day-report-dv',
32
-                'content' => $this->_txn_per_day_report(),
33
-                'options' => array(
34
-                    'tipLocation'    => 'top',
35
-                    'tipAdjustmentY' => -40,
36
-                ),
37
-            ),
38
-            30 => array(
39
-                'id'      => 'txn-admin-revenue-per-event-report-dv',
40
-                'content' => $this->_txn_per_event_report(),
41
-                'options' => array(
42
-                    'tipLocation'    => 'top',
43
-                    'tipAdjustmentY' => -40,
44
-                ),
45
-            ),
46
-        );
47
-    }
24
+	protected function _set_tour_stops()
25
+	{
26
+		$this->_stops = array(
27
+			10 => array(
28
+				'content' => $this->_start(),
29
+			),
30
+			20 => array(
31
+				'id'      => 'txn-admin-revenue-per-day-report-dv',
32
+				'content' => $this->_txn_per_day_report(),
33
+				'options' => array(
34
+					'tipLocation'    => 'top',
35
+					'tipAdjustmentY' => -40,
36
+				),
37
+			),
38
+			30 => array(
39
+				'id'      => 'txn-admin-revenue-per-event-report-dv',
40
+				'content' => $this->_txn_per_event_report(),
41
+				'options' => array(
42
+					'tipLocation'    => 'top',
43
+					'tipAdjustmentY' => -40,
44
+				),
45
+			),
46
+		);
47
+	}
48 48
 
49 49
 
50
-    protected function _start()
51
-    {
52
-        $content = '<h3>' . __('Transaction Reports', 'event_espresso') . '</h3>';
53
-        $content .= '<p>'
54
-                    . __(
55
-                        'This tour of the Transaction Reports page will go over different areas of the screen to help you understand what they are used for.',
56
-                        'event_espresso'
57
-                    ) . '</p>';
58
-        return $content;
59
-    }
50
+	protected function _start()
51
+	{
52
+		$content = '<h3>' . __('Transaction Reports', 'event_espresso') . '</h3>';
53
+		$content .= '<p>'
54
+					. __(
55
+						'This tour of the Transaction Reports page will go over different areas of the screen to help you understand what they are used for.',
56
+						'event_espresso'
57
+					) . '</p>';
58
+		return $content;
59
+	}
60 60
 
61
-    protected function _txn_per_day_report()
62
-    {
63
-        return '<p>' . __('This graph shows revenue for each day.', 'event_espresso') . '</p>';
64
-    }
61
+	protected function _txn_per_day_report()
62
+	{
63
+		return '<p>' . __('This graph shows revenue for each day.', 'event_espresso') . '</p>';
64
+	}
65 65
 
66
-    protected function _txn_per_event_report()
67
-    {
68
-        return '<p>' . __('This graph shows revenue for each event.', 'event_espresso') . '</p>';
69
-    }
66
+	protected function _txn_per_event_report()
67
+	{
68
+		return '<p>' . __('This graph shows revenue for each event.', 'event_espresso') . '</p>';
69
+	}
70 70
 }
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -49,22 +49,22 @@
 block discarded – undo
49 49
 
50 50
     protected function _start()
51 51
     {
52
-        $content = '<h3>' . __('Transaction Reports', 'event_espresso') . '</h3>';
52
+        $content = '<h3>'.__('Transaction Reports', 'event_espresso').'</h3>';
53 53
         $content .= '<p>'
54 54
                     . __(
55 55
                         'This tour of the Transaction Reports page will go over different areas of the screen to help you understand what they are used for.',
56 56
                         'event_espresso'
57
-                    ) . '</p>';
57
+                    ).'</p>';
58 58
         return $content;
59 59
     }
60 60
 
61 61
     protected function _txn_per_day_report()
62 62
     {
63
-        return '<p>' . __('This graph shows revenue for each day.', 'event_espresso') . '</p>';
63
+        return '<p>'.__('This graph shows revenue for each day.', 'event_espresso').'</p>';
64 64
     }
65 65
 
66 66
     protected function _txn_per_event_report()
67 67
     {
68
-        return '<p>' . __('This graph shows revenue for each event.', 'event_espresso') . '</p>';
68
+        return '<p>'.__('This graph shows revenue for each event.', 'event_espresso').'</p>';
69 69
     }
70 70
 }
Please login to merge, or discard this patch.
admin_pages/transactions/help_tours/Transaction_Details_Help_Tour.class.php 2 patches
Indentation   +151 added lines, -151 removed lines patch added patch discarded remove patch
@@ -15,172 +15,172 @@
 block discarded – undo
15 15
 class Transaction_Details_Help_Tour extends EE_Help_Tour
16 16
 {
17 17
 
18
-    protected function _set_tour_properties()
19
-    {
20
-        $this->_label = __('View Transaction Tour', 'event_espresso');
21
-        $this->_slug = 'transaction-details-joyride';
22
-    }
18
+	protected function _set_tour_properties()
19
+	{
20
+		$this->_label = __('View Transaction Tour', 'event_espresso');
21
+		$this->_slug = 'transaction-details-joyride';
22
+	}
23 23
 
24 24
 
25
-    protected function _set_tour_stops()
26
-    {
27
-        $this->_stops = array(
28
-            10 => array(
29
-                'content' => $this->_start(),
30
-            ),
31
-            20 => array(
32
-                'id'      => 'txn-date-h2',
33
-                'content' => $this->_txn_date_h2_stop(),
34
-                'options' => array(
35
-                    'tipLocation'    => 'top',
36
-                    'tipAdjustmentY' => -40,
37
-                    'tipAdjustmentX' => 200,
38
-                ),
39
-            ),
40
-            30 => array(
41
-                'id'      => 'txn-status-h2',
42
-                'content' => $this->_txn_status_h2_stop(),
43
-                'options' => array(
44
-                    'tipLocation'    => 'top',
45
-                    'tipAdjustmentY' => -40,
46
-                    'tipAdjustmentX' => 200,
47
-                ),
48
-            ),
49
-            40 => array(
50
-                /*'id' => 'txn-amount-due-h2',*/
51
-                'content' => $this->_txn_amount_due_h2_stop(),
52
-                /*'options' => array(
25
+	protected function _set_tour_stops()
26
+	{
27
+		$this->_stops = array(
28
+			10 => array(
29
+				'content' => $this->_start(),
30
+			),
31
+			20 => array(
32
+				'id'      => 'txn-date-h2',
33
+				'content' => $this->_txn_date_h2_stop(),
34
+				'options' => array(
35
+					'tipLocation'    => 'top',
36
+					'tipAdjustmentY' => -40,
37
+					'tipAdjustmentX' => 200,
38
+				),
39
+			),
40
+			30 => array(
41
+				'id'      => 'txn-status-h2',
42
+				'content' => $this->_txn_status_h2_stop(),
43
+				'options' => array(
44
+					'tipLocation'    => 'top',
45
+					'tipAdjustmentY' => -40,
46
+					'tipAdjustmentX' => 200,
47
+				),
48
+			),
49
+			40 => array(
50
+				/*'id' => 'txn-amount-due-h2',*/
51
+				'content' => $this->_txn_amount_due_h2_stop(),
52
+				/*'options' => array(
53 53
                     'tipLocation' => 'top',
54 54
                     'tipAdjustmentY' => -40,
55 55
                     'tipAdjustmentX' => 200
56 56
                     )*/
57
-            ),
58
-            50 => array(
59
-                'id'      => 'edit-txn-details-mbox',
60
-                'content' => $this->_txn_details_metabox_stop(),
61
-                'options' => array(
62
-                    'tipLocation'    => 'top',
63
-                    'tipAdjustmentY' => -30,
64
-                    'tipAdjustmentX' => 60,
65
-                ),
66
-            ),
67
-            55 => array(
68
-                'id'      => 'display-additional-transaction-session-info',
69
-                'content' => $this->_txn_session_info_stop(),
70
-                'options' => array(
71
-                    'tipLocation'    => 'top',
72
-                    'tipAdjustmentY' => -35,
73
-                    'tipAdjustmentX' => 60,
74
-                ),
75
-            ),
76
-            60 => array(
77
-                'id'      => 'edit-txn-attendees-mbox',
78
-                'content' => $this->_txn_attendees_metabox_stop(),
79
-                'options' => array(
80
-                    'tipLocation'    => 'top',
81
-                    'tipAdjustmentY' => -35,
82
-                    'tipAdjustmentX' => 60,
83
-                ),
84
-            ),
85
-            70 => array(
86
-                'id'      => 'edit-txn-registrant-mbox',
87
-                'content' => $this->_txn_primary_reg_metabox_stop(),
88
-                'options' => array(
89
-                    'tipLocation'    => 'left',
90
-                    'tipAdjustmentY' => -20,
91
-                    'tipAdjustmentX' => -10,
92
-                ),
93
-            ),
94
-            80 => array(
95
-                'id'      => 'edit-txn-billing-info-mbox',
96
-                'content' => $this->_txn_billing_metabox_stop(),
97
-                'options' => array(
98
-                    'tipLocation'    => 'left',
99
-                    'tipAdjustmentY' => -20,
100
-                    'tipAdjustmentX' => -10,
101
-                ),
102
-            ),
103
-        );
104
-    }
57
+			),
58
+			50 => array(
59
+				'id'      => 'edit-txn-details-mbox',
60
+				'content' => $this->_txn_details_metabox_stop(),
61
+				'options' => array(
62
+					'tipLocation'    => 'top',
63
+					'tipAdjustmentY' => -30,
64
+					'tipAdjustmentX' => 60,
65
+				),
66
+			),
67
+			55 => array(
68
+				'id'      => 'display-additional-transaction-session-info',
69
+				'content' => $this->_txn_session_info_stop(),
70
+				'options' => array(
71
+					'tipLocation'    => 'top',
72
+					'tipAdjustmentY' => -35,
73
+					'tipAdjustmentX' => 60,
74
+				),
75
+			),
76
+			60 => array(
77
+				'id'      => 'edit-txn-attendees-mbox',
78
+				'content' => $this->_txn_attendees_metabox_stop(),
79
+				'options' => array(
80
+					'tipLocation'    => 'top',
81
+					'tipAdjustmentY' => -35,
82
+					'tipAdjustmentX' => 60,
83
+				),
84
+			),
85
+			70 => array(
86
+				'id'      => 'edit-txn-registrant-mbox',
87
+				'content' => $this->_txn_primary_reg_metabox_stop(),
88
+				'options' => array(
89
+					'tipLocation'    => 'left',
90
+					'tipAdjustmentY' => -20,
91
+					'tipAdjustmentX' => -10,
92
+				),
93
+			),
94
+			80 => array(
95
+				'id'      => 'edit-txn-billing-info-mbox',
96
+				'content' => $this->_txn_billing_metabox_stop(),
97
+				'options' => array(
98
+					'tipLocation'    => 'left',
99
+					'tipAdjustmentY' => -20,
100
+					'tipAdjustmentX' => -10,
101
+				),
102
+			),
103
+		);
104
+	}
105 105
 
106 106
 
107
-    protected function _start()
108
-    {
109
-        $content = '<h3>' . __('View Transaction', 'event_espresso') . '</h3>';
110
-        $content .= '<p>'
111
-                    . __(
112
-                        'This tour of the View Transaction page will go over different areas of the screen to help you understand what they are used for.',
113
-                        'event_espresso'
114
-                    ) . '</p>';
115
-        return $content;
116
-    }
107
+	protected function _start()
108
+	{
109
+		$content = '<h3>' . __('View Transaction', 'event_espresso') . '</h3>';
110
+		$content .= '<p>'
111
+					. __(
112
+						'This tour of the View Transaction page will go over different areas of the screen to help you understand what they are used for.',
113
+						'event_espresso'
114
+					) . '</p>';
115
+		return $content;
116
+	}
117 117
 
118
-    protected function _txn_date_h2_stop()
119
-    {
120
-        return '<p>' . __('This is the date that the transaction occurred on.', 'event_espresso') . '</p>';
121
-    }
118
+	protected function _txn_date_h2_stop()
119
+	{
120
+		return '<p>' . __('This is the date that the transaction occurred on.', 'event_espresso') . '</p>';
121
+	}
122 122
 
123
-    protected function _txn_status_h2_stop()
124
-    {
125
-        return '<p>'
126
-               . __(
127
-                   'View current status of the transaction. Available statuses are Complete, Failed, Incomplete, and Overpaid.',
128
-                   'event_espresso'
129
-               ) . '</p>';
130
-    }
123
+	protected function _txn_status_h2_stop()
124
+	{
125
+		return '<p>'
126
+			   . __(
127
+				   'View current status of the transaction. Available statuses are Complete, Failed, Incomplete, and Overpaid.',
128
+				   'event_espresso'
129
+			   ) . '</p>';
130
+	}
131 131
 
132
-    protected function _txn_amount_due_h2_stop()
133
-    {
134
-        return '<p>'
135
-               . __(
136
-                   'View the amount due for a transaction (will not appear if the transaction has been paid in full).',
137
-                   'event_espresso'
138
-               ) . '</p>';
139
-    }
132
+	protected function _txn_amount_due_h2_stop()
133
+	{
134
+		return '<p>'
135
+			   . __(
136
+				   'View the amount due for a transaction (will not appear if the transaction has been paid in full).',
137
+				   'event_espresso'
138
+			   ) . '</p>';
139
+	}
140 140
 
141
-    protected function _txn_details_metabox_stop()
142
-    {
143
-        return '<p>'
144
-               . __(
145
-                   'The transaction details area displays various information including Line Item ID, Event Name, Event Date, Ticket Option, Price, Quantity, Line Total, Sales Tax, and the Grand Total. You can also view details about any payments made towards this transaction.',
146
-                   'event_espresso'
147
-               ) . '</p>';
148
-    }
141
+	protected function _txn_details_metabox_stop()
142
+	{
143
+		return '<p>'
144
+			   . __(
145
+				   'The transaction details area displays various information including Line Item ID, Event Name, Event Date, Ticket Option, Price, Quantity, Line Total, Sales Tax, and the Grand Total. You can also view details about any payments made towards this transaction.',
146
+				   'event_espresso'
147
+			   ) . '</p>';
148
+	}
149 149
 
150
-    protected function _txn_session_info_stop()
151
-    {
152
-        return '<p>'
153
-               . __(
154
-                   'You can view additional information about the transaction by clicking on the link below. Examples of available information includes IP Address and User Agent.',
155
-                   'event_espresso'
156
-               ) . '</p>';
157
-    }
150
+	protected function _txn_session_info_stop()
151
+	{
152
+		return '<p>'
153
+			   . __(
154
+				   'You can view additional information about the transaction by clicking on the link below. Examples of available information includes IP Address and User Agent.',
155
+				   'event_espresso'
156
+			   ) . '</p>';
157
+	}
158 158
 
159
-    protected function _txn_attendees_metabox_stop()
160
-    {
161
-        return '<p>'
162
-               . __(
163
-                   'View information about registrants that are linked to this transaction.',
164
-                   'event_espresso'
165
-               ) . '</p>';
166
-    }
159
+	protected function _txn_attendees_metabox_stop()
160
+	{
161
+		return '<p>'
162
+			   . __(
163
+				   'View information about registrants that are linked to this transaction.',
164
+				   'event_espresso'
165
+			   ) . '</p>';
166
+	}
167 167
 
168
-    protected function _txn_primary_reg_metabox_stop()
169
-    {
170
-        return '<p>'
171
-               . __(
172
-                   'View contact details on the primary registrant who is linked to this transaction.',
173
-                   'event_espresso'
174
-               ) . '</p>';
175
-    }
168
+	protected function _txn_primary_reg_metabox_stop()
169
+	{
170
+		return '<p>'
171
+			   . __(
172
+				   'View contact details on the primary registrant who is linked to this transaction.',
173
+				   'event_espresso'
174
+			   ) . '</p>';
175
+	}
176 176
 
177
-    protected function _txn_billing_metabox_stop()
178
-    {
179
-        return '<p>' . __('View billing information for this transaction.', 'event_espresso') . '</p>';
180
-    }
177
+	protected function _txn_billing_metabox_stop()
178
+	{
179
+		return '<p>' . __('View billing information for this transaction.', 'event_espresso') . '</p>';
180
+	}
181 181
 
182
-    protected function _event_name_stop()
183
-    {
184
-        return '<p>' . __('event name', 'event_espresso') . '</p>';
185
-    }
182
+	protected function _event_name_stop()
183
+	{
184
+		return '<p>' . __('event name', 'event_espresso') . '</p>';
185
+	}
186 186
 }
Please login to merge, or discard this patch.
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -106,18 +106,18 @@  discard block
 block discarded – undo
106 106
 
107 107
     protected function _start()
108 108
     {
109
-        $content = '<h3>' . __('View Transaction', 'event_espresso') . '</h3>';
109
+        $content = '<h3>'.__('View Transaction', 'event_espresso').'</h3>';
110 110
         $content .= '<p>'
111 111
                     . __(
112 112
                         'This tour of the View Transaction page will go over different areas of the screen to help you understand what they are used for.',
113 113
                         'event_espresso'
114
-                    ) . '</p>';
114
+                    ).'</p>';
115 115
         return $content;
116 116
     }
117 117
 
118 118
     protected function _txn_date_h2_stop()
119 119
     {
120
-        return '<p>' . __('This is the date that the transaction occurred on.', 'event_espresso') . '</p>';
120
+        return '<p>'.__('This is the date that the transaction occurred on.', 'event_espresso').'</p>';
121 121
     }
122 122
 
123 123
     protected function _txn_status_h2_stop()
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
                . __(
127 127
                    'View current status of the transaction. Available statuses are Complete, Failed, Incomplete, and Overpaid.',
128 128
                    'event_espresso'
129
-               ) . '</p>';
129
+               ).'</p>';
130 130
     }
131 131
 
132 132
     protected function _txn_amount_due_h2_stop()
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
                . __(
136 136
                    'View the amount due for a transaction (will not appear if the transaction has been paid in full).',
137 137
                    'event_espresso'
138
-               ) . '</p>';
138
+               ).'</p>';
139 139
     }
140 140
 
141 141
     protected function _txn_details_metabox_stop()
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
                . __(
145 145
                    'The transaction details area displays various information including Line Item ID, Event Name, Event Date, Ticket Option, Price, Quantity, Line Total, Sales Tax, and the Grand Total. You can also view details about any payments made towards this transaction.',
146 146
                    'event_espresso'
147
-               ) . '</p>';
147
+               ).'</p>';
148 148
     }
149 149
 
150 150
     protected function _txn_session_info_stop()
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
                . __(
154 154
                    'You can view additional information about the transaction by clicking on the link below. Examples of available information includes IP Address and User Agent.',
155 155
                    'event_espresso'
156
-               ) . '</p>';
156
+               ).'</p>';
157 157
     }
158 158
 
159 159
     protected function _txn_attendees_metabox_stop()
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
                . __(
163 163
                    'View information about registrants that are linked to this transaction.',
164 164
                    'event_espresso'
165
-               ) . '</p>';
165
+               ).'</p>';
166 166
     }
167 167
 
168 168
     protected function _txn_primary_reg_metabox_stop()
@@ -171,16 +171,16 @@  discard block
 block discarded – undo
171 171
                . __(
172 172
                    'View contact details on the primary registrant who is linked to this transaction.',
173 173
                    'event_espresso'
174
-               ) . '</p>';
174
+               ).'</p>';
175 175
     }
176 176
 
177 177
     protected function _txn_billing_metabox_stop()
178 178
     {
179
-        return '<p>' . __('View billing information for this transaction.', 'event_espresso') . '</p>';
179
+        return '<p>'.__('View billing information for this transaction.', 'event_espresso').'</p>';
180 180
     }
181 181
 
182 182
     protected function _event_name_stop()
183 183
     {
184
-        return '<p>' . __('event name', 'event_espresso') . '</p>';
184
+        return '<p>'.__('event name', 'event_espresso').'</p>';
185 185
     }
186 186
 }
Please login to merge, or discard this patch.