@@ -125,12 +125,12 @@ discard block |
||
125 | 125 | |
126 | 126 | protected function _start() |
127 | 127 | { |
128 | - $content = '<h3>' . __('Event Editor', 'event_espresso') . '</h3>'; |
|
128 | + $content = '<h3>'.__('Event Editor', 'event_espresso').'</h3>'; |
|
129 | 129 | $content .= '<p>' |
130 | 130 | . __( |
131 | 131 | 'This tour of the Event Editor will provide an overview of the different areas of the screen to help you understand what they are used for. Let\'s get started on setting up your first event with Event Espresso!', |
132 | 132 | 'event_espresso' |
133 | - ) . '</p>'; |
|
133 | + ).'</p>'; |
|
134 | 134 | return $content; |
135 | 135 | } |
136 | 136 | |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | . __( |
146 | 146 | 'The rich text editor can be used to add information about your event. Images and links can also be added along with your text.', |
147 | 147 | 'event_espresso' |
148 | - ) . '</p>'; |
|
148 | + ).'</p>'; |
|
149 | 149 | } |
150 | 150 | |
151 | 151 | protected function _event_venues_caf() |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | . __( |
155 | 155 | 'In this section, you can select the venue that is hosting your event.', |
156 | 156 | 'event_espresso' |
157 | - ) . '</p>'; |
|
157 | + ).'</p>'; |
|
158 | 158 | } |
159 | 159 | |
160 | 160 | protected function _event_venues_stop() |
@@ -163,7 +163,7 @@ discard block |
||
163 | 163 | . __( |
164 | 164 | 'In this section, you can enter information about the venue that is hosting your event.', |
165 | 165 | 'event_espresso' |
166 | - ) . '</p>'; |
|
166 | + ).'</p>'; |
|
167 | 167 | } |
168 | 168 | |
169 | 169 | protected function _event_pricing_stop() |
@@ -172,7 +172,7 @@ discard block |
||
172 | 172 | . __( |
173 | 173 | 'Use the Event Datetime & Ticket section to enter details about when the event is happening and what tickets you want to offer for access to the event.', |
174 | 174 | 'event_espresso' |
175 | - ) . '</p>'; |
|
175 | + ).'</p>'; |
|
176 | 176 | } |
177 | 177 | |
178 | 178 | protected function _event_pricing_caf() |
@@ -181,22 +181,22 @@ discard block |
||
181 | 181 | . __( |
182 | 182 | 'Use the Event Datetimes & Ticket section to enter details about when the event is happening and what tickets you want to offer for access to the event.', |
183 | 183 | 'event_espresso' |
184 | - ) . '</p>'; |
|
184 | + ).'</p>'; |
|
185 | 185 | } |
186 | 186 | |
187 | 187 | protected function _event_registration_options_stop() |
188 | 188 | { |
189 | - return '<p>' . __('Setup custom options for your event registration.', 'event_espresso') . '</p>'; |
|
189 | + return '<p>'.__('Setup custom options for your event registration.', 'event_espresso').'</p>'; |
|
190 | 190 | } |
191 | 191 | |
192 | 192 | protected function _event_post_tag_stop() |
193 | 193 | { |
194 | - return '<p>' . __('Quickly add tags to your event.', 'event_espresso') . '</p>'; |
|
194 | + return '<p>'.__('Quickly add tags to your event.', 'event_espresso').'</p>'; |
|
195 | 195 | } |
196 | 196 | |
197 | 197 | protected function _event_categories_stop() |
198 | 198 | { |
199 | - return '<p>' . __('Events can also be categorized if you wish.', 'event_espresso') . '</p>'; |
|
199 | + return '<p>'.__('Events can also be categorized if you wish.', 'event_espresso').'</p>'; |
|
200 | 200 | } |
201 | 201 | |
202 | 202 | protected function _primary_question_stop_caf() |
@@ -205,7 +205,7 @@ discard block |
||
205 | 205 | . __( |
206 | 206 | 'Use the questions group to request information from your primary registrant.', |
207 | 207 | 'event_espresso' |
208 | - ) . '</p>'; |
|
208 | + ).'</p>'; |
|
209 | 209 | } |
210 | 210 | |
211 | 211 | protected function _additional_questions_stop_caf() |
@@ -214,12 +214,12 @@ discard block |
||
214 | 214 | . __( |
215 | 215 | 'Use the questions group to request information from your additional registrant.', |
216 | 216 | 'event_espresso' |
217 | - ) . '</p>'; |
|
217 | + ).'</p>'; |
|
218 | 218 | } |
219 | 219 | |
220 | 220 | protected function _featured_image_stop() |
221 | 221 | { |
222 | - return '<p>' . __('Set a feature image for your event here.', 'event_espresso') . '</p>'; |
|
222 | + return '<p>'.__('Set a feature image for your event here.', 'event_espresso').'</p>'; |
|
223 | 223 | } |
224 | 224 | |
225 | 225 | protected function _publish_event_stop() |
@@ -228,6 +228,6 @@ discard block |
||
228 | 228 | . __( |
229 | 229 | 'Easily control the state of your event. The main states are Published, Pending Review, and Draft. Additional states are Cancelled, Postponed, and Sold Out.', |
230 | 230 | 'event_espresso' |
231 | - ) . '</p>'; |
|
231 | + ).'</p>'; |
|
232 | 232 | } |
233 | 233 | } |
@@ -15,243 +15,243 @@ |
||
15 | 15 | class Event_Edit_Help_Tour extends EE_Help_Tour |
16 | 16 | { |
17 | 17 | |
18 | - protected function _set_tour_properties() |
|
19 | - { |
|
20 | - $this->_label = __('Event Editor Tour', 'event_espresso'); |
|
21 | - $this->_slug = $this->_is_caf ? 'event-edit-caf-joyride' : 'event-edit-joyride'; |
|
22 | - } |
|
18 | + protected function _set_tour_properties() |
|
19 | + { |
|
20 | + $this->_label = __('Event Editor Tour', 'event_espresso'); |
|
21 | + $this->_slug = $this->_is_caf ? 'event-edit-caf-joyride' : 'event-edit-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' => 'titlewrap', |
|
32 | - 'content' => $this->_event_title_stop(), |
|
33 | - 'options' => array( |
|
34 | - 'tipLocation' => 'bottom', |
|
35 | - 'tipAdjustmentY' => -40, |
|
36 | - ), |
|
37 | - ), |
|
38 | - 30 => array( |
|
39 | - 'id' => 'wp-content-editor-tools', |
|
40 | - 'content' => $this->_event_description_stop(), |
|
41 | - 'options' => array( |
|
42 | - 'tipLocation' => 'right', |
|
43 | - ), |
|
44 | - ), |
|
45 | - 35 => array( |
|
46 | - 'id' => 'espresso_event_editor_tickets', |
|
47 | - 'content' => $this->_event_pricing_stop(), |
|
48 | - 'options' => array( |
|
49 | - 'tipLocation' => 'top', |
|
50 | - 'tipAdjustmentY' => -30, |
|
51 | - ), |
|
52 | - ), |
|
53 | - 40 => array( |
|
54 | - 'id' => 'espresso_events_Venues_Hooks_venue_metabox_metabox', |
|
55 | - 'content' => $this->_event_venues_caf(), |
|
56 | - 'options' => array( |
|
57 | - 'tipLocation' => 'top', |
|
58 | - 'tipAdjustmentY' => -30, |
|
59 | - ), |
|
60 | - ), |
|
61 | - 45 => array( |
|
62 | - 'id' => 'espresso_event_editor_venue', |
|
63 | - 'content' => $this->_event_venues_stop(), |
|
64 | - 'options' => array( |
|
65 | - 'tipLocation' => 'top', |
|
66 | - 'tipAdjustmentY' => -30, |
|
67 | - ), |
|
68 | - ), |
|
69 | - 50 => array( |
|
70 | - 'id' => 'espresso_events_Pricing_Hooks_pricing_metabox_metabox', |
|
71 | - 'content' => $this->_event_pricing_caf(), |
|
72 | - 'options' => array( |
|
73 | - 'tipLocation' => 'top', |
|
74 | - 'tipAdjustmentY' => -30, |
|
75 | - ), |
|
76 | - ), |
|
77 | - 60 => array( |
|
78 | - 'id' => 'tagsdiv-post_tag', |
|
79 | - 'content' => $this->_event_post_tag_stop(), |
|
80 | - 'options' => array( |
|
81 | - 'tipLocation' => 'left', |
|
82 | - ), |
|
83 | - ), |
|
84 | - 70 => array( |
|
85 | - 'id' => 'espresso_event_categoriesdiv', |
|
86 | - 'content' => $this->_event_categories_stop(), |
|
87 | - 'options' => array( |
|
88 | - 'tipLocation' => 'left', |
|
89 | - ), |
|
90 | - ), |
|
24 | + protected function _set_tour_stops() |
|
25 | + { |
|
26 | + $this->_stops = array( |
|
27 | + 10 => array( |
|
28 | + 'content' => $this->_start(), |
|
29 | + ), |
|
30 | + 20 => array( |
|
31 | + 'id' => 'titlewrap', |
|
32 | + 'content' => $this->_event_title_stop(), |
|
33 | + 'options' => array( |
|
34 | + 'tipLocation' => 'bottom', |
|
35 | + 'tipAdjustmentY' => -40, |
|
36 | + ), |
|
37 | + ), |
|
38 | + 30 => array( |
|
39 | + 'id' => 'wp-content-editor-tools', |
|
40 | + 'content' => $this->_event_description_stop(), |
|
41 | + 'options' => array( |
|
42 | + 'tipLocation' => 'right', |
|
43 | + ), |
|
44 | + ), |
|
45 | + 35 => array( |
|
46 | + 'id' => 'espresso_event_editor_tickets', |
|
47 | + 'content' => $this->_event_pricing_stop(), |
|
48 | + 'options' => array( |
|
49 | + 'tipLocation' => 'top', |
|
50 | + 'tipAdjustmentY' => -30, |
|
51 | + ), |
|
52 | + ), |
|
53 | + 40 => array( |
|
54 | + 'id' => 'espresso_events_Venues_Hooks_venue_metabox_metabox', |
|
55 | + 'content' => $this->_event_venues_caf(), |
|
56 | + 'options' => array( |
|
57 | + 'tipLocation' => 'top', |
|
58 | + 'tipAdjustmentY' => -30, |
|
59 | + ), |
|
60 | + ), |
|
61 | + 45 => array( |
|
62 | + 'id' => 'espresso_event_editor_venue', |
|
63 | + 'content' => $this->_event_venues_stop(), |
|
64 | + 'options' => array( |
|
65 | + 'tipLocation' => 'top', |
|
66 | + 'tipAdjustmentY' => -30, |
|
67 | + ), |
|
68 | + ), |
|
69 | + 50 => array( |
|
70 | + 'id' => 'espresso_events_Pricing_Hooks_pricing_metabox_metabox', |
|
71 | + 'content' => $this->_event_pricing_caf(), |
|
72 | + 'options' => array( |
|
73 | + 'tipLocation' => 'top', |
|
74 | + 'tipAdjustmentY' => -30, |
|
75 | + ), |
|
76 | + ), |
|
77 | + 60 => array( |
|
78 | + 'id' => 'tagsdiv-post_tag', |
|
79 | + 'content' => $this->_event_post_tag_stop(), |
|
80 | + 'options' => array( |
|
81 | + 'tipLocation' => 'left', |
|
82 | + ), |
|
83 | + ), |
|
84 | + 70 => array( |
|
85 | + 'id' => 'espresso_event_categoriesdiv', |
|
86 | + 'content' => $this->_event_categories_stop(), |
|
87 | + 'options' => array( |
|
88 | + 'tipLocation' => 'left', |
|
89 | + ), |
|
90 | + ), |
|
91 | 91 | |
92 | - 80 => array( |
|
93 | - 'id' => $this->_is_caf ? 'espresso_events_Registration_Form_Hooks_Extend_primary_questions_metabox' |
|
94 | - : 'espresso_events_Registration_Form_Hooks_primary_questions_metabox', |
|
95 | - 'content' => $this->_primary_question_stop_caf(), |
|
96 | - 'options' => array( |
|
97 | - 'tipLocation' => 'left', |
|
98 | - ), |
|
99 | - ), |
|
100 | - 90 => array( |
|
101 | - 'id' => 'espresso_events_Registration_Form_Hooks_Extend_additional_questions_metabox', |
|
102 | - 'content' => $this->_additional_questions_stop_caf(), |
|
103 | - 'options' => array( |
|
104 | - 'tipLocation' => 'left', |
|
105 | - ), |
|
106 | - ), |
|
107 | - 100 => array( |
|
108 | - 'id' => 'postimagediv', |
|
109 | - 'content' => $this->_featured_image_stop(), |
|
110 | - 'options' => array( |
|
111 | - 'tipLocation' => 'left', |
|
112 | - ), |
|
113 | - ), |
|
114 | - 110 => array( |
|
115 | - 'id' => 'espresso_event_editor_event_options', |
|
116 | - 'content' => $this->_event_registration_options_stop(), |
|
117 | - 'options' => array( |
|
118 | - 'tipLocation' => 'left', |
|
119 | - ), |
|
120 | - ), |
|
121 | - 120 => array( |
|
122 | - 'id' => 'submitpost', |
|
123 | - 'content' => $this->_publish_event_stop(), |
|
124 | - 'options' => array( |
|
125 | - 'tipLocation' => 'left', |
|
126 | - ), |
|
127 | - ), |
|
128 | - ); |
|
92 | + 80 => array( |
|
93 | + 'id' => $this->_is_caf ? 'espresso_events_Registration_Form_Hooks_Extend_primary_questions_metabox' |
|
94 | + : 'espresso_events_Registration_Form_Hooks_primary_questions_metabox', |
|
95 | + 'content' => $this->_primary_question_stop_caf(), |
|
96 | + 'options' => array( |
|
97 | + 'tipLocation' => 'left', |
|
98 | + ), |
|
99 | + ), |
|
100 | + 90 => array( |
|
101 | + 'id' => 'espresso_events_Registration_Form_Hooks_Extend_additional_questions_metabox', |
|
102 | + 'content' => $this->_additional_questions_stop_caf(), |
|
103 | + 'options' => array( |
|
104 | + 'tipLocation' => 'left', |
|
105 | + ), |
|
106 | + ), |
|
107 | + 100 => array( |
|
108 | + 'id' => 'postimagediv', |
|
109 | + 'content' => $this->_featured_image_stop(), |
|
110 | + 'options' => array( |
|
111 | + 'tipLocation' => 'left', |
|
112 | + ), |
|
113 | + ), |
|
114 | + 110 => array( |
|
115 | + 'id' => 'espresso_event_editor_event_options', |
|
116 | + 'content' => $this->_event_registration_options_stop(), |
|
117 | + 'options' => array( |
|
118 | + 'tipLocation' => 'left', |
|
119 | + ), |
|
120 | + ), |
|
121 | + 120 => array( |
|
122 | + 'id' => 'submitpost', |
|
123 | + 'content' => $this->_publish_event_stop(), |
|
124 | + 'options' => array( |
|
125 | + 'tipLocation' => 'left', |
|
126 | + ), |
|
127 | + ), |
|
128 | + ); |
|
129 | 129 | |
130 | - if (EE_Config::instance()->admin->useAdvancedEditor()) { |
|
131 | - unset( |
|
132 | - // description |
|
133 | - $this->_stops[30], |
|
134 | - // tickets |
|
135 | - $this->_stops[35], |
|
136 | - // venues |
|
137 | - $this->_stops[40], |
|
138 | - $this->_stops[45], |
|
139 | - // pricing |
|
140 | - $this->_stops[50], |
|
141 | - // questions |
|
142 | - $this->_stops[90], |
|
143 | - // reg options |
|
144 | - $this->_stops[110] |
|
145 | - ); |
|
146 | - } |
|
147 | - } |
|
130 | + if (EE_Config::instance()->admin->useAdvancedEditor()) { |
|
131 | + unset( |
|
132 | + // description |
|
133 | + $this->_stops[30], |
|
134 | + // tickets |
|
135 | + $this->_stops[35], |
|
136 | + // venues |
|
137 | + $this->_stops[40], |
|
138 | + $this->_stops[45], |
|
139 | + // pricing |
|
140 | + $this->_stops[50], |
|
141 | + // questions |
|
142 | + $this->_stops[90], |
|
143 | + // reg options |
|
144 | + $this->_stops[110] |
|
145 | + ); |
|
146 | + } |
|
147 | + } |
|
148 | 148 | |
149 | 149 | |
150 | - protected function _start() |
|
151 | - { |
|
152 | - $content = '<h3>' . __('Event Editor', 'event_espresso') . '</h3>'; |
|
153 | - $content .= '<p>' |
|
154 | - . __( |
|
155 | - 'This tour of the Event Editor will provide an overview of the different areas of the screen to help you understand what they are used for. Let\'s get started on setting up your first event with Event Espresso!', |
|
156 | - 'event_espresso' |
|
157 | - ) . '</p>'; |
|
158 | - return $content; |
|
159 | - } |
|
150 | + protected function _start() |
|
151 | + { |
|
152 | + $content = '<h3>' . __('Event Editor', 'event_espresso') . '</h3>'; |
|
153 | + $content .= '<p>' |
|
154 | + . __( |
|
155 | + 'This tour of the Event Editor will provide an overview of the different areas of the screen to help you understand what they are used for. Let\'s get started on setting up your first event with Event Espresso!', |
|
156 | + 'event_espresso' |
|
157 | + ) . '</p>'; |
|
158 | + return $content; |
|
159 | + } |
|
160 | 160 | |
161 | - protected function _event_title_stop() |
|
162 | - { |
|
163 | - return '<p>Enter the title for your event in this field.</p>'; |
|
164 | - } |
|
161 | + protected function _event_title_stop() |
|
162 | + { |
|
163 | + return '<p>Enter the title for your event in this field.</p>'; |
|
164 | + } |
|
165 | 165 | |
166 | - protected function _event_description_stop() |
|
167 | - { |
|
168 | - return '<p>' |
|
169 | - . __( |
|
170 | - 'The rich text editor can be used to add information about your event. Images and links can also be added along with your text.', |
|
171 | - 'event_espresso' |
|
172 | - ) . '</p>'; |
|
173 | - } |
|
166 | + protected function _event_description_stop() |
|
167 | + { |
|
168 | + return '<p>' |
|
169 | + . __( |
|
170 | + 'The rich text editor can be used to add information about your event. Images and links can also be added along with your text.', |
|
171 | + 'event_espresso' |
|
172 | + ) . '</p>'; |
|
173 | + } |
|
174 | 174 | |
175 | - protected function _event_venues_caf() |
|
176 | - { |
|
177 | - return '<p>' |
|
178 | - . __( |
|
179 | - 'In this section, you can select the venue that is hosting your event.', |
|
180 | - 'event_espresso' |
|
181 | - ) . '</p>'; |
|
182 | - } |
|
175 | + protected function _event_venues_caf() |
|
176 | + { |
|
177 | + return '<p>' |
|
178 | + . __( |
|
179 | + 'In this section, you can select the venue that is hosting your event.', |
|
180 | + 'event_espresso' |
|
181 | + ) . '</p>'; |
|
182 | + } |
|
183 | 183 | |
184 | - protected function _event_venues_stop() |
|
185 | - { |
|
186 | - return '<p>' |
|
187 | - . __( |
|
188 | - 'In this section, you can enter information about the venue that is hosting your event.', |
|
189 | - 'event_espresso' |
|
190 | - ) . '</p>'; |
|
191 | - } |
|
184 | + protected function _event_venues_stop() |
|
185 | + { |
|
186 | + return '<p>' |
|
187 | + . __( |
|
188 | + 'In this section, you can enter information about the venue that is hosting your event.', |
|
189 | + 'event_espresso' |
|
190 | + ) . '</p>'; |
|
191 | + } |
|
192 | 192 | |
193 | - protected function _event_pricing_stop() |
|
194 | - { |
|
195 | - return '<p>' |
|
196 | - . __( |
|
197 | - 'Use the Event Datetime & Ticket section to enter details about when the event is happening and what tickets you want to offer for access to the event.', |
|
198 | - 'event_espresso' |
|
199 | - ) . '</p>'; |
|
200 | - } |
|
193 | + protected function _event_pricing_stop() |
|
194 | + { |
|
195 | + return '<p>' |
|
196 | + . __( |
|
197 | + 'Use the Event Datetime & Ticket section to enter details about when the event is happening and what tickets you want to offer for access to the event.', |
|
198 | + 'event_espresso' |
|
199 | + ) . '</p>'; |
|
200 | + } |
|
201 | 201 | |
202 | - protected function _event_pricing_caf() |
|
203 | - { |
|
204 | - return '<p>' |
|
205 | - . __( |
|
206 | - 'Use the Event Datetimes & Ticket section to enter details about when the event is happening and what tickets you want to offer for access to the event.', |
|
207 | - 'event_espresso' |
|
208 | - ) . '</p>'; |
|
209 | - } |
|
202 | + protected function _event_pricing_caf() |
|
203 | + { |
|
204 | + return '<p>' |
|
205 | + . __( |
|
206 | + 'Use the Event Datetimes & Ticket section to enter details about when the event is happening and what tickets you want to offer for access to the event.', |
|
207 | + 'event_espresso' |
|
208 | + ) . '</p>'; |
|
209 | + } |
|
210 | 210 | |
211 | - protected function _event_registration_options_stop() |
|
212 | - { |
|
213 | - return '<p>' . __('Setup custom options for your event registration.', 'event_espresso') . '</p>'; |
|
214 | - } |
|
211 | + protected function _event_registration_options_stop() |
|
212 | + { |
|
213 | + return '<p>' . __('Setup custom options for your event registration.', 'event_espresso') . '</p>'; |
|
214 | + } |
|
215 | 215 | |
216 | - protected function _event_post_tag_stop() |
|
217 | - { |
|
218 | - return '<p>' . __('Quickly add tags to your event.', 'event_espresso') . '</p>'; |
|
219 | - } |
|
216 | + protected function _event_post_tag_stop() |
|
217 | + { |
|
218 | + return '<p>' . __('Quickly add tags to your event.', 'event_espresso') . '</p>'; |
|
219 | + } |
|
220 | 220 | |
221 | - protected function _event_categories_stop() |
|
222 | - { |
|
223 | - return '<p>' . __('Events can also be categorized if you wish.', 'event_espresso') . '</p>'; |
|
224 | - } |
|
221 | + protected function _event_categories_stop() |
|
222 | + { |
|
223 | + return '<p>' . __('Events can also be categorized if you wish.', 'event_espresso') . '</p>'; |
|
224 | + } |
|
225 | 225 | |
226 | - protected function _primary_question_stop_caf() |
|
227 | - { |
|
228 | - return '<p>' |
|
229 | - . __( |
|
230 | - 'Use the questions group to request information from your primary registrant.', |
|
231 | - 'event_espresso' |
|
232 | - ) . '</p>'; |
|
233 | - } |
|
226 | + protected function _primary_question_stop_caf() |
|
227 | + { |
|
228 | + return '<p>' |
|
229 | + . __( |
|
230 | + 'Use the questions group to request information from your primary registrant.', |
|
231 | + 'event_espresso' |
|
232 | + ) . '</p>'; |
|
233 | + } |
|
234 | 234 | |
235 | - protected function _additional_questions_stop_caf() |
|
236 | - { |
|
237 | - return '<p>' |
|
238 | - . __( |
|
239 | - 'Use the questions group to request information from your additional registrant.', |
|
240 | - 'event_espresso' |
|
241 | - ) . '</p>'; |
|
242 | - } |
|
235 | + protected function _additional_questions_stop_caf() |
|
236 | + { |
|
237 | + return '<p>' |
|
238 | + . __( |
|
239 | + 'Use the questions group to request information from your additional registrant.', |
|
240 | + 'event_espresso' |
|
241 | + ) . '</p>'; |
|
242 | + } |
|
243 | 243 | |
244 | - protected function _featured_image_stop() |
|
245 | - { |
|
246 | - return '<p>' . __('Set a feature image for your event here.', 'event_espresso') . '</p>'; |
|
247 | - } |
|
244 | + protected function _featured_image_stop() |
|
245 | + { |
|
246 | + return '<p>' . __('Set a feature image for your event here.', 'event_espresso') . '</p>'; |
|
247 | + } |
|
248 | 248 | |
249 | - protected function _publish_event_stop() |
|
250 | - { |
|
251 | - return '<p>' |
|
252 | - . __( |
|
253 | - 'Easily control the state of your event. The main states are Published, Pending Review, and Draft. Additional states are Cancelled, Postponed, and Sold Out.', |
|
254 | - 'event_espresso' |
|
255 | - ) . '</p>'; |
|
256 | - } |
|
249 | + protected function _publish_event_stop() |
|
250 | + { |
|
251 | + return '<p>' |
|
252 | + . __( |
|
253 | + 'Easily control the state of your event. The main states are Published, Pending Review, and Draft. Additional states are Cancelled, Postponed, and Sold Out.', |
|
254 | + 'event_espresso' |
|
255 | + ) . '</p>'; |
|
256 | + } |
|
257 | 257 | } |
@@ -16,36 +16,36 @@ |
||
16 | 16 | { |
17 | 17 | |
18 | 18 | |
19 | - public function __construct() |
|
20 | - { |
|
21 | - // define some help/support page related constants |
|
22 | - define('EE_SUPPORT_PG_SLUG', 'espresso_support'); |
|
23 | - define('EE_SUPPORT_ADMIN_URL', admin_url('admin.php?page=' . EE_SUPPORT_PG_SLUG)); |
|
24 | - define('EE_SUPPORT_ADMIN_TEMPLATE_PATH', EE_ADMIN_PAGES . 'support/templates/'); |
|
25 | - define('EE_SUPPORT_ADMIN', EE_ADMIN_PAGES . 'support/'); |
|
26 | - define('EE_SUPPORT_ASSETS_URL', EE_ADMIN_PAGES_URL . 'support/assets/'); |
|
27 | - parent::__construct(); |
|
28 | - } |
|
19 | + public function __construct() |
|
20 | + { |
|
21 | + // define some help/support page related constants |
|
22 | + define('EE_SUPPORT_PG_SLUG', 'espresso_support'); |
|
23 | + define('EE_SUPPORT_ADMIN_URL', admin_url('admin.php?page=' . EE_SUPPORT_PG_SLUG)); |
|
24 | + define('EE_SUPPORT_ADMIN_TEMPLATE_PATH', EE_ADMIN_PAGES . 'support/templates/'); |
|
25 | + define('EE_SUPPORT_ADMIN', EE_ADMIN_PAGES . 'support/'); |
|
26 | + define('EE_SUPPORT_ASSETS_URL', EE_ADMIN_PAGES_URL . 'support/assets/'); |
|
27 | + parent::__construct(); |
|
28 | + } |
|
29 | 29 | |
30 | - protected function _set_init_properties() |
|
31 | - { |
|
32 | - $this->label = __('Help & Support', 'event_espresso'); |
|
33 | - } |
|
30 | + protected function _set_init_properties() |
|
31 | + { |
|
32 | + $this->label = __('Help & Support', 'event_espresso'); |
|
33 | + } |
|
34 | 34 | |
35 | - protected function _set_menu_map() |
|
36 | - { |
|
37 | - $this->_menu_map = new EE_Admin_Page_Sub_Menu( |
|
38 | - array( |
|
39 | - 'menu_group' => 'extras', |
|
40 | - 'menu_order' => 30, |
|
41 | - 'show_on_menu' => EE_Admin_Page_Menu_Map::BLOG_AND_NETWORK_ADMIN, |
|
42 | - 'parent_slug' => 'espresso_events', |
|
43 | - 'menu_slug' => EE_SUPPORT_PG_SLUG, |
|
44 | - 'menu_label' => __('Help & Support', 'event_espresso'), |
|
45 | - 'capability' => 'ee_read_ee', |
|
46 | - 'maintenance_mode_parent' => 'espresso_maintenance_settings', |
|
47 | - 'admin_init_page' => $this, |
|
48 | - ) |
|
49 | - ); |
|
50 | - } |
|
35 | + protected function _set_menu_map() |
|
36 | + { |
|
37 | + $this->_menu_map = new EE_Admin_Page_Sub_Menu( |
|
38 | + array( |
|
39 | + 'menu_group' => 'extras', |
|
40 | + 'menu_order' => 30, |
|
41 | + 'show_on_menu' => EE_Admin_Page_Menu_Map::BLOG_AND_NETWORK_ADMIN, |
|
42 | + 'parent_slug' => 'espresso_events', |
|
43 | + 'menu_slug' => EE_SUPPORT_PG_SLUG, |
|
44 | + 'menu_label' => __('Help & Support', 'event_espresso'), |
|
45 | + 'capability' => 'ee_read_ee', |
|
46 | + 'maintenance_mode_parent' => 'espresso_maintenance_settings', |
|
47 | + 'admin_init_page' => $this, |
|
48 | + ) |
|
49 | + ); |
|
50 | + } |
|
51 | 51 | } |
@@ -20,10 +20,10 @@ |
||
20 | 20 | { |
21 | 21 | // define some help/support page related constants |
22 | 22 | define('EE_SUPPORT_PG_SLUG', 'espresso_support'); |
23 | - define('EE_SUPPORT_ADMIN_URL', admin_url('admin.php?page=' . EE_SUPPORT_PG_SLUG)); |
|
24 | - define('EE_SUPPORT_ADMIN_TEMPLATE_PATH', EE_ADMIN_PAGES . 'support/templates/'); |
|
25 | - define('EE_SUPPORT_ADMIN', EE_ADMIN_PAGES . 'support/'); |
|
26 | - define('EE_SUPPORT_ASSETS_URL', EE_ADMIN_PAGES_URL . 'support/assets/'); |
|
23 | + define('EE_SUPPORT_ADMIN_URL', admin_url('admin.php?page='.EE_SUPPORT_PG_SLUG)); |
|
24 | + define('EE_SUPPORT_ADMIN_TEMPLATE_PATH', EE_ADMIN_PAGES.'support/templates/'); |
|
25 | + define('EE_SUPPORT_ADMIN', EE_ADMIN_PAGES.'support/'); |
|
26 | + define('EE_SUPPORT_ASSETS_URL', EE_ADMIN_PAGES_URL.'support/assets/'); |
|
27 | 27 | parent::__construct(); |
28 | 28 | } |
29 | 29 |
@@ -13,242 +13,242 @@ |
||
13 | 13 | { |
14 | 14 | |
15 | 15 | |
16 | - protected function _init_page_props() |
|
17 | - { |
|
18 | - $this->page_slug = EE_SUPPORT_PG_SLUG; |
|
19 | - $this->page_label = esc_html__('Help & Support', 'event_espresso'); |
|
20 | - $this->_admin_base_url = EE_SUPPORT_ADMIN_URL; |
|
21 | - $this->_admin_base_path = EE_SUPPORT_ADMIN; |
|
22 | - } |
|
23 | - |
|
24 | - |
|
25 | - protected function _ajax_hooks() |
|
26 | - { |
|
27 | - } |
|
28 | - |
|
29 | - |
|
30 | - protected function _define_page_props() |
|
31 | - { |
|
32 | - $this->_labels = array(); |
|
33 | - $this->_admin_page_title = $this->page_label; |
|
34 | - } |
|
35 | - |
|
36 | - |
|
37 | - protected function _set_page_routes() |
|
38 | - { |
|
39 | - $this->_page_routes = array( |
|
40 | - 'default' => array( |
|
41 | - 'func' => '_contact_support', |
|
42 | - 'capability' => 'ee_read_ee', |
|
43 | - ), |
|
44 | - 'developers' => array( |
|
45 | - 'func' => '_developers', |
|
46 | - 'capability' => 'ee_read_ee', |
|
47 | - ), |
|
48 | - 'shortcodes' => array( |
|
49 | - 'func' => '_shortcodes', |
|
50 | - 'capability' => 'ee_read_ee', |
|
51 | - ), |
|
52 | - ); |
|
53 | - } |
|
54 | - |
|
55 | - |
|
56 | - protected function _set_page_config() |
|
57 | - { |
|
58 | - $this->_page_config = array( |
|
59 | - 'default' => array( |
|
60 | - 'nav' => array( |
|
61 | - 'label' => esc_html__('Support', 'event_espresso'), |
|
62 | - 'order' => 30, |
|
63 | - ), |
|
64 | - 'metaboxes' => array_merge($this->_default_espresso_metaboxes, array('_support_boxes')), |
|
65 | - 'require_nonce' => false, |
|
66 | - ), |
|
67 | - 'developers' => array( |
|
68 | - 'nav' => array( |
|
69 | - 'label' => esc_html__('Developers', 'event_espresso'), |
|
70 | - 'order' => 50, |
|
71 | - ), |
|
72 | - 'metaboxes' => $this->_default_espresso_metaboxes, |
|
73 | - 'require_nonce' => false, |
|
74 | - ), |
|
75 | - 'shortcodes' => array( |
|
76 | - 'nav' => array( |
|
77 | - 'label' => esc_html__('Shortcodes', 'event_espresso'), |
|
78 | - 'order' => 60, |
|
79 | - ), |
|
80 | - 'metaboxes' => array_merge($this->_default_espresso_metaboxes, array('_shortcodes_boxes')), |
|
81 | - 'require_nonce' => false, |
|
82 | - ), |
|
83 | - ); |
|
84 | - } |
|
85 | - |
|
86 | - |
|
87 | - // none of the below group are currently used for Support pages |
|
88 | - protected function _add_screen_options() |
|
89 | - { |
|
90 | - } |
|
91 | - |
|
92 | - |
|
93 | - protected function _add_feature_pointers() |
|
94 | - { |
|
95 | - } |
|
96 | - |
|
97 | - |
|
98 | - public function admin_init() |
|
99 | - { |
|
100 | - } |
|
101 | - |
|
102 | - |
|
103 | - public function admin_notices() |
|
104 | - { |
|
105 | - } |
|
106 | - |
|
107 | - |
|
108 | - public function admin_footer_scripts() |
|
109 | - { |
|
110 | - } |
|
111 | - |
|
112 | - |
|
113 | - public function load_scripts_styles() |
|
114 | - { |
|
115 | - } |
|
116 | - |
|
117 | - |
|
118 | - protected function _installation() |
|
119 | - { |
|
120 | - $template_path = EE_SUPPORT_ADMIN_TEMPLATE_PATH . 'support_admin_details_installation.template.php'; |
|
121 | - $this->_template_args['admin_page_content'] = EEH_Template::display_template( |
|
122 | - $template_path, |
|
123 | - '', |
|
124 | - true |
|
125 | - ); |
|
126 | - $this->display_admin_page_with_sidebar(); |
|
127 | - } |
|
128 | - |
|
129 | - |
|
130 | - protected function _resources() |
|
131 | - { |
|
132 | - $this->display_admin_page_with_sidebar(); |
|
133 | - } |
|
134 | - |
|
135 | - |
|
136 | - protected function _add_settings_metabox($box, $label, array $args) |
|
137 | - { |
|
138 | - add_meta_box( |
|
139 | - "espresso_{$box}_settings", |
|
140 | - $label, |
|
141 | - function ($post, $metabox) { |
|
142 | - echo EEH_Template::display_template( |
|
143 | - $metabox['args']['template_path'], |
|
144 | - $metabox['args']['template_args'], |
|
145 | - true |
|
146 | - ); |
|
147 | - }, |
|
148 | - $this->_current_screen->id, |
|
149 | - 'normal', |
|
150 | - 'high', |
|
151 | - apply_filters( |
|
152 | - "FHEE__Support_Admin_Page___add_settings_metabox__{$box}_args_array", |
|
153 | - $args |
|
154 | - ) |
|
155 | - ); |
|
156 | - } |
|
157 | - |
|
158 | - |
|
159 | - protected function _resources_boxes() |
|
160 | - { |
|
161 | - $boxes = apply_filters( |
|
162 | - 'FHEE__Support_Admin_Page___resources_boxes__boxes_array', |
|
163 | - array( |
|
164 | - 'favorite_theme_developers' => esc_html__('Favorite Theme Developers', 'event_espresso'), |
|
165 | - 'highly_recommended_themes' => esc_html__('Highly Recommended Themes', 'event_espresso'), |
|
166 | - 'hire_developer' => esc_html__('Hire a Developer', 'event_espresso'), |
|
167 | - 'partners' => esc_html__('Partners', 'event_espresso'), |
|
168 | - 'recommended_plugins' => esc_html__('Recommended Plugins', 'event_espresso'), |
|
169 | - 'other_resources' => esc_html__('Other Resources', 'event_espresso'), |
|
170 | - ) |
|
171 | - ); |
|
172 | - foreach ($boxes as $box => $label) { |
|
173 | - $this->_add_settings_metabox( |
|
174 | - $box, |
|
175 | - $label, |
|
176 | - array( |
|
177 | - 'template_path' => EE_SUPPORT_ADMIN_TEMPLATE_PATH . "support_admin_details_{$box}.template.php", |
|
178 | - 'template_args' => $this->_template_args, |
|
179 | - ) |
|
180 | - ); |
|
181 | - } |
|
182 | - } |
|
183 | - |
|
184 | - |
|
185 | - protected function _shortcodes() |
|
186 | - { |
|
187 | - $this->display_admin_page_with_sidebar(); |
|
188 | - } |
|
189 | - |
|
190 | - |
|
191 | - protected function _shortcodes_boxes() |
|
192 | - { |
|
193 | - $boxes = apply_filters( |
|
194 | - 'FHEE__Support_Admin_Page___shortcodes_boxes__boxes_array', |
|
195 | - array( |
|
196 | - 'shortcodes_event_listings' => esc_html__('Event Listings', 'event_espresso'), |
|
197 | - 'shortcodes_ticket_selector' => esc_html__('Event Ticket Selector', 'event_espresso'), |
|
198 | - 'shortcodes_category' => esc_html__('Event Categories', 'event_espresso'), |
|
199 | - 'shortcodes_attendee' => esc_html__('Event Attendees', 'event_espresso') |
|
200 | - /*'shortcodes_single_events' => esc_html__('Single Events', 'event_espresso'),*/ |
|
201 | - /*'shortcodes_attendee_listings' => esc_html__('Attendee Listings', 'event_espresso'),*/ |
|
202 | - ) |
|
203 | - ); |
|
204 | - foreach ($boxes as $box => $label) { |
|
205 | - $this->_add_settings_metabox( |
|
206 | - $box, |
|
207 | - $label, |
|
208 | - array( |
|
209 | - 'template_path' => EE_SUPPORT_ADMIN_TEMPLATE_PATH . "support_admin_details_{$box}.template.php", |
|
210 | - 'template_args' => $this->_template_args, |
|
211 | - ) |
|
212 | - ); |
|
213 | - } |
|
214 | - } |
|
215 | - |
|
216 | - |
|
217 | - protected function _contact_support() |
|
218 | - { |
|
219 | - $this->display_admin_page_with_sidebar(); |
|
220 | - } |
|
221 | - |
|
222 | - |
|
223 | - protected function _support_boxes() |
|
224 | - { |
|
225 | - $boxes = apply_filters( |
|
226 | - 'FHEE__Support_Admin_Page___support_boxes__boxes_array', |
|
227 | - array( |
|
228 | - 'contact_support' => esc_html__('Contact Support', 'event_espresso'), |
|
229 | - 'important_information' => esc_html__('Important Information', 'event_espresso'), |
|
230 | - ) |
|
231 | - ); |
|
232 | - foreach ($boxes as $box => $label) { |
|
233 | - $this->_add_settings_metabox( |
|
234 | - $box, |
|
235 | - $label, |
|
236 | - array( |
|
237 | - 'template_path' => EE_SUPPORT_ADMIN_TEMPLATE_PATH . "support_admin_details_{$box}.template.php", |
|
238 | - 'template_args' => $this->_template_args, |
|
239 | - ) |
|
240 | - ); |
|
241 | - } |
|
242 | - } |
|
243 | - |
|
244 | - |
|
245 | - protected function _developers() |
|
246 | - { |
|
247 | - $this->_template_args['admin_page_content'] = EEH_Template::display_template( |
|
248 | - EE_SUPPORT_ADMIN_TEMPLATE_PATH . 'developers_admin_details.template.php', |
|
249 | - array(), |
|
250 | - true |
|
251 | - ); |
|
252 | - $this->display_admin_page_with_sidebar(); |
|
253 | - } |
|
16 | + protected function _init_page_props() |
|
17 | + { |
|
18 | + $this->page_slug = EE_SUPPORT_PG_SLUG; |
|
19 | + $this->page_label = esc_html__('Help & Support', 'event_espresso'); |
|
20 | + $this->_admin_base_url = EE_SUPPORT_ADMIN_URL; |
|
21 | + $this->_admin_base_path = EE_SUPPORT_ADMIN; |
|
22 | + } |
|
23 | + |
|
24 | + |
|
25 | + protected function _ajax_hooks() |
|
26 | + { |
|
27 | + } |
|
28 | + |
|
29 | + |
|
30 | + protected function _define_page_props() |
|
31 | + { |
|
32 | + $this->_labels = array(); |
|
33 | + $this->_admin_page_title = $this->page_label; |
|
34 | + } |
|
35 | + |
|
36 | + |
|
37 | + protected function _set_page_routes() |
|
38 | + { |
|
39 | + $this->_page_routes = array( |
|
40 | + 'default' => array( |
|
41 | + 'func' => '_contact_support', |
|
42 | + 'capability' => 'ee_read_ee', |
|
43 | + ), |
|
44 | + 'developers' => array( |
|
45 | + 'func' => '_developers', |
|
46 | + 'capability' => 'ee_read_ee', |
|
47 | + ), |
|
48 | + 'shortcodes' => array( |
|
49 | + 'func' => '_shortcodes', |
|
50 | + 'capability' => 'ee_read_ee', |
|
51 | + ), |
|
52 | + ); |
|
53 | + } |
|
54 | + |
|
55 | + |
|
56 | + protected function _set_page_config() |
|
57 | + { |
|
58 | + $this->_page_config = array( |
|
59 | + 'default' => array( |
|
60 | + 'nav' => array( |
|
61 | + 'label' => esc_html__('Support', 'event_espresso'), |
|
62 | + 'order' => 30, |
|
63 | + ), |
|
64 | + 'metaboxes' => array_merge($this->_default_espresso_metaboxes, array('_support_boxes')), |
|
65 | + 'require_nonce' => false, |
|
66 | + ), |
|
67 | + 'developers' => array( |
|
68 | + 'nav' => array( |
|
69 | + 'label' => esc_html__('Developers', 'event_espresso'), |
|
70 | + 'order' => 50, |
|
71 | + ), |
|
72 | + 'metaboxes' => $this->_default_espresso_metaboxes, |
|
73 | + 'require_nonce' => false, |
|
74 | + ), |
|
75 | + 'shortcodes' => array( |
|
76 | + 'nav' => array( |
|
77 | + 'label' => esc_html__('Shortcodes', 'event_espresso'), |
|
78 | + 'order' => 60, |
|
79 | + ), |
|
80 | + 'metaboxes' => array_merge($this->_default_espresso_metaboxes, array('_shortcodes_boxes')), |
|
81 | + 'require_nonce' => false, |
|
82 | + ), |
|
83 | + ); |
|
84 | + } |
|
85 | + |
|
86 | + |
|
87 | + // none of the below group are currently used for Support pages |
|
88 | + protected function _add_screen_options() |
|
89 | + { |
|
90 | + } |
|
91 | + |
|
92 | + |
|
93 | + protected function _add_feature_pointers() |
|
94 | + { |
|
95 | + } |
|
96 | + |
|
97 | + |
|
98 | + public function admin_init() |
|
99 | + { |
|
100 | + } |
|
101 | + |
|
102 | + |
|
103 | + public function admin_notices() |
|
104 | + { |
|
105 | + } |
|
106 | + |
|
107 | + |
|
108 | + public function admin_footer_scripts() |
|
109 | + { |
|
110 | + } |
|
111 | + |
|
112 | + |
|
113 | + public function load_scripts_styles() |
|
114 | + { |
|
115 | + } |
|
116 | + |
|
117 | + |
|
118 | + protected function _installation() |
|
119 | + { |
|
120 | + $template_path = EE_SUPPORT_ADMIN_TEMPLATE_PATH . 'support_admin_details_installation.template.php'; |
|
121 | + $this->_template_args['admin_page_content'] = EEH_Template::display_template( |
|
122 | + $template_path, |
|
123 | + '', |
|
124 | + true |
|
125 | + ); |
|
126 | + $this->display_admin_page_with_sidebar(); |
|
127 | + } |
|
128 | + |
|
129 | + |
|
130 | + protected function _resources() |
|
131 | + { |
|
132 | + $this->display_admin_page_with_sidebar(); |
|
133 | + } |
|
134 | + |
|
135 | + |
|
136 | + protected function _add_settings_metabox($box, $label, array $args) |
|
137 | + { |
|
138 | + add_meta_box( |
|
139 | + "espresso_{$box}_settings", |
|
140 | + $label, |
|
141 | + function ($post, $metabox) { |
|
142 | + echo EEH_Template::display_template( |
|
143 | + $metabox['args']['template_path'], |
|
144 | + $metabox['args']['template_args'], |
|
145 | + true |
|
146 | + ); |
|
147 | + }, |
|
148 | + $this->_current_screen->id, |
|
149 | + 'normal', |
|
150 | + 'high', |
|
151 | + apply_filters( |
|
152 | + "FHEE__Support_Admin_Page___add_settings_metabox__{$box}_args_array", |
|
153 | + $args |
|
154 | + ) |
|
155 | + ); |
|
156 | + } |
|
157 | + |
|
158 | + |
|
159 | + protected function _resources_boxes() |
|
160 | + { |
|
161 | + $boxes = apply_filters( |
|
162 | + 'FHEE__Support_Admin_Page___resources_boxes__boxes_array', |
|
163 | + array( |
|
164 | + 'favorite_theme_developers' => esc_html__('Favorite Theme Developers', 'event_espresso'), |
|
165 | + 'highly_recommended_themes' => esc_html__('Highly Recommended Themes', 'event_espresso'), |
|
166 | + 'hire_developer' => esc_html__('Hire a Developer', 'event_espresso'), |
|
167 | + 'partners' => esc_html__('Partners', 'event_espresso'), |
|
168 | + 'recommended_plugins' => esc_html__('Recommended Plugins', 'event_espresso'), |
|
169 | + 'other_resources' => esc_html__('Other Resources', 'event_espresso'), |
|
170 | + ) |
|
171 | + ); |
|
172 | + foreach ($boxes as $box => $label) { |
|
173 | + $this->_add_settings_metabox( |
|
174 | + $box, |
|
175 | + $label, |
|
176 | + array( |
|
177 | + 'template_path' => EE_SUPPORT_ADMIN_TEMPLATE_PATH . "support_admin_details_{$box}.template.php", |
|
178 | + 'template_args' => $this->_template_args, |
|
179 | + ) |
|
180 | + ); |
|
181 | + } |
|
182 | + } |
|
183 | + |
|
184 | + |
|
185 | + protected function _shortcodes() |
|
186 | + { |
|
187 | + $this->display_admin_page_with_sidebar(); |
|
188 | + } |
|
189 | + |
|
190 | + |
|
191 | + protected function _shortcodes_boxes() |
|
192 | + { |
|
193 | + $boxes = apply_filters( |
|
194 | + 'FHEE__Support_Admin_Page___shortcodes_boxes__boxes_array', |
|
195 | + array( |
|
196 | + 'shortcodes_event_listings' => esc_html__('Event Listings', 'event_espresso'), |
|
197 | + 'shortcodes_ticket_selector' => esc_html__('Event Ticket Selector', 'event_espresso'), |
|
198 | + 'shortcodes_category' => esc_html__('Event Categories', 'event_espresso'), |
|
199 | + 'shortcodes_attendee' => esc_html__('Event Attendees', 'event_espresso') |
|
200 | + /*'shortcodes_single_events' => esc_html__('Single Events', 'event_espresso'),*/ |
|
201 | + /*'shortcodes_attendee_listings' => esc_html__('Attendee Listings', 'event_espresso'),*/ |
|
202 | + ) |
|
203 | + ); |
|
204 | + foreach ($boxes as $box => $label) { |
|
205 | + $this->_add_settings_metabox( |
|
206 | + $box, |
|
207 | + $label, |
|
208 | + array( |
|
209 | + 'template_path' => EE_SUPPORT_ADMIN_TEMPLATE_PATH . "support_admin_details_{$box}.template.php", |
|
210 | + 'template_args' => $this->_template_args, |
|
211 | + ) |
|
212 | + ); |
|
213 | + } |
|
214 | + } |
|
215 | + |
|
216 | + |
|
217 | + protected function _contact_support() |
|
218 | + { |
|
219 | + $this->display_admin_page_with_sidebar(); |
|
220 | + } |
|
221 | + |
|
222 | + |
|
223 | + protected function _support_boxes() |
|
224 | + { |
|
225 | + $boxes = apply_filters( |
|
226 | + 'FHEE__Support_Admin_Page___support_boxes__boxes_array', |
|
227 | + array( |
|
228 | + 'contact_support' => esc_html__('Contact Support', 'event_espresso'), |
|
229 | + 'important_information' => esc_html__('Important Information', 'event_espresso'), |
|
230 | + ) |
|
231 | + ); |
|
232 | + foreach ($boxes as $box => $label) { |
|
233 | + $this->_add_settings_metabox( |
|
234 | + $box, |
|
235 | + $label, |
|
236 | + array( |
|
237 | + 'template_path' => EE_SUPPORT_ADMIN_TEMPLATE_PATH . "support_admin_details_{$box}.template.php", |
|
238 | + 'template_args' => $this->_template_args, |
|
239 | + ) |
|
240 | + ); |
|
241 | + } |
|
242 | + } |
|
243 | + |
|
244 | + |
|
245 | + protected function _developers() |
|
246 | + { |
|
247 | + $this->_template_args['admin_page_content'] = EEH_Template::display_template( |
|
248 | + EE_SUPPORT_ADMIN_TEMPLATE_PATH . 'developers_admin_details.template.php', |
|
249 | + array(), |
|
250 | + true |
|
251 | + ); |
|
252 | + $this->display_admin_page_with_sidebar(); |
|
253 | + } |
|
254 | 254 | } |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | |
118 | 118 | protected function _installation() |
119 | 119 | { |
120 | - $template_path = EE_SUPPORT_ADMIN_TEMPLATE_PATH . 'support_admin_details_installation.template.php'; |
|
120 | + $template_path = EE_SUPPORT_ADMIN_TEMPLATE_PATH.'support_admin_details_installation.template.php'; |
|
121 | 121 | $this->_template_args['admin_page_content'] = EEH_Template::display_template( |
122 | 122 | $template_path, |
123 | 123 | '', |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | add_meta_box( |
139 | 139 | "espresso_{$box}_settings", |
140 | 140 | $label, |
141 | - function ($post, $metabox) { |
|
141 | + function($post, $metabox) { |
|
142 | 142 | echo EEH_Template::display_template( |
143 | 143 | $metabox['args']['template_path'], |
144 | 144 | $metabox['args']['template_args'], |
@@ -174,7 +174,7 @@ discard block |
||
174 | 174 | $box, |
175 | 175 | $label, |
176 | 176 | array( |
177 | - 'template_path' => EE_SUPPORT_ADMIN_TEMPLATE_PATH . "support_admin_details_{$box}.template.php", |
|
177 | + 'template_path' => EE_SUPPORT_ADMIN_TEMPLATE_PATH."support_admin_details_{$box}.template.php", |
|
178 | 178 | 'template_args' => $this->_template_args, |
179 | 179 | ) |
180 | 180 | ); |
@@ -206,7 +206,7 @@ discard block |
||
206 | 206 | $box, |
207 | 207 | $label, |
208 | 208 | array( |
209 | - 'template_path' => EE_SUPPORT_ADMIN_TEMPLATE_PATH . "support_admin_details_{$box}.template.php", |
|
209 | + 'template_path' => EE_SUPPORT_ADMIN_TEMPLATE_PATH."support_admin_details_{$box}.template.php", |
|
210 | 210 | 'template_args' => $this->_template_args, |
211 | 211 | ) |
212 | 212 | ); |
@@ -234,7 +234,7 @@ discard block |
||
234 | 234 | $box, |
235 | 235 | $label, |
236 | 236 | array( |
237 | - 'template_path' => EE_SUPPORT_ADMIN_TEMPLATE_PATH . "support_admin_details_{$box}.template.php", |
|
237 | + 'template_path' => EE_SUPPORT_ADMIN_TEMPLATE_PATH."support_admin_details_{$box}.template.php", |
|
238 | 238 | 'template_args' => $this->_template_args, |
239 | 239 | ) |
240 | 240 | ); |
@@ -245,7 +245,7 @@ discard block |
||
245 | 245 | protected function _developers() |
246 | 246 | { |
247 | 247 | $this->_template_args['admin_page_content'] = EEH_Template::display_template( |
248 | - EE_SUPPORT_ADMIN_TEMPLATE_PATH . 'developers_admin_details.template.php', |
|
248 | + EE_SUPPORT_ADMIN_TEMPLATE_PATH.'developers_admin_details.template.php', |
|
249 | 249 | array(), |
250 | 250 | true |
251 | 251 | ); |
@@ -9,9 +9,9 @@ discard block |
||
9 | 9 | <strong>[ESPRESSO_EVENT_ATTENDEES]</strong><br> |
10 | 10 | <p class="description"> |
11 | 11 | <?php _e( |
12 | - 'With no parameters, this shows the attendees for the earliest active event, or if no active event, the earliest upcoming event. If it is used in Event Description, then it will show the attendees for that event.', |
|
13 | - 'event_espresso' |
|
14 | - ); ?> |
|
12 | + 'With no parameters, this shows the attendees for the earliest active event, or if no active event, the earliest upcoming event. If it is used in Event Description, then it will show the attendees for that event.', |
|
13 | + 'event_espresso' |
|
14 | + ); ?> |
|
15 | 15 | </p> |
16 | 16 | <br> |
17 | 17 | </li> |
@@ -40,18 +40,18 @@ discard block |
||
40 | 40 | <strong>[ESPRESSO_EVENT_ATTENDEES status=RAP]</strong><br> |
41 | 41 | <p class="description"> |
42 | 42 | <?php _e( |
43 | - 'You can list attendees that have a specific registration status (use status code) or use "all" to return all attendees regardless of status. Default when you don\'t have this parameter set is to only return attendees attached to approved contacts.', |
|
44 | - 'event_espresso' |
|
45 | - ); ?> |
|
43 | + 'You can list attendees that have a specific registration status (use status code) or use "all" to return all attendees regardless of status. Default when you don\'t have this parameter set is to only return attendees attached to approved contacts.', |
|
44 | + 'event_espresso' |
|
45 | + ); ?> |
|
46 | 46 | </p> |
47 | 47 | <p> |
48 | 48 | <?php _e('The statuses you can use are:', 'event_espresso'); ?> |
49 | 49 | <br> |
50 | 50 | <?php |
51 | - foreach (EEM_Registration::reg_status_array(array(), true) as $status_code => $status_label) { |
|
52 | - echo '<strong>' . $status_code . ':</strong>' . ' ' . $status_label . '<br>'; |
|
53 | - } |
|
54 | - ?> |
|
51 | + foreach (EEM_Registration::reg_status_array(array(), true) as $status_code => $status_label) { |
|
52 | + echo '<strong>' . $status_code . ':</strong>' . ' ' . $status_label . '<br>'; |
|
53 | + } |
|
54 | + ?> |
|
55 | 55 | |
56 | 56 | </p> |
57 | 57 | <br> |
@@ -60,9 +60,9 @@ discard block |
||
60 | 60 | <strong>[ESPRESSO_EVENT_ATTENDEES display_on_archives=true]</strong><br> |
61 | 61 | <p class="description"> |
62 | 62 | <?php _e( |
63 | - 'Will display the attendees list when events are viewed on archive pages.', |
|
64 | - 'event_espresso' |
|
65 | - ); ?> |
|
63 | + 'Will display the attendees list when events are viewed on archive pages.', |
|
64 | + 'event_espresso' |
|
65 | + ); ?> |
|
66 | 66 | </p> |
67 | 67 | <br> |
68 | 68 | </li> |
@@ -49,7 +49,7 @@ |
||
49 | 49 | <br> |
50 | 50 | <?php |
51 | 51 | foreach (EEM_Registration::reg_status_array(array(), true) as $status_code => $status_label) { |
52 | - echo '<strong>' . $status_code . ':</strong>' . ' ' . $status_label . '<br>'; |
|
52 | + echo '<strong>'.$status_code.':</strong>'.' '.$status_label.'<br>'; |
|
53 | 53 | } |
54 | 54 | ?> |
55 | 55 |
@@ -1,8 +1,8 @@ |
||
1 | 1 | <div class="padding"> |
2 | 2 | <!-- <p><?php _e( |
3 | - 'Download the <a href="https://eventespresso.com/wp-content/plugins/download-monitor/download.php?id=2">Installation Guide</a> as a PDF', |
|
4 | - 'event_espresso' |
|
5 | - ); ?></p> --> |
|
3 | + 'Download the <a href="https://eventespresso.com/wp-content/plugins/download-monitor/download.php?id=2">Installation Guide</a> as a PDF', |
|
4 | + 'event_espresso' |
|
5 | + ); ?></p> --> |
|
6 | 6 | <p> |
7 | 7 | <?php _e('For the latest installation instructions please visit:', 'event_espresso'); ?> |
8 | 8 | <a href="https://eventespresso.com/wiki/installing-event-espresso/" target="_blank">https://eventespresso.com/wiki/installing-event-espresso/</a> |
@@ -1,50 +1,50 @@ discard block |
||
1 | 1 | <div class="padding"> |
2 | 2 | <?php |
3 | - global $wpdb, $wp_version; |
|
4 | - $wp_req_version = '3.1'; |
|
5 | - $php_req_version = '5.2'; |
|
6 | - $mysql_req_version = '5.0'; |
|
7 | - $is_php_valid = version_compare(phpversion(), $php_req_version, '>'); |
|
8 | - $is_mysql_valid = version_compare($wpdb->db_version(), $mysql_req_version, '>'); |
|
3 | + global $wpdb, $wp_version; |
|
4 | + $wp_req_version = '3.1'; |
|
5 | + $php_req_version = '5.2'; |
|
6 | + $mysql_req_version = '5.0'; |
|
7 | + $is_php_valid = version_compare(phpversion(), $php_req_version, '>'); |
|
8 | + $is_mysql_valid = version_compare($wpdb->db_version(), $mysql_req_version, '>'); |
|
9 | 9 | |
10 | - if (! version_compare($wp_version, $wp_req_version, '>=')) { |
|
11 | - echo '<p class="red_alert">' |
|
12 | - . __( |
|
13 | - 'This version of Event Espresso requires WordPress version', |
|
14 | - 'event_espresso' |
|
15 | - ) . ' ' . $wp_req_version . '+. ' |
|
16 | - . __( |
|
17 | - 'Please upgrade to the latest version of WordPress.', |
|
18 | - 'event_espresso' |
|
19 | - ) . '</p>'; |
|
20 | - } |
|
21 | - if (! $is_php_valid) { |
|
22 | - echo '<p class="red_alert">' |
|
23 | - . __( |
|
24 | - 'Your version of PHP is out of date, please update to the latest version of PHP. <br>Required version of PHP:', |
|
25 | - 'event_espresso' |
|
26 | - ) . ' ' . $php_req_version . '</p>'; |
|
27 | - } |
|
28 | - if (! $is_mysql_valid) { |
|
29 | - echo '<p class="red_alert">' |
|
30 | - . __( |
|
31 | - 'Your version of MySQL is out of date, please update to the latest version of MySQL. <br>Required version of MySQL:', |
|
32 | - 'event_espresso' |
|
33 | - ) . ' ' . $mysql_req_version . '</p>'; |
|
34 | - } |
|
10 | + if (! version_compare($wp_version, $wp_req_version, '>=')) { |
|
11 | + echo '<p class="red_alert">' |
|
12 | + . __( |
|
13 | + 'This version of Event Espresso requires WordPress version', |
|
14 | + 'event_espresso' |
|
15 | + ) . ' ' . $wp_req_version . '+. ' |
|
16 | + . __( |
|
17 | + 'Please upgrade to the latest version of WordPress.', |
|
18 | + 'event_espresso' |
|
19 | + ) . '</p>'; |
|
20 | + } |
|
21 | + if (! $is_php_valid) { |
|
22 | + echo '<p class="red_alert">' |
|
23 | + . __( |
|
24 | + 'Your version of PHP is out of date, please update to the latest version of PHP. <br>Required version of PHP:', |
|
25 | + 'event_espresso' |
|
26 | + ) . ' ' . $php_req_version . '</p>'; |
|
27 | + } |
|
28 | + if (! $is_mysql_valid) { |
|
29 | + echo '<p class="red_alert">' |
|
30 | + . __( |
|
31 | + 'Your version of MySQL is out of date, please update to the latest version of MySQL. <br>Required version of MySQL:', |
|
32 | + 'event_espresso' |
|
33 | + ) . ' ' . $mysql_req_version . '</p>'; |
|
34 | + } |
|
35 | 35 | |
36 | - $query_args = array( |
|
37 | - 'page' => 'espresso_maintenance_settings', |
|
38 | - 'action' => 'system_status', |
|
39 | - ); |
|
40 | - $system_status_link = EE_Admin_Page::add_query_args_and_nonce($query_args, admin_url('admin.php')); |
|
36 | + $query_args = array( |
|
37 | + 'page' => 'espresso_maintenance_settings', |
|
38 | + 'action' => 'system_status', |
|
39 | + ); |
|
40 | + $system_status_link = EE_Admin_Page::add_query_args_and_nonce($query_args, admin_url('admin.php')); |
|
41 | 41 | |
42 | - ?> |
|
42 | + ?> |
|
43 | 43 | <a href="<?php echo $system_status_link; ?>" class="button-secondary right"> |
44 | 44 | <?php _e( |
45 | - 'System Information', |
|
46 | - 'event_espresso' |
|
47 | - ); ?></a> |
|
45 | + 'System Information', |
|
46 | + 'event_espresso' |
|
47 | + ); ?></a> |
|
48 | 48 | <div class="localhost-information"> |
49 | 49 | <p><strong><?php esc_html_e('WordPress Version:', 'event_espresso'); ?></strong> <?php echo $wp_version; ?> |
50 | 50 | </p> |
@@ -52,9 +52,9 @@ discard block |
||
52 | 52 | <p><strong><?php esc_html_e('MySQL Version:', 'event_espresso'); ?></strong> <?php echo $wpdb->db_version(); ?></p> |
53 | 53 | <p><strong> |
54 | 54 | <?php esc_html_e( |
55 | - 'Event Espresso Version:', |
|
56 | - 'event_espresso' |
|
57 | - ); ?></strong> <?php echo EVENT_ESPRESSO_VERSION ?></p> |
|
55 | + 'Event Espresso Version:', |
|
56 | + 'event_espresso' |
|
57 | + ); ?></strong> <?php echo EVENT_ESPRESSO_VERSION ?></p> |
|
58 | 58 | <p><strong><?php esc_html_e('WordPress Address (URL):', 'event_espresso'); ?></strong> <?php echo site_url(); ?></p> |
59 | 59 | <p><strong><?php esc_html_e('Site address (URL):', 'event_espresso'); ?></strong> <?php echo home_url(); ?> |
60 | 60 | </div> |
@@ -7,30 +7,30 @@ |
||
7 | 7 | $is_php_valid = version_compare(phpversion(), $php_req_version, '>'); |
8 | 8 | $is_mysql_valid = version_compare($wpdb->db_version(), $mysql_req_version, '>'); |
9 | 9 | |
10 | - if (! version_compare($wp_version, $wp_req_version, '>=')) { |
|
10 | + if ( ! version_compare($wp_version, $wp_req_version, '>=')) { |
|
11 | 11 | echo '<p class="red_alert">' |
12 | 12 | . __( |
13 | 13 | 'This version of Event Espresso requires WordPress version', |
14 | 14 | 'event_espresso' |
15 | - ) . ' ' . $wp_req_version . '+. ' |
|
15 | + ).' '.$wp_req_version.'+. ' |
|
16 | 16 | . __( |
17 | 17 | 'Please upgrade to the latest version of WordPress.', |
18 | 18 | 'event_espresso' |
19 | - ) . '</p>'; |
|
19 | + ).'</p>'; |
|
20 | 20 | } |
21 | - if (! $is_php_valid) { |
|
21 | + if ( ! $is_php_valid) { |
|
22 | 22 | echo '<p class="red_alert">' |
23 | 23 | . __( |
24 | 24 | 'Your version of PHP is out of date, please update to the latest version of PHP. <br>Required version of PHP:', |
25 | 25 | 'event_espresso' |
26 | - ) . ' ' . $php_req_version . '</p>'; |
|
26 | + ).' '.$php_req_version.'</p>'; |
|
27 | 27 | } |
28 | - if (! $is_mysql_valid) { |
|
28 | + if ( ! $is_mysql_valid) { |
|
29 | 29 | echo '<p class="red_alert">' |
30 | 30 | . __( |
31 | 31 | 'Your version of MySQL is out of date, please update to the latest version of MySQL. <br>Required version of MySQL:', |
32 | 32 | 'event_espresso' |
33 | - ) . ' ' . $mysql_req_version . '</p>'; |
|
33 | + ).' '.$mysql_req_version.'</p>'; |
|
34 | 34 | } |
35 | 35 | |
36 | 36 | $query_args = array( |
@@ -17,128 +17,128 @@ discard block |
||
17 | 17 | { |
18 | 18 | |
19 | 19 | |
20 | - protected function _init_page_props() |
|
21 | - { |
|
22 | - $this->page_slug = EE_ABOUT_PG_SLUG; |
|
23 | - $this->page_label = esc_html__('About Event Espresso', 'event_espresso'); |
|
24 | - $this->_admin_base_url = EE_ABOUT_ADMIN_URL; |
|
25 | - $this->_admin_base_path = EE_ABOUT_ADMIN; |
|
26 | - } |
|
27 | - |
|
28 | - |
|
29 | - protected function _ajax_hooks() |
|
30 | - { |
|
31 | - // todo: all hooks for ajax goes here. |
|
32 | - } |
|
33 | - |
|
34 | - |
|
35 | - protected function _define_page_props() |
|
36 | - { |
|
37 | - $this->_labels = array(); |
|
38 | - $this->_admin_page_title = $this->page_label; |
|
39 | - } |
|
40 | - |
|
41 | - |
|
42 | - protected function _set_page_routes() |
|
43 | - { |
|
44 | - $this->_page_routes = array( |
|
45 | - 'default' => array( |
|
46 | - 'func' => '_overview', |
|
47 | - 'capability' => 'manage_options', |
|
48 | - ), |
|
49 | - // 'overview' => '_overview', |
|
50 | - // 'func' => '_overview', |
|
51 | - // 'capability' => 'ee_read_ee' |
|
52 | - // ), |
|
53 | - 'credits' => array( |
|
54 | - 'func' => '_credits', |
|
55 | - 'capability' => 'manage_options', |
|
56 | - ), |
|
57 | - |
|
58 | - 'decafvpro' => array( |
|
59 | - 'func' => '_decafvpro', |
|
60 | - 'capability' => 'manage_options', |
|
61 | - ), |
|
62 | - 'reviews' => array( |
|
63 | - 'func' => '_reviews', |
|
64 | - 'capability' => 'manage_options', |
|
65 | - ), |
|
66 | - ); |
|
67 | - } |
|
68 | - |
|
69 | - |
|
70 | - protected function _set_page_config() |
|
71 | - { |
|
72 | - $this->_page_config = array( |
|
73 | - /*'default' => array( |
|
20 | + protected function _init_page_props() |
|
21 | + { |
|
22 | + $this->page_slug = EE_ABOUT_PG_SLUG; |
|
23 | + $this->page_label = esc_html__('About Event Espresso', 'event_espresso'); |
|
24 | + $this->_admin_base_url = EE_ABOUT_ADMIN_URL; |
|
25 | + $this->_admin_base_path = EE_ABOUT_ADMIN; |
|
26 | + } |
|
27 | + |
|
28 | + |
|
29 | + protected function _ajax_hooks() |
|
30 | + { |
|
31 | + // todo: all hooks for ajax goes here. |
|
32 | + } |
|
33 | + |
|
34 | + |
|
35 | + protected function _define_page_props() |
|
36 | + { |
|
37 | + $this->_labels = array(); |
|
38 | + $this->_admin_page_title = $this->page_label; |
|
39 | + } |
|
40 | + |
|
41 | + |
|
42 | + protected function _set_page_routes() |
|
43 | + { |
|
44 | + $this->_page_routes = array( |
|
45 | + 'default' => array( |
|
46 | + 'func' => '_overview', |
|
47 | + 'capability' => 'manage_options', |
|
48 | + ), |
|
49 | + // 'overview' => '_overview', |
|
50 | + // 'func' => '_overview', |
|
51 | + // 'capability' => 'ee_read_ee' |
|
52 | + // ), |
|
53 | + 'credits' => array( |
|
54 | + 'func' => '_credits', |
|
55 | + 'capability' => 'manage_options', |
|
56 | + ), |
|
57 | + |
|
58 | + 'decafvpro' => array( |
|
59 | + 'func' => '_decafvpro', |
|
60 | + 'capability' => 'manage_options', |
|
61 | + ), |
|
62 | + 'reviews' => array( |
|
63 | + 'func' => '_reviews', |
|
64 | + 'capability' => 'manage_options', |
|
65 | + ), |
|
66 | + ); |
|
67 | + } |
|
68 | + |
|
69 | + |
|
70 | + protected function _set_page_config() |
|
71 | + { |
|
72 | + $this->_page_config = array( |
|
73 | + /*'default' => array( |
|
74 | 74 | 'nav' => array( |
75 | 75 | 'label' => __('What\'s New', 'event_espresso'), |
76 | 76 | 'order' => 10), |
77 | 77 | 'require_nonce' => FALSE |
78 | 78 | ),*/ |
79 | - // 'overview' => array( |
|
80 | - 'default' => array( |
|
81 | - 'nav' => array( |
|
82 | - 'label' => esc_html__('About', 'event_espresso'), |
|
83 | - 'order' => 20, |
|
84 | - ), |
|
85 | - 'require_nonce' => false, |
|
86 | - ), |
|
87 | - 'credits' => array( |
|
88 | - 'nav' => array( |
|
89 | - 'label' => esc_html__('Credits', 'event_espresso'), |
|
90 | - 'order' => 30, |
|
91 | - ), |
|
92 | - 'require_nonce' => false, |
|
93 | - ), |
|
94 | - |
|
95 | - 'decafvpro' => array( |
|
96 | - 'nav' => array( |
|
97 | - 'label' => esc_html__('Decaf vs Regular', 'event_espresso'), |
|
98 | - 'order' => 40, |
|
99 | - ), |
|
100 | - 'require_nonce' => false, |
|
101 | - ), |
|
102 | - 'reviews' => array( |
|
103 | - 'nav' => array( |
|
104 | - 'label' => esc_html__('Reviews', 'event_espresso'), |
|
105 | - 'order' => 50, |
|
106 | - ), |
|
107 | - 'require_nonce' => false, |
|
108 | - ), |
|
109 | - ); |
|
110 | - } |
|
111 | - |
|
112 | - |
|
113 | - // none of the below group are currently used for Support pages |
|
114 | - protected function _add_screen_options() |
|
115 | - { |
|
116 | - } |
|
117 | - |
|
118 | - protected function _add_feature_pointers() |
|
119 | - { |
|
120 | - } |
|
121 | - |
|
122 | - public function admin_init() |
|
123 | - { |
|
124 | - } |
|
125 | - |
|
126 | - public function admin_notices() |
|
127 | - { |
|
128 | - } |
|
129 | - |
|
130 | - public function admin_footer_scripts() |
|
131 | - { |
|
132 | - } |
|
133 | - |
|
134 | - public function load_scripts_styles() |
|
135 | - { |
|
136 | - } |
|
137 | - |
|
138 | - |
|
139 | - protected function _whats_new() |
|
140 | - { |
|
141 | - /*$steps = EE_Maintenance_Mode::instance()->level() != EE_Maintenance_Mode::level_2_complete_maintenance ? $this->_get_started_steps() : FALSE; |
|
79 | + // 'overview' => array( |
|
80 | + 'default' => array( |
|
81 | + 'nav' => array( |
|
82 | + 'label' => esc_html__('About', 'event_espresso'), |
|
83 | + 'order' => 20, |
|
84 | + ), |
|
85 | + 'require_nonce' => false, |
|
86 | + ), |
|
87 | + 'credits' => array( |
|
88 | + 'nav' => array( |
|
89 | + 'label' => esc_html__('Credits', 'event_espresso'), |
|
90 | + 'order' => 30, |
|
91 | + ), |
|
92 | + 'require_nonce' => false, |
|
93 | + ), |
|
94 | + |
|
95 | + 'decafvpro' => array( |
|
96 | + 'nav' => array( |
|
97 | + 'label' => esc_html__('Decaf vs Regular', 'event_espresso'), |
|
98 | + 'order' => 40, |
|
99 | + ), |
|
100 | + 'require_nonce' => false, |
|
101 | + ), |
|
102 | + 'reviews' => array( |
|
103 | + 'nav' => array( |
|
104 | + 'label' => esc_html__('Reviews', 'event_espresso'), |
|
105 | + 'order' => 50, |
|
106 | + ), |
|
107 | + 'require_nonce' => false, |
|
108 | + ), |
|
109 | + ); |
|
110 | + } |
|
111 | + |
|
112 | + |
|
113 | + // none of the below group are currently used for Support pages |
|
114 | + protected function _add_screen_options() |
|
115 | + { |
|
116 | + } |
|
117 | + |
|
118 | + protected function _add_feature_pointers() |
|
119 | + { |
|
120 | + } |
|
121 | + |
|
122 | + public function admin_init() |
|
123 | + { |
|
124 | + } |
|
125 | + |
|
126 | + public function admin_notices() |
|
127 | + { |
|
128 | + } |
|
129 | + |
|
130 | + public function admin_footer_scripts() |
|
131 | + { |
|
132 | + } |
|
133 | + |
|
134 | + public function load_scripts_styles() |
|
135 | + { |
|
136 | + } |
|
137 | + |
|
138 | + |
|
139 | + protected function _whats_new() |
|
140 | + { |
|
141 | + /*$steps = EE_Maintenance_Mode::instance()->level() != EE_Maintenance_Mode::level_2_complete_maintenance ? $this->_get_started_steps() : FALSE; |
|
142 | 142 | $steps = $steps !== FALSE ? $steps : ''; |
143 | 143 | $this->_admin_page_title = sprintf( __('Welcome to Event Espresso %s', 'event_espresso'), EVENT_ESPRESSO_VERSION ); |
144 | 144 | $settings_message = $steps; |
@@ -146,168 +146,168 @@ discard block |
||
146 | 146 | $template = EE_ABOUT_TEMPLATE_PATH . 'whats_new.template.php'; |
147 | 147 | $this->_template_args['about_admin_page_content'] = EEH_Template::display_template( $template, $this->_template_args, TRUE ); |
148 | 148 | $this->display_about_admin_page();*/ |
149 | - } |
|
149 | + } |
|
150 | 150 | |
151 | 151 | |
152 | - protected function _overview() |
|
153 | - { |
|
154 | - /*$this->_template_args['admin_page_title'] = __('About Event Espresso', 'event_espresso'); |
|
152 | + protected function _overview() |
|
153 | + { |
|
154 | + /*$this->_template_args['admin_page_title'] = __('About Event Espresso', 'event_espresso'); |
|
155 | 155 | $this->_template_args['admin_page_subtitle'] = __('Thank you for choosing Event Espresso Decaf, the most powerful, and free, Event Management plugin for WordPress.', 'event_espresso'); |
156 | 156 | $template = EE_ABOUT_TEMPLATE_PATH . 'ee4-overview.template.php'; |
157 | 157 | $this->_template_args['about_admin_page_content'] = EEH_Template::display_template( $template, $this->_template_args, TRUE ); |
158 | 158 | $this->display_about_admin_page();*/ |
159 | 159 | |
160 | - // Copied from _whats_new() |
|
161 | - $steps = EE_Maintenance_Mode::instance()->level() != EE_Maintenance_Mode::level_2_complete_maintenance |
|
162 | - ? $this->_get_started_steps() : false; |
|
163 | - $steps = $steps !== false ? $steps : ''; |
|
164 | - $this->_admin_page_title = sprintf( |
|
165 | - esc_html__('Welcome to Event Espresso %s', 'event_espresso'), |
|
166 | - EVENT_ESPRESSO_VERSION |
|
167 | - ); |
|
168 | - $settings_message = $steps; |
|
169 | - $this->_template_args['admin_page_subtitle'] = esc_html__( |
|
170 | - 'Thank you for choosing Event Espresso, the most powerful, and free, Event Management plugin for WordPress.', |
|
171 | - 'event_espresso' |
|
172 | - ) . $settings_message; |
|
173 | - $template = EE_ABOUT_TEMPLATE_PATH . 'ee4-overview.template.php'; |
|
174 | - $this->_template_args['about_admin_page_content'] = EEH_Template::display_template( |
|
175 | - $template, |
|
176 | - $this->_template_args, |
|
177 | - true |
|
178 | - ); |
|
179 | - $this->display_about_admin_page(); |
|
180 | - } |
|
181 | - |
|
182 | - |
|
183 | - protected function _get_started_steps() |
|
184 | - { |
|
185 | - $steps = '<h2>' . esc_html__('Getting Started', 'event_espresso') . '</h2>'; |
|
186 | - $step_one = '<p>' |
|
187 | - . sprintf( |
|
188 | - esc_html__( |
|
189 | - '%sStep 1%s: Visit your %sOrganization Settings%s and add/update your details.', |
|
190 | - 'event_espresso' |
|
191 | - ), |
|
192 | - '<strong>', |
|
193 | - '</strong>', |
|
194 | - '<a href="admin.php?page=espresso_general_settings">', |
|
195 | - '</a>' |
|
196 | - ) . '</strong></p>'; |
|
197 | - $step_two = '<p>' |
|
198 | - . sprintf( |
|
199 | - esc_html__('%sStep 2%s: Setup your %sPayment Methods%s.', 'event_espresso'), |
|
200 | - '<strong>', |
|
201 | - '</strong>', |
|
202 | - '<a href="admin.php?page=espresso_payment_settings">', |
|
203 | - '</a>' |
|
204 | - ) . '</strong></p>'; |
|
205 | - $step_three = '<p>' |
|
206 | - . sprintf( |
|
207 | - esc_html__('%sStep 3%s: Create your %sFirst Event%s.', 'event_espresso'), |
|
208 | - '<strong>', |
|
209 | - '</strong>', |
|
210 | - '<a href="admin.php?page=espresso_events&action=create_new">', |
|
211 | - '</a>' |
|
212 | - ) . '</strong></p>'; |
|
213 | - |
|
214 | - // done? |
|
215 | - $done_step_one = EE_Registry::instance()->CFG->organization->address_1 == '123 Onna Road' ? false : true; |
|
216 | - $active_invoice_pm = EEM_Payment_Method::instance()->get_one_active( |
|
217 | - EEM_Payment_Method::scope_cart, |
|
218 | - array(array('PMD_type' => 'Invoice')) |
|
219 | - ); |
|
220 | - $active_pms_count = EEM_Payment_Method::instance()->count_active(EEM_Payment_Method::scope_cart); |
|
221 | - // done step two if a non-invoice paymetn method is active; or there is more than one PM active, or |
|
222 | - // if only the invoice is active but it's clearly been updated |
|
223 | - $done_step_two = $active_pms_count > 1 || |
|
224 | - ($active_pms_count === 1 && ! $active_invoice_pm) || |
|
225 | - ($active_invoice_pm instanceof EE_Payment_Method && ( |
|
226 | - $active_invoice_pm->get_extra_meta('pdf_payee_name', true, '') || |
|
227 | - $active_invoice_pm->get_extra_meta('pdf_payee_email', true, '') || |
|
228 | - $active_invoice_pm->get_extra_meta('pdf_payee_tax_number', true, '') || |
|
229 | - $active_invoice_pm->get_extra_meta('pdf_payee_address', true, '') || |
|
230 | - $active_invoice_pm->get_extra_meta('page_extra_info', true, '') |
|
231 | - ) |
|
232 | - ); |
|
233 | - $done_step_three = EE_Registry::instance()->load_model('Event')->count() > 0 ? true : false; |
|
234 | - |
|
235 | - // if ALL steps are done, let's just return FALSE so we don't display anything |
|
236 | - if ($done_step_one && $done_step_two && $done_step_three) { |
|
237 | - return false; |
|
238 | - } |
|
239 | - |
|
240 | - // now let's put it together |
|
241 | - $steps .= sprintf('%s' . $step_one . '%s', $done_step_one ? '<strike>' : '', $done_step_one ? '</strike>' : ''); |
|
242 | - $steps .= sprintf('%s' . $step_two . '%s', $done_step_two ? '<strike>' : '', $done_step_two ? '</strike>' : ''); |
|
243 | - $steps .= sprintf( |
|
244 | - '%s' . $step_three . '%s', |
|
245 | - $done_step_three ? '<strike>' : '', |
|
246 | - $done_step_three ? '</strike>' : '' |
|
247 | - ); |
|
248 | - |
|
249 | - return $steps; |
|
250 | - } |
|
251 | - |
|
252 | - |
|
253 | - protected function _credits() |
|
254 | - { |
|
255 | - $this->_template_args['admin_page_title'] = sprintf( |
|
256 | - __('Welcome to Event Espresso %s', 'event_espresso'), |
|
257 | - EVENT_ESPRESSO_VERSION |
|
258 | - ); |
|
259 | - $this->_template_args['admin_page_subtitle'] = __( |
|
260 | - 'Thank you for choosing Event Espresso Decaf, the most powerful, and free, Event Management plugin for WordPress.', |
|
261 | - 'event_espresso' |
|
262 | - ); |
|
263 | - $template = EE_ABOUT_TEMPLATE_PATH . 'credits.template.php'; |
|
264 | - $this->_template_args['about_admin_page_content'] = EEH_Template::display_template( |
|
265 | - $template, |
|
266 | - $this->_template_args, |
|
267 | - true |
|
268 | - ); |
|
269 | - $this->display_about_admin_page(); |
|
270 | - } |
|
271 | - |
|
272 | - |
|
273 | - protected function _decafvpro() |
|
274 | - { |
|
275 | - $this->_template_args['admin_page_title'] = sprintf( |
|
276 | - __('Welcome to Event Espresso %s', 'event_espresso'), |
|
277 | - EVENT_ESPRESSO_VERSION |
|
278 | - ); |
|
279 | - $this->_template_args['admin_page_subtitle'] = sprintf( |
|
280 | - __( |
|
281 | - 'Event Espresso lets you focus on doing %swhat you love%s — %sorganizing your events%s', |
|
282 | - 'event_espresso' |
|
283 | - ), |
|
284 | - '<em>', |
|
285 | - '</em>', |
|
286 | - '<strong>', |
|
287 | - '</strong>' |
|
288 | - ); |
|
289 | - $template = EE_ABOUT_TEMPLATE_PATH . 'decafvpro.template.php'; |
|
290 | - $this->_template_args['about_admin_page_content'] = EEH_Template::display_template( |
|
291 | - $template, |
|
292 | - $this->_template_args, |
|
293 | - true |
|
294 | - ); |
|
295 | - $this->display_about_admin_page(); |
|
296 | - } |
|
297 | - |
|
298 | - protected function _reviews() |
|
299 | - { |
|
300 | - $this->_template_args['admin_page_title'] = __('Rave Reviews About Event Espresso 4', 'event_espresso'); |
|
301 | - $this->_template_args['admin_page_subtitle'] = __( |
|
302 | - 'At Event Espresso, customer satisfaction is our ultimate goal.', |
|
303 | - 'event_espresso' |
|
304 | - ); |
|
305 | - $template = EE_ABOUT_TEMPLATE_PATH . 'reviews.template.php'; |
|
306 | - $this->_template_args['about_admin_page_content'] = EEH_Template::display_template( |
|
307 | - $template, |
|
308 | - $this->_template_args, |
|
309 | - true |
|
310 | - ); |
|
311 | - $this->display_about_admin_page(); |
|
312 | - } |
|
160 | + // Copied from _whats_new() |
|
161 | + $steps = EE_Maintenance_Mode::instance()->level() != EE_Maintenance_Mode::level_2_complete_maintenance |
|
162 | + ? $this->_get_started_steps() : false; |
|
163 | + $steps = $steps !== false ? $steps : ''; |
|
164 | + $this->_admin_page_title = sprintf( |
|
165 | + esc_html__('Welcome to Event Espresso %s', 'event_espresso'), |
|
166 | + EVENT_ESPRESSO_VERSION |
|
167 | + ); |
|
168 | + $settings_message = $steps; |
|
169 | + $this->_template_args['admin_page_subtitle'] = esc_html__( |
|
170 | + 'Thank you for choosing Event Espresso, the most powerful, and free, Event Management plugin for WordPress.', |
|
171 | + 'event_espresso' |
|
172 | + ) . $settings_message; |
|
173 | + $template = EE_ABOUT_TEMPLATE_PATH . 'ee4-overview.template.php'; |
|
174 | + $this->_template_args['about_admin_page_content'] = EEH_Template::display_template( |
|
175 | + $template, |
|
176 | + $this->_template_args, |
|
177 | + true |
|
178 | + ); |
|
179 | + $this->display_about_admin_page(); |
|
180 | + } |
|
181 | + |
|
182 | + |
|
183 | + protected function _get_started_steps() |
|
184 | + { |
|
185 | + $steps = '<h2>' . esc_html__('Getting Started', 'event_espresso') . '</h2>'; |
|
186 | + $step_one = '<p>' |
|
187 | + . sprintf( |
|
188 | + esc_html__( |
|
189 | + '%sStep 1%s: Visit your %sOrganization Settings%s and add/update your details.', |
|
190 | + 'event_espresso' |
|
191 | + ), |
|
192 | + '<strong>', |
|
193 | + '</strong>', |
|
194 | + '<a href="admin.php?page=espresso_general_settings">', |
|
195 | + '</a>' |
|
196 | + ) . '</strong></p>'; |
|
197 | + $step_two = '<p>' |
|
198 | + . sprintf( |
|
199 | + esc_html__('%sStep 2%s: Setup your %sPayment Methods%s.', 'event_espresso'), |
|
200 | + '<strong>', |
|
201 | + '</strong>', |
|
202 | + '<a href="admin.php?page=espresso_payment_settings">', |
|
203 | + '</a>' |
|
204 | + ) . '</strong></p>'; |
|
205 | + $step_three = '<p>' |
|
206 | + . sprintf( |
|
207 | + esc_html__('%sStep 3%s: Create your %sFirst Event%s.', 'event_espresso'), |
|
208 | + '<strong>', |
|
209 | + '</strong>', |
|
210 | + '<a href="admin.php?page=espresso_events&action=create_new">', |
|
211 | + '</a>' |
|
212 | + ) . '</strong></p>'; |
|
213 | + |
|
214 | + // done? |
|
215 | + $done_step_one = EE_Registry::instance()->CFG->organization->address_1 == '123 Onna Road' ? false : true; |
|
216 | + $active_invoice_pm = EEM_Payment_Method::instance()->get_one_active( |
|
217 | + EEM_Payment_Method::scope_cart, |
|
218 | + array(array('PMD_type' => 'Invoice')) |
|
219 | + ); |
|
220 | + $active_pms_count = EEM_Payment_Method::instance()->count_active(EEM_Payment_Method::scope_cart); |
|
221 | + // done step two if a non-invoice paymetn method is active; or there is more than one PM active, or |
|
222 | + // if only the invoice is active but it's clearly been updated |
|
223 | + $done_step_two = $active_pms_count > 1 || |
|
224 | + ($active_pms_count === 1 && ! $active_invoice_pm) || |
|
225 | + ($active_invoice_pm instanceof EE_Payment_Method && ( |
|
226 | + $active_invoice_pm->get_extra_meta('pdf_payee_name', true, '') || |
|
227 | + $active_invoice_pm->get_extra_meta('pdf_payee_email', true, '') || |
|
228 | + $active_invoice_pm->get_extra_meta('pdf_payee_tax_number', true, '') || |
|
229 | + $active_invoice_pm->get_extra_meta('pdf_payee_address', true, '') || |
|
230 | + $active_invoice_pm->get_extra_meta('page_extra_info', true, '') |
|
231 | + ) |
|
232 | + ); |
|
233 | + $done_step_three = EE_Registry::instance()->load_model('Event')->count() > 0 ? true : false; |
|
234 | + |
|
235 | + // if ALL steps are done, let's just return FALSE so we don't display anything |
|
236 | + if ($done_step_one && $done_step_two && $done_step_three) { |
|
237 | + return false; |
|
238 | + } |
|
239 | + |
|
240 | + // now let's put it together |
|
241 | + $steps .= sprintf('%s' . $step_one . '%s', $done_step_one ? '<strike>' : '', $done_step_one ? '</strike>' : ''); |
|
242 | + $steps .= sprintf('%s' . $step_two . '%s', $done_step_two ? '<strike>' : '', $done_step_two ? '</strike>' : ''); |
|
243 | + $steps .= sprintf( |
|
244 | + '%s' . $step_three . '%s', |
|
245 | + $done_step_three ? '<strike>' : '', |
|
246 | + $done_step_three ? '</strike>' : '' |
|
247 | + ); |
|
248 | + |
|
249 | + return $steps; |
|
250 | + } |
|
251 | + |
|
252 | + |
|
253 | + protected function _credits() |
|
254 | + { |
|
255 | + $this->_template_args['admin_page_title'] = sprintf( |
|
256 | + __('Welcome to Event Espresso %s', 'event_espresso'), |
|
257 | + EVENT_ESPRESSO_VERSION |
|
258 | + ); |
|
259 | + $this->_template_args['admin_page_subtitle'] = __( |
|
260 | + 'Thank you for choosing Event Espresso Decaf, the most powerful, and free, Event Management plugin for WordPress.', |
|
261 | + 'event_espresso' |
|
262 | + ); |
|
263 | + $template = EE_ABOUT_TEMPLATE_PATH . 'credits.template.php'; |
|
264 | + $this->_template_args['about_admin_page_content'] = EEH_Template::display_template( |
|
265 | + $template, |
|
266 | + $this->_template_args, |
|
267 | + true |
|
268 | + ); |
|
269 | + $this->display_about_admin_page(); |
|
270 | + } |
|
271 | + |
|
272 | + |
|
273 | + protected function _decafvpro() |
|
274 | + { |
|
275 | + $this->_template_args['admin_page_title'] = sprintf( |
|
276 | + __('Welcome to Event Espresso %s', 'event_espresso'), |
|
277 | + EVENT_ESPRESSO_VERSION |
|
278 | + ); |
|
279 | + $this->_template_args['admin_page_subtitle'] = sprintf( |
|
280 | + __( |
|
281 | + 'Event Espresso lets you focus on doing %swhat you love%s — %sorganizing your events%s', |
|
282 | + 'event_espresso' |
|
283 | + ), |
|
284 | + '<em>', |
|
285 | + '</em>', |
|
286 | + '<strong>', |
|
287 | + '</strong>' |
|
288 | + ); |
|
289 | + $template = EE_ABOUT_TEMPLATE_PATH . 'decafvpro.template.php'; |
|
290 | + $this->_template_args['about_admin_page_content'] = EEH_Template::display_template( |
|
291 | + $template, |
|
292 | + $this->_template_args, |
|
293 | + true |
|
294 | + ); |
|
295 | + $this->display_about_admin_page(); |
|
296 | + } |
|
297 | + |
|
298 | + protected function _reviews() |
|
299 | + { |
|
300 | + $this->_template_args['admin_page_title'] = __('Rave Reviews About Event Espresso 4', 'event_espresso'); |
|
301 | + $this->_template_args['admin_page_subtitle'] = __( |
|
302 | + 'At Event Espresso, customer satisfaction is our ultimate goal.', |
|
303 | + 'event_espresso' |
|
304 | + ); |
|
305 | + $template = EE_ABOUT_TEMPLATE_PATH . 'reviews.template.php'; |
|
306 | + $this->_template_args['about_admin_page_content'] = EEH_Template::display_template( |
|
307 | + $template, |
|
308 | + $this->_template_args, |
|
309 | + true |
|
310 | + ); |
|
311 | + $this->display_about_admin_page(); |
|
312 | + } |
|
313 | 313 | } |
@@ -169,8 +169,8 @@ discard block |
||
169 | 169 | $this->_template_args['admin_page_subtitle'] = esc_html__( |
170 | 170 | 'Thank you for choosing Event Espresso, the most powerful, and free, Event Management plugin for WordPress.', |
171 | 171 | 'event_espresso' |
172 | - ) . $settings_message; |
|
173 | - $template = EE_ABOUT_TEMPLATE_PATH . 'ee4-overview.template.php'; |
|
172 | + ).$settings_message; |
|
173 | + $template = EE_ABOUT_TEMPLATE_PATH.'ee4-overview.template.php'; |
|
174 | 174 | $this->_template_args['about_admin_page_content'] = EEH_Template::display_template( |
175 | 175 | $template, |
176 | 176 | $this->_template_args, |
@@ -182,7 +182,7 @@ discard block |
||
182 | 182 | |
183 | 183 | protected function _get_started_steps() |
184 | 184 | { |
185 | - $steps = '<h2>' . esc_html__('Getting Started', 'event_espresso') . '</h2>'; |
|
185 | + $steps = '<h2>'.esc_html__('Getting Started', 'event_espresso').'</h2>'; |
|
186 | 186 | $step_one = '<p>' |
187 | 187 | . sprintf( |
188 | 188 | esc_html__( |
@@ -193,7 +193,7 @@ discard block |
||
193 | 193 | '</strong>', |
194 | 194 | '<a href="admin.php?page=espresso_general_settings">', |
195 | 195 | '</a>' |
196 | - ) . '</strong></p>'; |
|
196 | + ).'</strong></p>'; |
|
197 | 197 | $step_two = '<p>' |
198 | 198 | . sprintf( |
199 | 199 | esc_html__('%sStep 2%s: Setup your %sPayment Methods%s.', 'event_espresso'), |
@@ -201,7 +201,7 @@ discard block |
||
201 | 201 | '</strong>', |
202 | 202 | '<a href="admin.php?page=espresso_payment_settings">', |
203 | 203 | '</a>' |
204 | - ) . '</strong></p>'; |
|
204 | + ).'</strong></p>'; |
|
205 | 205 | $step_three = '<p>' |
206 | 206 | . sprintf( |
207 | 207 | esc_html__('%sStep 3%s: Create your %sFirst Event%s.', 'event_espresso'), |
@@ -209,7 +209,7 @@ discard block |
||
209 | 209 | '</strong>', |
210 | 210 | '<a href="admin.php?page=espresso_events&action=create_new">', |
211 | 211 | '</a>' |
212 | - ) . '</strong></p>'; |
|
212 | + ).'</strong></p>'; |
|
213 | 213 | |
214 | 214 | // done? |
215 | 215 | $done_step_one = EE_Registry::instance()->CFG->organization->address_1 == '123 Onna Road' ? false : true; |
@@ -238,10 +238,10 @@ discard block |
||
238 | 238 | } |
239 | 239 | |
240 | 240 | // now let's put it together |
241 | - $steps .= sprintf('%s' . $step_one . '%s', $done_step_one ? '<strike>' : '', $done_step_one ? '</strike>' : ''); |
|
242 | - $steps .= sprintf('%s' . $step_two . '%s', $done_step_two ? '<strike>' : '', $done_step_two ? '</strike>' : ''); |
|
241 | + $steps .= sprintf('%s'.$step_one.'%s', $done_step_one ? '<strike>' : '', $done_step_one ? '</strike>' : ''); |
|
242 | + $steps .= sprintf('%s'.$step_two.'%s', $done_step_two ? '<strike>' : '', $done_step_two ? '</strike>' : ''); |
|
243 | 243 | $steps .= sprintf( |
244 | - '%s' . $step_three . '%s', |
|
244 | + '%s'.$step_three.'%s', |
|
245 | 245 | $done_step_three ? '<strike>' : '', |
246 | 246 | $done_step_three ? '</strike>' : '' |
247 | 247 | ); |
@@ -260,7 +260,7 @@ discard block |
||
260 | 260 | 'Thank you for choosing Event Espresso Decaf, the most powerful, and free, Event Management plugin for WordPress.', |
261 | 261 | 'event_espresso' |
262 | 262 | ); |
263 | - $template = EE_ABOUT_TEMPLATE_PATH . 'credits.template.php'; |
|
263 | + $template = EE_ABOUT_TEMPLATE_PATH.'credits.template.php'; |
|
264 | 264 | $this->_template_args['about_admin_page_content'] = EEH_Template::display_template( |
265 | 265 | $template, |
266 | 266 | $this->_template_args, |
@@ -286,7 +286,7 @@ discard block |
||
286 | 286 | '<strong>', |
287 | 287 | '</strong>' |
288 | 288 | ); |
289 | - $template = EE_ABOUT_TEMPLATE_PATH . 'decafvpro.template.php'; |
|
289 | + $template = EE_ABOUT_TEMPLATE_PATH.'decafvpro.template.php'; |
|
290 | 290 | $this->_template_args['about_admin_page_content'] = EEH_Template::display_template( |
291 | 291 | $template, |
292 | 292 | $this->_template_args, |
@@ -302,7 +302,7 @@ discard block |
||
302 | 302 | 'At Event Espresso, customer satisfaction is our ultimate goal.', |
303 | 303 | 'event_espresso' |
304 | 304 | ); |
305 | - $template = EE_ABOUT_TEMPLATE_PATH . 'reviews.template.php'; |
|
305 | + $template = EE_ABOUT_TEMPLATE_PATH.'reviews.template.php'; |
|
306 | 306 | $this->_template_args['about_admin_page_content'] = EEH_Template::display_template( |
307 | 307 | $template, |
308 | 308 | $this->_template_args, |
@@ -136,7 +136,7 @@ discard block |
||
136 | 136 | |
137 | 137 | </div> |
138 | 138 | <?php |
139 | - if (! defined('EE_CAF_URL')) { |
|
139 | + if ( ! defined('EE_CAF_URL')) { |
|
140 | 140 | ?> |
141 | 141 | <div align="right"><a |
142 | 142 | href="https://eventespresso.com/pricing/?utm_source=wordpress_org&utm_medium=link&utm_campaign=decaf_about_page&utm_content=reviews+tab" |
@@ -256,7 +256,7 @@ discard block |
||
256 | 256 | |
257 | 257 | </div> |
258 | 258 | <?php |
259 | - if (! defined('EE_CAF_URL')) { |
|
259 | + if ( ! defined('EE_CAF_URL')) { |
|
260 | 260 | ?> |
261 | 261 | <div align="right"><a |
262 | 262 | href="https://eventespresso.com/pricing/?utm_source=wordpress_org&utm_medium=link&utm_campaign=decaf_about_page&utm_content=reviews+tab" |
@@ -367,7 +367,7 @@ discard block |
||
367 | 367 | </div> |
368 | 368 | </div> |
369 | 369 | <?php |
370 | - if (! defined('EE_CAF_URL')) { |
|
370 | + if ( ! defined('EE_CAF_URL')) { |
|
371 | 371 | ?> |
372 | 372 | <div align="right"><a |
373 | 373 | href="https://eventespresso.com/pricing/?utm_source=wordpress_org&utm_medium=link&utm_campaign=decaf_about_page&utm_content=reviews+tab" |
@@ -1,19 +1,19 @@ discard block |
||
1 | 1 | <h2 style="text-align: left;"><?php esc_html_e('Who uses Event Espresso?', 'event_espresso'); ?></h2> |
2 | 2 | <p><?php |
3 | - echo sprintf( |
|
4 | - esc_html__( |
|
5 | - 'Event Espresso is used by over 40,000 event organizers across the world. They host %sconferences%s, %sart classes%s, training courses, concerts, fundraisers, workshops, %sfilm festivals%s, %spaint and wine%s, and more.', |
|
6 | - 'event_espresso' |
|
7 | - ), |
|
8 | - '<a href="https://eventespresso.com/use-cases/conferences/?utm_source=wordpress_org&utm_medium=link&utm_campaign=decaf_about_page&utm_content=Decaf+vs+Regular">', |
|
9 | - '</a>', |
|
10 | - '<a href="https://eventespresso.com/use-cases/art-classes/?utm_source=wordpress_org&utm_medium=link&utm_campaign=decaf_about_page&utm_content=Decaf+vs+Regular">', |
|
11 | - '</a>', |
|
12 | - '<a href="https://eventespresso.com/use-cases/film-festival-ticketing-software/?utm_source=wordpress_org&utm_medium=link&utm_campaign=decaf_about_page&utm_content=Decaf+vs+Regular">', |
|
13 | - '</a>', |
|
14 | - '<a href="https://eventespresso.com/use-cases/paint-wine-party-ticketing-software/?utm_source=wordpress_org&utm_medium=link&utm_campaign=decaf_about_page&utm_content=Decaf+vs+Regular">', |
|
15 | - '</a>' |
|
16 | - ); ?></p> |
|
3 | + echo sprintf( |
|
4 | + esc_html__( |
|
5 | + 'Event Espresso is used by over 40,000 event organizers across the world. They host %sconferences%s, %sart classes%s, training courses, concerts, fundraisers, workshops, %sfilm festivals%s, %spaint and wine%s, and more.', |
|
6 | + 'event_espresso' |
|
7 | + ), |
|
8 | + '<a href="https://eventespresso.com/use-cases/conferences/?utm_source=wordpress_org&utm_medium=link&utm_campaign=decaf_about_page&utm_content=Decaf+vs+Regular">', |
|
9 | + '</a>', |
|
10 | + '<a href="https://eventespresso.com/use-cases/art-classes/?utm_source=wordpress_org&utm_medium=link&utm_campaign=decaf_about_page&utm_content=Decaf+vs+Regular">', |
|
11 | + '</a>', |
|
12 | + '<a href="https://eventespresso.com/use-cases/film-festival-ticketing-software/?utm_source=wordpress_org&utm_medium=link&utm_campaign=decaf_about_page&utm_content=Decaf+vs+Regular">', |
|
13 | + '</a>', |
|
14 | + '<a href="https://eventespresso.com/use-cases/paint-wine-party-ticketing-software/?utm_source=wordpress_org&utm_medium=link&utm_campaign=decaf_about_page&utm_content=Decaf+vs+Regular">', |
|
15 | + '</a>' |
|
16 | + ); ?></p> |
|
17 | 17 | |
18 | 18 | <h2 class="about-headline-callout"><?php esc_html_e('Rave Reviews About Event Espresso 4', 'event_espresso'); ?></h2> |
19 | 19 | <p>See what people have to say about the Event Espresso software and support services on <a |
@@ -135,16 +135,16 @@ discard block |
||
135 | 135 | |
136 | 136 | </div> |
137 | 137 | <?php |
138 | - if (! defined('EE_CAF_URL')) { |
|
139 | - ?> |
|
138 | + if (! defined('EE_CAF_URL')) { |
|
139 | + ?> |
|
140 | 140 | <div align="right"><a |
141 | 141 | href="https://eventespresso.com/pricing/?utm_source=wordpress_org&utm_medium=link&utm_campaign=decaf_about_page&utm_content=reviews+tab" |
142 | 142 | target="_blank" class="button button-primary button-hero"><span |
143 | 143 | class="dashicons dashicons-cart"></span><?php esc_html_e('Upgrade Now!', 'event_espresso') ?></a> |
144 | 144 | </div> |
145 | 145 | <?php |
146 | - } |
|
147 | - ?> |
|
146 | + } |
|
147 | + ?> |
|
148 | 148 | |
149 | 149 | <hr/> |
150 | 150 | <div class="feature-section has-3-columns is-fullwidth three-col"> |
@@ -255,16 +255,16 @@ discard block |
||
255 | 255 | |
256 | 256 | </div> |
257 | 257 | <?php |
258 | - if (! defined('EE_CAF_URL')) { |
|
259 | - ?> |
|
258 | + if (! defined('EE_CAF_URL')) { |
|
259 | + ?> |
|
260 | 260 | <div align="right"><a |
261 | 261 | href="https://eventespresso.com/pricing/?utm_source=wordpress_org&utm_medium=link&utm_campaign=decaf_about_page&utm_content=reviews+tab" |
262 | 262 | target="_blank" class="button button-primary button-hero"><span |
263 | 263 | class="dashicons dashicons-cart"></span><?php esc_html_e('Upgrade Now!', 'event_espresso') ?></a> |
264 | 264 | </div> |
265 | 265 | <?php |
266 | - } |
|
267 | - ?> |
|
266 | + } |
|
267 | + ?> |
|
268 | 268 | |
269 | 269 | <hr/> |
270 | 270 | <div class="feature-section has-3-columns is-fullwidth three-col"> |
@@ -366,13 +366,13 @@ discard block |
||
366 | 366 | </div> |
367 | 367 | </div> |
368 | 368 | <?php |
369 | - if (! defined('EE_CAF_URL')) { |
|
370 | - ?> |
|
369 | + if (! defined('EE_CAF_URL')) { |
|
370 | + ?> |
|
371 | 371 | <div align="right"><a |
372 | 372 | href="https://eventespresso.com/pricing/?utm_source=wordpress_org&utm_medium=link&utm_campaign=decaf_about_page&utm_content=reviews+tab" |
373 | 373 | target="_blank" class="button button-primary button-hero"><span |
374 | 374 | class="dashicons dashicons-cart"></span><?php esc_html_e('Upgrade Now!', 'event_espresso') ?></a> |
375 | 375 | </div> |
376 | 376 | <?php |
377 | - } |
|
378 | - ?> |
|
379 | 377 | \ No newline at end of file |
378 | + } |
|
379 | + ?> |
|
380 | 380 | \ No newline at end of file |
@@ -4,52 +4,52 @@ |
||
4 | 4 | <?php $type = 'minor'; ?> |
5 | 5 | <?php // $type = 'major'; ?> |
6 | 6 | <p><?php |
7 | - printf( |
|
8 | - __('<strong>Version %1$s</strong> is a %2$s bug fix/enhancement release.', 'event_espresso'), |
|
9 | - EVENT_ESPRESSO_VERSION, |
|
10 | - $type |
|
11 | - ); ?> |
|
7 | + printf( |
|
8 | + __('<strong>Version %1$s</strong> is a %2$s bug fix/enhancement release.', 'event_espresso'), |
|
9 | + EVENT_ESPRESSO_VERSION, |
|
10 | + $type |
|
11 | + ); ?> |
|
12 | 12 | <?php |
13 | - $ver = explode('.', EVENT_ESPRESSO_VERSION); |
|
14 | - array_pop($ver); |
|
15 | - $ver = implode('.', $ver); |
|
16 | - ?> |
|
13 | + $ver = explode('.', EVENT_ESPRESSO_VERSION); |
|
14 | + array_pop($ver); |
|
15 | + $ver = implode('.', $ver); |
|
16 | + ?> |
|
17 | 17 | <?php |
18 | - printf( |
|
19 | - __('For more information, see <a href="%s">the release notes</a>.', 'event_espresso'), |
|
20 | - 'http://eventespresso.com/wiki/ee4-changelog/#' . $ver |
|
21 | - ); ?> |
|
18 | + printf( |
|
19 | + __('For more information, see <a href="%s">the release notes</a>.', 'event_espresso'), |
|
20 | + 'http://eventespresso.com/wiki/ee4-changelog/#' . $ver |
|
21 | + ); ?> |
|
22 | 22 | </p> |
23 | 23 | </div> |
24 | 24 | |
25 | 25 | <div class="changelog"> |
26 | 26 | <?php |
27 | - // maintenance mode on? |
|
28 | - if (EE_Maintenance_Mode::instance()->level() == EE_Maintenance_Mode::level_2_complete_maintenance) { |
|
29 | - ?> |
|
27 | + // maintenance mode on? |
|
28 | + if (EE_Maintenance_Mode::instance()->level() == EE_Maintenance_Mode::level_2_complete_maintenance) { |
|
29 | + ?> |
|
30 | 30 | <div class="ee-attention"> |
31 | 31 | <h2 class="ee-maintenance-mode-callout"> |
32 | 32 | <?php |
33 | - _e( |
|
34 | - 'Event Espresso is in full maintenance mode.', |
|
35 | - 'event_espresso' |
|
36 | - ); ?></h2> |
|
33 | + _e( |
|
34 | + 'Event Espresso is in full maintenance mode.', |
|
35 | + 'event_espresso' |
|
36 | + ); ?></h2> |
|
37 | 37 | <p> |
38 | 38 | <?php |
39 | - printf( |
|
40 | - __( |
|
41 | - 'A previous version of Event Espresso has detected. But before anything else can happen, we need to know whether or not to migrate (copy over) your existing event data so that it can be utilized by EE4. For more instructions on what to do, please visit the %sEvent Espresso Maintenance%s page.', |
|
42 | - 'event_espresso' |
|
43 | - ), |
|
44 | - '<a href="admin.php?page=espresso_maintenance_settings">', |
|
45 | - '</a>' |
|
46 | - ); |
|
47 | - ?> |
|
39 | + printf( |
|
40 | + __( |
|
41 | + 'A previous version of Event Espresso has detected. But before anything else can happen, we need to know whether or not to migrate (copy over) your existing event data so that it can be utilized by EE4. For more instructions on what to do, please visit the %sEvent Espresso Maintenance%s page.', |
|
42 | + 'event_espresso' |
|
43 | + ), |
|
44 | + '<a href="admin.php?page=espresso_maintenance_settings">', |
|
45 | + '</a>' |
|
46 | + ); |
|
47 | + ?> |
|
48 | 48 | </p> |
49 | 49 | </div> |
50 | 50 | <?php |
51 | - } |
|
52 | - ?> |
|
51 | + } |
|
52 | + ?> |
|
53 | 53 | |
54 | 54 | |
55 | 55 | <h2 class="about-headline-callout">Initial EE4 Decaf (free) Release</h2> |
@@ -17,7 +17,7 @@ |
||
17 | 17 | <?php |
18 | 18 | printf( |
19 | 19 | __('For more information, see <a href="%s">the release notes</a>.', 'event_espresso'), |
20 | - 'http://eventespresso.com/wiki/ee4-changelog/#' . $ver |
|
20 | + 'http://eventespresso.com/wiki/ee4-changelog/#'.$ver |
|
21 | 21 | ); ?> |
22 | 22 | </p> |
23 | 23 | </div> |