@@ -12,276 +12,276 @@ |
||
12 | 12 | */ |
13 | 13 | class espresso_events_Messages_Hooks_Extend extends espresso_events_Messages_Hooks |
14 | 14 | { |
15 | - /** |
|
16 | - * espresso_events_Messages_Hooks_Extend constructor. |
|
17 | - * |
|
18 | - * @param \EE_Admin_Page $admin_page |
|
19 | - */ |
|
20 | - public function __construct(EE_Admin_Page $admin_page) |
|
21 | - { |
|
22 | - /** |
|
23 | - * Add cap restriction ... metaboxes should not show if user does not have the ability to edit_custom_messages |
|
24 | - */ |
|
25 | - if (! EE_Registry::instance()->CAP->current_user_can( |
|
26 | - 'ee_edit_messages', |
|
27 | - 'messages_events_editor_metabox' |
|
28 | - )) { |
|
29 | - return; |
|
30 | - } |
|
31 | - add_filter( |
|
32 | - 'FHEE__Events_Admin_Page___insert_update_cpt_item__event_update_callbacks', |
|
33 | - array($this, 'caf_updates'), |
|
34 | - 10 |
|
35 | - ); |
|
36 | - add_action( |
|
37 | - 'AHEE__Extend_Events_Admin_Page___duplicate_event__after', |
|
38 | - array($this, 'duplicate_custom_message_settings'), |
|
39 | - 10, |
|
40 | - 2 |
|
41 | - ); |
|
42 | - parent::__construct($admin_page); |
|
43 | - } |
|
44 | - |
|
45 | - |
|
46 | - /** |
|
47 | - * extending the properties set in espresso_events_Messages_Hooks |
|
48 | - * |
|
49 | - * @access protected |
|
50 | - * @return void |
|
51 | - */ |
|
52 | - protected function _extend_properties() |
|
53 | - { |
|
54 | - define('EE_MSGS_EXTEND_ASSETS_URL', EE_CORE_CAF_ADMIN_EXTEND_URL . 'messages/assets/'); |
|
55 | - $this->_ajax_func = array( |
|
56 | - 'ee_msgs_create_new_custom' => 'create_new_custom', |
|
57 | - ); |
|
58 | - $this->_metaboxes = array( |
|
59 | - 0 => array( |
|
60 | - 'page_route' => array('edit', 'create_new'), |
|
61 | - 'func' => 'messages_metabox', |
|
62 | - 'label' => esc_html__('Notifications', 'event_espresso'), |
|
63 | - 'priority' => 'high', |
|
64 | - ), |
|
65 | - ); |
|
66 | - |
|
67 | - // see explanation for layout in EE_Admin_Hooks |
|
68 | - $this->_scripts_styles = array( |
|
69 | - 'registers' => array( |
|
70 | - 'events_msg_admin' => array( |
|
71 | - 'url' => EE_MSGS_EXTEND_ASSETS_URL . 'events_messages_admin.js', |
|
72 | - 'depends' => array('ee-dialog', 'ee-parse-uri', 'ee-serialize-full-array'), |
|
73 | - ), |
|
74 | - 'events_msg_admin_css' => array( |
|
75 | - 'url' => EE_MSGS_EXTEND_ASSETS_URL . 'ee_msg_events_admin.css', |
|
76 | - 'type' => 'css', |
|
77 | - ), |
|
78 | - ), |
|
79 | - 'enqueues' => array( |
|
80 | - 'events_msg_admin' => array('edit', 'create_new'), |
|
81 | - 'events_msg_admin_css' => array('edit', 'create_new'), |
|
82 | - ), |
|
83 | - ); |
|
84 | - } |
|
85 | - |
|
86 | - |
|
87 | - public function caf_updates($update_callbacks) |
|
88 | - { |
|
89 | - $update_callbacks[] = array($this, 'attach_evt_message_templates'); |
|
90 | - return $update_callbacks; |
|
91 | - } |
|
92 | - |
|
93 | - |
|
94 | - /** |
|
95 | - * Handles attaching Message Templates to the Event on save. |
|
96 | - * |
|
97 | - * @param EE_Event $event EE event object |
|
98 | - * @param array $data The request data from the form |
|
99 | - * @return bool success or fail |
|
100 | - * @throws EE_Error |
|
101 | - */ |
|
102 | - public function attach_evt_message_templates($event, $data) |
|
103 | - { |
|
104 | - // first we remove all existing relations on the Event for message types. |
|
105 | - $event->_remove_relations('Message_Template_Group'); |
|
106 | - // now let's just loop through the selected templates and add relations! |
|
107 | - if (isset($data['event_message_templates_relation'])) { |
|
108 | - foreach ($data['event_message_templates_relation'] as $grp_ID) { |
|
109 | - $event->_add_relation_to($grp_ID, 'Message_Template_Group'); |
|
110 | - } |
|
111 | - } |
|
112 | - // now save |
|
113 | - return $event->save(); |
|
114 | - } |
|
115 | - |
|
116 | - |
|
117 | - /** |
|
118 | - * @param $event |
|
119 | - * @param $callback_args |
|
120 | - * @return string |
|
121 | - * @throws \EE_Error |
|
122 | - */ |
|
123 | - public function messages_metabox($event, $callback_args) |
|
124 | - { |
|
125 | - // let's get the active messengers (b/c messenger objects have the active message templates) |
|
126 | - // convert 'evt_id' to 'EVT_ID' |
|
127 | - $this->_req_data['EVT_ID'] = isset($this->_req_data['EVT_ID']) ? $this->_req_data['EVT_ID'] : null; |
|
128 | - $this->_req_data['EVT_ID'] = isset($this->_req_data['post']) && empty($this->_req_data['EVT_ID']) |
|
129 | - ? $this->_req_data['post'] |
|
130 | - : $this->_req_data['EVT_ID']; |
|
131 | - |
|
132 | - $this->_req_data['EVT_ID'] = empty($this->_req_data['EVT_ID']) && isset($this->_req_data['evt_id']) |
|
133 | - ? $this->_req_data['evt_id'] |
|
134 | - : $this->_req_data['EVT_ID']; |
|
135 | - /** @type EE_Message_Resource_Manager $message_resource_manager */ |
|
136 | - $message_resource_manager = EE_Registry::instance()->load_lib('Message_Resource_Manager'); |
|
137 | - $active_messengers = $message_resource_manager->active_messengers(); |
|
138 | - $tabs = array(); |
|
139 | - |
|
140 | - // empty messengers? |
|
141 | - // Note message types will always have at least one available because every messenger has a default message type |
|
142 | - // associated with it (payment) if no other message types are selected. |
|
143 | - if (empty($active_messengers)) { |
|
144 | - $msg_activate_url = EE_Admin_Page::add_query_args_and_nonce( |
|
145 | - array('action' => 'settings'), |
|
146 | - EE_MSG_ADMIN_URL |
|
147 | - ); |
|
148 | - $error_msg = sprintf( |
|
149 | - esc_html__( |
|
150 | - 'There are no active messengers. So no notifications will go out for %1$sany%2$s events. You will want to %3$sActivate a Messenger%4$s.', |
|
151 | - 'event_espresso' |
|
152 | - ), |
|
153 | - '<strong>', |
|
154 | - '</strong>', |
|
155 | - '<a href="' . $msg_activate_url . '">', |
|
156 | - '</a>' |
|
157 | - ); |
|
158 | - $error_content = '<div class="error"><p>' . $error_msg . '</p></div>'; |
|
159 | - $internal_content = '<div id="messages-error"><p>' . $error_msg . '</p></div>'; |
|
160 | - |
|
161 | - echo $error_content; |
|
162 | - echo $internal_content; |
|
163 | - return ''; |
|
164 | - } |
|
165 | - |
|
166 | - $event_id = isset($this->_req_data['EVT_ID']) ? $this->_req_data['EVT_ID'] : null; |
|
167 | - // get content for active messengers |
|
168 | - foreach ($active_messengers as $name => $messenger) { |
|
169 | - // first check if there are any active message types for this messenger. |
|
170 | - $active_mts = $message_resource_manager->get_active_message_types_for_messenger($name); |
|
171 | - if (empty($active_mts)) { |
|
172 | - continue; |
|
173 | - } |
|
174 | - |
|
175 | - $tab_content = $messenger->get_messenger_admin_page_content( |
|
176 | - 'events', |
|
177 | - 'edit', |
|
178 | - array('event' => $event_id) |
|
179 | - ); |
|
180 | - |
|
181 | - if (! empty($tab_content)) { |
|
182 | - $tabs[ $name ] = $tab_content; |
|
183 | - } |
|
184 | - } |
|
185 | - |
|
186 | - |
|
187 | - // we want this to be tabbed content so let's use the EEH_Tabbed_Content::display helper. |
|
188 | - $tabbed_content = EEH_Tabbed_Content::display($tabs); |
|
189 | - if ($tabbed_content instanceof WP_Error) { |
|
190 | - $tabbed_content = $tabbed_content->get_error_message(); |
|
191 | - } |
|
192 | - |
|
193 | - $notices = ' |
|
15 | + /** |
|
16 | + * espresso_events_Messages_Hooks_Extend constructor. |
|
17 | + * |
|
18 | + * @param \EE_Admin_Page $admin_page |
|
19 | + */ |
|
20 | + public function __construct(EE_Admin_Page $admin_page) |
|
21 | + { |
|
22 | + /** |
|
23 | + * Add cap restriction ... metaboxes should not show if user does not have the ability to edit_custom_messages |
|
24 | + */ |
|
25 | + if (! EE_Registry::instance()->CAP->current_user_can( |
|
26 | + 'ee_edit_messages', |
|
27 | + 'messages_events_editor_metabox' |
|
28 | + )) { |
|
29 | + return; |
|
30 | + } |
|
31 | + add_filter( |
|
32 | + 'FHEE__Events_Admin_Page___insert_update_cpt_item__event_update_callbacks', |
|
33 | + array($this, 'caf_updates'), |
|
34 | + 10 |
|
35 | + ); |
|
36 | + add_action( |
|
37 | + 'AHEE__Extend_Events_Admin_Page___duplicate_event__after', |
|
38 | + array($this, 'duplicate_custom_message_settings'), |
|
39 | + 10, |
|
40 | + 2 |
|
41 | + ); |
|
42 | + parent::__construct($admin_page); |
|
43 | + } |
|
44 | + |
|
45 | + |
|
46 | + /** |
|
47 | + * extending the properties set in espresso_events_Messages_Hooks |
|
48 | + * |
|
49 | + * @access protected |
|
50 | + * @return void |
|
51 | + */ |
|
52 | + protected function _extend_properties() |
|
53 | + { |
|
54 | + define('EE_MSGS_EXTEND_ASSETS_URL', EE_CORE_CAF_ADMIN_EXTEND_URL . 'messages/assets/'); |
|
55 | + $this->_ajax_func = array( |
|
56 | + 'ee_msgs_create_new_custom' => 'create_new_custom', |
|
57 | + ); |
|
58 | + $this->_metaboxes = array( |
|
59 | + 0 => array( |
|
60 | + 'page_route' => array('edit', 'create_new'), |
|
61 | + 'func' => 'messages_metabox', |
|
62 | + 'label' => esc_html__('Notifications', 'event_espresso'), |
|
63 | + 'priority' => 'high', |
|
64 | + ), |
|
65 | + ); |
|
66 | + |
|
67 | + // see explanation for layout in EE_Admin_Hooks |
|
68 | + $this->_scripts_styles = array( |
|
69 | + 'registers' => array( |
|
70 | + 'events_msg_admin' => array( |
|
71 | + 'url' => EE_MSGS_EXTEND_ASSETS_URL . 'events_messages_admin.js', |
|
72 | + 'depends' => array('ee-dialog', 'ee-parse-uri', 'ee-serialize-full-array'), |
|
73 | + ), |
|
74 | + 'events_msg_admin_css' => array( |
|
75 | + 'url' => EE_MSGS_EXTEND_ASSETS_URL . 'ee_msg_events_admin.css', |
|
76 | + 'type' => 'css', |
|
77 | + ), |
|
78 | + ), |
|
79 | + 'enqueues' => array( |
|
80 | + 'events_msg_admin' => array('edit', 'create_new'), |
|
81 | + 'events_msg_admin_css' => array('edit', 'create_new'), |
|
82 | + ), |
|
83 | + ); |
|
84 | + } |
|
85 | + |
|
86 | + |
|
87 | + public function caf_updates($update_callbacks) |
|
88 | + { |
|
89 | + $update_callbacks[] = array($this, 'attach_evt_message_templates'); |
|
90 | + return $update_callbacks; |
|
91 | + } |
|
92 | + |
|
93 | + |
|
94 | + /** |
|
95 | + * Handles attaching Message Templates to the Event on save. |
|
96 | + * |
|
97 | + * @param EE_Event $event EE event object |
|
98 | + * @param array $data The request data from the form |
|
99 | + * @return bool success or fail |
|
100 | + * @throws EE_Error |
|
101 | + */ |
|
102 | + public function attach_evt_message_templates($event, $data) |
|
103 | + { |
|
104 | + // first we remove all existing relations on the Event for message types. |
|
105 | + $event->_remove_relations('Message_Template_Group'); |
|
106 | + // now let's just loop through the selected templates and add relations! |
|
107 | + if (isset($data['event_message_templates_relation'])) { |
|
108 | + foreach ($data['event_message_templates_relation'] as $grp_ID) { |
|
109 | + $event->_add_relation_to($grp_ID, 'Message_Template_Group'); |
|
110 | + } |
|
111 | + } |
|
112 | + // now save |
|
113 | + return $event->save(); |
|
114 | + } |
|
115 | + |
|
116 | + |
|
117 | + /** |
|
118 | + * @param $event |
|
119 | + * @param $callback_args |
|
120 | + * @return string |
|
121 | + * @throws \EE_Error |
|
122 | + */ |
|
123 | + public function messages_metabox($event, $callback_args) |
|
124 | + { |
|
125 | + // let's get the active messengers (b/c messenger objects have the active message templates) |
|
126 | + // convert 'evt_id' to 'EVT_ID' |
|
127 | + $this->_req_data['EVT_ID'] = isset($this->_req_data['EVT_ID']) ? $this->_req_data['EVT_ID'] : null; |
|
128 | + $this->_req_data['EVT_ID'] = isset($this->_req_data['post']) && empty($this->_req_data['EVT_ID']) |
|
129 | + ? $this->_req_data['post'] |
|
130 | + : $this->_req_data['EVT_ID']; |
|
131 | + |
|
132 | + $this->_req_data['EVT_ID'] = empty($this->_req_data['EVT_ID']) && isset($this->_req_data['evt_id']) |
|
133 | + ? $this->_req_data['evt_id'] |
|
134 | + : $this->_req_data['EVT_ID']; |
|
135 | + /** @type EE_Message_Resource_Manager $message_resource_manager */ |
|
136 | + $message_resource_manager = EE_Registry::instance()->load_lib('Message_Resource_Manager'); |
|
137 | + $active_messengers = $message_resource_manager->active_messengers(); |
|
138 | + $tabs = array(); |
|
139 | + |
|
140 | + // empty messengers? |
|
141 | + // Note message types will always have at least one available because every messenger has a default message type |
|
142 | + // associated with it (payment) if no other message types are selected. |
|
143 | + if (empty($active_messengers)) { |
|
144 | + $msg_activate_url = EE_Admin_Page::add_query_args_and_nonce( |
|
145 | + array('action' => 'settings'), |
|
146 | + EE_MSG_ADMIN_URL |
|
147 | + ); |
|
148 | + $error_msg = sprintf( |
|
149 | + esc_html__( |
|
150 | + 'There are no active messengers. So no notifications will go out for %1$sany%2$s events. You will want to %3$sActivate a Messenger%4$s.', |
|
151 | + 'event_espresso' |
|
152 | + ), |
|
153 | + '<strong>', |
|
154 | + '</strong>', |
|
155 | + '<a href="' . $msg_activate_url . '">', |
|
156 | + '</a>' |
|
157 | + ); |
|
158 | + $error_content = '<div class="error"><p>' . $error_msg . '</p></div>'; |
|
159 | + $internal_content = '<div id="messages-error"><p>' . $error_msg . '</p></div>'; |
|
160 | + |
|
161 | + echo $error_content; |
|
162 | + echo $internal_content; |
|
163 | + return ''; |
|
164 | + } |
|
165 | + |
|
166 | + $event_id = isset($this->_req_data['EVT_ID']) ? $this->_req_data['EVT_ID'] : null; |
|
167 | + // get content for active messengers |
|
168 | + foreach ($active_messengers as $name => $messenger) { |
|
169 | + // first check if there are any active message types for this messenger. |
|
170 | + $active_mts = $message_resource_manager->get_active_message_types_for_messenger($name); |
|
171 | + if (empty($active_mts)) { |
|
172 | + continue; |
|
173 | + } |
|
174 | + |
|
175 | + $tab_content = $messenger->get_messenger_admin_page_content( |
|
176 | + 'events', |
|
177 | + 'edit', |
|
178 | + array('event' => $event_id) |
|
179 | + ); |
|
180 | + |
|
181 | + if (! empty($tab_content)) { |
|
182 | + $tabs[ $name ] = $tab_content; |
|
183 | + } |
|
184 | + } |
|
185 | + |
|
186 | + |
|
187 | + // we want this to be tabbed content so let's use the EEH_Tabbed_Content::display helper. |
|
188 | + $tabbed_content = EEH_Tabbed_Content::display($tabs); |
|
189 | + if ($tabbed_content instanceof WP_Error) { |
|
190 | + $tabbed_content = $tabbed_content->get_error_message(); |
|
191 | + } |
|
192 | + |
|
193 | + $notices = ' |
|
194 | 194 | <div id="espresso-ajax-loading" class="ajax-loader-grey"> |
195 | 195 | <span class="ee-spinner ee-spin"></span><span class="hidden">' |
196 | - . esc_html__('loading...', 'event_espresso') |
|
197 | - . '</span> |
|
196 | + . esc_html__('loading...', 'event_espresso') |
|
197 | + . '</span> |
|
198 | 198 | </div> |
199 | 199 | <div class="ee-notices"></div>'; |
200 | 200 | |
201 | - if (defined('DOING_AJAX')) { |
|
202 | - return $tabbed_content; |
|
203 | - } |
|
204 | - |
|
205 | - do_action('AHEE__espresso_events_Messages_Hooks_Extend__messages_metabox__before_content'); |
|
206 | - echo $notices . '<div class="messages-tabs-content">' . $tabbed_content . '</div>'; |
|
207 | - do_action('AHEE__espresso_events_Messages_Hooks_Extend__messages_metabox__after_content'); |
|
208 | - } |
|
209 | - |
|
210 | - |
|
211 | - /** |
|
212 | - * Ajax callback for ee_msgs_create_new_custom ajax request. |
|
213 | - * Takes incoming GRP_ID and name and description values from ajax request |
|
214 | - * to create a new custom template based off of the incoming GRP_ID. |
|
215 | - * |
|
216 | - * @access public |
|
217 | - * @return string either an html string will be returned or a success message |
|
218 | - * @throws EE_Error |
|
219 | - */ |
|
220 | - public function create_new_custom() |
|
221 | - { |
|
222 | - if (! EE_Registry::instance()->CAP->current_user_can('ee_edit_messages', 'create_new_custom_ajax')) { |
|
223 | - wp_die(__('You don\'t have privileges to do this action', 'event_espresso')); |
|
224 | - } |
|
225 | - |
|
226 | - // let's clean up the _POST global a bit for downstream usage of name and description. |
|
227 | - $_POST['templateName'] = ! empty($this->_req_data['custom_template_args']['MTP_name']) |
|
228 | - ? $this->_req_data['custom_template_args']['MTP_name'] |
|
229 | - : ''; |
|
230 | - $_POST['templateDescription'] = ! empty($this->_req_data['custom_template_args']['MTP_description']) |
|
231 | - ? $this->_req_data['custom_template_args']['MTP_description'] |
|
232 | - : ''; |
|
233 | - |
|
234 | - |
|
235 | - // set EE_Admin_Page object (see method details in EE_Admin_Hooks parent |
|
236 | - $this->_set_page_object(); |
|
237 | - |
|
238 | - // is this a template switch if so EE_Admin_Page child needs this object |
|
239 | - $this->_page_object->set_hook_object($this); |
|
240 | - |
|
241 | - $this->_page_object->add_message_template( |
|
242 | - $this->_req_data['messageType'], |
|
243 | - $this->_req_data['messenger'], |
|
244 | - $this->_req_data['group_ID'] |
|
245 | - ); |
|
246 | - } |
|
247 | - |
|
248 | - |
|
249 | - public function create_new_admin_footer() |
|
250 | - { |
|
251 | - $this->edit_admin_footer(); |
|
252 | - } |
|
253 | - |
|
254 | - |
|
255 | - /** |
|
256 | - * This is the dynamic method for this class |
|
257 | - * that will end up hooking into the 'admin_footer' hook on the 'edit_event' route in the events page. |
|
258 | - * |
|
259 | - * @return string |
|
260 | - * @throws DomainException |
|
261 | - */ |
|
262 | - public function edit_admin_footer() |
|
263 | - { |
|
264 | - EEH_Template::display_template( |
|
265 | - EE_CORE_CAF_ADMIN_EXTEND . 'messages/templates/create_custom_template_form.template.php' |
|
266 | - ); |
|
267 | - } |
|
268 | - |
|
269 | - |
|
270 | - /** |
|
271 | - * Callback for AHEE__Extend_Events_Admin_Page___duplicate_event__after hook used to ensure new events duplicate |
|
272 | - * the assigned custom message templates. |
|
273 | - * |
|
274 | - * @param EE_Event $new_event |
|
275 | - * @param EE_Event $original_event |
|
276 | - * @throws EE_Error |
|
277 | - */ |
|
278 | - public function duplicate_custom_message_settings(EE_Event $new_event, EE_Event $original_event) |
|
279 | - { |
|
280 | - $message_template_groups = $original_event->get_many_related('Message_Template_Group'); |
|
281 | - foreach ($message_template_groups as $message_template_group) { |
|
282 | - $new_event->_add_relation_to($message_template_group, 'Message_Template_Group'); |
|
283 | - } |
|
284 | - // save new event |
|
285 | - $new_event->save(); |
|
286 | - } |
|
201 | + if (defined('DOING_AJAX')) { |
|
202 | + return $tabbed_content; |
|
203 | + } |
|
204 | + |
|
205 | + do_action('AHEE__espresso_events_Messages_Hooks_Extend__messages_metabox__before_content'); |
|
206 | + echo $notices . '<div class="messages-tabs-content">' . $tabbed_content . '</div>'; |
|
207 | + do_action('AHEE__espresso_events_Messages_Hooks_Extend__messages_metabox__after_content'); |
|
208 | + } |
|
209 | + |
|
210 | + |
|
211 | + /** |
|
212 | + * Ajax callback for ee_msgs_create_new_custom ajax request. |
|
213 | + * Takes incoming GRP_ID and name and description values from ajax request |
|
214 | + * to create a new custom template based off of the incoming GRP_ID. |
|
215 | + * |
|
216 | + * @access public |
|
217 | + * @return string either an html string will be returned or a success message |
|
218 | + * @throws EE_Error |
|
219 | + */ |
|
220 | + public function create_new_custom() |
|
221 | + { |
|
222 | + if (! EE_Registry::instance()->CAP->current_user_can('ee_edit_messages', 'create_new_custom_ajax')) { |
|
223 | + wp_die(__('You don\'t have privileges to do this action', 'event_espresso')); |
|
224 | + } |
|
225 | + |
|
226 | + // let's clean up the _POST global a bit for downstream usage of name and description. |
|
227 | + $_POST['templateName'] = ! empty($this->_req_data['custom_template_args']['MTP_name']) |
|
228 | + ? $this->_req_data['custom_template_args']['MTP_name'] |
|
229 | + : ''; |
|
230 | + $_POST['templateDescription'] = ! empty($this->_req_data['custom_template_args']['MTP_description']) |
|
231 | + ? $this->_req_data['custom_template_args']['MTP_description'] |
|
232 | + : ''; |
|
233 | + |
|
234 | + |
|
235 | + // set EE_Admin_Page object (see method details in EE_Admin_Hooks parent |
|
236 | + $this->_set_page_object(); |
|
237 | + |
|
238 | + // is this a template switch if so EE_Admin_Page child needs this object |
|
239 | + $this->_page_object->set_hook_object($this); |
|
240 | + |
|
241 | + $this->_page_object->add_message_template( |
|
242 | + $this->_req_data['messageType'], |
|
243 | + $this->_req_data['messenger'], |
|
244 | + $this->_req_data['group_ID'] |
|
245 | + ); |
|
246 | + } |
|
247 | + |
|
248 | + |
|
249 | + public function create_new_admin_footer() |
|
250 | + { |
|
251 | + $this->edit_admin_footer(); |
|
252 | + } |
|
253 | + |
|
254 | + |
|
255 | + /** |
|
256 | + * This is the dynamic method for this class |
|
257 | + * that will end up hooking into the 'admin_footer' hook on the 'edit_event' route in the events page. |
|
258 | + * |
|
259 | + * @return string |
|
260 | + * @throws DomainException |
|
261 | + */ |
|
262 | + public function edit_admin_footer() |
|
263 | + { |
|
264 | + EEH_Template::display_template( |
|
265 | + EE_CORE_CAF_ADMIN_EXTEND . 'messages/templates/create_custom_template_form.template.php' |
|
266 | + ); |
|
267 | + } |
|
268 | + |
|
269 | + |
|
270 | + /** |
|
271 | + * Callback for AHEE__Extend_Events_Admin_Page___duplicate_event__after hook used to ensure new events duplicate |
|
272 | + * the assigned custom message templates. |
|
273 | + * |
|
274 | + * @param EE_Event $new_event |
|
275 | + * @param EE_Event $original_event |
|
276 | + * @throws EE_Error |
|
277 | + */ |
|
278 | + public function duplicate_custom_message_settings(EE_Event $new_event, EE_Event $original_event) |
|
279 | + { |
|
280 | + $message_template_groups = $original_event->get_many_related('Message_Template_Group'); |
|
281 | + foreach ($message_template_groups as $message_template_group) { |
|
282 | + $new_event->_add_relation_to($message_template_group, 'Message_Template_Group'); |
|
283 | + } |
|
284 | + // save new event |
|
285 | + $new_event->save(); |
|
286 | + } |
|
287 | 287 | } |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | /** |
23 | 23 | * Add cap restriction ... metaboxes should not show if user does not have the ability to edit_custom_messages |
24 | 24 | */ |
25 | - if (! EE_Registry::instance()->CAP->current_user_can( |
|
25 | + if ( ! EE_Registry::instance()->CAP->current_user_can( |
|
26 | 26 | 'ee_edit_messages', |
27 | 27 | 'messages_events_editor_metabox' |
28 | 28 | )) { |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | */ |
52 | 52 | protected function _extend_properties() |
53 | 53 | { |
54 | - define('EE_MSGS_EXTEND_ASSETS_URL', EE_CORE_CAF_ADMIN_EXTEND_URL . 'messages/assets/'); |
|
54 | + define('EE_MSGS_EXTEND_ASSETS_URL', EE_CORE_CAF_ADMIN_EXTEND_URL.'messages/assets/'); |
|
55 | 55 | $this->_ajax_func = array( |
56 | 56 | 'ee_msgs_create_new_custom' => 'create_new_custom', |
57 | 57 | ); |
@@ -68,11 +68,11 @@ discard block |
||
68 | 68 | $this->_scripts_styles = array( |
69 | 69 | 'registers' => array( |
70 | 70 | 'events_msg_admin' => array( |
71 | - 'url' => EE_MSGS_EXTEND_ASSETS_URL . 'events_messages_admin.js', |
|
71 | + 'url' => EE_MSGS_EXTEND_ASSETS_URL.'events_messages_admin.js', |
|
72 | 72 | 'depends' => array('ee-dialog', 'ee-parse-uri', 'ee-serialize-full-array'), |
73 | 73 | ), |
74 | 74 | 'events_msg_admin_css' => array( |
75 | - 'url' => EE_MSGS_EXTEND_ASSETS_URL . 'ee_msg_events_admin.css', |
|
75 | + 'url' => EE_MSGS_EXTEND_ASSETS_URL.'ee_msg_events_admin.css', |
|
76 | 76 | 'type' => 'css', |
77 | 77 | ), |
78 | 78 | ), |
@@ -152,11 +152,11 @@ discard block |
||
152 | 152 | ), |
153 | 153 | '<strong>', |
154 | 154 | '</strong>', |
155 | - '<a href="' . $msg_activate_url . '">', |
|
155 | + '<a href="'.$msg_activate_url.'">', |
|
156 | 156 | '</a>' |
157 | 157 | ); |
158 | - $error_content = '<div class="error"><p>' . $error_msg . '</p></div>'; |
|
159 | - $internal_content = '<div id="messages-error"><p>' . $error_msg . '</p></div>'; |
|
158 | + $error_content = '<div class="error"><p>'.$error_msg.'</p></div>'; |
|
159 | + $internal_content = '<div id="messages-error"><p>'.$error_msg.'</p></div>'; |
|
160 | 160 | |
161 | 161 | echo $error_content; |
162 | 162 | echo $internal_content; |
@@ -178,8 +178,8 @@ discard block |
||
178 | 178 | array('event' => $event_id) |
179 | 179 | ); |
180 | 180 | |
181 | - if (! empty($tab_content)) { |
|
182 | - $tabs[ $name ] = $tab_content; |
|
181 | + if ( ! empty($tab_content)) { |
|
182 | + $tabs[$name] = $tab_content; |
|
183 | 183 | } |
184 | 184 | } |
185 | 185 | |
@@ -203,7 +203,7 @@ discard block |
||
203 | 203 | } |
204 | 204 | |
205 | 205 | do_action('AHEE__espresso_events_Messages_Hooks_Extend__messages_metabox__before_content'); |
206 | - echo $notices . '<div class="messages-tabs-content">' . $tabbed_content . '</div>'; |
|
206 | + echo $notices.'<div class="messages-tabs-content">'.$tabbed_content.'</div>'; |
|
207 | 207 | do_action('AHEE__espresso_events_Messages_Hooks_Extend__messages_metabox__after_content'); |
208 | 208 | } |
209 | 209 | |
@@ -219,7 +219,7 @@ discard block |
||
219 | 219 | */ |
220 | 220 | public function create_new_custom() |
221 | 221 | { |
222 | - if (! EE_Registry::instance()->CAP->current_user_can('ee_edit_messages', 'create_new_custom_ajax')) { |
|
222 | + if ( ! EE_Registry::instance()->CAP->current_user_can('ee_edit_messages', 'create_new_custom_ajax')) { |
|
223 | 223 | wp_die(__('You don\'t have privileges to do this action', 'event_espresso')); |
224 | 224 | } |
225 | 225 | |
@@ -262,7 +262,7 @@ discard block |
||
262 | 262 | public function edit_admin_footer() |
263 | 263 | { |
264 | 264 | EEH_Template::display_template( |
265 | - EE_CORE_CAF_ADMIN_EXTEND . 'messages/templates/create_custom_template_form.template.php' |
|
265 | + EE_CORE_CAF_ADMIN_EXTEND.'messages/templates/create_custom_template_form.template.php' |
|
266 | 266 | ); |
267 | 267 | } |
268 | 268 |
@@ -18,153 +18,153 @@ |
||
18 | 18 | { |
19 | 19 | |
20 | 20 | |
21 | - protected function _setup_data() |
|
22 | - { |
|
23 | - $trashed = $this->_admin_page->get_view() == 'trashed' ? true : false; |
|
24 | - $this->_data = $this->_admin_page->get_default_tickets($this->_per_page, false, $trashed); |
|
25 | - $this->_all_data_count = $this->_admin_page->get_default_tickets($this->_per_page, true, false); |
|
26 | - $this->_trashed_count = $this->_admin_page->get_default_tickets($this->_per_page, true, true); |
|
27 | - } |
|
28 | - |
|
29 | - |
|
30 | - protected function _set_properties() |
|
31 | - { |
|
32 | - $this->_wp_list_args = array( |
|
33 | - 'singular' => __('ticket', 'event_espresso'), |
|
34 | - 'plural' => __('tickets', 'event_espresso'), |
|
35 | - 'ajax' => true, |
|
36 | - 'screen' => $this->_admin_page->get_current_screen()->id, |
|
37 | - ); |
|
38 | - |
|
39 | - $this->_columns = array( |
|
40 | - 'cb' => '<input type="checkbox" />', // Render a checkbox instead of text |
|
41 | - 'TKT_name' => __('Name', 'event_espresso'), |
|
42 | - 'TKT_description' => __('Description', 'event_espresso'), |
|
43 | - 'TKT_qty' => __('Quantity', 'event_espresso'), |
|
44 | - 'TKT_uses' => __('Uses', 'event_espresso'), |
|
45 | - 'TKT_min' => __('Minimum', 'event_espresso'), |
|
46 | - 'TKT_max' => __('Maximum', 'event_espresso'), |
|
47 | - 'TKT_price' => __('Price', 'event_espresso'), |
|
48 | - 'TKT_taxable' => __('Taxable', 'event_espresso'), |
|
49 | - ); |
|
50 | - |
|
51 | - $this->_sortable_columns = array( |
|
52 | - // TRUE means its already sorted |
|
53 | - 'TKT_name' => array('TKT_name', true), |
|
54 | - 'TKT_description' => array('TKT_description', false), |
|
55 | - 'TKT_qty' => array('TKT_qty', false), |
|
56 | - 'TKT_uses' => array('TKT_uses', false), |
|
57 | - 'TKT_min' => array('TKT_min', false), |
|
58 | - 'TKT_max' => array('TKT_max', false), |
|
59 | - 'TKT_price' => array('TKT_price', false), |
|
60 | - ); |
|
61 | - |
|
62 | - $this->_hidden_columns = array(); |
|
63 | - } |
|
64 | - |
|
65 | - |
|
66 | - protected function _get_table_filters() |
|
67 | - { |
|
68 | - } |
|
69 | - |
|
70 | - |
|
71 | - protected function _add_view_counts() |
|
72 | - { |
|
73 | - $this->_views['all']['count'] = $this->_all_data_count; |
|
74 | - if (EE_Registry::instance()->CAP->current_user_can('ee_delete_default_tickets', 'trash_ticket')) { |
|
75 | - $this->_views['trashed']['count'] = $this->_trashed_count; |
|
76 | - } |
|
77 | - } |
|
78 | - |
|
79 | - |
|
80 | - public function column_cb($item) |
|
81 | - { |
|
82 | - return $item->ID() === 1 |
|
83 | - ? '<span class="ee-lock-icon"></span>' |
|
84 | - : sprintf( |
|
85 | - '<input type="checkbox" name="checkbox[%1$s]" value="%1$s" />', |
|
86 | - $item->ID() |
|
87 | - ); |
|
88 | - } |
|
89 | - |
|
90 | - |
|
91 | - public function column_TKT_name($item) |
|
92 | - { |
|
93 | - // build row actions |
|
94 | - $actions = array(); |
|
95 | - |
|
96 | - // trash links |
|
97 | - if ($item->ID() !== 1) { |
|
98 | - if ($this->_view == 'all') { |
|
99 | - $trash_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array( |
|
100 | - 'action' => 'trash_ticket', |
|
101 | - 'TKT_ID' => $item->ID(), |
|
102 | - ), TICKETS_ADMIN_URL); |
|
103 | - $actions['trash'] = '<a href="' . $trash_lnk_url . '" title="' |
|
104 | - . esc_attr__('Move Ticket to trash', 'event_espresso') . '">' |
|
105 | - . __('Trash', 'event_espresso') . '</a>'; |
|
106 | - } else { |
|
107 | - // restore price link |
|
108 | - $restore_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array( |
|
109 | - 'action' => 'restore_ticket', |
|
110 | - 'TKT_ID' => $item->ID(), |
|
111 | - ), TICKETS_ADMIN_URL); |
|
112 | - $actions['restore'] = '<a href="' . $restore_lnk_url . '" title="' |
|
113 | - . esc_attr__('Restore Ticket', 'event_espresso') . '">' |
|
114 | - . __('Restore', 'event_espresso') . '</a>'; |
|
115 | - // delete price link |
|
116 | - $delete_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array( |
|
117 | - 'action' => 'delete_ticket', |
|
118 | - 'TKT_ID' => $item->ID(), |
|
119 | - ), TICKETS_ADMIN_URL); |
|
120 | - $actions['delete'] = '<a href="' . $delete_lnk_url . '" title="' |
|
121 | - . esc_attr__('Delete Ticket Permanently', 'event_espresso') . '">' |
|
122 | - . __('Delete Permanently', 'event_espresso') . '</a>'; |
|
123 | - } |
|
124 | - } |
|
125 | - |
|
126 | - return $item->get('TKT_name') . $this->row_actions($actions); |
|
127 | - } |
|
128 | - |
|
129 | - |
|
130 | - public function column_TKT_description($item) |
|
131 | - { |
|
132 | - return $item->get('TKT_description'); |
|
133 | - } |
|
134 | - |
|
135 | - |
|
136 | - public function column_TKT_qty($item) |
|
137 | - { |
|
138 | - return $item->get_pretty('TKT_qty', 'text'); |
|
139 | - } |
|
140 | - |
|
141 | - |
|
142 | - public function column_TKT_uses($item) |
|
143 | - { |
|
144 | - return $item->get_pretty('TKT_uses', 'text'); |
|
145 | - } |
|
146 | - |
|
147 | - |
|
148 | - public function column_TKT_min($item) |
|
149 | - { |
|
150 | - return $item->get('TKT_min'); |
|
151 | - } |
|
152 | - |
|
153 | - |
|
154 | - public function column_TKT_max($item) |
|
155 | - { |
|
156 | - return $item->get_pretty('TKT_max', 'text'); |
|
157 | - } |
|
158 | - |
|
159 | - |
|
160 | - public function column_TKT_price($item) |
|
161 | - { |
|
162 | - return EEH_Template::format_currency($item->get('TKT_price')); |
|
163 | - } |
|
164 | - |
|
165 | - |
|
166 | - public function column_TKT_taxable($item) |
|
167 | - { |
|
168 | - return $item->get('TKT_taxable') ? __('Yes', 'event_espresso') : __('No', 'event_espresso'); |
|
169 | - } |
|
21 | + protected function _setup_data() |
|
22 | + { |
|
23 | + $trashed = $this->_admin_page->get_view() == 'trashed' ? true : false; |
|
24 | + $this->_data = $this->_admin_page->get_default_tickets($this->_per_page, false, $trashed); |
|
25 | + $this->_all_data_count = $this->_admin_page->get_default_tickets($this->_per_page, true, false); |
|
26 | + $this->_trashed_count = $this->_admin_page->get_default_tickets($this->_per_page, true, true); |
|
27 | + } |
|
28 | + |
|
29 | + |
|
30 | + protected function _set_properties() |
|
31 | + { |
|
32 | + $this->_wp_list_args = array( |
|
33 | + 'singular' => __('ticket', 'event_espresso'), |
|
34 | + 'plural' => __('tickets', 'event_espresso'), |
|
35 | + 'ajax' => true, |
|
36 | + 'screen' => $this->_admin_page->get_current_screen()->id, |
|
37 | + ); |
|
38 | + |
|
39 | + $this->_columns = array( |
|
40 | + 'cb' => '<input type="checkbox" />', // Render a checkbox instead of text |
|
41 | + 'TKT_name' => __('Name', 'event_espresso'), |
|
42 | + 'TKT_description' => __('Description', 'event_espresso'), |
|
43 | + 'TKT_qty' => __('Quantity', 'event_espresso'), |
|
44 | + 'TKT_uses' => __('Uses', 'event_espresso'), |
|
45 | + 'TKT_min' => __('Minimum', 'event_espresso'), |
|
46 | + 'TKT_max' => __('Maximum', 'event_espresso'), |
|
47 | + 'TKT_price' => __('Price', 'event_espresso'), |
|
48 | + 'TKT_taxable' => __('Taxable', 'event_espresso'), |
|
49 | + ); |
|
50 | + |
|
51 | + $this->_sortable_columns = array( |
|
52 | + // TRUE means its already sorted |
|
53 | + 'TKT_name' => array('TKT_name', true), |
|
54 | + 'TKT_description' => array('TKT_description', false), |
|
55 | + 'TKT_qty' => array('TKT_qty', false), |
|
56 | + 'TKT_uses' => array('TKT_uses', false), |
|
57 | + 'TKT_min' => array('TKT_min', false), |
|
58 | + 'TKT_max' => array('TKT_max', false), |
|
59 | + 'TKT_price' => array('TKT_price', false), |
|
60 | + ); |
|
61 | + |
|
62 | + $this->_hidden_columns = array(); |
|
63 | + } |
|
64 | + |
|
65 | + |
|
66 | + protected function _get_table_filters() |
|
67 | + { |
|
68 | + } |
|
69 | + |
|
70 | + |
|
71 | + protected function _add_view_counts() |
|
72 | + { |
|
73 | + $this->_views['all']['count'] = $this->_all_data_count; |
|
74 | + if (EE_Registry::instance()->CAP->current_user_can('ee_delete_default_tickets', 'trash_ticket')) { |
|
75 | + $this->_views['trashed']['count'] = $this->_trashed_count; |
|
76 | + } |
|
77 | + } |
|
78 | + |
|
79 | + |
|
80 | + public function column_cb($item) |
|
81 | + { |
|
82 | + return $item->ID() === 1 |
|
83 | + ? '<span class="ee-lock-icon"></span>' |
|
84 | + : sprintf( |
|
85 | + '<input type="checkbox" name="checkbox[%1$s]" value="%1$s" />', |
|
86 | + $item->ID() |
|
87 | + ); |
|
88 | + } |
|
89 | + |
|
90 | + |
|
91 | + public function column_TKT_name($item) |
|
92 | + { |
|
93 | + // build row actions |
|
94 | + $actions = array(); |
|
95 | + |
|
96 | + // trash links |
|
97 | + if ($item->ID() !== 1) { |
|
98 | + if ($this->_view == 'all') { |
|
99 | + $trash_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array( |
|
100 | + 'action' => 'trash_ticket', |
|
101 | + 'TKT_ID' => $item->ID(), |
|
102 | + ), TICKETS_ADMIN_URL); |
|
103 | + $actions['trash'] = '<a href="' . $trash_lnk_url . '" title="' |
|
104 | + . esc_attr__('Move Ticket to trash', 'event_espresso') . '">' |
|
105 | + . __('Trash', 'event_espresso') . '</a>'; |
|
106 | + } else { |
|
107 | + // restore price link |
|
108 | + $restore_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array( |
|
109 | + 'action' => 'restore_ticket', |
|
110 | + 'TKT_ID' => $item->ID(), |
|
111 | + ), TICKETS_ADMIN_URL); |
|
112 | + $actions['restore'] = '<a href="' . $restore_lnk_url . '" title="' |
|
113 | + . esc_attr__('Restore Ticket', 'event_espresso') . '">' |
|
114 | + . __('Restore', 'event_espresso') . '</a>'; |
|
115 | + // delete price link |
|
116 | + $delete_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array( |
|
117 | + 'action' => 'delete_ticket', |
|
118 | + 'TKT_ID' => $item->ID(), |
|
119 | + ), TICKETS_ADMIN_URL); |
|
120 | + $actions['delete'] = '<a href="' . $delete_lnk_url . '" title="' |
|
121 | + . esc_attr__('Delete Ticket Permanently', 'event_espresso') . '">' |
|
122 | + . __('Delete Permanently', 'event_espresso') . '</a>'; |
|
123 | + } |
|
124 | + } |
|
125 | + |
|
126 | + return $item->get('TKT_name') . $this->row_actions($actions); |
|
127 | + } |
|
128 | + |
|
129 | + |
|
130 | + public function column_TKT_description($item) |
|
131 | + { |
|
132 | + return $item->get('TKT_description'); |
|
133 | + } |
|
134 | + |
|
135 | + |
|
136 | + public function column_TKT_qty($item) |
|
137 | + { |
|
138 | + return $item->get_pretty('TKT_qty', 'text'); |
|
139 | + } |
|
140 | + |
|
141 | + |
|
142 | + public function column_TKT_uses($item) |
|
143 | + { |
|
144 | + return $item->get_pretty('TKT_uses', 'text'); |
|
145 | + } |
|
146 | + |
|
147 | + |
|
148 | + public function column_TKT_min($item) |
|
149 | + { |
|
150 | + return $item->get('TKT_min'); |
|
151 | + } |
|
152 | + |
|
153 | + |
|
154 | + public function column_TKT_max($item) |
|
155 | + { |
|
156 | + return $item->get_pretty('TKT_max', 'text'); |
|
157 | + } |
|
158 | + |
|
159 | + |
|
160 | + public function column_TKT_price($item) |
|
161 | + { |
|
162 | + return EEH_Template::format_currency($item->get('TKT_price')); |
|
163 | + } |
|
164 | + |
|
165 | + |
|
166 | + public function column_TKT_taxable($item) |
|
167 | + { |
|
168 | + return $item->get('TKT_taxable') ? __('Yes', 'event_espresso') : __('No', 'event_espresso'); |
|
169 | + } |
|
170 | 170 | } |
@@ -100,30 +100,30 @@ |
||
100 | 100 | 'action' => 'trash_ticket', |
101 | 101 | 'TKT_ID' => $item->ID(), |
102 | 102 | ), TICKETS_ADMIN_URL); |
103 | - $actions['trash'] = '<a href="' . $trash_lnk_url . '" title="' |
|
104 | - . esc_attr__('Move Ticket to trash', 'event_espresso') . '">' |
|
105 | - . __('Trash', 'event_espresso') . '</a>'; |
|
103 | + $actions['trash'] = '<a href="'.$trash_lnk_url.'" title="' |
|
104 | + . esc_attr__('Move Ticket to trash', 'event_espresso').'">' |
|
105 | + . __('Trash', 'event_espresso').'</a>'; |
|
106 | 106 | } else { |
107 | 107 | // restore price link |
108 | 108 | $restore_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array( |
109 | 109 | 'action' => 'restore_ticket', |
110 | 110 | 'TKT_ID' => $item->ID(), |
111 | 111 | ), TICKETS_ADMIN_URL); |
112 | - $actions['restore'] = '<a href="' . $restore_lnk_url . '" title="' |
|
113 | - . esc_attr__('Restore Ticket', 'event_espresso') . '">' |
|
114 | - . __('Restore', 'event_espresso') . '</a>'; |
|
112 | + $actions['restore'] = '<a href="'.$restore_lnk_url.'" title="' |
|
113 | + . esc_attr__('Restore Ticket', 'event_espresso').'">' |
|
114 | + . __('Restore', 'event_espresso').'</a>'; |
|
115 | 115 | // delete price link |
116 | 116 | $delete_lnk_url = EE_Admin_Page::add_query_args_and_nonce(array( |
117 | 117 | 'action' => 'delete_ticket', |
118 | 118 | 'TKT_ID' => $item->ID(), |
119 | 119 | ), TICKETS_ADMIN_URL); |
120 | - $actions['delete'] = '<a href="' . $delete_lnk_url . '" title="' |
|
121 | - . esc_attr__('Delete Ticket Permanently', 'event_espresso') . '">' |
|
122 | - . __('Delete Permanently', 'event_espresso') . '</a>'; |
|
120 | + $actions['delete'] = '<a href="'.$delete_lnk_url.'" title="' |
|
121 | + . esc_attr__('Delete Ticket Permanently', 'event_espresso').'">' |
|
122 | + . __('Delete Permanently', 'event_espresso').'</a>'; |
|
123 | 123 | } |
124 | 124 | } |
125 | 125 | |
126 | - return $item->get('TKT_name') . $this->row_actions($actions); |
|
126 | + return $item->get('TKT_name').$this->row_actions($actions); |
|
127 | 127 | } |
128 | 128 | |
129 | 129 |
@@ -15,20 +15,20 @@ discard block |
||
15 | 15 | class Pricing_Edit_Default_Price_Help_Tour extends EE_Help_Tour |
16 | 16 | { |
17 | 17 | |
18 | - protected function _set_tour_properties() |
|
19 | - { |
|
20 | - $this->_label = __('Edit Default Price Tour', 'event_espresso'); |
|
21 | - $this->_slug = 'edit-default-price-joyride'; |
|
22 | - } |
|
18 | + protected function _set_tour_properties() |
|
19 | + { |
|
20 | + $this->_label = __('Edit Default Price Tour', 'event_espresso'); |
|
21 | + $this->_slug = 'edit-default-price-joyride'; |
|
22 | + } |
|
23 | 23 | |
24 | 24 | |
25 | - protected function _set_tour_stops() |
|
26 | - { |
|
27 | - $this->_stops = array( |
|
28 | - 10 => array( |
|
29 | - 'content' => $this->_start(), |
|
30 | - ), |
|
31 | - /*20 => array( |
|
25 | + protected function _set_tour_stops() |
|
26 | + { |
|
27 | + $this->_stops = array( |
|
28 | + 10 => array( |
|
29 | + 'content' => $this->_start(), |
|
30 | + ), |
|
31 | + /*20 => array( |
|
32 | 32 | 'id' => 'PRT_ID', |
33 | 33 | 'content' => $this->_price_type_stop(), |
34 | 34 | 'options' => array( |
@@ -37,74 +37,74 @@ discard block |
||
37 | 37 | 'tipAdjustmentX' => -15 |
38 | 38 | ) |
39 | 39 | ),*/ |
40 | - 30 => array( |
|
41 | - 'id' => 'PRC_name', |
|
42 | - 'content' => $this->_price_name_stop(), |
|
43 | - 'options' => array( |
|
44 | - 'tipLocation' => 'top', |
|
45 | - 'tipAdjustmentY' => -40, |
|
46 | - ), |
|
47 | - ), |
|
48 | - 40 => array( |
|
49 | - 'id' => 'PRC_desc', |
|
50 | - 'content' => $this->_price_description_stop(), |
|
51 | - 'options' => array( |
|
52 | - 'tipLocation' => 'top', |
|
53 | - 'tipAdjustmentY' => -40, |
|
54 | - ), |
|
55 | - ), |
|
56 | - 50 => array( |
|
57 | - 'id' => 'PRC_amount', |
|
58 | - 'content' => $this->_price_amount_stop(), |
|
59 | - 'options' => array( |
|
60 | - 'tipLocation' => 'top', |
|
61 | - 'tipAdjustmentY' => -40, |
|
62 | - ), |
|
63 | - ), |
|
64 | - ); |
|
65 | - } |
|
40 | + 30 => array( |
|
41 | + 'id' => 'PRC_name', |
|
42 | + 'content' => $this->_price_name_stop(), |
|
43 | + 'options' => array( |
|
44 | + 'tipLocation' => 'top', |
|
45 | + 'tipAdjustmentY' => -40, |
|
46 | + ), |
|
47 | + ), |
|
48 | + 40 => array( |
|
49 | + 'id' => 'PRC_desc', |
|
50 | + 'content' => $this->_price_description_stop(), |
|
51 | + 'options' => array( |
|
52 | + 'tipLocation' => 'top', |
|
53 | + 'tipAdjustmentY' => -40, |
|
54 | + ), |
|
55 | + ), |
|
56 | + 50 => array( |
|
57 | + 'id' => 'PRC_amount', |
|
58 | + 'content' => $this->_price_amount_stop(), |
|
59 | + 'options' => array( |
|
60 | + 'tipLocation' => 'top', |
|
61 | + 'tipAdjustmentY' => -40, |
|
62 | + ), |
|
63 | + ), |
|
64 | + ); |
|
65 | + } |
|
66 | 66 | |
67 | 67 | |
68 | - protected function _start() |
|
69 | - { |
|
70 | - $content = '<h3>' . __('Edit Default Price', 'event_espresso') . '</h3>'; |
|
71 | - $content .= '<p>' |
|
72 | - . __( |
|
73 | - 'This tour of the Edit Default Price page will go over different areas of the screen to help you understand what they are used for.', |
|
74 | - 'event_espresso' |
|
75 | - ) . '</p>'; |
|
76 | - return $content; |
|
77 | - } |
|
68 | + protected function _start() |
|
69 | + { |
|
70 | + $content = '<h3>' . __('Edit Default Price', 'event_espresso') . '</h3>'; |
|
71 | + $content .= '<p>' |
|
72 | + . __( |
|
73 | + 'This tour of the Edit Default Price page will go over different areas of the screen to help you understand what they are used for.', |
|
74 | + 'event_espresso' |
|
75 | + ) . '</p>'; |
|
76 | + return $content; |
|
77 | + } |
|
78 | 78 | |
79 | - protected function _price_type_stop() |
|
80 | - { |
|
81 | - return '<p>' |
|
82 | - . __( |
|
83 | - 'Price Types are a way of categorizing a price, discount, tax, or surcharge and indicating how it gets applied to a running total when a transaction occurs.', |
|
84 | - 'event_espresso' |
|
85 | - ) . '</p>'; |
|
86 | - } |
|
79 | + protected function _price_type_stop() |
|
80 | + { |
|
81 | + return '<p>' |
|
82 | + . __( |
|
83 | + 'Price Types are a way of categorizing a price, discount, tax, or surcharge and indicating how it gets applied to a running total when a transaction occurs.', |
|
84 | + 'event_espresso' |
|
85 | + ) . '</p>'; |
|
86 | + } |
|
87 | 87 | |
88 | - protected function _price_name_stop() |
|
89 | - { |
|
90 | - return '<p>' |
|
91 | - . __( |
|
92 | - 'The name of the price, discount, tax, or surcharge that will be seen by your customers.', |
|
93 | - 'event_espresso' |
|
94 | - ) . '</p>'; |
|
95 | - } |
|
88 | + protected function _price_name_stop() |
|
89 | + { |
|
90 | + return '<p>' |
|
91 | + . __( |
|
92 | + 'The name of the price, discount, tax, or surcharge that will be seen by your customers.', |
|
93 | + 'event_espresso' |
|
94 | + ) . '</p>'; |
|
95 | + } |
|
96 | 96 | |
97 | - protected function _price_description_stop() |
|
98 | - { |
|
99 | - return '<p>' |
|
100 | - . __( |
|
101 | - 'View the price type (price, discount, tax or surcharge) description.', |
|
102 | - 'event_espresso' |
|
103 | - ) . '</p>'; |
|
104 | - } |
|
97 | + protected function _price_description_stop() |
|
98 | + { |
|
99 | + return '<p>' |
|
100 | + . __( |
|
101 | + 'View the price type (price, discount, tax or surcharge) description.', |
|
102 | + 'event_espresso' |
|
103 | + ) . '</p>'; |
|
104 | + } |
|
105 | 105 | |
106 | - protected function _price_amount_stop() |
|
107 | - { |
|
108 | - return '<p>' . __('The ticket amount before any deductions.', 'event_espresso') . '</p>'; |
|
109 | - } |
|
106 | + protected function _price_amount_stop() |
|
107 | + { |
|
108 | + return '<p>' . __('The ticket amount before any deductions.', 'event_espresso') . '</p>'; |
|
109 | + } |
|
110 | 110 | } |
@@ -67,12 +67,12 @@ discard block |
||
67 | 67 | |
68 | 68 | protected function _start() |
69 | 69 | { |
70 | - $content = '<h3>' . __('Edit Default Price', 'event_espresso') . '</h3>'; |
|
70 | + $content = '<h3>'.__('Edit Default Price', 'event_espresso').'</h3>'; |
|
71 | 71 | $content .= '<p>' |
72 | 72 | . __( |
73 | 73 | 'This tour of the Edit Default Price page will go over different areas of the screen to help you understand what they are used for.', |
74 | 74 | 'event_espresso' |
75 | - ) . '</p>'; |
|
75 | + ).'</p>'; |
|
76 | 76 | return $content; |
77 | 77 | } |
78 | 78 | |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | . __( |
83 | 83 | 'Price Types are a way of categorizing a price, discount, tax, or surcharge and indicating how it gets applied to a running total when a transaction occurs.', |
84 | 84 | 'event_espresso' |
85 | - ) . '</p>'; |
|
85 | + ).'</p>'; |
|
86 | 86 | } |
87 | 87 | |
88 | 88 | protected function _price_name_stop() |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | . __( |
92 | 92 | 'The name of the price, discount, tax, or surcharge that will be seen by your customers.', |
93 | 93 | 'event_espresso' |
94 | - ) . '</p>'; |
|
94 | + ).'</p>'; |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | protected function _price_description_stop() |
@@ -100,11 +100,11 @@ discard block |
||
100 | 100 | . __( |
101 | 101 | 'View the price type (price, discount, tax or surcharge) description.', |
102 | 102 | 'event_espresso' |
103 | - ) . '</p>'; |
|
103 | + ).'</p>'; |
|
104 | 104 | } |
105 | 105 | |
106 | 106 | protected function _price_amount_stop() |
107 | 107 | { |
108 | - return '<p>' . __('The ticket amount before any deductions.', 'event_espresso') . '</p>'; |
|
108 | + return '<p>'.__('The ticket amount before any deductions.', 'event_espresso').'</p>'; |
|
109 | 109 | } |
110 | 110 | } |
@@ -15,84 +15,84 @@ |
||
15 | 15 | class Pricing_Add_New_Price_Type_Help_Tour extends EE_Help_Tour |
16 | 16 | { |
17 | 17 | |
18 | - protected function _set_tour_properties() |
|
19 | - { |
|
20 | - $this->_label = __('Add New Price Type Tour', 'event_espresso'); |
|
21 | - $this->_slug = 'add-new-price-type-joyride'; |
|
22 | - } |
|
18 | + protected function _set_tour_properties() |
|
19 | + { |
|
20 | + $this->_label = __('Add New Price Type Tour', 'event_espresso'); |
|
21 | + $this->_slug = 'add-new-price-type-joyride'; |
|
22 | + } |
|
23 | 23 | |
24 | 24 | |
25 | - protected function _set_tour_stops() |
|
26 | - { |
|
27 | - $this->_stops = array( |
|
28 | - 10 => array( |
|
29 | - 'content' => $this->_start(), |
|
30 | - ), |
|
31 | - 20 => array( |
|
32 | - 'id' => 'base_type', |
|
33 | - 'content' => $this->_basic_type_stop(), |
|
34 | - 'options' => array( |
|
35 | - 'tipLocation' => 'top', |
|
36 | - 'tipAdjustmentY' => -50, |
|
37 | - 'tipAdjustmentX' => -15, |
|
38 | - ), |
|
39 | - ), |
|
40 | - 30 => array( |
|
41 | - 'id' => 'PRT_name', |
|
42 | - 'content' => $this->_price_type_name_stop(), |
|
43 | - 'options' => array( |
|
44 | - 'tipLocation' => 'top', |
|
45 | - 'tipAdjustmentY' => -40, |
|
46 | - ), |
|
47 | - ), |
|
48 | - 40 => array( |
|
49 | - 'id' => 'PRT_name', |
|
50 | - 'content' => $this->_percentage_dollar_amount_stop(), |
|
51 | - 'options' => array( |
|
52 | - 'tipLocation' => 'top', |
|
53 | - 'tipAdjustmentY' => 45, |
|
54 | - ), |
|
55 | - ), |
|
56 | - 50 => array( |
|
57 | - 'id' => 'PRT_order', |
|
58 | - 'content' => $this->_order_of_application_stop(), |
|
59 | - 'options' => array( |
|
60 | - 'tipLocation' => 'top', |
|
61 | - 'tipAdjustmentY' => -40, |
|
62 | - ), |
|
63 | - ), |
|
64 | - ); |
|
65 | - } |
|
25 | + protected function _set_tour_stops() |
|
26 | + { |
|
27 | + $this->_stops = array( |
|
28 | + 10 => array( |
|
29 | + 'content' => $this->_start(), |
|
30 | + ), |
|
31 | + 20 => array( |
|
32 | + 'id' => 'base_type', |
|
33 | + 'content' => $this->_basic_type_stop(), |
|
34 | + 'options' => array( |
|
35 | + 'tipLocation' => 'top', |
|
36 | + 'tipAdjustmentY' => -50, |
|
37 | + 'tipAdjustmentX' => -15, |
|
38 | + ), |
|
39 | + ), |
|
40 | + 30 => array( |
|
41 | + 'id' => 'PRT_name', |
|
42 | + 'content' => $this->_price_type_name_stop(), |
|
43 | + 'options' => array( |
|
44 | + 'tipLocation' => 'top', |
|
45 | + 'tipAdjustmentY' => -40, |
|
46 | + ), |
|
47 | + ), |
|
48 | + 40 => array( |
|
49 | + 'id' => 'PRT_name', |
|
50 | + 'content' => $this->_percentage_dollar_amount_stop(), |
|
51 | + 'options' => array( |
|
52 | + 'tipLocation' => 'top', |
|
53 | + 'tipAdjustmentY' => 45, |
|
54 | + ), |
|
55 | + ), |
|
56 | + 50 => array( |
|
57 | + 'id' => 'PRT_order', |
|
58 | + 'content' => $this->_order_of_application_stop(), |
|
59 | + 'options' => array( |
|
60 | + 'tipLocation' => 'top', |
|
61 | + 'tipAdjustmentY' => -40, |
|
62 | + ), |
|
63 | + ), |
|
64 | + ); |
|
65 | + } |
|
66 | 66 | |
67 | 67 | |
68 | - protected function _start() |
|
69 | - { |
|
70 | - $content = '<h3>' . __('Add New Price Type', 'event_espresso') . '</h3>'; |
|
71 | - $content .= '<p>' |
|
72 | - . __( |
|
73 | - 'This tour of the Add New Price Type page will go over different areas of the screen to help you understand what they are used for.', |
|
74 | - 'event_espresso' |
|
75 | - ) . '</p>'; |
|
76 | - return $content; |
|
77 | - } |
|
68 | + protected function _start() |
|
69 | + { |
|
70 | + $content = '<h3>' . __('Add New Price Type', 'event_espresso') . '</h3>'; |
|
71 | + $content .= '<p>' |
|
72 | + . __( |
|
73 | + 'This tour of the Add New Price Type page will go over different areas of the screen to help you understand what they are used for.', |
|
74 | + 'event_espresso' |
|
75 | + ) . '</p>'; |
|
76 | + return $content; |
|
77 | + } |
|
78 | 78 | |
79 | - protected function _basic_type_stop() |
|
80 | - { |
|
81 | - return '<p>' . __('Set a price type to be a discount, surcharge, or tax.', 'event_espresso') . '</p>'; |
|
82 | - } |
|
79 | + protected function _basic_type_stop() |
|
80 | + { |
|
81 | + return '<p>' . __('Set a price type to be a discount, surcharge, or tax.', 'event_espresso') . '</p>'; |
|
82 | + } |
|
83 | 83 | |
84 | - protected function _price_type_name_stop() |
|
85 | - { |
|
86 | - return '<p>' . __('The name of the price type.', 'event_espresso') . '</p>'; |
|
87 | - } |
|
84 | + protected function _price_type_name_stop() |
|
85 | + { |
|
86 | + return '<p>' . __('The name of the price type.', 'event_espresso') . '</p>'; |
|
87 | + } |
|
88 | 88 | |
89 | - protected function _percentage_dollar_amount_stop() |
|
90 | - { |
|
91 | - return '<p>' . __('Set a price type to be percentage-based or a fixed amount.', 'event_espresso') . '</p>'; |
|
92 | - } |
|
89 | + protected function _percentage_dollar_amount_stop() |
|
90 | + { |
|
91 | + return '<p>' . __('Set a price type to be percentage-based or a fixed amount.', 'event_espresso') . '</p>'; |
|
92 | + } |
|
93 | 93 | |
94 | - protected function _order_of_application_stop() |
|
95 | - { |
|
96 | - return '<p>' . __('Set the order of application for a price type.', 'event_espresso') . '</p>'; |
|
97 | - } |
|
94 | + protected function _order_of_application_stop() |
|
95 | + { |
|
96 | + return '<p>' . __('Set the order of application for a price type.', 'event_espresso') . '</p>'; |
|
97 | + } |
|
98 | 98 | } |
@@ -67,32 +67,32 @@ |
||
67 | 67 | |
68 | 68 | protected function _start() |
69 | 69 | { |
70 | - $content = '<h3>' . __('Add New Price Type', 'event_espresso') . '</h3>'; |
|
70 | + $content = '<h3>'.__('Add New Price Type', 'event_espresso').'</h3>'; |
|
71 | 71 | $content .= '<p>' |
72 | 72 | . __( |
73 | 73 | 'This tour of the Add New Price Type page will go over different areas of the screen to help you understand what they are used for.', |
74 | 74 | 'event_espresso' |
75 | - ) . '</p>'; |
|
75 | + ).'</p>'; |
|
76 | 76 | return $content; |
77 | 77 | } |
78 | 78 | |
79 | 79 | protected function _basic_type_stop() |
80 | 80 | { |
81 | - return '<p>' . __('Set a price type to be a discount, surcharge, or tax.', 'event_espresso') . '</p>'; |
|
81 | + return '<p>'.__('Set a price type to be a discount, surcharge, or tax.', 'event_espresso').'</p>'; |
|
82 | 82 | } |
83 | 83 | |
84 | 84 | protected function _price_type_name_stop() |
85 | 85 | { |
86 | - return '<p>' . __('The name of the price type.', 'event_espresso') . '</p>'; |
|
86 | + return '<p>'.__('The name of the price type.', 'event_espresso').'</p>'; |
|
87 | 87 | } |
88 | 88 | |
89 | 89 | protected function _percentage_dollar_amount_stop() |
90 | 90 | { |
91 | - return '<p>' . __('Set a price type to be percentage-based or a fixed amount.', 'event_espresso') . '</p>'; |
|
91 | + return '<p>'.__('Set a price type to be percentage-based or a fixed amount.', 'event_espresso').'</p>'; |
|
92 | 92 | } |
93 | 93 | |
94 | 94 | protected function _order_of_application_stop() |
95 | 95 | { |
96 | - return '<p>' . __('Set the order of application for a price type.', 'event_espresso') . '</p>'; |
|
96 | + return '<p>'.__('Set the order of application for a price type.', 'event_espresso').'</p>'; |
|
97 | 97 | } |
98 | 98 | } |
@@ -15,96 +15,96 @@ |
||
15 | 15 | class Pricing_Add_New_Default_Price_Help_Tour extends EE_Help_Tour |
16 | 16 | { |
17 | 17 | |
18 | - protected function _set_tour_properties() |
|
19 | - { |
|
20 | - $this->_label = __('Add New Default Price Tour', 'event_espresso'); |
|
21 | - $this->_slug = 'add-new-default-price-joyride'; |
|
22 | - } |
|
18 | + protected function _set_tour_properties() |
|
19 | + { |
|
20 | + $this->_label = __('Add New Default Price Tour', 'event_espresso'); |
|
21 | + $this->_slug = 'add-new-default-price-joyride'; |
|
22 | + } |
|
23 | 23 | |
24 | 24 | |
25 | - protected function _set_tour_stops() |
|
26 | - { |
|
27 | - $this->_stops = array( |
|
28 | - 10 => array( |
|
29 | - 'content' => $this->_start(), |
|
30 | - ), |
|
31 | - 20 => array( |
|
32 | - 'id' => 'PRT_ID', |
|
33 | - 'content' => $this->_price_type_stop(), |
|
34 | - 'options' => array( |
|
35 | - 'tipLocation' => 'top', |
|
36 | - 'tipAdjustmentY' => -50, |
|
37 | - 'tipAdjustmentX' => -15, |
|
38 | - ), |
|
39 | - ), |
|
40 | - 30 => array( |
|
41 | - 'id' => 'PRC_name', |
|
42 | - 'content' => $this->_price_name_stop(), |
|
43 | - 'options' => array( |
|
44 | - 'tipLocation' => 'top', |
|
45 | - 'tipAdjustmentY' => -40, |
|
46 | - ), |
|
47 | - ), |
|
48 | - 40 => array( |
|
49 | - 'id' => 'PRC_desc', |
|
50 | - 'content' => $this->_price_description_stop(), |
|
51 | - 'options' => array( |
|
52 | - 'tipLocation' => 'top', |
|
53 | - 'tipAdjustmentY' => -40, |
|
54 | - ), |
|
55 | - ), |
|
56 | - 50 => array( |
|
57 | - 'id' => 'PRC_amount', |
|
58 | - 'content' => $this->_price_amount_stop(), |
|
59 | - 'options' => array( |
|
60 | - 'tipLocation' => 'top', |
|
61 | - 'tipAdjustmentY' => -40, |
|
62 | - ), |
|
63 | - ), |
|
64 | - ); |
|
65 | - } |
|
25 | + protected function _set_tour_stops() |
|
26 | + { |
|
27 | + $this->_stops = array( |
|
28 | + 10 => array( |
|
29 | + 'content' => $this->_start(), |
|
30 | + ), |
|
31 | + 20 => array( |
|
32 | + 'id' => 'PRT_ID', |
|
33 | + 'content' => $this->_price_type_stop(), |
|
34 | + 'options' => array( |
|
35 | + 'tipLocation' => 'top', |
|
36 | + 'tipAdjustmentY' => -50, |
|
37 | + 'tipAdjustmentX' => -15, |
|
38 | + ), |
|
39 | + ), |
|
40 | + 30 => array( |
|
41 | + 'id' => 'PRC_name', |
|
42 | + 'content' => $this->_price_name_stop(), |
|
43 | + 'options' => array( |
|
44 | + 'tipLocation' => 'top', |
|
45 | + 'tipAdjustmentY' => -40, |
|
46 | + ), |
|
47 | + ), |
|
48 | + 40 => array( |
|
49 | + 'id' => 'PRC_desc', |
|
50 | + 'content' => $this->_price_description_stop(), |
|
51 | + 'options' => array( |
|
52 | + 'tipLocation' => 'top', |
|
53 | + 'tipAdjustmentY' => -40, |
|
54 | + ), |
|
55 | + ), |
|
56 | + 50 => array( |
|
57 | + 'id' => 'PRC_amount', |
|
58 | + 'content' => $this->_price_amount_stop(), |
|
59 | + 'options' => array( |
|
60 | + 'tipLocation' => 'top', |
|
61 | + 'tipAdjustmentY' => -40, |
|
62 | + ), |
|
63 | + ), |
|
64 | + ); |
|
65 | + } |
|
66 | 66 | |
67 | 67 | |
68 | - protected function _start() |
|
69 | - { |
|
70 | - $content = '<h3>' . __('Add New Default Price', 'event_espresso') . '</h3>'; |
|
71 | - $content .= '<p>' |
|
72 | - . __( |
|
73 | - 'This tour of the add new default price page will go over different areas of the screen to help you understand what they are used for.', |
|
74 | - 'event_espresso' |
|
75 | - ) . '</p>'; |
|
76 | - return $content; |
|
77 | - } |
|
68 | + protected function _start() |
|
69 | + { |
|
70 | + $content = '<h3>' . __('Add New Default Price', 'event_espresso') . '</h3>'; |
|
71 | + $content .= '<p>' |
|
72 | + . __( |
|
73 | + 'This tour of the add new default price page will go over different areas of the screen to help you understand what they are used for.', |
|
74 | + 'event_espresso' |
|
75 | + ) . '</p>'; |
|
76 | + return $content; |
|
77 | + } |
|
78 | 78 | |
79 | - protected function _price_type_stop() |
|
80 | - { |
|
81 | - return '<p>' |
|
82 | - . __( |
|
83 | - 'Price Types are a way of categorizing a price, discount, tax, or surcharge and indicating how it gets applied to a running total when a transaction occurs.', |
|
84 | - 'event_espresso' |
|
85 | - ) . '</p>'; |
|
86 | - } |
|
79 | + protected function _price_type_stop() |
|
80 | + { |
|
81 | + return '<p>' |
|
82 | + . __( |
|
83 | + 'Price Types are a way of categorizing a price, discount, tax, or surcharge and indicating how it gets applied to a running total when a transaction occurs.', |
|
84 | + 'event_espresso' |
|
85 | + ) . '</p>'; |
|
86 | + } |
|
87 | 87 | |
88 | - protected function _price_name_stop() |
|
89 | - { |
|
90 | - return '<p>' |
|
91 | - . __( |
|
92 | - 'The name of the price, discount, tax, or surcharge that will be seen by your customers.', |
|
93 | - 'event_espresso' |
|
94 | - ) . '</p>'; |
|
95 | - } |
|
88 | + protected function _price_name_stop() |
|
89 | + { |
|
90 | + return '<p>' |
|
91 | + . __( |
|
92 | + 'The name of the price, discount, tax, or surcharge that will be seen by your customers.', |
|
93 | + 'event_espresso' |
|
94 | + ) . '</p>'; |
|
95 | + } |
|
96 | 96 | |
97 | - protected function _price_description_stop() |
|
98 | - { |
|
99 | - return '<p>' |
|
100 | - . __( |
|
101 | - 'View the price type (price, discount, tax or surcharge) description.', |
|
102 | - 'event_espresso' |
|
103 | - ) . '</p>'; |
|
104 | - } |
|
97 | + protected function _price_description_stop() |
|
98 | + { |
|
99 | + return '<p>' |
|
100 | + . __( |
|
101 | + 'View the price type (price, discount, tax or surcharge) description.', |
|
102 | + 'event_espresso' |
|
103 | + ) . '</p>'; |
|
104 | + } |
|
105 | 105 | |
106 | - protected function _price_amount_stop() |
|
107 | - { |
|
108 | - return '<p>' . __('The ticket amount before any deductions.', 'event_espresso') . '</p>'; |
|
109 | - } |
|
106 | + protected function _price_amount_stop() |
|
107 | + { |
|
108 | + return '<p>' . __('The ticket amount before any deductions.', 'event_espresso') . '</p>'; |
|
109 | + } |
|
110 | 110 | } |
@@ -67,12 +67,12 @@ discard block |
||
67 | 67 | |
68 | 68 | protected function _start() |
69 | 69 | { |
70 | - $content = '<h3>' . __('Add New Default Price', 'event_espresso') . '</h3>'; |
|
70 | + $content = '<h3>'.__('Add New Default Price', 'event_espresso').'</h3>'; |
|
71 | 71 | $content .= '<p>' |
72 | 72 | . __( |
73 | 73 | 'This tour of the add new default price page will go over different areas of the screen to help you understand what they are used for.', |
74 | 74 | 'event_espresso' |
75 | - ) . '</p>'; |
|
75 | + ).'</p>'; |
|
76 | 76 | return $content; |
77 | 77 | } |
78 | 78 | |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | . __( |
83 | 83 | 'Price Types are a way of categorizing a price, discount, tax, or surcharge and indicating how it gets applied to a running total when a transaction occurs.', |
84 | 84 | 'event_espresso' |
85 | - ) . '</p>'; |
|
85 | + ).'</p>'; |
|
86 | 86 | } |
87 | 87 | |
88 | 88 | protected function _price_name_stop() |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | . __( |
92 | 92 | 'The name of the price, discount, tax, or surcharge that will be seen by your customers.', |
93 | 93 | 'event_espresso' |
94 | - ) . '</p>'; |
|
94 | + ).'</p>'; |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | protected function _price_description_stop() |
@@ -100,11 +100,11 @@ discard block |
||
100 | 100 | . __( |
101 | 101 | 'View the price type (price, discount, tax or surcharge) description.', |
102 | 102 | 'event_espresso' |
103 | - ) . '</p>'; |
|
103 | + ).'</p>'; |
|
104 | 104 | } |
105 | 105 | |
106 | 106 | protected function _price_amount_stop() |
107 | 107 | { |
108 | - return '<p>' . __('The ticket amount before any deductions.', 'event_espresso') . '</p>'; |
|
108 | + return '<p>'.__('The ticket amount before any deductions.', 'event_espresso').'</p>'; |
|
109 | 109 | } |
110 | 110 | } |
@@ -15,135 +15,135 @@ |
||
15 | 15 | class Pricing_Default_Prices_Help_Tour extends EE_Help_Tour |
16 | 16 | { |
17 | 17 | |
18 | - protected function _set_tour_properties() |
|
19 | - { |
|
20 | - $this->_label = __('Default Pricing Tour', 'event_espresso'); |
|
21 | - $this->_slug = 'default-prices-joyride'; |
|
22 | - } |
|
18 | + protected function _set_tour_properties() |
|
19 | + { |
|
20 | + $this->_label = __('Default Pricing Tour', 'event_espresso'); |
|
21 | + $this->_slug = 'default-prices-joyride'; |
|
22 | + } |
|
23 | 23 | |
24 | 24 | |
25 | - protected function _set_tour_stops() |
|
26 | - { |
|
27 | - $this->_stops = array( |
|
28 | - 10 => array( |
|
29 | - 'content' => $this->_start(), |
|
30 | - ), |
|
31 | - 20 => array( |
|
32 | - 'id' => 'name', |
|
33 | - 'content' => $this->_name_column_stop(), |
|
34 | - 'options' => array( |
|
35 | - 'tipLocation' => 'top', |
|
36 | - 'tipAdjustmentX' => -5, |
|
37 | - 'tipAdjustmentY' => -30, |
|
38 | - ), |
|
39 | - ), |
|
40 | - 30 => array( |
|
41 | - 'id' => 'type', |
|
42 | - 'content' => $this->_type_column_stop(), |
|
43 | - 'options' => array( |
|
44 | - 'tipLocation' => 'top', |
|
45 | - 'tipAdjustmentX' => 5, |
|
46 | - 'tipAdjustmentY' => -30, |
|
47 | - ), |
|
48 | - ), |
|
49 | - 40 => array( |
|
50 | - 'id' => 'description', |
|
51 | - 'content' => $this->_description_column_stop(), |
|
52 | - 'options' => array( |
|
53 | - 'tipLocation' => 'top', |
|
54 | - 'tipAdjustmentX' => 5, |
|
55 | - 'tipAdjustmentY' => -30, |
|
56 | - ), |
|
57 | - ), |
|
58 | - 50 => array( |
|
59 | - 'id' => 'amount', |
|
60 | - 'content' => $this->_amount_column_stop(), |
|
61 | - 'options' => array( |
|
62 | - 'tipLocation' => 'left', |
|
63 | - 'tipAdjustmentY' => -50, |
|
64 | - 'tipAdjustmentX' => 20, |
|
65 | - ), |
|
66 | - ), |
|
67 | - 60 => array( |
|
68 | - 'class' => 'bulkactions', |
|
69 | - 'content' => $this->_bulk_actions_stop(), |
|
70 | - 'options' => array( |
|
71 | - 'tipLocation' => 'left', |
|
72 | - 'tipAdjustmentY' => -50, |
|
73 | - 'tipAdjustmentX' => -75, |
|
74 | - ), |
|
75 | - ), |
|
76 | - 70 => array( |
|
77 | - 'id' => 'event-espresso_page_pricing-search-input', |
|
78 | - 'content' => $this->_search_stop(), |
|
79 | - 'options' => array( |
|
80 | - 'tipLocation' => 'left', |
|
81 | - 'tipAdjustmentY' => -50, |
|
82 | - 'tipAdjustmentX' => -15, |
|
83 | - ), |
|
84 | - ), |
|
85 | - ); |
|
86 | - } |
|
25 | + protected function _set_tour_stops() |
|
26 | + { |
|
27 | + $this->_stops = array( |
|
28 | + 10 => array( |
|
29 | + 'content' => $this->_start(), |
|
30 | + ), |
|
31 | + 20 => array( |
|
32 | + 'id' => 'name', |
|
33 | + 'content' => $this->_name_column_stop(), |
|
34 | + 'options' => array( |
|
35 | + 'tipLocation' => 'top', |
|
36 | + 'tipAdjustmentX' => -5, |
|
37 | + 'tipAdjustmentY' => -30, |
|
38 | + ), |
|
39 | + ), |
|
40 | + 30 => array( |
|
41 | + 'id' => 'type', |
|
42 | + 'content' => $this->_type_column_stop(), |
|
43 | + 'options' => array( |
|
44 | + 'tipLocation' => 'top', |
|
45 | + 'tipAdjustmentX' => 5, |
|
46 | + 'tipAdjustmentY' => -30, |
|
47 | + ), |
|
48 | + ), |
|
49 | + 40 => array( |
|
50 | + 'id' => 'description', |
|
51 | + 'content' => $this->_description_column_stop(), |
|
52 | + 'options' => array( |
|
53 | + 'tipLocation' => 'top', |
|
54 | + 'tipAdjustmentX' => 5, |
|
55 | + 'tipAdjustmentY' => -30, |
|
56 | + ), |
|
57 | + ), |
|
58 | + 50 => array( |
|
59 | + 'id' => 'amount', |
|
60 | + 'content' => $this->_amount_column_stop(), |
|
61 | + 'options' => array( |
|
62 | + 'tipLocation' => 'left', |
|
63 | + 'tipAdjustmentY' => -50, |
|
64 | + 'tipAdjustmentX' => 20, |
|
65 | + ), |
|
66 | + ), |
|
67 | + 60 => array( |
|
68 | + 'class' => 'bulkactions', |
|
69 | + 'content' => $this->_bulk_actions_stop(), |
|
70 | + 'options' => array( |
|
71 | + 'tipLocation' => 'left', |
|
72 | + 'tipAdjustmentY' => -50, |
|
73 | + 'tipAdjustmentX' => -75, |
|
74 | + ), |
|
75 | + ), |
|
76 | + 70 => array( |
|
77 | + 'id' => 'event-espresso_page_pricing-search-input', |
|
78 | + 'content' => $this->_search_stop(), |
|
79 | + 'options' => array( |
|
80 | + 'tipLocation' => 'left', |
|
81 | + 'tipAdjustmentY' => -50, |
|
82 | + 'tipAdjustmentX' => -15, |
|
83 | + ), |
|
84 | + ), |
|
85 | + ); |
|
86 | + } |
|
87 | 87 | |
88 | 88 | |
89 | - protected function _start() |
|
90 | - { |
|
91 | - $content = '<h3>' . __('Default Pricing', 'event_espresso') . '</h3>'; |
|
92 | - $content .= '<p>' |
|
93 | - . __( |
|
94 | - 'This tour of the Default Pricing page will go over different areas of the screen to help you understand what they are used for.', |
|
95 | - 'event_espresso' |
|
96 | - ) . '</p>'; |
|
97 | - return $content; |
|
98 | - } |
|
89 | + protected function _start() |
|
90 | + { |
|
91 | + $content = '<h3>' . __('Default Pricing', 'event_espresso') . '</h3>'; |
|
92 | + $content .= '<p>' |
|
93 | + . __( |
|
94 | + 'This tour of the Default Pricing page will go over different areas of the screen to help you understand what they are used for.', |
|
95 | + 'event_espresso' |
|
96 | + ) . '</p>'; |
|
97 | + return $content; |
|
98 | + } |
|
99 | 99 | |
100 | - protected function _name_column_stop() |
|
101 | - { |
|
102 | - return '<p>' |
|
103 | - . __( |
|
104 | - 'The name of the price, discount, tax, or surcharge that will be seen by your customers. Can be sorted in ascending or descending order.', |
|
105 | - 'event_espresso' |
|
106 | - ) . '</p>'; |
|
107 | - } |
|
100 | + protected function _name_column_stop() |
|
101 | + { |
|
102 | + return '<p>' |
|
103 | + . __( |
|
104 | + 'The name of the price, discount, tax, or surcharge that will be seen by your customers. Can be sorted in ascending or descending order.', |
|
105 | + 'event_espresso' |
|
106 | + ) . '</p>'; |
|
107 | + } |
|
108 | 108 | |
109 | - protected function _type_column_stop() |
|
110 | - { |
|
111 | - return '<p>' |
|
112 | - . __( |
|
113 | - 'Price Types are a way of categorizing a price, discount, tax, or surcharge and indicating how it gets applied to a running total when a transaction occurs. Can be sorted in ascending or descending order.', |
|
114 | - 'event_espresso' |
|
115 | - ) . '</p>'; |
|
116 | - } |
|
109 | + protected function _type_column_stop() |
|
110 | + { |
|
111 | + return '<p>' |
|
112 | + . __( |
|
113 | + 'Price Types are a way of categorizing a price, discount, tax, or surcharge and indicating how it gets applied to a running total when a transaction occurs. Can be sorted in ascending or descending order.', |
|
114 | + 'event_espresso' |
|
115 | + ) . '</p>'; |
|
116 | + } |
|
117 | 117 | |
118 | - protected function _description_column_stop() |
|
119 | - { |
|
120 | - return '<p>' |
|
121 | - . __( |
|
122 | - 'View the price type (price, discount, tax or surcharge) description.', |
|
123 | - 'event_espresso' |
|
124 | - ) . '</p>'; |
|
125 | - } |
|
118 | + protected function _description_column_stop() |
|
119 | + { |
|
120 | + return '<p>' |
|
121 | + . __( |
|
122 | + 'View the price type (price, discount, tax or surcharge) description.', |
|
123 | + 'event_espresso' |
|
124 | + ) . '</p>'; |
|
125 | + } |
|
126 | 126 | |
127 | - protected function _amount_column_stop() |
|
128 | - { |
|
129 | - return '<p>' |
|
130 | - . __( |
|
131 | - 'The ticket amount before any deductions. Can be sorted in ascending or descending order.', |
|
132 | - 'event_espresso' |
|
133 | - ) . '</p>'; |
|
134 | - } |
|
127 | + protected function _amount_column_stop() |
|
128 | + { |
|
129 | + return '<p>' |
|
130 | + . __( |
|
131 | + 'The ticket amount before any deductions. Can be sorted in ascending or descending order.', |
|
132 | + 'event_espresso' |
|
133 | + ) . '</p>'; |
|
134 | + } |
|
135 | 135 | |
136 | - protected function _bulk_actions_stop() |
|
137 | - { |
|
138 | - return '<p>' . __('Perform bulk actions to multiple price types.', 'event_espresso') . '</p>'; |
|
139 | - } |
|
136 | + protected function _bulk_actions_stop() |
|
137 | + { |
|
138 | + return '<p>' . __('Perform bulk actions to multiple price types.', 'event_espresso') . '</p>'; |
|
139 | + } |
|
140 | 140 | |
141 | - protected function _search_stop() |
|
142 | - { |
|
143 | - return '<p>' |
|
144 | - . __( |
|
145 | - 'Search through default pricing. The following sources will be searched: Price Name, Price Type, Price Description, and Price Amount.', |
|
146 | - 'event_espresso' |
|
147 | - ) . '</p>'; |
|
148 | - } |
|
141 | + protected function _search_stop() |
|
142 | + { |
|
143 | + return '<p>' |
|
144 | + . __( |
|
145 | + 'Search through default pricing. The following sources will be searched: Price Name, Price Type, Price Description, and Price Amount.', |
|
146 | + 'event_espresso' |
|
147 | + ) . '</p>'; |
|
148 | + } |
|
149 | 149 | } |
@@ -88,12 +88,12 @@ discard block |
||
88 | 88 | |
89 | 89 | protected function _start() |
90 | 90 | { |
91 | - $content = '<h3>' . __('Default Pricing', 'event_espresso') . '</h3>'; |
|
91 | + $content = '<h3>'.__('Default Pricing', 'event_espresso').'</h3>'; |
|
92 | 92 | $content .= '<p>' |
93 | 93 | . __( |
94 | 94 | 'This tour of the Default Pricing page will go over different areas of the screen to help you understand what they are used for.', |
95 | 95 | 'event_espresso' |
96 | - ) . '</p>'; |
|
96 | + ).'</p>'; |
|
97 | 97 | return $content; |
98 | 98 | } |
99 | 99 | |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | . __( |
104 | 104 | 'The name of the price, discount, tax, or surcharge that will be seen by your customers. Can be sorted in ascending or descending order.', |
105 | 105 | 'event_espresso' |
106 | - ) . '</p>'; |
|
106 | + ).'</p>'; |
|
107 | 107 | } |
108 | 108 | |
109 | 109 | protected function _type_column_stop() |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | . __( |
113 | 113 | 'Price Types are a way of categorizing a price, discount, tax, or surcharge and indicating how it gets applied to a running total when a transaction occurs. Can be sorted in ascending or descending order.', |
114 | 114 | 'event_espresso' |
115 | - ) . '</p>'; |
|
115 | + ).'</p>'; |
|
116 | 116 | } |
117 | 117 | |
118 | 118 | protected function _description_column_stop() |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | . __( |
122 | 122 | 'View the price type (price, discount, tax or surcharge) description.', |
123 | 123 | 'event_espresso' |
124 | - ) . '</p>'; |
|
124 | + ).'</p>'; |
|
125 | 125 | } |
126 | 126 | |
127 | 127 | protected function _amount_column_stop() |
@@ -130,12 +130,12 @@ discard block |
||
130 | 130 | . __( |
131 | 131 | 'The ticket amount before any deductions. Can be sorted in ascending or descending order.', |
132 | 132 | 'event_espresso' |
133 | - ) . '</p>'; |
|
133 | + ).'</p>'; |
|
134 | 134 | } |
135 | 135 | |
136 | 136 | protected function _bulk_actions_stop() |
137 | 137 | { |
138 | - return '<p>' . __('Perform bulk actions to multiple price types.', 'event_espresso') . '</p>'; |
|
138 | + return '<p>'.__('Perform bulk actions to multiple price types.', 'event_espresso').'</p>'; |
|
139 | 139 | } |
140 | 140 | |
141 | 141 | protected function _search_stop() |
@@ -144,6 +144,6 @@ discard block |
||
144 | 144 | . __( |
145 | 145 | 'Search through default pricing. The following sources will be searched: Price Name, Price Type, Price Description, and Price Amount.', |
146 | 146 | 'event_espresso' |
147 | - ) . '</p>'; |
|
147 | + ).'</p>'; |
|
148 | 148 | } |
149 | 149 | } |
@@ -15,84 +15,84 @@ |
||
15 | 15 | class Pricing_Edit_Price_Type_Help_Tour extends EE_Help_Tour |
16 | 16 | { |
17 | 17 | |
18 | - protected function _set_tour_properties() |
|
19 | - { |
|
20 | - $this->_label = __('Edit Price Type Tour', 'event_espresso'); |
|
21 | - $this->_slug = 'edit-price-type-joyride'; |
|
22 | - } |
|
18 | + protected function _set_tour_properties() |
|
19 | + { |
|
20 | + $this->_label = __('Edit Price Type Tour', 'event_espresso'); |
|
21 | + $this->_slug = 'edit-price-type-joyride'; |
|
22 | + } |
|
23 | 23 | |
24 | 24 | |
25 | - protected function _set_tour_stops() |
|
26 | - { |
|
27 | - $this->_stops = array( |
|
28 | - 10 => array( |
|
29 | - 'content' => $this->_start(), |
|
30 | - ), |
|
31 | - 20 => array( |
|
32 | - 'id' => 'base_type', |
|
33 | - 'content' => $this->_basic_type_stop(), |
|
34 | - 'options' => array( |
|
35 | - 'tipLocation' => 'top', |
|
36 | - 'tipAdjustmentY' => -50, |
|
37 | - 'tipAdjustmentX' => -15, |
|
38 | - ), |
|
39 | - ), |
|
40 | - 30 => array( |
|
41 | - 'id' => 'PRT_name', |
|
42 | - 'content' => $this->_price_type_name_stop(), |
|
43 | - 'options' => array( |
|
44 | - 'tipLocation' => 'top', |
|
45 | - 'tipAdjustmentY' => -40, |
|
46 | - ), |
|
47 | - ), |
|
48 | - 40 => array( |
|
49 | - 'id' => 'PRT_name', |
|
50 | - 'content' => $this->_percentage_dollar_amount_stop(), |
|
51 | - 'options' => array( |
|
52 | - 'tipLocation' => 'top', |
|
53 | - 'tipAdjustmentY' => 45, |
|
54 | - ), |
|
55 | - ), |
|
56 | - 50 => array( |
|
57 | - 'id' => 'PRT_order', |
|
58 | - 'content' => $this->_order_of_application_stop(), |
|
59 | - 'options' => array( |
|
60 | - 'tipLocation' => 'top', |
|
61 | - 'tipAdjustmentY' => -40, |
|
62 | - ), |
|
63 | - ), |
|
64 | - ); |
|
65 | - } |
|
25 | + protected function _set_tour_stops() |
|
26 | + { |
|
27 | + $this->_stops = array( |
|
28 | + 10 => array( |
|
29 | + 'content' => $this->_start(), |
|
30 | + ), |
|
31 | + 20 => array( |
|
32 | + 'id' => 'base_type', |
|
33 | + 'content' => $this->_basic_type_stop(), |
|
34 | + 'options' => array( |
|
35 | + 'tipLocation' => 'top', |
|
36 | + 'tipAdjustmentY' => -50, |
|
37 | + 'tipAdjustmentX' => -15, |
|
38 | + ), |
|
39 | + ), |
|
40 | + 30 => array( |
|
41 | + 'id' => 'PRT_name', |
|
42 | + 'content' => $this->_price_type_name_stop(), |
|
43 | + 'options' => array( |
|
44 | + 'tipLocation' => 'top', |
|
45 | + 'tipAdjustmentY' => -40, |
|
46 | + ), |
|
47 | + ), |
|
48 | + 40 => array( |
|
49 | + 'id' => 'PRT_name', |
|
50 | + 'content' => $this->_percentage_dollar_amount_stop(), |
|
51 | + 'options' => array( |
|
52 | + 'tipLocation' => 'top', |
|
53 | + 'tipAdjustmentY' => 45, |
|
54 | + ), |
|
55 | + ), |
|
56 | + 50 => array( |
|
57 | + 'id' => 'PRT_order', |
|
58 | + 'content' => $this->_order_of_application_stop(), |
|
59 | + 'options' => array( |
|
60 | + 'tipLocation' => 'top', |
|
61 | + 'tipAdjustmentY' => -40, |
|
62 | + ), |
|
63 | + ), |
|
64 | + ); |
|
65 | + } |
|
66 | 66 | |
67 | 67 | |
68 | - protected function _start() |
|
69 | - { |
|
70 | - $content = '<h3>' . __('Edit Price Type', 'event_espresso') . '</h3>'; |
|
71 | - $content .= '<p>' |
|
72 | - . __( |
|
73 | - 'This tour of the Edit Price Type page will go over different areas of the screen to help you understand what they are used for.', |
|
74 | - 'event_espresso' |
|
75 | - ) . '</p>'; |
|
76 | - return $content; |
|
77 | - } |
|
68 | + protected function _start() |
|
69 | + { |
|
70 | + $content = '<h3>' . __('Edit Price Type', 'event_espresso') . '</h3>'; |
|
71 | + $content .= '<p>' |
|
72 | + . __( |
|
73 | + 'This tour of the Edit Price Type page will go over different areas of the screen to help you understand what they are used for.', |
|
74 | + 'event_espresso' |
|
75 | + ) . '</p>'; |
|
76 | + return $content; |
|
77 | + } |
|
78 | 78 | |
79 | - protected function _basic_type_stop() |
|
80 | - { |
|
81 | - return '<p>' . __('Set a price type to be a discount, surcharge, or tax.', 'event_espresso') . '</p>'; |
|
82 | - } |
|
79 | + protected function _basic_type_stop() |
|
80 | + { |
|
81 | + return '<p>' . __('Set a price type to be a discount, surcharge, or tax.', 'event_espresso') . '</p>'; |
|
82 | + } |
|
83 | 83 | |
84 | - protected function _price_type_name_stop() |
|
85 | - { |
|
86 | - return '<p>' . __('The name of the price type.', 'event_espresso') . '</p>'; |
|
87 | - } |
|
84 | + protected function _price_type_name_stop() |
|
85 | + { |
|
86 | + return '<p>' . __('The name of the price type.', 'event_espresso') . '</p>'; |
|
87 | + } |
|
88 | 88 | |
89 | - protected function _percentage_dollar_amount_stop() |
|
90 | - { |
|
91 | - return '<p>' . __('Set a price type to be percentage-based or a fixed amount.', 'event_espresso') . '</p>'; |
|
92 | - } |
|
89 | + protected function _percentage_dollar_amount_stop() |
|
90 | + { |
|
91 | + return '<p>' . __('Set a price type to be percentage-based or a fixed amount.', 'event_espresso') . '</p>'; |
|
92 | + } |
|
93 | 93 | |
94 | - protected function _order_of_application_stop() |
|
95 | - { |
|
96 | - return '<p>' . __('Set the order of application for a price type.', 'event_espresso') . '</p>'; |
|
97 | - } |
|
94 | + protected function _order_of_application_stop() |
|
95 | + { |
|
96 | + return '<p>' . __('Set the order of application for a price type.', 'event_espresso') . '</p>'; |
|
97 | + } |
|
98 | 98 | } |
@@ -67,32 +67,32 @@ |
||
67 | 67 | |
68 | 68 | protected function _start() |
69 | 69 | { |
70 | - $content = '<h3>' . __('Edit Price Type', 'event_espresso') . '</h3>'; |
|
70 | + $content = '<h3>'.__('Edit Price Type', 'event_espresso').'</h3>'; |
|
71 | 71 | $content .= '<p>' |
72 | 72 | . __( |
73 | 73 | 'This tour of the Edit Price Type page will go over different areas of the screen to help you understand what they are used for.', |
74 | 74 | 'event_espresso' |
75 | - ) . '</p>'; |
|
75 | + ).'</p>'; |
|
76 | 76 | return $content; |
77 | 77 | } |
78 | 78 | |
79 | 79 | protected function _basic_type_stop() |
80 | 80 | { |
81 | - return '<p>' . __('Set a price type to be a discount, surcharge, or tax.', 'event_espresso') . '</p>'; |
|
81 | + return '<p>'.__('Set a price type to be a discount, surcharge, or tax.', 'event_espresso').'</p>'; |
|
82 | 82 | } |
83 | 83 | |
84 | 84 | protected function _price_type_name_stop() |
85 | 85 | { |
86 | - return '<p>' . __('The name of the price type.', 'event_espresso') . '</p>'; |
|
86 | + return '<p>'.__('The name of the price type.', 'event_espresso').'</p>'; |
|
87 | 87 | } |
88 | 88 | |
89 | 89 | protected function _percentage_dollar_amount_stop() |
90 | 90 | { |
91 | - return '<p>' . __('Set a price type to be percentage-based or a fixed amount.', 'event_espresso') . '</p>'; |
|
91 | + return '<p>'.__('Set a price type to be percentage-based or a fixed amount.', 'event_espresso').'</p>'; |
|
92 | 92 | } |
93 | 93 | |
94 | 94 | protected function _order_of_application_stop() |
95 | 95 | { |
96 | - return '<p>' . __('Set the order of application for a price type.', 'event_espresso') . '</p>'; |
|
96 | + return '<p>'.__('Set the order of application for a price type.', 'event_espresso').'</p>'; |
|
97 | 97 | } |
98 | 98 | } |
@@ -15,140 +15,140 @@ |
||
15 | 15 | class Pricing_Price_Types_Default_Help_Tour extends EE_Help_Tour |
16 | 16 | { |
17 | 17 | |
18 | - protected function _set_tour_properties() |
|
19 | - { |
|
20 | - $this->_label = __('Price Types Tour', 'event_espresso'); |
|
21 | - $this->_slug = 'default-price-types-joyride'; |
|
22 | - } |
|
18 | + protected function _set_tour_properties() |
|
19 | + { |
|
20 | + $this->_label = __('Price Types Tour', 'event_espresso'); |
|
21 | + $this->_slug = 'default-price-types-joyride'; |
|
22 | + } |
|
23 | 23 | |
24 | 24 | |
25 | - protected function _set_tour_stops() |
|
26 | - { |
|
27 | - $this->_stops = array( |
|
28 | - 10 => array( |
|
29 | - 'content' => $this->_start(), |
|
30 | - ), |
|
31 | - 20 => array( |
|
32 | - 'id' => 'name', |
|
33 | - 'content' => $this->_name_column_stop(), |
|
34 | - 'options' => array( |
|
35 | - 'tipLocation' => 'top', |
|
36 | - 'tipAdjustmentX' => -5, |
|
37 | - 'tipAdjustmentY' => -30, |
|
38 | - ), |
|
39 | - ), |
|
40 | - 30 => array( |
|
41 | - 'id' => 'base_type', |
|
42 | - 'content' => $this->_base_type_stop(), |
|
43 | - 'options' => array( |
|
44 | - 'tipLocation' => 'top', |
|
45 | - 'tipAdjustmentX' => 120, |
|
46 | - 'tipAdjustmentY' => -30, |
|
47 | - ), |
|
48 | - ), |
|
49 | - 40 => array( |
|
50 | - 'id' => 'percent', |
|
51 | - 'content' => $this->_percent_column_stop(), |
|
52 | - 'options' => array( |
|
53 | - 'tipLocation' => 'top', |
|
54 | - 'tipAdjustmentX' => 120, |
|
55 | - 'tipAdjustmentY' => -30, |
|
56 | - ), |
|
57 | - ), |
|
58 | - 50 => array( |
|
59 | - 'id' => 'order', |
|
60 | - 'content' => $this->_order_column_stop(), |
|
61 | - 'options' => array( |
|
62 | - 'tipLocation' => 'left', |
|
63 | - 'tipAdjustmentY' => -30, |
|
64 | - 'tipAdjustmentX' => 100, |
|
65 | - ), |
|
66 | - ), |
|
67 | - 60 => array( |
|
68 | - 'class' => 'bulkactions', |
|
69 | - 'content' => $this->_bulk_actions_stop(), |
|
70 | - 'options' => array( |
|
71 | - 'tipLocation' => 'left', |
|
72 | - 'tipAdjustmentY' => -50, |
|
73 | - 'tipAdjustmentX' => -75, |
|
74 | - ), |
|
75 | - ), |
|
76 | - 70 => array( |
|
77 | - 'id' => 'event-espresso_page_pricing-search-input', |
|
78 | - 'content' => $this->_search_stop(), |
|
79 | - 'options' => array( |
|
80 | - 'tipLocation' => 'left', |
|
81 | - 'tipAdjustmentY' => -50, |
|
82 | - 'tipAdjustmentX' => -15, |
|
83 | - ), |
|
84 | - ), |
|
85 | - ); |
|
86 | - } |
|
25 | + protected function _set_tour_stops() |
|
26 | + { |
|
27 | + $this->_stops = array( |
|
28 | + 10 => array( |
|
29 | + 'content' => $this->_start(), |
|
30 | + ), |
|
31 | + 20 => array( |
|
32 | + 'id' => 'name', |
|
33 | + 'content' => $this->_name_column_stop(), |
|
34 | + 'options' => array( |
|
35 | + 'tipLocation' => 'top', |
|
36 | + 'tipAdjustmentX' => -5, |
|
37 | + 'tipAdjustmentY' => -30, |
|
38 | + ), |
|
39 | + ), |
|
40 | + 30 => array( |
|
41 | + 'id' => 'base_type', |
|
42 | + 'content' => $this->_base_type_stop(), |
|
43 | + 'options' => array( |
|
44 | + 'tipLocation' => 'top', |
|
45 | + 'tipAdjustmentX' => 120, |
|
46 | + 'tipAdjustmentY' => -30, |
|
47 | + ), |
|
48 | + ), |
|
49 | + 40 => array( |
|
50 | + 'id' => 'percent', |
|
51 | + 'content' => $this->_percent_column_stop(), |
|
52 | + 'options' => array( |
|
53 | + 'tipLocation' => 'top', |
|
54 | + 'tipAdjustmentX' => 120, |
|
55 | + 'tipAdjustmentY' => -30, |
|
56 | + ), |
|
57 | + ), |
|
58 | + 50 => array( |
|
59 | + 'id' => 'order', |
|
60 | + 'content' => $this->_order_column_stop(), |
|
61 | + 'options' => array( |
|
62 | + 'tipLocation' => 'left', |
|
63 | + 'tipAdjustmentY' => -30, |
|
64 | + 'tipAdjustmentX' => 100, |
|
65 | + ), |
|
66 | + ), |
|
67 | + 60 => array( |
|
68 | + 'class' => 'bulkactions', |
|
69 | + 'content' => $this->_bulk_actions_stop(), |
|
70 | + 'options' => array( |
|
71 | + 'tipLocation' => 'left', |
|
72 | + 'tipAdjustmentY' => -50, |
|
73 | + 'tipAdjustmentX' => -75, |
|
74 | + ), |
|
75 | + ), |
|
76 | + 70 => array( |
|
77 | + 'id' => 'event-espresso_page_pricing-search-input', |
|
78 | + 'content' => $this->_search_stop(), |
|
79 | + 'options' => array( |
|
80 | + 'tipLocation' => 'left', |
|
81 | + 'tipAdjustmentY' => -50, |
|
82 | + 'tipAdjustmentX' => -15, |
|
83 | + ), |
|
84 | + ), |
|
85 | + ); |
|
86 | + } |
|
87 | 87 | |
88 | 88 | |
89 | - protected function _start() |
|
90 | - { |
|
91 | - $content = '<h3>' . __('Price Types', 'event_espresso') . '</h3>'; |
|
92 | - $content .= '<p>' |
|
93 | - . __( |
|
94 | - 'This tour of the Price Types page will go over different areas of the screen to help you understand what they are used for.', |
|
95 | - 'event_espresso' |
|
96 | - ) . '</p>'; |
|
97 | - return $content; |
|
98 | - } |
|
89 | + protected function _start() |
|
90 | + { |
|
91 | + $content = '<h3>' . __('Price Types', 'event_espresso') . '</h3>'; |
|
92 | + $content .= '<p>' |
|
93 | + . __( |
|
94 | + 'This tour of the Price Types page will go over different areas of the screen to help you understand what they are used for.', |
|
95 | + 'event_espresso' |
|
96 | + ) . '</p>'; |
|
97 | + return $content; |
|
98 | + } |
|
99 | 99 | |
100 | - protected function _name_column_stop() |
|
101 | - { |
|
102 | - return '<p>' |
|
103 | - . __( |
|
104 | - 'The name of the price type. Can be sorted in ascending or descending order.', |
|
105 | - 'event_espresso' |
|
106 | - ) . '</p>'; |
|
107 | - } |
|
100 | + protected function _name_column_stop() |
|
101 | + { |
|
102 | + return '<p>' |
|
103 | + . __( |
|
104 | + 'The name of the price type. Can be sorted in ascending or descending order.', |
|
105 | + 'event_espresso' |
|
106 | + ) . '</p>'; |
|
107 | + } |
|
108 | 108 | |
109 | - protected function _base_type_stop() |
|
110 | - { |
|
111 | - return '<p>' . __('View if a price type is a discount, surcharge, or tax.', 'event_espresso') . '</p>'; |
|
112 | - } |
|
109 | + protected function _base_type_stop() |
|
110 | + { |
|
111 | + return '<p>' . __('View if a price type is a discount, surcharge, or tax.', 'event_espresso') . '</p>'; |
|
112 | + } |
|
113 | 113 | |
114 | - protected function _member_column_stop() |
|
115 | - { |
|
116 | - return '<p>' |
|
117 | - . __( |
|
118 | - 'Here you can see if the discount/surcharge is percentage based or a flat monetary amount.', |
|
119 | - 'event_espresso' |
|
120 | - ) . '</p>'; |
|
121 | - } |
|
114 | + protected function _member_column_stop() |
|
115 | + { |
|
116 | + return '<p>' |
|
117 | + . __( |
|
118 | + 'Here you can see if the discount/surcharge is percentage based or a flat monetary amount.', |
|
119 | + 'event_espresso' |
|
120 | + ) . '</p>'; |
|
121 | + } |
|
122 | 122 | |
123 | - protected function _percent_column_stop() |
|
124 | - { |
|
125 | - return '<p>' |
|
126 | - . __( |
|
127 | - 'View if the discount, surcharge, or tax is percentage-based or a fixed amount.', |
|
128 | - 'event_espresso' |
|
129 | - ) . '</p>'; |
|
130 | - } |
|
123 | + protected function _percent_column_stop() |
|
124 | + { |
|
125 | + return '<p>' |
|
126 | + . __( |
|
127 | + 'View if the discount, surcharge, or tax is percentage-based or a fixed amount.', |
|
128 | + 'event_espresso' |
|
129 | + ) . '</p>'; |
|
130 | + } |
|
131 | 131 | |
132 | - protected function _order_column_stop() |
|
133 | - { |
|
134 | - return '<p>' |
|
135 | - . __( |
|
136 | - 'View the order in which each discount, surcharge, or tax will be applied to the base ticket cost. Zero (0) means it will be applied first.', |
|
137 | - 'event_espresso' |
|
138 | - ) . '</p>'; |
|
139 | - } |
|
132 | + protected function _order_column_stop() |
|
133 | + { |
|
134 | + return '<p>' |
|
135 | + . __( |
|
136 | + 'View the order in which each discount, surcharge, or tax will be applied to the base ticket cost. Zero (0) means it will be applied first.', |
|
137 | + 'event_espresso' |
|
138 | + ) . '</p>'; |
|
139 | + } |
|
140 | 140 | |
141 | - protected function _bulk_actions_stop() |
|
142 | - { |
|
143 | - return '<p>' . __('Perform bulk actions to multiple price types.', 'event_espresso') . '</p>'; |
|
144 | - } |
|
141 | + protected function _bulk_actions_stop() |
|
142 | + { |
|
143 | + return '<p>' . __('Perform bulk actions to multiple price types.', 'event_espresso') . '</p>'; |
|
144 | + } |
|
145 | 145 | |
146 | - protected function _search_stop() |
|
147 | - { |
|
148 | - return '<p>' |
|
149 | - . __( |
|
150 | - 'Search through price types. The following source will be searched: Price Type Name.', |
|
151 | - 'event_espresso' |
|
152 | - ) . '</p>'; |
|
153 | - } |
|
146 | + protected function _search_stop() |
|
147 | + { |
|
148 | + return '<p>' |
|
149 | + . __( |
|
150 | + 'Search through price types. The following source will be searched: Price Type Name.', |
|
151 | + 'event_espresso' |
|
152 | + ) . '</p>'; |
|
153 | + } |
|
154 | 154 | } |
@@ -88,12 +88,12 @@ discard block |
||
88 | 88 | |
89 | 89 | protected function _start() |
90 | 90 | { |
91 | - $content = '<h3>' . __('Price Types', 'event_espresso') . '</h3>'; |
|
91 | + $content = '<h3>'.__('Price Types', 'event_espresso').'</h3>'; |
|
92 | 92 | $content .= '<p>' |
93 | 93 | . __( |
94 | 94 | 'This tour of the Price Types page will go over different areas of the screen to help you understand what they are used for.', |
95 | 95 | 'event_espresso' |
96 | - ) . '</p>'; |
|
96 | + ).'</p>'; |
|
97 | 97 | return $content; |
98 | 98 | } |
99 | 99 | |
@@ -103,12 +103,12 @@ discard block |
||
103 | 103 | . __( |
104 | 104 | 'The name of the price type. Can be sorted in ascending or descending order.', |
105 | 105 | 'event_espresso' |
106 | - ) . '</p>'; |
|
106 | + ).'</p>'; |
|
107 | 107 | } |
108 | 108 | |
109 | 109 | protected function _base_type_stop() |
110 | 110 | { |
111 | - return '<p>' . __('View if a price type is a discount, surcharge, or tax.', 'event_espresso') . '</p>'; |
|
111 | + return '<p>'.__('View if a price type is a discount, surcharge, or tax.', 'event_espresso').'</p>'; |
|
112 | 112 | } |
113 | 113 | |
114 | 114 | protected function _member_column_stop() |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | . __( |
118 | 118 | 'Here you can see if the discount/surcharge is percentage based or a flat monetary amount.', |
119 | 119 | 'event_espresso' |
120 | - ) . '</p>'; |
|
120 | + ).'</p>'; |
|
121 | 121 | } |
122 | 122 | |
123 | 123 | protected function _percent_column_stop() |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | . __( |
127 | 127 | 'View if the discount, surcharge, or tax is percentage-based or a fixed amount.', |
128 | 128 | 'event_espresso' |
129 | - ) . '</p>'; |
|
129 | + ).'</p>'; |
|
130 | 130 | } |
131 | 131 | |
132 | 132 | protected function _order_column_stop() |
@@ -135,12 +135,12 @@ discard block |
||
135 | 135 | . __( |
136 | 136 | 'View the order in which each discount, surcharge, or tax will be applied to the base ticket cost. Zero (0) means it will be applied first.', |
137 | 137 | 'event_espresso' |
138 | - ) . '</p>'; |
|
138 | + ).'</p>'; |
|
139 | 139 | } |
140 | 140 | |
141 | 141 | protected function _bulk_actions_stop() |
142 | 142 | { |
143 | - return '<p>' . __('Perform bulk actions to multiple price types.', 'event_espresso') . '</p>'; |
|
143 | + return '<p>'.__('Perform bulk actions to multiple price types.', 'event_espresso').'</p>'; |
|
144 | 144 | } |
145 | 145 | |
146 | 146 | protected function _search_stop() |
@@ -149,6 +149,6 @@ discard block |
||
149 | 149 | . __( |
150 | 150 | 'Search through price types. The following source will be searched: Price Type Name.', |
151 | 151 | 'event_espresso' |
152 | - ) . '</p>'; |
|
152 | + ).'</p>'; |
|
153 | 153 | } |
154 | 154 | } |
@@ -15,42 +15,42 @@ |
||
15 | 15 | class Global_EE_Caf_Hooks |
16 | 16 | { |
17 | 17 | |
18 | - public function __construct() |
|
19 | - { |
|
20 | - $this->_do_hooks(); |
|
21 | - } |
|
22 | - |
|
23 | - |
|
24 | - private function _do_hooks() |
|
25 | - { |
|
26 | - add_filter('FHEE_show_sponsors_meta_box', '__return_false', 10); |
|
27 | - add_filter('FHEE_show_ratings_request_meta_box', '__return_false', 10); |
|
28 | - add_filter( |
|
29 | - 'FHEE__EE_Admin_Page_Core__load_global_scripts_styles__loader_containers', |
|
30 | - array($this, 'forums_lazy_loading'), |
|
31 | - 10 |
|
32 | - ); |
|
33 | - add_action( |
|
34 | - 'AHEE__EE_Admin_Page__espresso_news_post_box__after_content', |
|
35 | - array($this, 'extra_news_box_content'), |
|
36 | - 10 |
|
37 | - ); |
|
38 | - } |
|
39 | - |
|
40 | - |
|
41 | - public function extra_news_box_content($content) |
|
42 | - { |
|
43 | - echo '<h3 style="margin:0">' . __('From the Forums', 'event_espresso') . '</h3>'; |
|
44 | - echo '<div id="ee_forum_posts_content">'; |
|
45 | - $url = 'http://eventespresso.com/forum/event-espresso-support/feed/'; |
|
46 | - EE_Admin_Page::cached_rss_display('ee_forum_posts_content', $url); |
|
47 | - echo '</div>'; |
|
48 | - } |
|
49 | - |
|
50 | - |
|
51 | - public function forums_lazy_loading($ids) |
|
52 | - { |
|
53 | - $ids[] = 'ee_forum_posts_content'; |
|
54 | - return $ids; |
|
55 | - } |
|
18 | + public function __construct() |
|
19 | + { |
|
20 | + $this->_do_hooks(); |
|
21 | + } |
|
22 | + |
|
23 | + |
|
24 | + private function _do_hooks() |
|
25 | + { |
|
26 | + add_filter('FHEE_show_sponsors_meta_box', '__return_false', 10); |
|
27 | + add_filter('FHEE_show_ratings_request_meta_box', '__return_false', 10); |
|
28 | + add_filter( |
|
29 | + 'FHEE__EE_Admin_Page_Core__load_global_scripts_styles__loader_containers', |
|
30 | + array($this, 'forums_lazy_loading'), |
|
31 | + 10 |
|
32 | + ); |
|
33 | + add_action( |
|
34 | + 'AHEE__EE_Admin_Page__espresso_news_post_box__after_content', |
|
35 | + array($this, 'extra_news_box_content'), |
|
36 | + 10 |
|
37 | + ); |
|
38 | + } |
|
39 | + |
|
40 | + |
|
41 | + public function extra_news_box_content($content) |
|
42 | + { |
|
43 | + echo '<h3 style="margin:0">' . __('From the Forums', 'event_espresso') . '</h3>'; |
|
44 | + echo '<div id="ee_forum_posts_content">'; |
|
45 | + $url = 'http://eventespresso.com/forum/event-espresso-support/feed/'; |
|
46 | + EE_Admin_Page::cached_rss_display('ee_forum_posts_content', $url); |
|
47 | + echo '</div>'; |
|
48 | + } |
|
49 | + |
|
50 | + |
|
51 | + public function forums_lazy_loading($ids) |
|
52 | + { |
|
53 | + $ids[] = 'ee_forum_posts_content'; |
|
54 | + return $ids; |
|
55 | + } |
|
56 | 56 | } |
@@ -40,7 +40,7 @@ |
||
40 | 40 | |
41 | 41 | public function extra_news_box_content($content) |
42 | 42 | { |
43 | - echo '<h3 style="margin:0">' . __('From the Forums', 'event_espresso') . '</h3>'; |
|
43 | + echo '<h3 style="margin:0">'.__('From the Forums', 'event_espresso').'</h3>'; |
|
44 | 44 | echo '<div id="ee_forum_posts_content">'; |
45 | 45 | $url = 'http://eventespresso.com/forum/event-espresso-support/feed/'; |
46 | 46 | EE_Admin_Page::cached_rss_display('ee_forum_posts_content', $url); |