@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if (!defined('EVENT_ESPRESSO_VERSION') ) |
|
2 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) |
|
3 | 3 | exit('NO direct script access allowed'); |
4 | 4 | |
5 | 5 | /** |
@@ -98,34 +98,34 @@ discard block |
||
98 | 98 | |
99 | 99 | |
100 | 100 | protected function _start() { |
101 | - $content = '<h3>' . __('Registration Form Settings', 'event_espresso') . '</h3>'; |
|
102 | - $content .= '<p>' . __('This tour of the Registration Form Settings page will go over different areas of the screen to help you understand what they are used for.', 'event_espresso') . '</p>'; |
|
101 | + $content = '<h3>'.__('Registration Form Settings', 'event_espresso').'</h3>'; |
|
102 | + $content .= '<p>'.__('This tour of the Registration Form Settings page will go over different areas of the screen to help you understand what they are used for.', 'event_espresso').'</p>'; |
|
103 | 103 | |
104 | 104 | return $content; |
105 | 105 | } |
106 | 106 | |
107 | 107 | protected function _use_recaptcha_stop() { |
108 | - return '<p>' . __('Specify whether reCAPTCHA should be enabled.', 'event_espresso') . '</p>'; |
|
108 | + return '<p>'.__('Specify whether reCAPTCHA should be enabled.', 'event_espresso').'</p>'; |
|
109 | 109 | } |
110 | 110 | |
111 | 111 | protected function _recaptcha_public_key_stop() { |
112 | - return '<p>' . __('Enter your public key for reCAPTCHA.', 'event_espresso') . '</p>'; |
|
112 | + return '<p>'.__('Enter your public key for reCAPTCHA.', 'event_espresso').'</p>'; |
|
113 | 113 | } |
114 | 114 | |
115 | 115 | protected function _recaptcha_private_key_stop() { |
116 | - return '<p>' . __('Enter your private key for reCAPTCHA.', 'event_espresso') . '</p>'; |
|
116 | + return '<p>'.__('Enter your private key for reCAPTCHA.', 'event_espresso').'</p>'; |
|
117 | 117 | } |
118 | 118 | |
119 | 119 | protected function _recaptcha_theme_stop() { |
120 | - return '<p>' . __('Select a theme (style) for your reCAPTCHA.', 'event_espresso') . '</p>'; |
|
120 | + return '<p>'.__('Select a theme (style) for your reCAPTCHA.', 'event_espresso').'</p>'; |
|
121 | 121 | } |
122 | 122 | |
123 | 123 | protected function _recaptcha_language_stop() { |
124 | - return '<p>' . __('Specify the language that should be used for reCAPTCHA.', 'event_espresso') . '</p>'; |
|
124 | + return '<p>'.__('Specify the language that should be used for reCAPTCHA.', 'event_espresso').'</p>'; |
|
125 | 125 | } |
126 | 126 | |
127 | 127 | protected function _recaptcha_width_stop() { |
128 | - return '<p>' . __('Specify how wide (in pixels) the reCAPTCHA form should be.', 'event_espresso') . '</p>'; |
|
128 | + return '<p>'.__('Specify how wide (in pixels) the reCAPTCHA form should be.', 'event_espresso').'</p>'; |
|
129 | 129 | } |
130 | 130 | |
131 | 131 | } |
132 | 132 | \ No newline at end of file |
@@ -6,8 +6,9 @@ |
||
6 | 6 | * @package Event Espresso |
7 | 7 | * @subpackage messages |
8 | 8 | */ |
9 | -if (!defined('EVENT_ESPRESSO_VERSION') ) |
|
9 | +if (!defined('EVENT_ESPRESSO_VERSION') ) { |
|
10 | 10 | exit('NO direct script access allowed'); |
11 | +} |
|
11 | 12 | |
12 | 13 | /** |
13 | 14 | * |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | <tbody> |
22 | 22 | <tr> |
23 | 23 | <th> |
24 | - <label for="QST_display_text"><?php echo $fields['QST_display_text']->get_nicename();?></label> <?php echo EEH_Template::get_help_tab_link('question_text_info');?> |
|
24 | + <label for="QST_display_text"><?php echo $fields['QST_display_text']->get_nicename(); ?></label> <?php echo EEH_Template::get_help_tab_link('question_text_info'); ?> |
|
25 | 25 | </th> |
26 | 26 | <td> |
27 | 27 | <input type="text" class="regular-text" id="QST_display_text" name="QST_display_text" value="<?php $question->f('QST_display_text')?>"/> |
@@ -31,23 +31,23 @@ discard block |
||
31 | 31 | |
32 | 32 | <tr> |
33 | 33 | <th> |
34 | - <label for="QST_admin_label"><?php echo $fields['QST_admin_label']->get_nicename();?></label> <?php echo EEH_Template::get_help_tab_link('question_label_info');?> |
|
34 | + <label for="QST_admin_label"><?php echo $fields['QST_admin_label']->get_nicename(); ?></label> <?php echo EEH_Template::get_help_tab_link('question_label_info'); ?> |
|
35 | 35 | </th> |
36 | 36 | <td> |
37 | 37 | <?php |
38 | - $disabled = ! empty( $QST_system ) ? ' disabled="disabled"' : ''; |
|
39 | - $id = ! empty( $QST_system ) ? '_disabled' : ''; |
|
38 | + $disabled = ! empty($QST_system) ? ' disabled="disabled"' : ''; |
|
39 | + $id = ! empty($QST_system) ? '_disabled' : ''; |
|
40 | 40 | ?> |
41 | 41 | <input type="text" class="regular-text" id="QST_admin_label<?php echo $id?>" name="QST_admin_label<?php echo $id?>" value="<?php $question->f('QST_admin_label')?>"<?php echo $disabled?>/> |
42 | 42 | <input class="QST_order" type="hidden" id="QST_order<?php echo $id; ?>" name = "QST_order<?php echo $id; ?>" value="<?php echo $question->get('QST_order'); ?>" /> |
43 | - <?php if ( ! empty( $QST_system )) { ?> |
|
43 | + <?php if ( ! empty($QST_system)) { ?> |
|
44 | 44 | <input type="hidden" id="QST_admin_label" name="QST_admin_label" value="<?php echo $question->admin_label()?>"/> |
45 | 45 | <?php } ?> |
46 | 46 | <br/> |
47 | 47 | <p class="description"> |
48 | - <?php if ( ! empty( $QST_system )) { ?> |
|
48 | + <?php if ( ! empty($QST_system)) { ?> |
|
49 | 49 | <span class="description" style="color:#D54E21;"> |
50 | - <?php _e('System question! This field cannot be changed.','event_espresso')?> |
|
50 | + <?php _e('System question! This field cannot be changed.', 'event_espresso')?> |
|
51 | 51 | </span> |
52 | 52 | <?php } ?> |
53 | 53 | |
@@ -57,21 +57,21 @@ discard block |
||
57 | 57 | |
58 | 58 | <tr> |
59 | 59 | <th> |
60 | - <label for="QST_admin_only"><?php echo $fields['QST_admin_only']->get_nicename();?></label> <?php echo EEH_Template::get_help_tab_link('question_admin_only_info');?> |
|
60 | + <label for="QST_admin_only"><?php echo $fields['QST_admin_only']->get_nicename(); ?></label> <?php echo EEH_Template::get_help_tab_link('question_admin_only_info'); ?> |
|
61 | 61 | </th> |
62 | 62 | <td> |
63 | 63 | <?php |
64 | - $disabled = ! empty( $QST_system ) ? ' disabled="disabled"' : ''; |
|
65 | - $id = ! empty( $QST_system ) ? '_disabled' : ''; |
|
64 | + $disabled = ! empty($QST_system) ? ' disabled="disabled"' : ''; |
|
65 | + $id = ! empty($QST_system) ? '_disabled' : ''; |
|
66 | 66 | $admin_only = $question->get('QST_admin_only'); |
67 | - $checked = !empty( $admin_only ) ? ' checked="checked"' : ''; |
|
67 | + $checked = ! empty($admin_only) ? ' checked="checked"' : ''; |
|
68 | 68 | ?> |
69 | 69 | <input class="QST_admin_only" type="checkbox" id="QST_admin_only<?php echo $id; ?>" name = "QST_admin_only<?php echo $id; ?>" value="1"<?php echo $disabled; echo $checked; ?>/> |
70 | 70 | <br/> |
71 | 71 | <p class="description"> |
72 | - <?php if ( ! empty( $QST_system )) { ?> |
|
72 | + <?php if ( ! empty($QST_system)) { ?> |
|
73 | 73 | <span class="description" style="color:#D54E21;"> |
74 | - <?php _e('System question! This field cannot be changed.','event_espresso')?> |
|
74 | + <?php _e('System question! This field cannot be changed.', 'event_espresso')?> |
|
75 | 75 | </span> |
76 | 76 | <?php } ?> |
77 | 77 | |
@@ -81,21 +81,21 @@ discard block |
||
81 | 81 | |
82 | 82 | <tr> |
83 | 83 | <th> |
84 | - <label for="QST_type"><?php echo $fields['QST_type']->get_nicename();?></label> <?php echo EEH_Template::get_help_tab_link('question_type_info');?> |
|
84 | + <label for="QST_type"><?php echo $fields['QST_type']->get_nicename(); ?></label> <?php echo EEH_Template::get_help_tab_link('question_type_info'); ?> |
|
85 | 85 | </th> |
86 | 86 | <td> |
87 | 87 | <?php |
88 | - $disabled = ! empty( $QST_system ) ? ' disabled="disabled"' : ''; |
|
89 | - $id = ! empty( $QST_system ) ? '_disabled' : ''; |
|
90 | - echo EEH_Form_Fields::select_input( 'QST_type' . $id, $question_types, $question->type(), 'id="QST_type' . $id . '"' . $disabled ); |
|
91 | - if( ! empty( $QST_system ) ) { ?> |
|
88 | + $disabled = ! empty($QST_system) ? ' disabled="disabled"' : ''; |
|
89 | + $id = ! empty($QST_system) ? '_disabled' : ''; |
|
90 | + echo EEH_Form_Fields::select_input('QST_type'.$id, $question_types, $question->type(), 'id="QST_type'.$id.'"'.$disabled); |
|
91 | + if ( ! empty($QST_system)) { ?> |
|
92 | 92 | <input type="hidden" id="QST_type" name="QST_type" value="<?php echo $question->type()?>"/> |
93 | 93 | <?php |
94 | - $explanatory_text = __('System question! This field cannot be changed.','event_espresso'); |
|
95 | - }else{ |
|
96 | - $explanatory_text = __('Because there are currently answers for this question in the database, your options to change the question type have been limited to similar question-types.','event_espresso'); |
|
94 | + $explanatory_text = __('System question! This field cannot be changed.', 'event_espresso'); |
|
95 | + } else { |
|
96 | + $explanatory_text = __('Because there are currently answers for this question in the database, your options to change the question type have been limited to similar question-types.', 'event_espresso'); |
|
97 | 97 | } |
98 | - if ( ! empty( $QST_system ) || $has_answers ) { ?> |
|
98 | + if ( ! empty($QST_system) || $has_answers) { ?> |
|
99 | 99 | <p><span class="description" style="color:#D54E21;"> |
100 | 100 | <?php echo $explanatory_text; ?> |
101 | 101 | </span></p> |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | <tr id="question_options"> |
110 | 110 | <th> |
111 | 111 | <label> |
112 | - <?php _e('Answer Options','event_espresso')?> |
|
112 | + <?php _e('Answer Options', 'event_espresso')?> |
|
113 | 113 | </label> |
114 | 114 | </th> |
115 | 115 | <td> |
@@ -118,10 +118,10 @@ discard block |
||
118 | 118 | <thead> |
119 | 119 | <tr> |
120 | 120 | <th class="option-value-header"> |
121 | - <?php _e('Value','event_espresso')?> |
|
121 | + <?php _e('Value', 'event_espresso')?> |
|
122 | 122 | </th> |
123 | 123 | <th class="option-desc-header"> |
124 | - <?php _e('Description (optional, only shown on registration form)','event_espresso')?> |
|
124 | + <?php _e('Description (optional, only shown on registration form)', 'event_espresso')?> |
|
125 | 125 | </th> |
126 | 126 | <th> |
127 | 127 | </th> |
@@ -144,18 +144,18 @@ discard block |
||
144 | 144 | </tr> |
145 | 145 | |
146 | 146 | <?php |
147 | - $count=0; |
|
147 | + $count = 0; |
|
148 | 148 | $question_options = $question->options(); |
149 | - if ( ! empty( $question_options )) { |
|
150 | - foreach( $question_options as $option_id => $option ) { |
|
151 | - $disabled = $has_answers ? ' disabled="disabled"' : ''; |
|
149 | + if ( ! empty($question_options)) { |
|
150 | + foreach ($question_options as $option_id => $option) { |
|
151 | + $disabled = $has_answers ? ' disabled="disabled"' : ''; |
|
152 | 152 | $id = $has_answers ? '_disabled' : ''; |
153 | 153 | ?> |
154 | 154 | <tr class="question-option ee-options-sortable"> |
155 | 155 | <td class="option-value-cell"> |
156 | - <input type="hidden" class="QSO_order" name="question_options<?php echo $id;?>[<?php echo $count; ?>][QSO_order]" value="<?php $count; ?>"> |
|
156 | + <input type="hidden" class="QSO_order" name="question_options<?php echo $id; ?>[<?php echo $count; ?>][QSO_order]" value="<?php $count; ?>"> |
|
157 | 157 | <input type="text" class="option-value regular-text" name="question_options<?php echo $id; ?>[<?php echo $count?>][QSO_value]" value="<?php $option->f('QSO_value')?>"<?php echo $disabled; ?>> |
158 | - <?php if ( $has_answers ) : ?> |
|
158 | + <?php if ($has_answers) : ?> |
|
159 | 159 | <input type="hidden" name="question_options[<?php echo $count; ?>][QSO_value]" value="<?php echo $option->f('QSO_value'); ?>" > |
160 | 160 | <?php endif; ?> |
161 | 161 | </td> |
@@ -200,13 +200,13 @@ discard block |
||
200 | 200 | </table> |
201 | 201 | |
202 | 202 | <a id="new-question-option" class="button" style="margin:0 0 1em 3px;"> |
203 | - <?php _e('Add Another Answer Option','event_espresso')?> |
|
203 | + <?php _e('Add Another Answer Option', 'event_espresso')?> |
|
204 | 204 | </a><br/> |
205 | 205 | |
206 | 206 | <p class="description"> |
207 | - <?php _e('Answer Options are the choices that you give people to select from for RADIO_BTN, CHECKBOX or DROPDOWN questions. The Value is a simple key that will be saved to the database and the description is optional. Note that values CANNOT contain any HTML, but descriptions can.','event_espresso')?> |
|
207 | + <?php _e('Answer Options are the choices that you give people to select from for RADIO_BTN, CHECKBOX or DROPDOWN questions. The Value is a simple key that will be saved to the database and the description is optional. Note that values CANNOT contain any HTML, but descriptions can.', 'event_espresso')?> |
|
208 | 208 | </p> |
209 | - <?php if ( $has_answers ) : ?> |
|
209 | + <?php if ($has_answers) : ?> |
|
210 | 210 | <p class="description" style="color:#D54E21;"> |
211 | 211 | <?php _e('Answer values that are uneditable are this way because there are registrations in the database that have answers for this question. If you need to correct a mistake, or edit an existing option value, then trash the existing one and create a new option with the changes. This will ensure that the existing registrations that chose the original answer will preserve that answer.', 'event_espresso'); ?> |
212 | 212 | </p> |
@@ -217,32 +217,32 @@ discard block |
||
217 | 217 | |
218 | 218 | <tr> |
219 | 219 | <th> |
220 | - <label for="QST_required"><?php echo $fields['QST_required']->get_nicename();?></label> <?php echo EEH_Template::get_help_tab_link('required_question_info');?> |
|
220 | + <label for="QST_required"><?php echo $fields['QST_required']->get_nicename(); ?></label> <?php echo EEH_Template::get_help_tab_link('required_question_info'); ?> |
|
221 | 221 | </th> |
222 | 222 | <td> |
223 | 223 | <?php |
224 | - $system_required = array( 'fname', 'lname', 'email' ); |
|
225 | - $disabled = in_array( $QST_system, $system_required ) ? ' disabled="disabled"' : ''; |
|
224 | + $system_required = array('fname', 'lname', 'email'); |
|
225 | + $disabled = in_array($QST_system, $system_required) ? ' disabled="disabled"' : ''; |
|
226 | 226 | $required_on = $question->get('QST_admin_only'); |
227 | 227 | $show_required_msg = $required_on ? '' : ' display:none;'; |
228 | - $disabled = $required_on || ! empty( $disabled ) ? ' disabled="disabled"' : ''; |
|
229 | - $id = ! empty( $disabled ) && in_array( $QST_system, $system_required) ? '_disabled' : ''; |
|
230 | - $requiredOptions=array( |
|
231 | - array('text'=>'Optional','id'=>0), |
|
232 | - array('text'=>'Required','id'=>1) |
|
228 | + $disabled = $required_on || ! empty($disabled) ? ' disabled="disabled"' : ''; |
|
229 | + $id = ! empty($disabled) && in_array($QST_system, $system_required) ? '_disabled' : ''; |
|
230 | + $requiredOptions = array( |
|
231 | + array('text'=>'Optional', 'id'=>0), |
|
232 | + array('text'=>'Required', 'id'=>1) |
|
233 | 233 | ); |
234 | - echo EEH_Form_Fields::select_input('QST_required' . $id, $requiredOptions, $question->required(), 'id="QST_required' . $id . '"' . $disabled ); |
|
234 | + echo EEH_Form_Fields::select_input('QST_required'.$id, $requiredOptions, $question->required(), 'id="QST_required'.$id.'"'.$disabled); |
|
235 | 235 | ?> |
236 | 236 | <p><span id="required_toggled_on" class="description" style="color:#D54E21;<?php echo $show_required_msg; ?>"> |
237 | - <?php _e('Required is set to optional, and this field is disabled, because the question is Admin-Only.','event_espresso')?> |
|
237 | + <?php _e('Required is set to optional, and this field is disabled, because the question is Admin-Only.', 'event_espresso')?> |
|
238 | 238 | </span></p> |
239 | 239 | <p><span id="required_toggled_off" class="description" style="color:#D54E21; display: none;"> |
240 | - <?php _e('Required option field is no longer disabled because the question is not Admin-Only','event_espresso')?> |
|
240 | + <?php _e('Required option field is no longer disabled because the question is not Admin-Only', 'event_espresso')?> |
|
241 | 241 | </span></p> |
242 | - <?php if ( ! empty( $disabled ) && in_array( $QST_system, $system_required ) ) { ?> |
|
242 | + <?php if ( ! empty($disabled) && in_array($QST_system, $system_required)) { ?> |
|
243 | 243 | <input type="hidden" id="QST_required" name="QST_required" value="1"/> |
244 | 244 | <p><span class="description" style="color:#D54E21;"> |
245 | - <?php _e('System question! This field cannot be changed.','event_espresso')?> |
|
245 | + <?php _e('System question! This field cannot be changed.', 'event_espresso')?> |
|
246 | 246 | </span></p> |
247 | 247 | <?php } ?> |
248 | 248 | |
@@ -251,7 +251,7 @@ discard block |
||
251 | 251 | |
252 | 252 | <tr> |
253 | 253 | <th> |
254 | - <label for="QST_required_text"><?php _e('Required Text', 'event_espresso'); ?></label> <?php echo EEH_Template::get_help_tab_link('required_text_info');?> |
|
254 | + <label for="QST_required_text"><?php _e('Required Text', 'event_espresso'); ?></label> <?php echo EEH_Template::get_help_tab_link('required_text_info'); ?> |
|
255 | 255 | </th> |
256 | 256 | <td> |
257 | 257 | <input type="text" class="regular-text" id="QST_required_text" name="QST_required_text" value="<?php $question->f('QST_required_text')?>"/> |
@@ -92,7 +92,7 @@ |
||
92 | 92 | <input type="hidden" id="QST_type" name="QST_type" value="<?php echo $question->type()?>"/> |
93 | 93 | <?php |
94 | 94 | $explanatory_text = __('System question! This field cannot be changed.','event_espresso'); |
95 | - }else{ |
|
95 | + } else{ |
|
96 | 96 | $explanatory_text = __('Because there are currently answers for this question in the database, your options to change the question type have been limited to similar question-types.','event_espresso'); |
97 | 97 | } |
98 | 98 | if ( ! empty( $QST_system ) || $has_answers ) { ?> |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | class EE_Attendee_Contact_List_Table extends EE_Admin_List_Table { |
5 | 5 | |
6 | 6 | |
7 | - public function __construct( $admin_page ) { |
|
7 | + public function __construct($admin_page) { |
|
8 | 8 | parent::__construct($admin_page); |
9 | 9 | } |
10 | 10 | |
@@ -12,8 +12,8 @@ discard block |
||
12 | 12 | |
13 | 13 | |
14 | 14 | protected function _setup_data() { |
15 | - $this->_data = $this->_view != 'trash' ? $this->_admin_page->get_attendees( $this->_per_page ) : $this->_admin_page->get_attendees( $this->_per_page, FALSE, TRUE ); |
|
16 | - $this->_all_data_count = $this->_view != 'trash' ? $this->_admin_page->get_attendees( $this->_per_page, TRUE ) : $this->_admin_page->get_attendees( $this->_per_page,TRUE, TRUE ); |
|
15 | + $this->_data = $this->_view != 'trash' ? $this->_admin_page->get_attendees($this->_per_page) : $this->_admin_page->get_attendees($this->_per_page, FALSE, TRUE); |
|
16 | + $this->_all_data_count = $this->_view != 'trash' ? $this->_admin_page->get_attendees($this->_per_page, TRUE) : $this->_admin_page->get_attendees($this->_per_page, TRUE, TRUE); |
|
17 | 17 | } |
18 | 18 | |
19 | 19 | |
@@ -41,13 +41,13 @@ discard block |
||
41 | 41 | ); |
42 | 42 | |
43 | 43 | $this->_sortable_columns = array( |
44 | - 'ATT_ID' => array( 'ATT_ID' => FALSE ), |
|
45 | - 'ATT_lname' => array( 'ATT_lname' => TRUE ), //true means its already sorted |
|
46 | - 'ATT_fname' => array( 'ATT_fname' => FALSE ), |
|
47 | - 'ATT_email' => array( 'ATT_email' => FALSE ), |
|
48 | - 'ATT_city' => array( 'ATT_city' => FALSE ), |
|
49 | - 'STA_ID' => array( 'STA_ID' => FALSE ), |
|
50 | - 'CNT_ISO' => array( 'CNT_ISO' => FALSE ) |
|
44 | + 'ATT_ID' => array('ATT_ID' => FALSE), |
|
45 | + 'ATT_lname' => array('ATT_lname' => TRUE), //true means its already sorted |
|
46 | + 'ATT_fname' => array('ATT_fname' => FALSE), |
|
47 | + 'ATT_email' => array('ATT_email' => FALSE), |
|
48 | + 'ATT_city' => array('ATT_city' => FALSE), |
|
49 | + 'STA_ID' => array('STA_ID' => FALSE), |
|
50 | + 'CNT_ISO' => array('CNT_ISO' => FALSE) |
|
51 | 51 | ); |
52 | 52 | |
53 | 53 | $this->_hidden_columns = array(); |
@@ -64,9 +64,9 @@ discard block |
||
64 | 64 | |
65 | 65 | |
66 | 66 | protected function _add_view_counts() { |
67 | - $this->_views['in_use']['count'] = $this->_admin_page->get_attendees( $this->_per_page, TRUE ); |
|
68 | - if ( EE_Registry::instance()->CAP->current_user_can( 'ee_delete_contacts', 'espresso_registrations_delete_registration' ) ) { |
|
69 | - $this->_views['trash']['count'] = $this->_admin_page->get_attendees( $this->_per_page,TRUE, TRUE ); |
|
67 | + $this->_views['in_use']['count'] = $this->_admin_page->get_attendees($this->_per_page, TRUE); |
|
68 | + if (EE_Registry::instance()->CAP->current_user_can('ee_delete_contacts', 'espresso_registrations_delete_registration')) { |
|
69 | + $this->_views['trash']['count'] = $this->_admin_page->get_attendees($this->_per_page, TRUE, TRUE); |
|
70 | 70 | } |
71 | 71 | } |
72 | 72 | |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | |
90 | 90 | |
91 | 91 | function column_cb($item) { |
92 | - return sprintf( '<input type="checkbox" name="checkbox[%1$s]" value="%1$s" />', /* $1%s */ $item->ID() ); |
|
92 | + return sprintf('<input type="checkbox" name="checkbox[%1$s]" value="%1$s" />', /* $1%s */ $item->ID()); |
|
93 | 93 | } |
94 | 94 | |
95 | 95 | |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | |
98 | 98 | |
99 | 99 | function column_ATT_ID($item) { |
100 | - return '<div>' . $item->ID() . '</div>'; |
|
100 | + return '<div>'.$item->ID().'</div>'; |
|
101 | 101 | } |
102 | 102 | |
103 | 103 | |
@@ -107,8 +107,8 @@ discard block |
||
107 | 107 | function column_ATT_lname($item) { |
108 | 108 | |
109 | 109 | // edit attendee link |
110 | - $edit_lnk_url = EE_Admin_Page::add_query_args_and_nonce( array( 'action'=>'edit_attendee', 'post'=>$item->ID() ), REG_ADMIN_URL ); |
|
111 | - $name_link = EE_Registry::instance()->CAP->current_user_can( 'ee_edit_contacts', 'espresso_registrations_edit_attendee' ) ? '<a href="'.$edit_lnk_url.'" title="' . esc_attr__( 'Edit Contact', 'event_espresso' ) . '">' . $item->lname() . '</a>' : $item->lname(); |
|
110 | + $edit_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array('action'=>'edit_attendee', 'post'=>$item->ID()), REG_ADMIN_URL); |
|
111 | + $name_link = EE_Registry::instance()->CAP->current_user_can('ee_edit_contacts', 'espresso_registrations_edit_attendee') ? '<a href="'.$edit_lnk_url.'" title="'.esc_attr__('Edit Contact', 'event_espresso').'">'.$item->lname().'</a>' : $item->lname(); |
|
112 | 112 | return $name_link; |
113 | 113 | |
114 | 114 | } |
@@ -121,30 +121,30 @@ discard block |
||
121 | 121 | //Build row actions |
122 | 122 | $actions = array(); |
123 | 123 | // edit attendee link |
124 | - if ( EE_Registry::instance()->CAP->current_user_can( 'ee_edit_contacts', 'espresso_registrations_edit_attendee' ) ) { |
|
125 | - $edit_lnk_url = EE_Admin_Page::add_query_args_and_nonce( array( 'action'=>'edit_attendee', 'post'=>$item->ID() ), REG_ADMIN_URL ); |
|
126 | - $actions['edit'] = '<a href="'.$edit_lnk_url.'" title="' . esc_attr__( 'Edit Contact', 'event_espresso' ) . '">' . __( 'Edit', 'event_espresso' ) . '</a>'; |
|
124 | + if (EE_Registry::instance()->CAP->current_user_can('ee_edit_contacts', 'espresso_registrations_edit_attendee')) { |
|
125 | + $edit_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array('action'=>'edit_attendee', 'post'=>$item->ID()), REG_ADMIN_URL); |
|
126 | + $actions['edit'] = '<a href="'.$edit_lnk_url.'" title="'.esc_attr__('Edit Contact', 'event_espresso').'">'.__('Edit', 'event_espresso').'</a>'; |
|
127 | 127 | } |
128 | 128 | |
129 | - if ( $this->_view == 'in_use' ) { |
|
129 | + if ($this->_view == 'in_use') { |
|
130 | 130 | // trash attendee link |
131 | - if ( EE_Registry::instance()->CAP->current_user_can( 'ee_delete_contacts', 'espresso_registrations_trash_attendees' ) ) { |
|
132 | - $trash_lnk_url = EE_Admin_Page::add_query_args_and_nonce( array( 'action'=>'trash_attendees', 'ATT_ID'=>$item->ID() ), REG_ADMIN_URL ); |
|
133 | - $actions['trash'] = '<a href="'.$trash_lnk_url.'" title="' . esc_attr__( 'Move Contact to Trash', 'event_espresso' ) . '">' . __( 'Trash', 'event_espresso' ) . '</a>'; |
|
131 | + if (EE_Registry::instance()->CAP->current_user_can('ee_delete_contacts', 'espresso_registrations_trash_attendees')) { |
|
132 | + $trash_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array('action'=>'trash_attendees', 'ATT_ID'=>$item->ID()), REG_ADMIN_URL); |
|
133 | + $actions['trash'] = '<a href="'.$trash_lnk_url.'" title="'.esc_attr__('Move Contact to Trash', 'event_espresso').'">'.__('Trash', 'event_espresso').'</a>'; |
|
134 | 134 | } |
135 | 135 | } else { |
136 | - if ( EE_Registry::instance()->CAP->current_user_can( 'ee_delete_contacts', 'espresso_registrations_restore_attendees' ) ) { |
|
136 | + if (EE_Registry::instance()->CAP->current_user_can('ee_delete_contacts', 'espresso_registrations_restore_attendees')) { |
|
137 | 137 | // restore attendee link |
138 | - $restore_lnk_url = EE_Admin_Page::add_query_args_and_nonce( array( 'action'=>'restore_attendees', 'ATT_ID'=>$item->ID() ), REG_ADMIN_URL ); |
|
139 | - $actions['restore'] = '<a href="'.$restore_lnk_url.'" title="' . esc_attr__( 'Restore Contact', 'event_espresso' ) . '">' . __( 'Restore', 'event_espresso' ) . '</a>'; |
|
138 | + $restore_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array('action'=>'restore_attendees', 'ATT_ID'=>$item->ID()), REG_ADMIN_URL); |
|
139 | + $actions['restore'] = '<a href="'.$restore_lnk_url.'" title="'.esc_attr__('Restore Contact', 'event_espresso').'">'.__('Restore', 'event_espresso').'</a>'; |
|
140 | 140 | } |
141 | 141 | } |
142 | 142 | |
143 | - $edit_lnk_url = EE_Admin_Page::add_query_args_and_nonce( array( 'action'=>'edit_attendee', 'post'=>$item->ID() ), REG_ADMIN_URL ); |
|
144 | - $name_link = EE_Registry::instance()->CAP->current_user_can( 'ee_edit_contacts', 'espresso_registrations_edit_attendee' ) ? '<a href="'.$edit_lnk_url.'" title="' . esc_attr__( 'Edit Contact', 'event_espresso' ) . '">' . $item->fname() . '</a>' : $item->fname(); |
|
143 | + $edit_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array('action'=>'edit_attendee', 'post'=>$item->ID()), REG_ADMIN_URL); |
|
144 | + $name_link = EE_Registry::instance()->CAP->current_user_can('ee_edit_contacts', 'espresso_registrations_edit_attendee') ? '<a href="'.$edit_lnk_url.'" title="'.esc_attr__('Edit Contact', 'event_espresso').'">'.$item->fname().'</a>' : $item->fname(); |
|
145 | 145 | |
146 | 146 | //Return the name contents |
147 | - return sprintf('%1$s %2$s', $name_link, $this->row_actions($actions) ); |
|
147 | + return sprintf('%1$s %2$s', $name_link, $this->row_actions($actions)); |
|
148 | 148 | } |
149 | 149 | |
150 | 150 | |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | |
153 | 153 | |
154 | 154 | function column_ATT_email($item) { |
155 | - return '<a href="mailto:' . $item->email() . '">' . $item->email() . '</a>'; |
|
155 | + return '<a href="mailto:'.$item->email().'">'.$item->email().'</a>'; |
|
156 | 156 | } |
157 | 157 | |
158 | 158 | |
@@ -172,8 +172,8 @@ discard block |
||
172 | 172 | |
173 | 173 | function column_STA_ID($item) { |
174 | 174 | $states = EEM_State::instance()->get_all_states(); |
175 | - $state = isset( $states[ $item->state_ID() ] ) ? $states[ $item->state_ID() ]->get( 'STA_name' ) : $item->state_ID(); |
|
176 | - return ! is_numeric( $state ) ? $state : ''; |
|
175 | + $state = isset($states[$item->state_ID()]) ? $states[$item->state_ID()]->get('STA_name') : $item->state_ID(); |
|
176 | + return ! is_numeric($state) ? $state : ''; |
|
177 | 177 | } |
178 | 178 | |
179 | 179 | |
@@ -181,8 +181,8 @@ discard block |
||
181 | 181 | function column_CNT_ISO($item) { |
182 | 182 | $countries = EEM_Country::instance()->get_all_countries(); |
183 | 183 | //EEH_Debug_Tools::printr( $countries, '$countries <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span>', 'auto' ); |
184 | - $country = isset( $countries[ $item->country_ID() ] ) ? $countries[ $item->country_ID() ]->get( 'CNT_name' ) : $item->country_ID(); |
|
185 | - return ! is_numeric( $country ) ? $country : ''; |
|
184 | + $country = isset($countries[$item->country_ID()]) ? $countries[$item->country_ID()]->get('CNT_name') : $item->country_ID(); |
|
185 | + return ! is_numeric($country) ? $country : ''; |
|
186 | 186 | } |
187 | 187 | |
188 | 188 |
@@ -1,4 +1,6 @@ |
||
1 | -<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed'); |
|
1 | +<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
2 | + exit('No direct script access allowed'); |
|
3 | +} |
|
2 | 4 | /** |
3 | 5 | * Event Espresso |
4 | 6 | * |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if (!defined('EVENT_ESPRESSO_VERSION') ) |
|
2 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) |
|
3 | 3 | exit('NO direct script access allowed'); |
4 | 4 | |
5 | 5 | /** |
@@ -153,57 +153,57 @@ discard block |
||
153 | 153 | |
154 | 154 | |
155 | 155 | protected function _start() { |
156 | - $content = '<h3>' . __('Contact List', 'event_espresso') . '</h3>'; |
|
157 | - $content .= '<p>' . __('This tour of the Contact List page will go over different areas of the screen to help you understand what they are used for.', 'event_espresso') . '</p>'; |
|
156 | + $content = '<h3>'.__('Contact List', 'event_espresso').'</h3>'; |
|
157 | + $content .= '<p>'.__('This tour of the Contact List page will go over different areas of the screen to help you understand what they are used for.', 'event_espresso').'</p>'; |
|
158 | 158 | return $content; |
159 | 159 | } |
160 | 160 | |
161 | 161 | protected function _attendee_id_stop() { |
162 | - return '<p>' . __('View ID for registrants. Can be sorted in ascending or descending order.', 'event_espresso') . '</p>'; |
|
162 | + return '<p>'.__('View ID for registrants. Can be sorted in ascending or descending order.', 'event_espresso').'</p>'; |
|
163 | 163 | } |
164 | 164 | |
165 | 165 | protected function _attendee_name_stop() { |
166 | - return '<p>' . __('View first name for registrants. Can be sorted in ascending or descending order.', 'event_espresso') . '</p>'; |
|
166 | + return '<p>'.__('View first name for registrants. Can be sorted in ascending or descending order.', 'event_espresso').'</p>'; |
|
167 | 167 | } |
168 | 168 | |
169 | 169 | protected function _att_lname_stop() { |
170 | - return '<p>' . __('View last name for registrants. Can be sorted in ascending or descending order.', 'event_espresso') . '</p>'; |
|
170 | + return '<p>'.__('View last name for registrants. Can be sorted in ascending or descending order.', 'event_espresso').'</p>'; |
|
171 | 171 | } |
172 | 172 | |
173 | 173 | protected function _att_email_stop() { |
174 | - return '<p>' . __('View email address for registrants. Can be sorted in ascending or descending order.', 'event_espresso') . '</p>'; |
|
174 | + return '<p>'.__('View email address for registrants. Can be sorted in ascending or descending order.', 'event_espresso').'</p>'; |
|
175 | 175 | } |
176 | 176 | |
177 | 177 | protected function _att_phone_stop() { |
178 | - return '<p>' . __('View phone number for registrants.', 'event_espresso') . '</p>'; |
|
178 | + return '<p>'.__('View phone number for registrants.', 'event_espresso').'</p>'; |
|
179 | 179 | } |
180 | 180 | |
181 | 181 | protected function _att_address_stop() { |
182 | - return '<p>' . __('View address for registrants.', 'event_espresso') . '</p>'; |
|
182 | + return '<p>'.__('View address for registrants.', 'event_espresso').'</p>'; |
|
183 | 183 | } |
184 | 184 | |
185 | 185 | protected function _att_city_stop() { |
186 | - return '<p>' . __('View city for registrants.', 'event_espresso') . '</p>'; |
|
186 | + return '<p>'.__('View city for registrants.', 'event_espresso').'</p>'; |
|
187 | 187 | } |
188 | 188 | |
189 | 189 | protected function _sta_id_stop() { |
190 | - return '<p>' . __('View state/province for registrants. Can be sorted in ascending or descending order.', 'event_espresso') . '</p>'; |
|
190 | + return '<p>'.__('View state/province for registrants. Can be sorted in ascending or descending order.', 'event_espresso').'</p>'; |
|
191 | 191 | } |
192 | 192 | |
193 | 193 | protected function _cnt_iso_stop() { |
194 | - return '<p>' . __('View country for registrants. Can be sorted in ascending or descending order.', 'event_espresso') . '</p>'; |
|
194 | + return '<p>'.__('View country for registrants. Can be sorted in ascending or descending order.', 'event_espresso').'</p>'; |
|
195 | 195 | } |
196 | 196 | |
197 | 197 | protected function _bulkactions_stop() { |
198 | - return '<p>' . __('Perform a bulk action to multiple registrants.', 'event_espresso') . '</p>'; |
|
198 | + return '<p>'.__('Perform a bulk action to multiple registrants.', 'event_espresso').'</p>'; |
|
199 | 199 | } |
200 | 200 | |
201 | 201 | protected function _search_stop() { |
202 | - return '<p>' . __('Search through contacts. The following sources will be searched: Event Name, Event Description, First Name, Last Name, Biography, Email Address, Address, Comments, Notes, Registration Final Price, and Registration Code.', 'event_espresso') . '</p>'; |
|
202 | + return '<p>'.__('Search through contacts. The following sources will be searched: Event Name, Event Description, First Name, Last Name, Biography, Email Address, Address, Comments, Notes, Registration Final Price, and Registration Code.', 'event_espresso').'</p>'; |
|
203 | 203 | } |
204 | 204 | |
205 | 205 | protected function _contact_list_csv_export_stop() { |
206 | - return '<p>' . __('Export your contact list to a CSV file.', 'event_espresso') . '</p>'; |
|
206 | + return '<p>'.__('Export your contact list to a CSV file.', 'event_espresso').'</p>'; |
|
207 | 207 | } |
208 | 208 | |
209 | 209 | } |
210 | 210 | \ No newline at end of file |
@@ -6,8 +6,9 @@ |
||
6 | 6 | * @package Event Espresso |
7 | 7 | * @subpackage messages |
8 | 8 | */ |
9 | -if (!defined('EVENT_ESPRESSO_VERSION') ) |
|
9 | +if (!defined('EVENT_ESPRESSO_VERSION') ) { |
|
10 | 10 | exit('NO direct script access allowed'); |
11 | +} |
|
11 | 12 | |
12 | 13 | /** |
13 | 14 | * |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if (!defined('EVENT_ESPRESSO_VERSION') ) |
|
2 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) |
|
3 | 3 | exit('NO direct script access allowed'); |
4 | 4 | |
5 | 5 | /** |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | |
32 | 32 | protected function _set_tour_properties() { |
33 | 33 | $this->_label = __('Event Check-in Tour', 'event_espresso'); |
34 | - if ( isset( $this->_req_data['event_id'] ) ) |
|
34 | + if (isset($this->_req_data['event_id'])) |
|
35 | 35 | $this->_slug = 'event-checkin-overview-joyride'; |
36 | 36 | else |
37 | 37 | $this->_slug = 'all-event-checkin-overview-joyride'; |
@@ -183,73 +183,73 @@ discard block |
||
183 | 183 | |
184 | 184 | |
185 | 185 | protected function _start() { |
186 | - $content = '<h3>' . __('Event Check-in', 'event_espresso') . '</h3>'; |
|
187 | - if ( isset( $this->_req_data['event_id'] ) ) { |
|
188 | - $content .= '<p>' . __('This tour of the Event Check-in page will go over different areas of the screen to help you understand what they are used for.<br /><br /> Note: You are currently viewing the check-in for a specific event so you can toggle the check-in status for attendees.', 'event_espresso') . '</p>'; |
|
186 | + $content = '<h3>'.__('Event Check-in', 'event_espresso').'</h3>'; |
|
187 | + if (isset($this->_req_data['event_id'])) { |
|
188 | + $content .= '<p>'.__('This tour of the Event Check-in page will go over different areas of the screen to help you understand what they are used for.<br /><br /> Note: You are currently viewing the check-in for a specific event so you can toggle the check-in status for attendees.', 'event_espresso').'</p>'; |
|
189 | 189 | } else { |
190 | - $content .= '<p>' . __('This tour of the event check-in page will go over different areas of the screen to help you understand what they are used for. <br /><br /> Note: You must select an event from the dropdown menu before you can toggle the check-in status for an attendee.', 'event_espresso') . '</p>'; |
|
190 | + $content .= '<p>'.__('This tour of the event check-in page will go over different areas of the screen to help you understand what they are used for. <br /><br /> Note: You must select an event from the dropdown menu before you can toggle the check-in status for an attendee.', 'event_espresso').'</p>'; |
|
191 | 191 | } |
192 | 192 | return $content; |
193 | 193 | } |
194 | 194 | |
195 | 195 | protected function _reg_count_stop() { |
196 | - return '<p>' . __('View registration number.', 'event_espresso') . '</p>'; |
|
196 | + return '<p>'.__('View registration number.', 'event_espresso').'</p>'; |
|
197 | 197 | } |
198 | 198 | |
199 | 199 | protected function _attendee_name_stop() { |
200 | - return '<p>' . __('View name of registrant. Can be sorted in ascending or descending order.', 'event_espresso') . '</p>'; |
|
200 | + return '<p>'.__('View name of registrant. Can be sorted in ascending or descending order.', 'event_espresso').'</p>'; |
|
201 | 201 | } |
202 | 202 | |
203 | 203 | protected function _attendee_email_stop() { |
204 | - return '<p>' . __('View email address for a registrant.', 'event_espresso') . '</p>'; |
|
204 | + return '<p>'.__('View email address for a registrant.', 'event_espresso').'</p>'; |
|
205 | 205 | } |
206 | 206 | |
207 | 207 | protected function _reg_date_stop() { |
208 | - return '<p>' . __('View registration date. Can be sorted in ascending or descending order.', 'event_espresso') . '</p>'; |
|
208 | + return '<p>'.__('View registration date. Can be sorted in ascending or descending order.', 'event_espresso').'</p>'; |
|
209 | 209 | } |
210 | 210 | |
211 | 211 | protected function _reg_code_stop() { |
212 | - return '<p>' . __('View registration code. Can be sorted in ascending or descending order.', 'event_espresso') . '</p>'; |
|
212 | + return '<p>'.__('View registration code. Can be sorted in ascending or descending order.', 'event_espresso').'</p>'; |
|
213 | 213 | } |
214 | 214 | |
215 | 215 | protected function _reg_final_price_stop() { |
216 | - return '<p>' . __('View price for ticket.', 'event_espresso') . '</p>'; |
|
216 | + return '<p>'.__('View price for ticket.', 'event_espresso').'</p>'; |
|
217 | 217 | } |
218 | 218 | |
219 | 219 | protected function _txn_paid_stop() { |
220 | - return '<p>' . __('View if registrant has paid for ticket.', 'event_espresso') . '</p>'; |
|
220 | + return '<p>'.__('View if registrant has paid for ticket.', 'event_espresso').'</p>'; |
|
221 | 221 | } |
222 | 222 | |
223 | 223 | protected function _txn_total_stop() { |
224 | - return '<p>' . __('View total amount paid.', 'event_espresso') . '</p>'; |
|
224 | + return '<p>'.__('View total amount paid.', 'event_espresso').'</p>'; |
|
225 | 225 | } |
226 | 226 | |
227 | 227 | protected function _prc_name_stop() { |
228 | - return '<p>' . __('View type of ticket.', 'event_espresso') . '</p>'; |
|
228 | + return '<p>'.__('View type of ticket.', 'event_espresso').'</p>'; |
|
229 | 229 | } |
230 | 230 | |
231 | 231 | protected function _actions_stop() { |
232 | - return '<p>' . __('Perform an action to a registration. See legend in bottom left corner.', 'event_espresso') . '</p>'; |
|
232 | + return '<p>'.__('Perform an action to a registration. See legend in bottom left corner.', 'event_espresso').'</p>'; |
|
233 | 233 | } |
234 | 234 | |
235 | 235 | protected function _legend_stop() { |
236 | - return '<p>' . __('This is the legend that describes the different check-in statuses. Also shows available status for registrations.', 'event_espresso') . '</p>'; |
|
236 | + return '<p>'.__('This is the legend that describes the different check-in statuses. Also shows available status for registrations.', 'event_espresso').'</p>'; |
|
237 | 237 | } |
238 | 238 | |
239 | 239 | protected function _bulkactions_stop() { |
240 | - return '<p>' . __('Perform a bulk action to multiple registrations (only available when viewing check-in for a specific event).', 'event_espresso') . '</p>'; |
|
240 | + return '<p>'.__('Perform a bulk action to multiple registrations (only available when viewing check-in for a specific event).', 'event_espresso').'</p>'; |
|
241 | 241 | } |
242 | 242 | |
243 | 243 | protected function _event_selector_stop() { |
244 | - return '<p>' . __('Select an event from this dropdown and click the filter button to see the check-in registration list for a specific event. You will then be able to toggle the check-in status for a registration.', 'event_espresso') . '</p>'; |
|
244 | + return '<p>'.__('Select an event from this dropdown and click the filter button to see the check-in registration list for a specific event. You will then be able to toggle the check-in status for a registration.', 'event_espresso').'</p>'; |
|
245 | 245 | } |
246 | 246 | |
247 | 247 | protected function _dtt_selector_stop() { |
248 | - return '<p>' . __('This dropdown shows you the date and time that a displayed registration is attached to. You can switch to a different event by selecting another date and clicking on the filter button. You can also switch out of this view by clicking on the reset filters button.', 'event_espresso') . '</p>'; |
|
248 | + return '<p>'.__('This dropdown shows you the date and time that a displayed registration is attached to. You can switch to a different event by selecting another date and clicking on the filter button. You can also switch out of this view by clicking on the reset filters button.', 'event_espresso').'</p>'; |
|
249 | 249 | } |
250 | 250 | |
251 | 251 | protected function _search_stop() { |
252 | - return '<p>' . __('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.', 'event_espresso') . '</p>'; |
|
252 | + return '<p>'.__('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.', 'event_espresso').'</p>'; |
|
253 | 253 | } |
254 | 254 | |
255 | 255 | } |
256 | 256 | \ No newline at end of file |
@@ -1,6 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | -if (!defined('EVENT_ESPRESSO_VERSION') ) |
|
2 | +if (!defined('EVENT_ESPRESSO_VERSION') ) { |
|
3 | 3 | exit('NO direct script access allowed'); |
4 | +} |
|
4 | 5 | |
5 | 6 | /** |
6 | 7 | * Event Espresso |
@@ -31,10 +32,11 @@ discard block |
||
31 | 32 | |
32 | 33 | protected function _set_tour_properties() { |
33 | 34 | $this->_label = __('Event Check-in Tour', 'event_espresso'); |
34 | - if ( isset( $this->_req_data['event_id'] ) ) |
|
35 | - $this->_slug = 'event-checkin-overview-joyride'; |
|
36 | - else |
|
37 | - $this->_slug = 'all-event-checkin-overview-joyride'; |
|
35 | + if ( isset( $this->_req_data['event_id'] ) ) { |
|
36 | + $this->_slug = 'event-checkin-overview-joyride'; |
|
37 | + } else { |
|
38 | + $this->_slug = 'all-event-checkin-overview-joyride'; |
|
39 | + } |
|
38 | 40 | } |
39 | 41 | |
40 | 42 |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if (!defined('EVENT_ESPRESSO_VERSION') ) |
|
2 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) |
|
3 | 3 | exit('NO direct script access allowed'); |
4 | 4 | |
5 | 5 | /** |
@@ -99,32 +99,32 @@ discard block |
||
99 | 99 | |
100 | 100 | |
101 | 101 | protected function _start() { |
102 | - $content = '<h3>' . __('Registration Details', 'event_espresso') . '</h3>'; |
|
103 | - $content .= '<p>' . __('This tour of the Registration Details page will go over different areas of the screen to help you understand what they are used for.', 'event_espresso') . '</p>'; |
|
102 | + $content = '<h3>'.__('Registration Details', 'event_espresso').'</h3>'; |
|
103 | + $content .= '<p>'.__('This tour of the Registration Details page will go over different areas of the screen to help you understand what they are used for.', 'event_espresso').'</p>'; |
|
104 | 104 | return $content; |
105 | 105 | } |
106 | 106 | |
107 | 107 | protected function _reg_date_title() { |
108 | - return '<p>' . __('This is the date that the registration occurred on.') . '</p>'; |
|
108 | + return '<p>'.__('This is the date that the registration occurred on.').'</p>'; |
|
109 | 109 | } |
110 | 110 | |
111 | 111 | protected function _reg_details_stop() { |
112 | - return '<p>' . __('The buttons below allow you to perform an action with a registration. The options are Approved, Not Approved, Declined, and Cancelled.', 'event_espresso') . '</p>'; |
|
112 | + return '<p>'.__('The buttons below allow you to perform an action with a registration. The options are Approved, Not Approved, Declined, and Cancelled.', 'event_espresso').'</p>'; |
|
113 | 113 | } |
114 | 114 | |
115 | 115 | protected function _reg_details_table() { |
116 | - return '<p>' . __('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.', 'event_espresso') . '</p>'; |
|
116 | + return '<p>'.__('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.', 'event_espresso').'</p>'; |
|
117 | 117 | } |
118 | 118 | |
119 | 119 | protected function _display_additional_info_stop() { |
120 | - return '<p>' . __('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.', 'event_espresso') . '</p>'; |
|
120 | + return '<p>'.__('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.', 'event_espresso').'</p>'; |
|
121 | 121 | } |
122 | 122 | |
123 | 123 | protected function _edit_reg_question_stop() { |
124 | - return '<p>' . __('View the answers to your custom questions below.', 'event_espresso') . '</p>'; |
|
124 | + return '<p>'.__('View the answers to your custom questions below.', 'event_espresso').'</p>'; |
|
125 | 125 | } |
126 | 126 | |
127 | 127 | protected function _attendee_details_stop() { |
128 | - return '<p>' . __('View details on the registrant attached to this registration.', 'event_espresso') . '</p>'; |
|
128 | + return '<p>'.__('View details on the registrant attached to this registration.', 'event_espresso').'</p>'; |
|
129 | 129 | } |
130 | 130 | } |
131 | 131 | \ No newline at end of file |
@@ -6,8 +6,9 @@ |
||
6 | 6 | * @package Event Espresso |
7 | 7 | * @subpackage messages |
8 | 8 | */ |
9 | -if (!defined('EVENT_ESPRESSO_VERSION') ) |
|
9 | +if (!defined('EVENT_ESPRESSO_VERSION') ) { |
|
10 | 10 | exit('NO direct script access allowed'); |
11 | +} |
|
11 | 12 | |
12 | 13 | /** |
13 | 14 | * |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if (!defined('EVENT_ESPRESSO_VERSION') ) |
|
2 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) |
|
3 | 3 | exit('NO direct script access allowed'); |
4 | 4 | |
5 | 5 | /** |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | |
32 | 32 | protected function _set_tour_properties() { |
33 | 33 | $this->_label = __('Registrations Overview Tour', 'event_espresso'); |
34 | - if ( isset( $this->_req_data['event_id'] ) ) |
|
34 | + if (isset($this->_req_data['event_id'])) |
|
35 | 35 | $this->_slug = 'registration-per-event-overview-joyride'; |
36 | 36 | else |
37 | 37 | $this->_slug = 'registration-overview-joyride'; |
@@ -174,69 +174,69 @@ discard block |
||
174 | 174 | |
175 | 175 | |
176 | 176 | protected function _start() { |
177 | - $content = '<h3>' . __('Registration Overview', 'event_espresso') . '</h3>'; |
|
178 | - if ( isset( $this->_req_data['event_id'] ) ) { |
|
179 | - $content .= '<p>' . __('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.', 'event_espresso') . '</p>'; |
|
177 | + $content = '<h3>'.__('Registration Overview', 'event_espresso').'</h3>'; |
|
178 | + if (isset($this->_req_data['event_id'])) { |
|
179 | + $content .= '<p>'.__('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.', 'event_espresso').'</p>'; |
|
180 | 180 | } else { |
181 | - $content .= '<p>' . __('This tour of the Registration Overview page will go over different areas of the screen to help you understand what they are used for.', 'event_espresso') . '</p>'; |
|
181 | + $content .= '<p>'.__('This tour of the Registration Overview page will go over different areas of the screen to help you understand what they are used for.', 'event_espresso').'</p>'; |
|
182 | 182 | } |
183 | 183 | return $content; |
184 | 184 | } |
185 | 185 | |
186 | 186 | protected function _reg_id_stop() { |
187 | - return '<p>' . __('View the registration ID. Can be sorted in ascending or descending order.', 'event_espresso') . '</p>'; |
|
187 | + return '<p>'.__('View the registration ID. Can be sorted in ascending or descending order.', 'event_espresso').'</p>'; |
|
188 | 188 | } |
189 | 189 | |
190 | 190 | protected function _reg_count_stop() { |
191 | - return '<p>' . __('View registration number.', 'event_espresso') . '</p>'; |
|
191 | + return '<p>'.__('View registration number.', 'event_espresso').'</p>'; |
|
192 | 192 | } |
193 | 193 | |
194 | 194 | protected function _attendee_name_stop() { |
195 | - return '<p>' . __('View the name of the registrant. Can be sorted in ascending or descending order.', 'event_espresso') . '</p>'; |
|
195 | + return '<p>'.__('View the name of the registrant. Can be sorted in ascending or descending order.', 'event_espresso').'</p>'; |
|
196 | 196 | } |
197 | 197 | |
198 | 198 | protected function _reg_date_stop() { |
199 | - return '<p>' . __('View registration date. Can be sorted in ascending or descending order.', 'event_espresso') . '</p>'; |
|
199 | + return '<p>'.__('View registration date. Can be sorted in ascending or descending order.', 'event_espresso').'</p>'; |
|
200 | 200 | } |
201 | 201 | |
202 | 202 | protected function _event_name_stop() { |
203 | - return '<p>' . __('View the name of the event. Can be sorted in ascending or descending order.', 'event_espresso') . '</p>'; |
|
203 | + return '<p>'.__('View the name of the event. Can be sorted in ascending or descending order.', 'event_espresso').'</p>'; |
|
204 | 204 | } |
205 | 205 | |
206 | 206 | protected function _dtt_evt_start_stop() { |
207 | - return '<p>' . __('View the date of the event. Can be sorted in ascending or descending order.', 'event_espresso') . '</p>'; |
|
207 | + return '<p>'.__('View the date of the event. Can be sorted in ascending or descending order.', 'event_espresso').'</p>'; |
|
208 | 208 | } |
209 | 209 | |
210 | 210 | protected function _reg_code_stop() { |
211 | - return '<p>' . __('View registration code for a registrant.', 'event_espresso') . '</p>'; |
|
211 | + return '<p>'.__('View registration code for a registrant.', 'event_espresso').'</p>'; |
|
212 | 212 | } |
213 | 213 | |
214 | 214 | protected function _txn_total_stop() { |
215 | - return '<p>' . __('View price of registration.', 'event_espresso') . '</p>'; |
|
215 | + return '<p>'.__('View price of registration.', 'event_espresso').'</p>'; |
|
216 | 216 | } |
217 | 217 | |
218 | 218 | protected function _actions_stop() { |
219 | - return '<p>' . __('Perform an action to a registration. See legend in bottom left corner.', 'event_espresso') . '</p>'; |
|
219 | + return '<p>'.__('Perform an action to a registration. See legend in bottom left corner.', 'event_espresso').'</p>'; |
|
220 | 220 | } |
221 | 221 | |
222 | 222 | protected function _legend_stop() { |
223 | - return '<p>' . __('This is the legend that describes the actions available in the actions column. Also shows available statuses for a registration.', 'event_espresso') . '</p>'; |
|
223 | + return '<p>'.__('This is the legend that describes the actions available in the actions column. Also shows available statuses for a registration.', 'event_espresso').'</p>'; |
|
224 | 224 | } |
225 | 225 | |
226 | 226 | protected function _views_stop() { |
227 | - return '<p>' . __('You can select different views by time period or look at registrations which have been moved to the trash.') . '</p>'; |
|
227 | + return '<p>'.__('You can select different views by time period or look at registrations which have been moved to the trash.').'</p>'; |
|
228 | 228 | } |
229 | 229 | |
230 | 230 | protected function _bulkactions_stop() { |
231 | - return '<p>' . __('Perform a bulk action to multiple registrations.', 'event_espresso') . '</p>'; |
|
231 | + return '<p>'.__('Perform a bulk action to multiple registrations.', 'event_espresso').'</p>'; |
|
232 | 232 | } |
233 | 233 | |
234 | 234 | protected function _stop_about_filters() { |
235 | - return '<p>' . __('Registrations can be filtered by date, categories, or status.', 'event_espresso') . '</p>'; |
|
235 | + return '<p>'.__('Registrations can be filtered by date, categories, or status.', 'event_espresso').'</p>'; |
|
236 | 236 | } |
237 | 237 | |
238 | 238 | protected function _search_stop() { |
239 | - return '<p>' . __('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.', 'event_espresso') . '</p>'; |
|
239 | + return '<p>'.__('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.', 'event_espresso').'</p>'; |
|
240 | 240 | } |
241 | 241 | |
242 | 242 | } |
243 | 243 | \ No newline at end of file |
@@ -1,6 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | -if (!defined('EVENT_ESPRESSO_VERSION') ) |
|
2 | +if (!defined('EVENT_ESPRESSO_VERSION') ) { |
|
3 | 3 | exit('NO direct script access allowed'); |
4 | +} |
|
4 | 5 | |
5 | 6 | /** |
6 | 7 | * Event Espresso |
@@ -31,10 +32,11 @@ discard block |
||
31 | 32 | |
32 | 33 | protected function _set_tour_properties() { |
33 | 34 | $this->_label = __('Registrations Overview Tour', 'event_espresso'); |
34 | - if ( isset( $this->_req_data['event_id'] ) ) |
|
35 | - $this->_slug = 'registration-per-event-overview-joyride'; |
|
36 | - else |
|
37 | - $this->_slug = 'registration-overview-joyride'; |
|
35 | + if ( isset( $this->_req_data['event_id'] ) ) { |
|
36 | + $this->_slug = 'registration-per-event-overview-joyride'; |
|
37 | + } else { |
|
38 | + $this->_slug = 'registration-overview-joyride'; |
|
39 | + } |
|
38 | 40 | } |
39 | 41 | |
40 | 42 |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if (!defined('EVENT_ESPRESSO_VERSION') ) |
|
2 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) |
|
3 | 3 | exit('NO direct script access allowed'); |
4 | 4 | |
5 | 5 | /** |
@@ -60,17 +60,17 @@ discard block |
||
60 | 60 | } |
61 | 61 | |
62 | 62 | protected function _start() { |
63 | - $content = '<h3>' . __('Registration Reports', 'event_espresso') . '</h3>'; |
|
64 | - $content .= '<p>' . __('This tour of the Registration Reports page will go over different areas of the screen to help you understand what they are used for.', 'event_espresso') . '</p>'; |
|
63 | + $content = '<h3>'.__('Registration Reports', 'event_espresso').'</h3>'; |
|
64 | + $content .= '<p>'.__('This tour of the Registration Reports page will go over different areas of the screen to help you understand what they are used for.', 'event_espresso').'</p>'; |
|
65 | 65 | return $content; |
66 | 66 | } |
67 | 67 | |
68 | 68 | protected function _reg_per_day_report_stop() { |
69 | - return '<p>' . __('This graph shows registrations for each day.', 'event_espresso') . '</p>'; |
|
69 | + return '<p>'.__('This graph shows registrations for each day.', 'event_espresso').'</p>'; |
|
70 | 70 | } |
71 | 71 | |
72 | 72 | protected function _reg_per_event_report_stop() { |
73 | - return '<p>' . __('This graph shows registrations for each event.', 'event_espresso') . '</p>'; |
|
73 | + return '<p>'.__('This graph shows registrations for each event.', 'event_espresso').'</p>'; |
|
74 | 74 | } |
75 | 75 | |
76 | 76 | } |
77 | 77 | \ No newline at end of file |
@@ -6,8 +6,9 @@ |
||
6 | 6 | * @package Event Espresso |
7 | 7 | * @subpackage messages |
8 | 8 | */ |
9 | -if (!defined('EVENT_ESPRESSO_VERSION') ) |
|
9 | +if (!defined('EVENT_ESPRESSO_VERSION') ) { |
|
10 | 10 | exit('NO direct script access allowed'); |
11 | +} |
|
11 | 12 | |
12 | 13 | /** |
13 | 14 | * |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if (!defined('EVENT_ESPRESSO_VERSION') ) |
|
2 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) |
|
3 | 3 | exit('NO direct script access allowed'); |
4 | 4 | |
5 | 5 | /** |
@@ -97,39 +97,39 @@ discard block |
||
97 | 97 | |
98 | 98 | |
99 | 99 | protected function _start() { |
100 | - $content = '<h3>' . __('Welcome to the Registration Details page!', 'event_espresso') . '</h3>'; |
|
101 | - $content .= '<p>' . __('An introduction to the registration details page', 'event_espresso') . '</p>'; |
|
100 | + $content = '<h3>'.__('Welcome to the Registration Details page!', 'event_espresso').'</h3>'; |
|
101 | + $content .= '<p>'.__('An introduction to the registration details page', 'event_espresso').'</p>'; |
|
102 | 102 | return $content; |
103 | 103 | } |
104 | 104 | |
105 | 105 | |
106 | 106 | protected function _reg_date_title() { |
107 | - return '<p>' . __('About the reg date') . '</p>'; |
|
107 | + return '<p>'.__('About the reg date').'</p>'; |
|
108 | 108 | } |
109 | 109 | |
110 | 110 | |
111 | 111 | |
112 | 112 | protected function _reg_details_stop() { |
113 | - return '<p>' . __('About the reg details area (pending, buttons they can push and what happens)', 'event_espresso') . '</p>'; |
|
113 | + return '<p>'.__('About the reg details area (pending, buttons they can push and what happens)', 'event_espresso').'</p>'; |
|
114 | 114 | } |
115 | 115 | |
116 | 116 | |
117 | 117 | protected function _reg_details_table() { |
118 | - return '<p>' . __('about the registration details metabox', 'event_espresso') . '</p>'; |
|
118 | + return '<p>'.__('about the registration details metabox', 'event_espresso').'</p>'; |
|
119 | 119 | } |
120 | 120 | |
121 | 121 | |
122 | 122 | protected function _display_additional_info_stop() { |
123 | - return '<p>' . __('what happens when they click this link? What\'s it here for', 'event_espresso') . '</p>'; |
|
123 | + return '<p>'.__('what happens when they click this link? What\'s it here for', 'event_espresso').'</p>'; |
|
124 | 124 | } |
125 | 125 | |
126 | 126 | |
127 | 127 | protected function _attendee_details_stop() { |
128 | - return '<p>' . __('details on the registrant attached to this registration', 'event_espresso') . '</p>'; |
|
128 | + return '<p>'.__('details on the registrant attached to this registration', 'event_espresso').'</p>'; |
|
129 | 129 | } |
130 | 130 | |
131 | 131 | |
132 | 132 | protected function _edit_reg_question_stop() { |
133 | - return '<p>' . __('info about how they can edit the questions related to this registration here', 'event_espresso') . '</p>'; |
|
133 | + return '<p>'.__('info about how they can edit the questions related to this registration here', 'event_espresso').'</p>'; |
|
134 | 134 | } |
135 | 135 | } |
136 | 136 | \ No newline at end of file |
@@ -6,8 +6,9 @@ |
||
6 | 6 | * @package Event Espresso |
7 | 7 | * @subpackage messages |
8 | 8 | */ |
9 | -if (!defined('EVENT_ESPRESSO_VERSION') ) |
|
9 | +if (!defined('EVENT_ESPRESSO_VERSION') ) { |
|
10 | 10 | exit('NO direct script access allowed'); |
11 | +} |
|
11 | 12 | |
12 | 13 | /** |
13 | 14 | * |