@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | * @since 1.0.0 |
7 | 7 | */ |
8 | 8 | |
9 | -defined( 'ABSPATH' ) || exit; |
|
9 | +defined('ABSPATH') || exit; |
|
10 | 10 | |
11 | 11 | /** |
12 | 12 | * Retrieves all default settings. |
@@ -16,13 +16,13 @@ discard block |
||
16 | 16 | function wpinv_get_settings() { |
17 | 17 | $defaults = array(); |
18 | 18 | |
19 | - foreach ( array_values( wpinv_get_registered_settings() ) as $tab_settings ) { |
|
19 | + foreach (array_values(wpinv_get_registered_settings()) as $tab_settings) { |
|
20 | 20 | |
21 | - foreach ( array_values( $tab_settings ) as $section_settings ) { |
|
21 | + foreach (array_values($tab_settings) as $section_settings) { |
|
22 | 22 | |
23 | - foreach ( $section_settings as $key => $setting ) { |
|
24 | - if ( isset( $setting['std'] ) ) { |
|
25 | - $defaults[ $key ] = $setting['std']; |
|
23 | + foreach ($section_settings as $key => $setting) { |
|
24 | + if (isset($setting['std'])) { |
|
25 | + $defaults[$key] = $setting['std']; |
|
26 | 26 | } |
27 | 27 | } |
28 | 28 | |
@@ -43,12 +43,12 @@ discard block |
||
43 | 43 | global $wpinv_options; |
44 | 44 | |
45 | 45 | // Try fetching the saved options. |
46 | - if ( ! is_array( $wpinv_options ) ) { |
|
47 | - $wpinv_options = get_option( 'wpinv_settings' ); |
|
46 | + if (!is_array($wpinv_options)) { |
|
47 | + $wpinv_options = get_option('wpinv_settings'); |
|
48 | 48 | } |
49 | 49 | |
50 | 50 | // If that fails, don't fetch the default settings to prevent a loop. |
51 | - if ( ! is_array( $wpinv_options ) ) { |
|
51 | + if (!is_array($wpinv_options)) { |
|
52 | 52 | $wpinv_options = array(); |
53 | 53 | } |
54 | 54 | |
@@ -62,13 +62,13 @@ discard block |
||
62 | 62 | * @param mixed $default The default value to use if the setting has not been set. |
63 | 63 | * @return mixed |
64 | 64 | */ |
65 | -function wpinv_get_option( $key = '', $default = false ) { |
|
65 | +function wpinv_get_option($key = '', $default = false) { |
|
66 | 66 | |
67 | 67 | $options = wpinv_get_options(); |
68 | - $value = isset( $options[ $key ] ) ? $options[ $key ] : $default; |
|
69 | - $value = apply_filters( 'wpinv_get_option', $value, $key, $default ); |
|
68 | + $value = isset($options[$key]) ? $options[$key] : $default; |
|
69 | + $value = apply_filters('wpinv_get_option', $value, $key, $default); |
|
70 | 70 | |
71 | - return apply_filters( 'wpinv_get_option_' . $key, $value, $key, $default ); |
|
71 | + return apply_filters('wpinv_get_option_' . $key, $value, $key, $default); |
|
72 | 72 | } |
73 | 73 | |
74 | 74 | /** |
@@ -77,11 +77,11 @@ discard block |
||
77 | 77 | * @param array $options the new options. |
78 | 78 | * @return bool |
79 | 79 | */ |
80 | -function wpinv_update_options( $options ) { |
|
80 | +function wpinv_update_options($options) { |
|
81 | 81 | global $wpinv_options; |
82 | 82 | |
83 | 83 | // update the option. |
84 | - if ( is_array( $options ) && update_option( 'wpinv_settings', $options ) ) { |
|
84 | + if (is_array($options) && update_option('wpinv_settings', $options)) { |
|
85 | 85 | $wpinv_options = $options; |
86 | 86 | return true; |
87 | 87 | } |
@@ -96,24 +96,24 @@ discard block |
||
96 | 96 | * @param mixed $value The setting value. |
97 | 97 | * @return bool |
98 | 98 | */ |
99 | -function wpinv_update_option( $key = '', $value = false ) { |
|
99 | +function wpinv_update_option($key = '', $value = false) { |
|
100 | 100 | |
101 | 101 | // If no key, exit. |
102 | - if ( empty( $key ) ) { |
|
102 | + if (empty($key)) { |
|
103 | 103 | return false; |
104 | 104 | } |
105 | 105 | |
106 | 106 | // Maybe delete the option instead. |
107 | - if ( is_null( $value ) ) { |
|
108 | - return wpinv_delete_option( $key ); |
|
107 | + if (is_null($value)) { |
|
108 | + return wpinv_delete_option($key); |
|
109 | 109 | } |
110 | 110 | |
111 | 111 | // Prepare the new options. |
112 | 112 | $options = wpinv_get_options(); |
113 | - $options[ $key ] = apply_filters( 'wpinv_update_option', $value, $key ); |
|
113 | + $options[$key] = apply_filters('wpinv_update_option', $value, $key); |
|
114 | 114 | |
115 | 115 | // Save the new options. |
116 | - return wpinv_update_options( $options ); |
|
116 | + return wpinv_update_options($options); |
|
117 | 117 | |
118 | 118 | } |
119 | 119 | |
@@ -123,18 +123,18 @@ discard block |
||
123 | 123 | * @param string $key the setting key. |
124 | 124 | * @return bool |
125 | 125 | */ |
126 | -function wpinv_delete_option( $key = '' ) { |
|
126 | +function wpinv_delete_option($key = '') { |
|
127 | 127 | |
128 | 128 | // If no key, exit |
129 | - if ( empty( $key ) ) { |
|
129 | + if (empty($key)) { |
|
130 | 130 | return false; |
131 | 131 | } |
132 | 132 | |
133 | 133 | $options = wpinv_get_options(); |
134 | 134 | |
135 | - if ( isset( $options[ $key ] ) ) { |
|
136 | - unset( $options[ $key ] ); |
|
137 | - return wpinv_update_options( $options ); |
|
135 | + if (isset($options[$key])) { |
|
136 | + unset($options[$key]); |
|
137 | + return wpinv_update_options($options); |
|
138 | 138 | } |
139 | 139 | |
140 | 140 | return true; |
@@ -148,14 +148,14 @@ discard block |
||
148 | 148 | function wpinv_register_settings() { |
149 | 149 | |
150 | 150 | // Loop through all tabs. |
151 | - foreach ( wpinv_get_registered_settings() as $tab => $sections ) { |
|
151 | + foreach (wpinv_get_registered_settings() as $tab => $sections) { |
|
152 | 152 | |
153 | 153 | // In each tab, loop through sections. |
154 | - foreach ( $sections as $section => $settings ) { |
|
154 | + foreach ($sections as $section => $settings) { |
|
155 | 155 | |
156 | 156 | // Check for backwards compatibility |
157 | - $section_tabs = wpinv_get_settings_tab_sections( $tab ); |
|
158 | - if ( ! is_array( $section_tabs ) || ! array_key_exists( $section, $section_tabs ) ) { |
|
157 | + $section_tabs = wpinv_get_settings_tab_sections($tab); |
|
158 | + if (!is_array($section_tabs) || !array_key_exists($section, $section_tabs)) { |
|
159 | 159 | $section = 'main'; |
160 | 160 | $settings = $sections; |
161 | 161 | } |
@@ -168,9 +168,9 @@ discard block |
||
168 | 168 | 'wpinv_settings_' . $tab . '_' . $section |
169 | 169 | ); |
170 | 170 | |
171 | - foreach ( $settings as $option ) { |
|
172 | - if ( ! empty( $option['id'] ) ) { |
|
173 | - wpinv_register_settings_option( $tab, $section, $option ); |
|
171 | + foreach ($settings as $option) { |
|
172 | + if (!empty($option['id'])) { |
|
173 | + wpinv_register_settings_option($tab, $section, $option); |
|
174 | 174 | } |
175 | 175 | } |
176 | 176 | |
@@ -178,9 +178,9 @@ discard block |
||
178 | 178 | } |
179 | 179 | |
180 | 180 | // Creates our settings in the options table. |
181 | - register_setting( 'wpinv_settings', 'wpinv_settings', 'wpinv_settings_sanitize' ); |
|
181 | + register_setting('wpinv_settings', 'wpinv_settings', 'wpinv_settings_sanitize'); |
|
182 | 182 | } |
183 | -add_action( 'admin_init', 'wpinv_register_settings' ); |
|
183 | +add_action('admin_init', 'wpinv_register_settings'); |
|
184 | 184 | |
185 | 185 | /** |
186 | 186 | * Register a single settings option. |
@@ -190,46 +190,46 @@ discard block |
||
190 | 190 | * @param string $option |
191 | 191 | * |
192 | 192 | */ |
193 | -function wpinv_register_settings_option( $tab, $section, $option ) { |
|
193 | +function wpinv_register_settings_option($tab, $section, $option) { |
|
194 | 194 | |
195 | - $name = isset( $option['name'] ) ? $option['name'] : ''; |
|
195 | + $name = isset($option['name']) ? $option['name'] : ''; |
|
196 | 196 | $cb = "wpinv_{$option['type']}_callback"; |
197 | 197 | $section = "wpinv_settings_{$tab}_$section"; |
198 | 198 | |
199 | - if ( isset( $option['desc'] ) && ! empty( $option['help-tip'] ) ) { |
|
200 | - $tip = esc_attr( $option['desc'] ); |
|
199 | + if (isset($option['desc']) && !empty($option['help-tip'])) { |
|
200 | + $tip = esc_attr($option['desc']); |
|
201 | 201 | $name .= "<span class='dashicons dashicons-editor-help wpi-help-tip' title='$tip'></span>"; |
202 | - unset( $option['desc'] ); |
|
202 | + unset($option['desc']); |
|
203 | 203 | } |
204 | 204 | |
205 | 205 | // Loop through all tabs. |
206 | 206 | add_settings_field( |
207 | 207 | 'wpinv_settings[' . $option['id'] . ']', |
208 | 208 | $name, |
209 | - function_exists( $cb ) ? $cb : 'wpinv_missing_callback', |
|
209 | + function_exists($cb) ? $cb : 'wpinv_missing_callback', |
|
210 | 210 | $section, |
211 | 211 | $section, |
212 | 212 | array( |
213 | 213 | 'section' => $section, |
214 | - 'id' => isset( $option['id'] ) ? $option['id'] : null, |
|
215 | - 'desc' => isset( $option['desc'] ) ? $option['desc'] : '', |
|
214 | + 'id' => isset($option['id']) ? $option['id'] : null, |
|
215 | + 'desc' => isset($option['desc']) ? $option['desc'] : '', |
|
216 | 216 | 'name' => $name, |
217 | - 'size' => isset( $option['size'] ) ? $option['size'] : null, |
|
218 | - 'options' => isset( $option['options'] ) ? $option['options'] : '', |
|
219 | - 'selected' => isset( $option['selected'] ) ? $option['selected'] : null, |
|
220 | - 'std' => isset( $option['std'] ) ? $option['std'] : '', |
|
221 | - 'min' => isset( $option['min'] ) ? $option['min'] : null, |
|
222 | - 'max' => isset( $option['max'] ) ? $option['max'] : null, |
|
223 | - 'step' => isset( $option['step'] ) ? $option['step'] : null, |
|
224 | - 'placeholder' => isset( $option['placeholder'] ) ? $option['placeholder'] : null, |
|
225 | - 'allow_blank' => isset( $option['allow_blank'] ) ? $option['allow_blank'] : true, |
|
226 | - 'readonly' => isset( $option['readonly'] ) ? $option['readonly'] : false, |
|
227 | - 'faux' => isset( $option['faux'] ) ? $option['faux'] : false, |
|
228 | - 'onchange' => isset( $option['onchange'] ) ? $option['onchange'] : '', |
|
229 | - 'custom' => isset( $option['custom'] ) ? $option['custom'] : '', |
|
230 | - 'class' => isset( $option['class'] ) ? $option['class'] : '', |
|
231 | - 'cols' => isset( $option['cols'] ) && (int) $option['cols'] > 0 ? (int) $option['cols'] : 50, |
|
232 | - 'rows' => isset( $option['rows'] ) && (int) $option['rows'] > 0 ? (int) $option['rows'] : 5, |
|
217 | + 'size' => isset($option['size']) ? $option['size'] : null, |
|
218 | + 'options' => isset($option['options']) ? $option['options'] : '', |
|
219 | + 'selected' => isset($option['selected']) ? $option['selected'] : null, |
|
220 | + 'std' => isset($option['std']) ? $option['std'] : '', |
|
221 | + 'min' => isset($option['min']) ? $option['min'] : null, |
|
222 | + 'max' => isset($option['max']) ? $option['max'] : null, |
|
223 | + 'step' => isset($option['step']) ? $option['step'] : null, |
|
224 | + 'placeholder' => isset($option['placeholder']) ? $option['placeholder'] : null, |
|
225 | + 'allow_blank' => isset($option['allow_blank']) ? $option['allow_blank'] : true, |
|
226 | + 'readonly' => isset($option['readonly']) ? $option['readonly'] : false, |
|
227 | + 'faux' => isset($option['faux']) ? $option['faux'] : false, |
|
228 | + 'onchange' => isset($option['onchange']) ? $option['onchange'] : '', |
|
229 | + 'custom' => isset($option['custom']) ? $option['custom'] : '', |
|
230 | + 'class' => isset($option['class']) ? $option['class'] : '', |
|
231 | + 'cols' => isset($option['cols']) && (int) $option['cols'] > 0 ? (int) $option['cols'] : 50, |
|
232 | + 'rows' => isset($option['rows']) && (int) $option['rows'] > 0 ? (int) $option['rows'] : 5, |
|
233 | 233 | ) |
234 | 234 | ); |
235 | 235 | |
@@ -241,7 +241,7 @@ discard block |
||
241 | 241 | * @return array |
242 | 242 | */ |
243 | 243 | function wpinv_get_registered_settings() { |
244 | - return apply_filters( 'wpinv_registered_settings', wpinv_get_data( 'admin-settings' ) ); |
|
244 | + return apply_filters('wpinv_registered_settings', wpinv_get_data('admin-settings')); |
|
245 | 245 | } |
246 | 246 | |
247 | 247 | /** |
@@ -249,134 +249,134 @@ discard block |
||
249 | 249 | * |
250 | 250 | * @return array |
251 | 251 | */ |
252 | -function wpinv_settings_sanitize( $input = array() ) { |
|
252 | +function wpinv_settings_sanitize($input = array()) { |
|
253 | 253 | |
254 | 254 | $wpinv_options = wpinv_get_options(); |
255 | 255 | |
256 | - if ( empty( wp_get_raw_referer() ) ) { |
|
256 | + if (empty(wp_get_raw_referer())) { |
|
257 | 257 | return $input; |
258 | 258 | } |
259 | 259 | |
260 | - wp_parse_str( wp_get_raw_referer(), $referrer ); |
|
260 | + wp_parse_str(wp_get_raw_referer(), $referrer); |
|
261 | 261 | |
262 | 262 | $settings = wpinv_get_registered_settings(); |
263 | - $tab = isset( $referrer['tab'] ) ? $referrer['tab'] : 'general'; |
|
264 | - $section = isset( $referrer['section'] ) ? $referrer['section'] : 'main'; |
|
263 | + $tab = isset($referrer['tab']) ? $referrer['tab'] : 'general'; |
|
264 | + $section = isset($referrer['section']) ? $referrer['section'] : 'main'; |
|
265 | 265 | |
266 | 266 | $input = $input ? $input : array(); |
267 | - $input = apply_filters( 'wpinv_settings_tab_' . $tab . '_sanitize', $input ); |
|
268 | - $input = apply_filters( 'wpinv_settings_' . $tab . '-' . $section . '_sanitize', $input ); |
|
267 | + $input = apply_filters('wpinv_settings_tab_' . $tab . '_sanitize', $input); |
|
268 | + $input = apply_filters('wpinv_settings_' . $tab . '-' . $section . '_sanitize', $input); |
|
269 | 269 | |
270 | 270 | // Loop through each setting being saved and pass it through a sanitization filter |
271 | - foreach ( $input as $key => $value ) { |
|
271 | + foreach ($input as $key => $value) { |
|
272 | 272 | |
273 | 273 | // Get the setting type (checkbox, select, etc) |
274 | - $type = isset( $settings[ $tab ][$section][ $key ]['type'] ) ? $settings[ $tab ][$section][ $key ]['type'] : false; |
|
274 | + $type = isset($settings[$tab][$section][$key]['type']) ? $settings[$tab][$section][$key]['type'] : false; |
|
275 | 275 | |
276 | - if ( $type ) { |
|
276 | + if ($type) { |
|
277 | 277 | // Field type specific filter |
278 | - $input[$key] = apply_filters( 'wpinv_settings_sanitize_' . $type, $value, $key ); |
|
278 | + $input[$key] = apply_filters('wpinv_settings_sanitize_' . $type, $value, $key); |
|
279 | 279 | } |
280 | 280 | |
281 | 281 | // General filter |
282 | - $input[ $key ] = apply_filters( 'wpinv_settings_sanitize', $input[ $key ], $key ); |
|
282 | + $input[$key] = apply_filters('wpinv_settings_sanitize', $input[$key], $key); |
|
283 | 283 | } |
284 | 284 | |
285 | 285 | // Loop through the whitelist and unset any that are empty for the tab being saved |
286 | - $main_settings = $section == 'main' ? $settings[ $tab ] : array(); // Check for extensions that aren't using new sections |
|
287 | - $section_settings = ! empty( $settings[ $tab ][ $section ] ) ? $settings[ $tab ][ $section ] : array(); |
|
286 | + $main_settings = $section == 'main' ? $settings[$tab] : array(); // Check for extensions that aren't using new sections |
|
287 | + $section_settings = !empty($settings[$tab][$section]) ? $settings[$tab][$section] : array(); |
|
288 | 288 | |
289 | - $found_settings = array_merge( $main_settings, $section_settings ); |
|
289 | + $found_settings = array_merge($main_settings, $section_settings); |
|
290 | 290 | |
291 | - if ( ! empty( $found_settings ) ) { |
|
292 | - foreach ( $found_settings as $key => $value ) { |
|
291 | + if (!empty($found_settings)) { |
|
292 | + foreach ($found_settings as $key => $value) { |
|
293 | 293 | |
294 | 294 | // settings used to have numeric keys, now they have keys that match the option ID. This ensures both methods work |
295 | - if ( is_numeric( $key ) ) { |
|
295 | + if (is_numeric($key)) { |
|
296 | 296 | $key = $value['id']; |
297 | 297 | } |
298 | 298 | |
299 | - if ( ! isset( $input[ $key ] ) && isset( $wpinv_options[ $key ] ) ) { |
|
300 | - unset( $wpinv_options[ $key ] ); |
|
299 | + if (!isset($input[$key]) && isset($wpinv_options[$key])) { |
|
300 | + unset($wpinv_options[$key]); |
|
301 | 301 | } |
302 | 302 | } |
303 | 303 | } |
304 | 304 | |
305 | 305 | // Merge our new settings with the existing |
306 | - $output = array_merge( $wpinv_options, $input ); |
|
306 | + $output = array_merge($wpinv_options, $input); |
|
307 | 307 | |
308 | - add_settings_error( 'wpinv-notices', '', __( 'Settings updated.', 'invoicing' ), 'updated' ); |
|
308 | + add_settings_error('wpinv-notices', '', __('Settings updated.', 'invoicing'), 'updated'); |
|
309 | 309 | |
310 | 310 | return $output; |
311 | 311 | } |
312 | 312 | |
313 | -function wpinv_settings_sanitize_misc_accounting( $input ) { |
|
313 | +function wpinv_settings_sanitize_misc_accounting($input) { |
|
314 | 314 | |
315 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
315 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
316 | 316 | return $input; |
317 | 317 | } |
318 | 318 | |
319 | - if( ! empty( $input['enable_sequential'] ) && !wpinv_get_option( 'enable_sequential' ) ) { |
|
319 | + if (!empty($input['enable_sequential']) && !wpinv_get_option('enable_sequential')) { |
|
320 | 320 | // Shows an admin notice about upgrading previous order numbers |
321 | - getpaid_session()->set( 'upgrade_sequential', '1' ); |
|
321 | + getpaid_session()->set('upgrade_sequential', '1'); |
|
322 | 322 | } |
323 | 323 | |
324 | 324 | return $input; |
325 | 325 | } |
326 | -add_filter( 'wpinv_settings_misc-accounting_sanitize', 'wpinv_settings_sanitize_misc_accounting' ); |
|
326 | +add_filter('wpinv_settings_misc-accounting_sanitize', 'wpinv_settings_sanitize_misc_accounting'); |
|
327 | 327 | |
328 | -function wpinv_settings_sanitize_tax_rates( $input ) { |
|
329 | - if( ! wpinv_current_user_can_manage_invoicing() ) { |
|
328 | +function wpinv_settings_sanitize_tax_rates($input) { |
|
329 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
330 | 330 | return $input; |
331 | 331 | } |
332 | 332 | |
333 | - $new_rates = !empty( $_POST['tax_rates'] ) ? array_values( $_POST['tax_rates'] ) : array(); |
|
333 | + $new_rates = !empty($_POST['tax_rates']) ? array_values($_POST['tax_rates']) : array(); |
|
334 | 334 | |
335 | 335 | $tax_rates = array(); |
336 | 336 | |
337 | - if ( !empty( $new_rates ) ) { |
|
338 | - foreach ( $new_rates as $rate ) { |
|
339 | - if ( isset( $rate['country'] ) && empty( $rate['country'] ) && empty( $rate['state'] ) ) { |
|
337 | + if (!empty($new_rates)) { |
|
338 | + foreach ($new_rates as $rate) { |
|
339 | + if (isset($rate['country']) && empty($rate['country']) && empty($rate['state'])) { |
|
340 | 340 | continue; |
341 | 341 | } |
342 | 342 | |
343 | - $rate['rate'] = wpinv_sanitize_amount( $rate['rate'], 4 ); |
|
343 | + $rate['rate'] = wpinv_sanitize_amount($rate['rate'], 4); |
|
344 | 344 | |
345 | 345 | $tax_rates[] = $rate; |
346 | 346 | } |
347 | 347 | } |
348 | 348 | |
349 | - update_option( 'wpinv_tax_rates', $tax_rates ); |
|
349 | + update_option('wpinv_tax_rates', $tax_rates); |
|
350 | 350 | |
351 | 351 | return $input; |
352 | 352 | } |
353 | -add_filter( 'wpinv_settings_taxes-rates_sanitize', 'wpinv_settings_sanitize_tax_rates' ); |
|
353 | +add_filter('wpinv_settings_taxes-rates_sanitize', 'wpinv_settings_sanitize_tax_rates'); |
|
354 | 354 | |
355 | -function wpinv_sanitize_text_field( $input ) { |
|
356 | - return trim( $input ); |
|
355 | +function wpinv_sanitize_text_field($input) { |
|
356 | + return trim($input); |
|
357 | 357 | } |
358 | -add_filter( 'wpinv_settings_sanitize_text', 'wpinv_sanitize_text_field' ); |
|
358 | +add_filter('wpinv_settings_sanitize_text', 'wpinv_sanitize_text_field'); |
|
359 | 359 | |
360 | 360 | function wpinv_get_settings_tabs() { |
361 | 361 | $tabs = array(); |
362 | - $tabs['general'] = __( 'General', 'invoicing' ); |
|
363 | - $tabs['gateways'] = __( 'Payment Gateways', 'invoicing' ); |
|
364 | - $tabs['taxes'] = __( 'Taxes', 'invoicing' ); |
|
365 | - $tabs['emails'] = __( 'Emails', 'invoicing' ); |
|
366 | - $tabs['privacy'] = __( 'Privacy', 'invoicing' ); |
|
367 | - $tabs['misc'] = __( 'Misc', 'invoicing' ); |
|
368 | - $tabs['tools'] = __( 'Tools', 'invoicing' ); |
|
369 | - |
|
370 | - return apply_filters( 'wpinv_settings_tabs', $tabs ); |
|
362 | + $tabs['general'] = __('General', 'invoicing'); |
|
363 | + $tabs['gateways'] = __('Payment Gateways', 'invoicing'); |
|
364 | + $tabs['taxes'] = __('Taxes', 'invoicing'); |
|
365 | + $tabs['emails'] = __('Emails', 'invoicing'); |
|
366 | + $tabs['privacy'] = __('Privacy', 'invoicing'); |
|
367 | + $tabs['misc'] = __('Misc', 'invoicing'); |
|
368 | + $tabs['tools'] = __('Tools', 'invoicing'); |
|
369 | + |
|
370 | + return apply_filters('wpinv_settings_tabs', $tabs); |
|
371 | 371 | } |
372 | 372 | |
373 | -function wpinv_get_settings_tab_sections( $tab = false ) { |
|
373 | +function wpinv_get_settings_tab_sections($tab = false) { |
|
374 | 374 | $tabs = false; |
375 | 375 | $sections = wpinv_get_registered_settings_sections(); |
376 | 376 | |
377 | - if( $tab && ! empty( $sections[ $tab ] ) ) { |
|
378 | - $tabs = $sections[ $tab ]; |
|
379 | - } else if ( $tab ) { |
|
377 | + if ($tab && !empty($sections[$tab])) { |
|
378 | + $tabs = $sections[$tab]; |
|
379 | + } else if ($tab) { |
|
380 | 380 | $tabs = false; |
381 | 381 | } |
382 | 382 | |
@@ -386,150 +386,150 @@ discard block |
||
386 | 386 | function wpinv_get_registered_settings_sections() { |
387 | 387 | static $sections = false; |
388 | 388 | |
389 | - if ( false !== $sections ) { |
|
389 | + if (false !== $sections) { |
|
390 | 390 | return $sections; |
391 | 391 | } |
392 | 392 | |
393 | 393 | $sections = array( |
394 | - 'general' => apply_filters( 'wpinv_settings_sections_general', array( |
|
395 | - 'main' => __( 'General Settings', 'invoicing' ), |
|
396 | - 'currency_section' => __( 'Currency Settings', 'invoicing' ), |
|
397 | - 'labels' => __( 'Label Texts', 'invoicing' ), |
|
398 | - ) ), |
|
399 | - 'gateways' => apply_filters( 'wpinv_settings_sections_gateways', array( |
|
400 | - 'main' => __( 'Gateway Settings', 'invoicing' ), |
|
401 | - ) ), |
|
402 | - 'taxes' => apply_filters( 'wpinv_settings_sections_taxes', array( |
|
403 | - 'main' => __( 'Tax Settings', 'invoicing' ), |
|
404 | - 'rates' => __( 'Tax Rates', 'invoicing' ), |
|
405 | - ) ), |
|
406 | - 'emails' => apply_filters( 'wpinv_settings_sections_emails', array( |
|
407 | - 'main' => __( 'Email Settings', 'invoicing' ), |
|
408 | - ) ), |
|
409 | - 'privacy' => apply_filters( 'wpinv_settings_sections_privacy', array( |
|
410 | - 'main' => __( 'Privacy policy', 'invoicing' ), |
|
411 | - ) ), |
|
412 | - 'misc' => apply_filters( 'wpinv_settings_sections_misc', array( |
|
413 | - 'main' => __( 'Miscellaneous', 'invoicing' ), |
|
414 | - 'fields' => __( 'Fields Settings', 'invoicing' ), |
|
415 | - 'custom-css' => __( 'Custom CSS', 'invoicing' ), |
|
416 | - ) ), |
|
417 | - 'tools' => apply_filters( 'wpinv_settings_sections_tools', array( |
|
418 | - 'main' => __( 'Diagnostic Tools', 'invoicing' ), |
|
419 | - ) ), |
|
394 | + 'general' => apply_filters('wpinv_settings_sections_general', array( |
|
395 | + 'main' => __('General Settings', 'invoicing'), |
|
396 | + 'currency_section' => __('Currency Settings', 'invoicing'), |
|
397 | + 'labels' => __('Label Texts', 'invoicing'), |
|
398 | + )), |
|
399 | + 'gateways' => apply_filters('wpinv_settings_sections_gateways', array( |
|
400 | + 'main' => __('Gateway Settings', 'invoicing'), |
|
401 | + )), |
|
402 | + 'taxes' => apply_filters('wpinv_settings_sections_taxes', array( |
|
403 | + 'main' => __('Tax Settings', 'invoicing'), |
|
404 | + 'rates' => __('Tax Rates', 'invoicing'), |
|
405 | + )), |
|
406 | + 'emails' => apply_filters('wpinv_settings_sections_emails', array( |
|
407 | + 'main' => __('Email Settings', 'invoicing'), |
|
408 | + )), |
|
409 | + 'privacy' => apply_filters('wpinv_settings_sections_privacy', array( |
|
410 | + 'main' => __('Privacy policy', 'invoicing'), |
|
411 | + )), |
|
412 | + 'misc' => apply_filters('wpinv_settings_sections_misc', array( |
|
413 | + 'main' => __('Miscellaneous', 'invoicing'), |
|
414 | + 'fields' => __('Fields Settings', 'invoicing'), |
|
415 | + 'custom-css' => __('Custom CSS', 'invoicing'), |
|
416 | + )), |
|
417 | + 'tools' => apply_filters('wpinv_settings_sections_tools', array( |
|
418 | + 'main' => __('Diagnostic Tools', 'invoicing'), |
|
419 | + )), |
|
420 | 420 | ); |
421 | 421 | |
422 | - $sections = apply_filters( 'wpinv_settings_sections', $sections ); |
|
422 | + $sections = apply_filters('wpinv_settings_sections', $sections); |
|
423 | 423 | |
424 | 424 | return $sections; |
425 | 425 | } |
426 | 426 | |
427 | -function wpinv_get_pages( $with_slug = false, $default_label = NULL ) { |
|
427 | +function wpinv_get_pages($with_slug = false, $default_label = NULL) { |
|
428 | 428 | $pages_options = array(); |
429 | 429 | |
430 | - if( $default_label !== NULL && $default_label !== false ) { |
|
431 | - $pages_options = array( '' => $default_label ); // Blank option |
|
430 | + if ($default_label !== NULL && $default_label !== false) { |
|
431 | + $pages_options = array('' => $default_label); // Blank option |
|
432 | 432 | } |
433 | 433 | |
434 | 434 | $pages = get_pages(); |
435 | - if ( $pages ) { |
|
436 | - foreach ( $pages as $page ) { |
|
435 | + if ($pages) { |
|
436 | + foreach ($pages as $page) { |
|
437 | 437 | $title = $with_slug ? $page->post_title . ' (' . $page->post_name . ')' : $page->post_title; |
438 | - $pages_options[ $page->ID ] = $title; |
|
438 | + $pages_options[$page->ID] = $title; |
|
439 | 439 | } |
440 | 440 | } |
441 | 441 | |
442 | 442 | return $pages_options; |
443 | 443 | } |
444 | 444 | |
445 | -function wpinv_header_callback( $args ) { |
|
446 | - if ( !empty( $args['desc'] ) ) { |
|
445 | +function wpinv_header_callback($args) { |
|
446 | + if (!empty($args['desc'])) { |
|
447 | 447 | echo $args['desc']; |
448 | 448 | } |
449 | 449 | } |
450 | 450 | |
451 | -function wpinv_hidden_callback( $args ) { |
|
451 | +function wpinv_hidden_callback($args) { |
|
452 | 452 | global $wpinv_options; |
453 | 453 | |
454 | - if ( isset( $args['set_value'] ) ) { |
|
454 | + if (isset($args['set_value'])) { |
|
455 | 455 | $value = $args['set_value']; |
456 | - } elseif ( isset( $wpinv_options[ $args['id'] ] ) ) { |
|
457 | - $value = $wpinv_options[ $args['id'] ]; |
|
456 | + } elseif (isset($wpinv_options[$args['id']])) { |
|
457 | + $value = $wpinv_options[$args['id']]; |
|
458 | 458 | } else { |
459 | - $value = isset( $args['std'] ) ? $args['std'] : ''; |
|
459 | + $value = isset($args['std']) ? $args['std'] : ''; |
|
460 | 460 | } |
461 | 461 | |
462 | - if ( isset( $args['faux'] ) && true === $args['faux'] ) { |
|
462 | + if (isset($args['faux']) && true === $args['faux']) { |
|
463 | 463 | $args['readonly'] = true; |
464 | - $value = isset( $args['std'] ) ? $args['std'] : ''; |
|
464 | + $value = isset($args['std']) ? $args['std'] : ''; |
|
465 | 465 | $name = ''; |
466 | 466 | } else { |
467 | - $name = 'name="wpinv_settings[' . esc_attr( $args['id'] ) . ']"'; |
|
467 | + $name = 'name="wpinv_settings[' . esc_attr($args['id']) . ']"'; |
|
468 | 468 | } |
469 | 469 | |
470 | - $html = '<input type="hidden" id="wpinv_settings[' . wpinv_sanitize_key( $args['id'] ) . ']" ' . $name . ' value="' . esc_attr( stripslashes( $value ) ) . '" />'; |
|
470 | + $html = '<input type="hidden" id="wpinv_settings[' . wpinv_sanitize_key($args['id']) . ']" ' . $name . ' value="' . esc_attr(stripslashes($value)) . '" />'; |
|
471 | 471 | |
472 | 472 | echo $html; |
473 | 473 | } |
474 | 474 | |
475 | -function wpinv_checkbox_callback( $args ) { |
|
475 | +function wpinv_checkbox_callback($args) { |
|
476 | 476 | global $wpinv_options; |
477 | 477 | |
478 | - $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
|
478 | + $sanitize_id = wpinv_sanitize_key($args['id']); |
|
479 | 479 | |
480 | - if ( isset( $args['faux'] ) && true === $args['faux'] ) { |
|
480 | + if (isset($args['faux']) && true === $args['faux']) { |
|
481 | 481 | $name = ''; |
482 | 482 | } else { |
483 | 483 | $name = 'name="wpinv_settings[' . $sanitize_id . ']"'; |
484 | 484 | } |
485 | 485 | |
486 | - $std = isset( $args['std'] ) ? $args['std'] : 0; |
|
487 | - $value = isset( $wpinv_options[ $args['id'] ] ) ? $wpinv_options[ $args['id'] ] : $std; |
|
488 | - $checked = checked( empty( $value ), false, false ); |
|
486 | + $std = isset($args['std']) ? $args['std'] : 0; |
|
487 | + $value = isset($wpinv_options[$args['id']]) ? $wpinv_options[$args['id']] : $std; |
|
488 | + $checked = checked(empty($value), false, false); |
|
489 | 489 | |
490 | 490 | $html = '<input type="checkbox" id="wpinv_settings[' . $sanitize_id . ']"' . $name . ' value="1" ' . $checked . '/>'; |
491 | - $html .= '<label for="wpinv_settings[' . $sanitize_id . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
491 | + $html .= '<label for="wpinv_settings[' . $sanitize_id . ']"> ' . wp_kses_post($args['desc']) . '</label>'; |
|
492 | 492 | |
493 | 493 | echo $html; |
494 | 494 | } |
495 | 495 | |
496 | -function wpinv_multicheck_callback( $args ) { |
|
496 | +function wpinv_multicheck_callback($args) { |
|
497 | 497 | global $wpinv_options; |
498 | 498 | |
499 | - $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
|
500 | - $class = !empty( $args['class'] ) ? ' ' . esc_attr( $args['class'] ) : ''; |
|
499 | + $sanitize_id = wpinv_sanitize_key($args['id']); |
|
500 | + $class = !empty($args['class']) ? ' ' . esc_attr($args['class']) : ''; |
|
501 | 501 | |
502 | - if ( ! empty( $args['options'] ) ) { |
|
502 | + if (!empty($args['options'])) { |
|
503 | 503 | |
504 | - $std = isset( $args['std'] ) ? $args['std'] : array(); |
|
505 | - $value = isset( $wpinv_options[ $args['id'] ] ) ? $wpinv_options[ $args['id'] ] : $std; |
|
504 | + $std = isset($args['std']) ? $args['std'] : array(); |
|
505 | + $value = isset($wpinv_options[$args['id']]) ? $wpinv_options[$args['id']] : $std; |
|
506 | 506 | |
507 | 507 | echo '<div class="wpi-mcheck-rows wpi-mcheck-' . $sanitize_id . $class . '">'; |
508 | - foreach( $args['options'] as $key => $option ): |
|
509 | - $sanitize_key = wpinv_sanitize_key( $key ); |
|
510 | - if ( in_array( $sanitize_key, $value ) ) { |
|
508 | + foreach ($args['options'] as $key => $option): |
|
509 | + $sanitize_key = wpinv_sanitize_key($key); |
|
510 | + if (in_array($sanitize_key, $value)) { |
|
511 | 511 | $enabled = $sanitize_key; |
512 | 512 | } else { |
513 | 513 | $enabled = NULL; |
514 | 514 | } |
515 | - echo '<div class="wpi-mcheck-row"><input name="wpinv_settings[' . $sanitize_id . '][' . $sanitize_key . ']" id="wpinv_settings[' . $sanitize_id . '][' . $sanitize_key . ']" type="checkbox" value="' . esc_attr( $sanitize_key ) . '" ' . checked( $sanitize_key, $enabled, false ) . '/> '; |
|
516 | - echo '<label for="wpinv_settings[' . $sanitize_id . '][' . $sanitize_key . ']">' . wp_kses_post( $option ) . '</label></div>'; |
|
515 | + echo '<div class="wpi-mcheck-row"><input name="wpinv_settings[' . $sanitize_id . '][' . $sanitize_key . ']" id="wpinv_settings[' . $sanitize_id . '][' . $sanitize_key . ']" type="checkbox" value="' . esc_attr($sanitize_key) . '" ' . checked($sanitize_key, $enabled, false) . '/> '; |
|
516 | + echo '<label for="wpinv_settings[' . $sanitize_id . '][' . $sanitize_key . ']">' . wp_kses_post($option) . '</label></div>'; |
|
517 | 517 | endforeach; |
518 | 518 | echo '</div>'; |
519 | 519 | echo '<p class="description">' . $args['desc'] . '</p>'; |
520 | 520 | } |
521 | 521 | } |
522 | 522 | |
523 | -function wpinv_payment_icons_callback( $args ) { |
|
523 | +function wpinv_payment_icons_callback($args) { |
|
524 | 524 | global $wpinv_options; |
525 | 525 | |
526 | - $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
|
526 | + $sanitize_id = wpinv_sanitize_key($args['id']); |
|
527 | 527 | |
528 | - if ( ! empty( $args['options'] ) ) { |
|
529 | - foreach( $args['options'] as $key => $option ) { |
|
530 | - $sanitize_key = wpinv_sanitize_key( $key ); |
|
528 | + if (!empty($args['options'])) { |
|
529 | + foreach ($args['options'] as $key => $option) { |
|
530 | + $sanitize_key = wpinv_sanitize_key($key); |
|
531 | 531 | |
532 | - if( isset( $wpinv_options[$args['id']][$key] ) ) { |
|
532 | + if (isset($wpinv_options[$args['id']][$key])) { |
|
533 | 533 | $enabled = $option; |
534 | 534 | } else { |
535 | 535 | $enabled = NULL; |
@@ -537,197 +537,197 @@ discard block |
||
537 | 537 | |
538 | 538 | echo '<label for="wpinv_settings[' . $sanitize_id . '][' . $sanitize_key . ']" style="margin-right:10px;line-height:16px;height:16px;display:inline-block;">'; |
539 | 539 | |
540 | - echo '<input name="wpinv_settings[' . $sanitize_id . '][' . $sanitize_key . ']" id="wpinv_settings[' . $sanitize_id . '][' . $sanitize_key . ']" type="checkbox" value="' . esc_attr( $option ) . '" ' . checked( $option, $enabled, false ) . '/> '; |
|
540 | + echo '<input name="wpinv_settings[' . $sanitize_id . '][' . $sanitize_key . ']" id="wpinv_settings[' . $sanitize_id . '][' . $sanitize_key . ']" type="checkbox" value="' . esc_attr($option) . '" ' . checked($option, $enabled, false) . '/> '; |
|
541 | 541 | |
542 | - if ( wpinv_string_is_image_url( $key ) ) { |
|
543 | - echo '<img class="payment-icon" src="' . esc_url( $key ) . '" style="width:32px;height:24px;position:relative;top:6px;margin-right:5px;"/>'; |
|
542 | + if (wpinv_string_is_image_url($key)) { |
|
543 | + echo '<img class="payment-icon" src="' . esc_url($key) . '" style="width:32px;height:24px;position:relative;top:6px;margin-right:5px;"/>'; |
|
544 | 544 | } else { |
545 | - $card = strtolower( str_replace( ' ', '', $option ) ); |
|
545 | + $card = strtolower(str_replace(' ', '', $option)); |
|
546 | 546 | |
547 | - if ( has_filter( 'wpinv_accepted_payment_' . $card . '_image' ) ) { |
|
548 | - $image = apply_filters( 'wpinv_accepted_payment_' . $card . '_image', '' ); |
|
547 | + if (has_filter('wpinv_accepted_payment_' . $card . '_image')) { |
|
548 | + $image = apply_filters('wpinv_accepted_payment_' . $card . '_image', ''); |
|
549 | 549 | } else { |
550 | - $image = wpinv_locate_template( 'images' . DIRECTORY_SEPARATOR . 'icons' . DIRECTORY_SEPARATOR . $card . '.gif', false ); |
|
550 | + $image = wpinv_locate_template('images' . DIRECTORY_SEPARATOR . 'icons' . DIRECTORY_SEPARATOR . $card . '.gif', false); |
|
551 | 551 | $content_dir = WP_CONTENT_DIR; |
552 | 552 | |
553 | - if ( function_exists( 'wp_normalize_path' ) ) { |
|
553 | + if (function_exists('wp_normalize_path')) { |
|
554 | 554 | // Replaces backslashes with forward slashes for Windows systems |
555 | - $image = wp_normalize_path( $image ); |
|
556 | - $content_dir = wp_normalize_path( $content_dir ); |
|
555 | + $image = wp_normalize_path($image); |
|
556 | + $content_dir = wp_normalize_path($content_dir); |
|
557 | 557 | } |
558 | 558 | |
559 | - $image = str_replace( $content_dir, content_url(), $image ); |
|
559 | + $image = str_replace($content_dir, content_url(), $image); |
|
560 | 560 | } |
561 | 561 | |
562 | - echo '<img class="payment-icon" src="' . esc_url( $image ) . '" style="width:32px;height:24px;position:relative;top:6px;margin-right:5px;"/>'; |
|
562 | + echo '<img class="payment-icon" src="' . esc_url($image) . '" style="width:32px;height:24px;position:relative;top:6px;margin-right:5px;"/>'; |
|
563 | 563 | } |
564 | 564 | echo $option . '</label>'; |
565 | 565 | } |
566 | - echo '<p class="description" style="margin-top:16px;">' . wp_kses_post( $args['desc'] ) . '</p>'; |
|
566 | + echo '<p class="description" style="margin-top:16px;">' . wp_kses_post($args['desc']) . '</p>'; |
|
567 | 567 | } |
568 | 568 | } |
569 | 569 | |
570 | -function wpinv_radio_callback( $args ) { |
|
570 | +function wpinv_radio_callback($args) { |
|
571 | 571 | global $wpinv_options; |
572 | 572 | |
573 | - $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
|
573 | + $sanitize_id = wpinv_sanitize_key($args['id']); |
|
574 | 574 | |
575 | - foreach ( $args['options'] as $key => $option ) : |
|
576 | - $sanitize_key = wpinv_sanitize_key( $key ); |
|
575 | + foreach ($args['options'] as $key => $option) : |
|
576 | + $sanitize_key = wpinv_sanitize_key($key); |
|
577 | 577 | |
578 | 578 | $checked = false; |
579 | 579 | |
580 | - if ( isset( $wpinv_options[ $args['id'] ] ) && $wpinv_options[ $args['id'] ] == $key ) |
|
580 | + if (isset($wpinv_options[$args['id']]) && $wpinv_options[$args['id']] == $key) |
|
581 | 581 | $checked = true; |
582 | - elseif( isset( $args['std'] ) && $args['std'] == $key && ! isset( $wpinv_options[ $args['id'] ] ) ) |
|
582 | + elseif (isset($args['std']) && $args['std'] == $key && !isset($wpinv_options[$args['id']])) |
|
583 | 583 | $checked = true; |
584 | 584 | |
585 | 585 | echo '<input name="wpinv_settings[' . $sanitize_id . ']" id="wpinv_settings[' . $sanitize_id . '][' . $sanitize_key . ']" type="radio" value="' . $sanitize_key . '" ' . checked(true, $checked, false) . '/> '; |
586 | - echo '<label for="wpinv_settings[' . $sanitize_id . '][' . $sanitize_key . ']">' . esc_html( $option ) . '</label><br/>'; |
|
586 | + echo '<label for="wpinv_settings[' . $sanitize_id . '][' . $sanitize_key . ']">' . esc_html($option) . '</label><br/>'; |
|
587 | 587 | endforeach; |
588 | 588 | |
589 | - echo '<p class="description">' . wp_kses_post( $args['desc'] ) . '</p>'; |
|
589 | + echo '<p class="description">' . wp_kses_post($args['desc']) . '</p>'; |
|
590 | 590 | } |
591 | 591 | |
592 | -function wpinv_gateways_callback( $args ) { |
|
592 | +function wpinv_gateways_callback($args) { |
|
593 | 593 | global $wpinv_options; |
594 | 594 | |
595 | - $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
|
595 | + $sanitize_id = wpinv_sanitize_key($args['id']); |
|
596 | 596 | |
597 | - foreach ( $args['options'] as $key => $option ) : |
|
598 | - $sanitize_key = wpinv_sanitize_key( $key ); |
|
597 | + foreach ($args['options'] as $key => $option) : |
|
598 | + $sanitize_key = wpinv_sanitize_key($key); |
|
599 | 599 | |
600 | - if ( isset( $wpinv_options['gateways'][ $key ] ) ) |
|
600 | + if (isset($wpinv_options['gateways'][$key])) |
|
601 | 601 | $enabled = '1'; |
602 | 602 | else |
603 | 603 | $enabled = null; |
604 | 604 | |
605 | - echo '<input name="wpinv_settings[' . esc_attr( $args['id'] ) . '][' . $sanitize_key . ']" id="wpinv_settings[' . $sanitize_id . '][' . $sanitize_key . ']" type="checkbox" value="1" ' . checked('1', $enabled, false) . '/> '; |
|
606 | - echo '<label for="wpinv_settings[' . $sanitize_id . '][' . $sanitize_key . ']">' . esc_html( $option['admin_label'] ) . '</label><br/>'; |
|
605 | + echo '<input name="wpinv_settings[' . esc_attr($args['id']) . '][' . $sanitize_key . ']" id="wpinv_settings[' . $sanitize_id . '][' . $sanitize_key . ']" type="checkbox" value="1" ' . checked('1', $enabled, false) . '/> '; |
|
606 | + echo '<label for="wpinv_settings[' . $sanitize_id . '][' . $sanitize_key . ']">' . esc_html($option['admin_label']) . '</label><br/>'; |
|
607 | 607 | endforeach; |
608 | 608 | } |
609 | 609 | |
610 | 610 | function wpinv_gateway_select_callback($args) { |
611 | 611 | global $wpinv_options; |
612 | 612 | |
613 | - $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
|
614 | - $class = !empty( $args['class'] ) ? ' ' . esc_attr( $args['class'] ) : ''; |
|
613 | + $sanitize_id = wpinv_sanitize_key($args['id']); |
|
614 | + $class = !empty($args['class']) ? ' ' . esc_attr($args['class']) : ''; |
|
615 | 615 | |
616 | - echo '<select name="wpinv_settings[' . $sanitize_id . ']"" id="wpinv_settings[' . $sanitize_id . ']" class="'.$class.'" >'; |
|
616 | + echo '<select name="wpinv_settings[' . $sanitize_id . ']"" id="wpinv_settings[' . $sanitize_id . ']" class="' . $class . '" >'; |
|
617 | 617 | |
618 | - foreach ( $args['options'] as $key => $option ) : |
|
619 | - if ( isset( $args['selected'] ) && $args['selected'] !== null && $args['selected'] !== false ) { |
|
620 | - $selected = selected( $key, $args['selected'], false ); |
|
618 | + foreach ($args['options'] as $key => $option) : |
|
619 | + if (isset($args['selected']) && $args['selected'] !== null && $args['selected'] !== false) { |
|
620 | + $selected = selected($key, $args['selected'], false); |
|
621 | 621 | } else { |
622 | - $selected = isset( $wpinv_options[ $args['id'] ] ) ? selected( $key, $wpinv_options[$args['id']], false ) : ''; |
|
622 | + $selected = isset($wpinv_options[$args['id']]) ? selected($key, $wpinv_options[$args['id']], false) : ''; |
|
623 | 623 | } |
624 | - echo '<option value="' . wpinv_sanitize_key( $key ) . '"' . $selected . '>' . esc_html( $option['admin_label'] ) . '</option>'; |
|
624 | + echo '<option value="' . wpinv_sanitize_key($key) . '"' . $selected . '>' . esc_html($option['admin_label']) . '</option>'; |
|
625 | 625 | endforeach; |
626 | 626 | |
627 | 627 | echo '</select>'; |
628 | - echo '<label for="wpinv_settings[' . $sanitize_id . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
628 | + echo '<label for="wpinv_settings[' . $sanitize_id . ']"> ' . wp_kses_post($args['desc']) . '</label>'; |
|
629 | 629 | } |
630 | 630 | |
631 | -function wpinv_text_callback( $args ) { |
|
631 | +function wpinv_text_callback($args) { |
|
632 | 632 | global $wpinv_options; |
633 | 633 | |
634 | - $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
|
634 | + $sanitize_id = wpinv_sanitize_key($args['id']); |
|
635 | 635 | |
636 | - if ( isset( $wpinv_options[ $args['id'] ] ) ) { |
|
637 | - $value = $wpinv_options[ $args['id'] ]; |
|
636 | + if (isset($wpinv_options[$args['id']])) { |
|
637 | + $value = $wpinv_options[$args['id']]; |
|
638 | 638 | } else { |
639 | - $value = isset( $args['std'] ) ? $args['std'] : ''; |
|
639 | + $value = isset($args['std']) ? $args['std'] : ''; |
|
640 | 640 | } |
641 | 641 | |
642 | - if ( isset( $args['faux'] ) && true === $args['faux'] ) { |
|
642 | + if (isset($args['faux']) && true === $args['faux']) { |
|
643 | 643 | $args['readonly'] = true; |
644 | - $value = isset( $args['std'] ) ? $args['std'] : ''; |
|
644 | + $value = isset($args['std']) ? $args['std'] : ''; |
|
645 | 645 | $name = ''; |
646 | 646 | } else { |
647 | - $name = 'name="wpinv_settings[' . esc_attr( $args['id'] ) . ']"'; |
|
647 | + $name = 'name="wpinv_settings[' . esc_attr($args['id']) . ']"'; |
|
648 | 648 | } |
649 | - $class = !empty( $args['class'] ) ? sanitize_html_class( $args['class'] ) : ''; |
|
649 | + $class = !empty($args['class']) ? sanitize_html_class($args['class']) : ''; |
|
650 | 650 | |
651 | 651 | $readonly = $args['readonly'] === true ? ' readonly="readonly"' : ''; |
652 | - $size = ( isset( $args['size'] ) && ! is_null( $args['size'] ) ) ? $args['size'] : 'regular'; |
|
653 | - $html = '<input type="text" class="' . sanitize_html_class( $size ) . '-text ' . $class . '" id="wpinv_settings[' . $sanitize_id . ']" ' . $name . ' value="' . esc_attr( stripslashes( $value ) ) . '"' . $readonly . '/>'; |
|
654 | - $html .= '<br /><label for="wpinv_settings[' . $sanitize_id . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
652 | + $size = (isset($args['size']) && !is_null($args['size'])) ? $args['size'] : 'regular'; |
|
653 | + $html = '<input type="text" class="' . sanitize_html_class($size) . '-text ' . $class . '" id="wpinv_settings[' . $sanitize_id . ']" ' . $name . ' value="' . esc_attr(stripslashes($value)) . '"' . $readonly . '/>'; |
|
654 | + $html .= '<br /><label for="wpinv_settings[' . $sanitize_id . ']"> ' . wp_kses_post($args['desc']) . '</label>'; |
|
655 | 655 | |
656 | 656 | echo $html; |
657 | 657 | } |
658 | 658 | |
659 | -function wpinv_number_callback( $args ) { |
|
659 | +function wpinv_number_callback($args) { |
|
660 | 660 | global $wpinv_options; |
661 | 661 | |
662 | - $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
|
662 | + $sanitize_id = wpinv_sanitize_key($args['id']); |
|
663 | 663 | |
664 | - if ( isset( $wpinv_options[ $args['id'] ] ) ) { |
|
665 | - $value = $wpinv_options[ $args['id'] ]; |
|
664 | + if (isset($wpinv_options[$args['id']])) { |
|
665 | + $value = $wpinv_options[$args['id']]; |
|
666 | 666 | } else { |
667 | - $value = isset( $args['std'] ) ? $args['std'] : ''; |
|
667 | + $value = isset($args['std']) ? $args['std'] : ''; |
|
668 | 668 | } |
669 | 669 | |
670 | - if ( isset( $args['faux'] ) && true === $args['faux'] ) { |
|
670 | + if (isset($args['faux']) && true === $args['faux']) { |
|
671 | 671 | $args['readonly'] = true; |
672 | - $value = isset( $args['std'] ) ? $args['std'] : ''; |
|
672 | + $value = isset($args['std']) ? $args['std'] : ''; |
|
673 | 673 | $name = ''; |
674 | 674 | } else { |
675 | - $name = 'name="wpinv_settings[' . esc_attr( $args['id'] ) . ']"'; |
|
675 | + $name = 'name="wpinv_settings[' . esc_attr($args['id']) . ']"'; |
|
676 | 676 | } |
677 | 677 | |
678 | - $max = isset( $args['max'] ) ? $args['max'] : 999999; |
|
679 | - $min = isset( $args['min'] ) ? $args['min'] : 0; |
|
680 | - $step = isset( $args['step'] ) ? $args['step'] : 1; |
|
681 | - $class = !empty( $args['class'] ) ? sanitize_html_class( $args['class'] ) : ''; |
|
678 | + $max = isset($args['max']) ? $args['max'] : 999999; |
|
679 | + $min = isset($args['min']) ? $args['min'] : 0; |
|
680 | + $step = isset($args['step']) ? $args['step'] : 1; |
|
681 | + $class = !empty($args['class']) ? sanitize_html_class($args['class']) : ''; |
|
682 | 682 | |
683 | - $size = ( isset( $args['size'] ) && ! is_null( $args['size'] ) ) ? $args['size'] : 'regular'; |
|
684 | - $html = '<input type="number" step="' . esc_attr( $step ) . '" max="' . esc_attr( $max ) . '" min="' . esc_attr( $min ) . '" class="' . sanitize_html_class( $size ) . '-text ' . $class . '" id="wpinv_settings[' . $sanitize_id . ']" ' . $name . ' value="' . esc_attr( stripslashes( $value ) ) . '"/>'; |
|
685 | - $html .= '<label for="wpinv_settings[' . $sanitize_id . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
683 | + $size = (isset($args['size']) && !is_null($args['size'])) ? $args['size'] : 'regular'; |
|
684 | + $html = '<input type="number" step="' . esc_attr($step) . '" max="' . esc_attr($max) . '" min="' . esc_attr($min) . '" class="' . sanitize_html_class($size) . '-text ' . $class . '" id="wpinv_settings[' . $sanitize_id . ']" ' . $name . ' value="' . esc_attr(stripslashes($value)) . '"/>'; |
|
685 | + $html .= '<label for="wpinv_settings[' . $sanitize_id . ']"> ' . wp_kses_post($args['desc']) . '</label>'; |
|
686 | 686 | |
687 | 687 | echo $html; |
688 | 688 | } |
689 | 689 | |
690 | -function wpinv_textarea_callback( $args ) { |
|
690 | +function wpinv_textarea_callback($args) { |
|
691 | 691 | global $wpinv_options; |
692 | 692 | |
693 | - $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
|
693 | + $sanitize_id = wpinv_sanitize_key($args['id']); |
|
694 | 694 | |
695 | - if ( isset( $wpinv_options[ $args['id'] ] ) ) { |
|
696 | - $value = $wpinv_options[ $args['id'] ]; |
|
695 | + if (isset($wpinv_options[$args['id']])) { |
|
696 | + $value = $wpinv_options[$args['id']]; |
|
697 | 697 | } else { |
698 | - $value = isset( $args['std'] ) ? $args['std'] : ''; |
|
698 | + $value = isset($args['std']) ? $args['std'] : ''; |
|
699 | 699 | } |
700 | 700 | |
701 | - $size = ( isset( $args['size'] ) && ! is_null( $args['size'] ) ) ? $args['size'] : 'regular'; |
|
702 | - $class = ( isset( $args['class'] ) && ! is_null( $args['class'] ) ) ? $args['class'] : 'large-text'; |
|
701 | + $size = (isset($args['size']) && !is_null($args['size'])) ? $args['size'] : 'regular'; |
|
702 | + $class = (isset($args['class']) && !is_null($args['class'])) ? $args['class'] : 'large-text'; |
|
703 | 703 | |
704 | - $html = '<textarea class="' . sanitize_html_class( $class ) . ' txtarea-' . sanitize_html_class( $size ) . ' wpi-' . esc_attr( sanitize_html_class( $sanitize_id ) ) . ' " cols="' . $args['cols'] . '" rows="' . $args['rows'] . '" id="wpinv_settings[' . $sanitize_id . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']">' . esc_textarea( stripslashes( $value ) ) . '</textarea>'; |
|
705 | - $html .= '<br /><label for="wpinv_settings[' . $sanitize_id . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
704 | + $html = '<textarea class="' . sanitize_html_class($class) . ' txtarea-' . sanitize_html_class($size) . ' wpi-' . esc_attr(sanitize_html_class($sanitize_id)) . ' " cols="' . $args['cols'] . '" rows="' . $args['rows'] . '" id="wpinv_settings[' . $sanitize_id . ']" name="wpinv_settings[' . esc_attr($args['id']) . ']">' . esc_textarea(stripslashes($value)) . '</textarea>'; |
|
705 | + $html .= '<br /><label for="wpinv_settings[' . $sanitize_id . ']"> ' . wp_kses_post($args['desc']) . '</label>'; |
|
706 | 706 | |
707 | 707 | echo $html; |
708 | 708 | } |
709 | 709 | |
710 | -function wpinv_password_callback( $args ) { |
|
710 | +function wpinv_password_callback($args) { |
|
711 | 711 | global $wpinv_options; |
712 | 712 | |
713 | - $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
|
713 | + $sanitize_id = wpinv_sanitize_key($args['id']); |
|
714 | 714 | |
715 | - if ( isset( $wpinv_options[ $args['id'] ] ) ) { |
|
716 | - $value = $wpinv_options[ $args['id'] ]; |
|
715 | + if (isset($wpinv_options[$args['id']])) { |
|
716 | + $value = $wpinv_options[$args['id']]; |
|
717 | 717 | } else { |
718 | - $value = isset( $args['std'] ) ? $args['std'] : ''; |
|
718 | + $value = isset($args['std']) ? $args['std'] : ''; |
|
719 | 719 | } |
720 | 720 | |
721 | - $size = ( isset( $args['size'] ) && ! is_null( $args['size'] ) ) ? $args['size'] : 'regular'; |
|
722 | - $html = '<input type="password" class="' . sanitize_html_class( $size ) . '-text" id="wpinv_settings[' . $sanitize_id . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" value="' . esc_attr( $value ) . '"/>'; |
|
723 | - $html .= '<label for="wpinv_settings[' . $sanitize_id . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
721 | + $size = (isset($args['size']) && !is_null($args['size'])) ? $args['size'] : 'regular'; |
|
722 | + $html = '<input type="password" class="' . sanitize_html_class($size) . '-text" id="wpinv_settings[' . $sanitize_id . ']" name="wpinv_settings[' . esc_attr($args['id']) . ']" value="' . esc_attr($value) . '"/>'; |
|
723 | + $html .= '<label for="wpinv_settings[' . $sanitize_id . ']"> ' . wp_kses_post($args['desc']) . '</label>'; |
|
724 | 724 | |
725 | 725 | echo $html; |
726 | 726 | } |
727 | 727 | |
728 | 728 | function wpinv_missing_callback($args) { |
729 | 729 | printf( |
730 | - __( 'The callback function used for the %s setting is missing.', 'invoicing' ), |
|
730 | + __('The callback function used for the %s setting is missing.', 'invoicing'), |
|
731 | 731 | '<strong>' . $args['id'] . '</strong>' |
732 | 732 | ); |
733 | 733 | } |
@@ -735,134 +735,134 @@ discard block |
||
735 | 735 | function wpinv_select_callback($args) { |
736 | 736 | global $wpinv_options; |
737 | 737 | |
738 | - $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
|
738 | + $sanitize_id = wpinv_sanitize_key($args['id']); |
|
739 | 739 | |
740 | - if ( isset( $wpinv_options[ $args['id'] ] ) ) { |
|
741 | - $value = $wpinv_options[ $args['id'] ]; |
|
740 | + if (isset($wpinv_options[$args['id']])) { |
|
741 | + $value = $wpinv_options[$args['id']]; |
|
742 | 742 | } else { |
743 | - $value = isset( $args['std'] ) ? $args['std'] : ''; |
|
743 | + $value = isset($args['std']) ? $args['std'] : ''; |
|
744 | 744 | } |
745 | 745 | |
746 | - if ( isset( $args['selected'] ) && $args['selected'] !== null && $args['selected'] !== false ) { |
|
746 | + if (isset($args['selected']) && $args['selected'] !== null && $args['selected'] !== false) { |
|
747 | 747 | $value = $args['selected']; |
748 | 748 | } |
749 | 749 | |
750 | - if ( isset( $args['placeholder'] ) ) { |
|
750 | + if (isset($args['placeholder'])) { |
|
751 | 751 | $placeholder = $args['placeholder']; |
752 | 752 | } else { |
753 | 753 | $placeholder = ''; |
754 | 754 | } |
755 | 755 | |
756 | - if( !empty( $args['onchange'] ) ) { |
|
757 | - $onchange = ' onchange="' . esc_attr( $args['onchange'] ) . '"'; |
|
756 | + if (!empty($args['onchange'])) { |
|
757 | + $onchange = ' onchange="' . esc_attr($args['onchange']) . '"'; |
|
758 | 758 | } else { |
759 | 759 | $onchange = ''; |
760 | 760 | } |
761 | 761 | |
762 | - $class = !empty( $args['class'] ) ? ' ' . esc_attr( $args['class'] ) : ''; |
|
762 | + $class = !empty($args['class']) ? ' ' . esc_attr($args['class']) : ''; |
|
763 | 763 | |
764 | - $html = '<select id="wpinv_settings[' . $sanitize_id . ']" class="'.$class.'" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" data-placeholder="' . esc_html( $placeholder ) . '"' . $onchange . ' />'; |
|
764 | + $html = '<select id="wpinv_settings[' . $sanitize_id . ']" class="' . $class . '" name="wpinv_settings[' . esc_attr($args['id']) . ']" data-placeholder="' . esc_html($placeholder) . '"' . $onchange . ' />'; |
|
765 | 765 | |
766 | - foreach ( $args['options'] as $option => $name ) { |
|
767 | - $selected = selected( $option, $value, false ); |
|
768 | - $html .= '<option value="' . esc_attr( $option ) . '" ' . $selected . '>' . esc_html( $name ) . '</option>'; |
|
766 | + foreach ($args['options'] as $option => $name) { |
|
767 | + $selected = selected($option, $value, false); |
|
768 | + $html .= '<option value="' . esc_attr($option) . '" ' . $selected . '>' . esc_html($name) . '</option>'; |
|
769 | 769 | } |
770 | 770 | |
771 | 771 | $html .= '</select>'; |
772 | - $html .= '<label for="wpinv_settings[' . $sanitize_id . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
772 | + $html .= '<label for="wpinv_settings[' . $sanitize_id . ']"> ' . wp_kses_post($args['desc']) . '</label>'; |
|
773 | 773 | |
774 | 774 | echo $html; |
775 | 775 | } |
776 | 776 | |
777 | -function wpinv_color_select_callback( $args ) { |
|
777 | +function wpinv_color_select_callback($args) { |
|
778 | 778 | global $wpinv_options; |
779 | 779 | |
780 | - $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
|
780 | + $sanitize_id = wpinv_sanitize_key($args['id']); |
|
781 | 781 | |
782 | - if ( isset( $wpinv_options[ $args['id'] ] ) ) { |
|
783 | - $value = $wpinv_options[ $args['id'] ]; |
|
782 | + if (isset($wpinv_options[$args['id']])) { |
|
783 | + $value = $wpinv_options[$args['id']]; |
|
784 | 784 | } else { |
785 | - $value = isset( $args['std'] ) ? $args['std'] : ''; |
|
785 | + $value = isset($args['std']) ? $args['std'] : ''; |
|
786 | 786 | } |
787 | 787 | |
788 | - $html = '<select id="wpinv_settings[' . $sanitize_id . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']"/>'; |
|
788 | + $html = '<select id="wpinv_settings[' . $sanitize_id . ']" name="wpinv_settings[' . esc_attr($args['id']) . ']"/>'; |
|
789 | 789 | |
790 | - foreach ( $args['options'] as $option => $color ) { |
|
791 | - $selected = selected( $option, $value, false ); |
|
792 | - $html .= '<option value="' . esc_attr( $option ) . '" ' . $selected . '>' . esc_html( $color['label'] ) . '</option>'; |
|
790 | + foreach ($args['options'] as $option => $color) { |
|
791 | + $selected = selected($option, $value, false); |
|
792 | + $html .= '<option value="' . esc_attr($option) . '" ' . $selected . '>' . esc_html($color['label']) . '</option>'; |
|
793 | 793 | } |
794 | 794 | |
795 | 795 | $html .= '</select>'; |
796 | - $html .= '<label for="wpinv_settings[' . $sanitize_id . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
796 | + $html .= '<label for="wpinv_settings[' . $sanitize_id . ']"> ' . wp_kses_post($args['desc']) . '</label>'; |
|
797 | 797 | |
798 | 798 | echo $html; |
799 | 799 | } |
800 | 800 | |
801 | -function wpinv_rich_editor_callback( $args ) { |
|
801 | +function wpinv_rich_editor_callback($args) { |
|
802 | 802 | global $wpinv_options, $wp_version; |
803 | 803 | |
804 | - $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
|
804 | + $sanitize_id = wpinv_sanitize_key($args['id']); |
|
805 | 805 | |
806 | - if ( isset( $wpinv_options[ $args['id'] ] ) ) { |
|
807 | - $value = $wpinv_options[ $args['id'] ]; |
|
806 | + if (isset($wpinv_options[$args['id']])) { |
|
807 | + $value = $wpinv_options[$args['id']]; |
|
808 | 808 | |
809 | - if( empty( $args['allow_blank'] ) && empty( $value ) ) { |
|
810 | - $value = isset( $args['std'] ) ? $args['std'] : ''; |
|
809 | + if (empty($args['allow_blank']) && empty($value)) { |
|
810 | + $value = isset($args['std']) ? $args['std'] : ''; |
|
811 | 811 | } |
812 | 812 | } else { |
813 | - $value = isset( $args['std'] ) ? $args['std'] : ''; |
|
813 | + $value = isset($args['std']) ? $args['std'] : ''; |
|
814 | 814 | } |
815 | 815 | |
816 | - $rows = isset( $args['size'] ) ? $args['size'] : 20; |
|
816 | + $rows = isset($args['size']) ? $args['size'] : 20; |
|
817 | 817 | |
818 | 818 | $html = '<div class="getpaid-settings-editor-input">'; |
819 | - if ( $wp_version >= 3.3 && function_exists( 'wp_editor' ) ) { |
|
819 | + if ($wp_version >= 3.3 && function_exists('wp_editor')) { |
|
820 | 820 | ob_start(); |
821 | - wp_editor( stripslashes( $value ), 'wpinv_settings_' . esc_attr( $args['id'] ), array( 'textarea_name' => 'wpinv_settings[' . esc_attr( $args['id'] ) . ']', 'textarea_rows' => absint( $rows ), 'media_buttons' => false ) ); |
|
821 | + wp_editor(stripslashes($value), 'wpinv_settings_' . esc_attr($args['id']), array('textarea_name' => 'wpinv_settings[' . esc_attr($args['id']) . ']', 'textarea_rows' => absint($rows), 'media_buttons' => false)); |
|
822 | 822 | $html .= ob_get_clean(); |
823 | 823 | } else { |
824 | - $html .= '<textarea class="large-text" rows="10" id="wpinv_settings[' . $sanitize_id . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" class="wpi-' . esc_attr( sanitize_html_class( $args['id'] ) ) . '">' . esc_textarea( stripslashes( $value ) ) . '</textarea>'; |
|
824 | + $html .= '<textarea class="large-text" rows="10" id="wpinv_settings[' . $sanitize_id . ']" name="wpinv_settings[' . esc_attr($args['id']) . ']" class="wpi-' . esc_attr(sanitize_html_class($args['id'])) . '">' . esc_textarea(stripslashes($value)) . '</textarea>'; |
|
825 | 825 | } |
826 | 826 | |
827 | - $html .= '</div><br/><label for="wpinv_settings[' . $sanitize_id . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
827 | + $html .= '</div><br/><label for="wpinv_settings[' . $sanitize_id . ']"> ' . wp_kses_post($args['desc']) . '</label>'; |
|
828 | 828 | |
829 | 829 | echo $html; |
830 | 830 | } |
831 | 831 | |
832 | -function wpinv_upload_callback( $args ) { |
|
832 | +function wpinv_upload_callback($args) { |
|
833 | 833 | global $wpinv_options; |
834 | 834 | |
835 | - $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
|
835 | + $sanitize_id = wpinv_sanitize_key($args['id']); |
|
836 | 836 | |
837 | - if ( isset( $wpinv_options[ $args['id'] ] ) ) { |
|
837 | + if (isset($wpinv_options[$args['id']])) { |
|
838 | 838 | $value = $wpinv_options[$args['id']]; |
839 | 839 | } else { |
840 | 840 | $value = isset($args['std']) ? $args['std'] : ''; |
841 | 841 | } |
842 | 842 | |
843 | - $size = ( isset( $args['size'] ) && ! is_null( $args['size'] ) ) ? $args['size'] : 'regular'; |
|
844 | - $html = '<input type="text" class="' . sanitize_html_class( $size ) . '-text" id="wpinv_settings[' . $sanitize_id . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" value="' . esc_attr( stripslashes( $value ) ) . '"/>'; |
|
845 | - $html .= '<span> <input type="button" class="wpinv_settings_upload_button button-secondary" value="' . __( 'Upload File', 'invoicing' ) . '"/></span>'; |
|
846 | - $html .= '<label for="wpinv_settings[' . $sanitize_id . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
843 | + $size = (isset($args['size']) && !is_null($args['size'])) ? $args['size'] : 'regular'; |
|
844 | + $html = '<input type="text" class="' . sanitize_html_class($size) . '-text" id="wpinv_settings[' . $sanitize_id . ']" name="wpinv_settings[' . esc_attr($args['id']) . ']" value="' . esc_attr(stripslashes($value)) . '"/>'; |
|
845 | + $html .= '<span> <input type="button" class="wpinv_settings_upload_button button-secondary" value="' . __('Upload File', 'invoicing') . '"/></span>'; |
|
846 | + $html .= '<label for="wpinv_settings[' . $sanitize_id . ']"> ' . wp_kses_post($args['desc']) . '</label>'; |
|
847 | 847 | |
848 | 848 | echo $html; |
849 | 849 | } |
850 | 850 | |
851 | -function wpinv_color_callback( $args ) { |
|
851 | +function wpinv_color_callback($args) { |
|
852 | 852 | global $wpinv_options; |
853 | 853 | |
854 | - $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
|
854 | + $sanitize_id = wpinv_sanitize_key($args['id']); |
|
855 | 855 | |
856 | - if ( isset( $wpinv_options[ $args['id'] ] ) ) { |
|
857 | - $value = $wpinv_options[ $args['id'] ]; |
|
856 | + if (isset($wpinv_options[$args['id']])) { |
|
857 | + $value = $wpinv_options[$args['id']]; |
|
858 | 858 | } else { |
859 | - $value = isset( $args['std'] ) ? $args['std'] : ''; |
|
859 | + $value = isset($args['std']) ? $args['std'] : ''; |
|
860 | 860 | } |
861 | 861 | |
862 | - $default = isset( $args['std'] ) ? $args['std'] : ''; |
|
862 | + $default = isset($args['std']) ? $args['std'] : ''; |
|
863 | 863 | |
864 | - $html = '<input type="text" class="wpinv-color-picker" id="wpinv_settings[' . $sanitize_id . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" value="' . esc_attr( $value ) . '" data-default-color="' . esc_attr( $default ) . '" />'; |
|
865 | - $html .= '<label for="wpinv_settings[' . $sanitize_id . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
864 | + $html = '<input type="text" class="wpinv-color-picker" id="wpinv_settings[' . $sanitize_id . ']" name="wpinv_settings[' . esc_attr($args['id']) . ']" value="' . esc_attr($value) . '" data-default-color="' . esc_attr($default) . '" />'; |
|
865 | + $html .= '<label for="wpinv_settings[' . $sanitize_id . ']"> ' . wp_kses_post($args['desc']) . '</label>'; |
|
866 | 866 | |
867 | 867 | echo $html; |
868 | 868 | } |
@@ -870,9 +870,9 @@ discard block |
||
870 | 870 | function wpinv_country_states_callback($args) { |
871 | 871 | global $wpinv_options; |
872 | 872 | |
873 | - $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
|
873 | + $sanitize_id = wpinv_sanitize_key($args['id']); |
|
874 | 874 | |
875 | - if ( isset( $args['placeholder'] ) ) { |
|
875 | + if (isset($args['placeholder'])) { |
|
876 | 876 | $placeholder = $args['placeholder']; |
877 | 877 | } else { |
878 | 878 | $placeholder = ''; |
@@ -880,16 +880,16 @@ discard block |
||
880 | 880 | |
881 | 881 | $states = wpinv_get_country_states(); |
882 | 882 | |
883 | - $class = empty( $states ) ? ' class="wpinv-no-states"' : ' class="wpi_select2"'; |
|
884 | - $html = '<select id="wpinv_settings[' . $sanitize_id . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']"' . $class . 'data-placeholder="' . esc_html( $placeholder ) . '"/>'; |
|
883 | + $class = empty($states) ? ' class="wpinv-no-states"' : ' class="wpi_select2"'; |
|
884 | + $html = '<select id="wpinv_settings[' . $sanitize_id . ']" name="wpinv_settings[' . esc_attr($args['id']) . ']"' . $class . 'data-placeholder="' . esc_html($placeholder) . '"/>'; |
|
885 | 885 | |
886 | - foreach ( $states as $option => $name ) { |
|
887 | - $selected = isset( $wpinv_options[ $args['id'] ] ) ? selected( $option, $wpinv_options[$args['id']], false ) : ''; |
|
888 | - $html .= '<option value="' . esc_attr( $option ) . '" ' . $selected . '>' . esc_html( $name ) . '</option>'; |
|
886 | + foreach ($states as $option => $name) { |
|
887 | + $selected = isset($wpinv_options[$args['id']]) ? selected($option, $wpinv_options[$args['id']], false) : ''; |
|
888 | + $html .= '<option value="' . esc_attr($option) . '" ' . $selected . '>' . esc_html($name) . '</option>'; |
|
889 | 889 | } |
890 | 890 | |
891 | 891 | $html .= '</select>'; |
892 | - $html .= '<label for="wpinv_settings[' . $sanitize_id . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
892 | + $html .= '<label for="wpinv_settings[' . $sanitize_id . ']"> ' . wp_kses_post($args['desc']) . '</label>'; |
|
893 | 893 | |
894 | 894 | echo $html; |
895 | 895 | } |
@@ -904,96 +904,96 @@ discard block |
||
904 | 904 | <table id="wpinv_tax_rates" class="wp-list-table widefat fixed posts"> |
905 | 905 | <thead> |
906 | 906 | <tr> |
907 | - <th scope="col" class="wpinv_tax_country"><?php _e( 'Country', 'invoicing' ); ?></th> |
|
908 | - <th scope="col" class="wpinv_tax_state"><?php _e( 'State / Province', 'invoicing' ); ?></th> |
|
909 | - <th scope="col" class="wpinv_tax_global" title="<?php esc_attr_e( 'Apply rate to whole country, regardless of state / province', 'invoicing' ); ?>"><?php _e( 'Country Wide', 'invoicing' ); ?></th> |
|
910 | - <th scope="col" class="wpinv_tax_rate"><?php _e( 'Rate %', 'invoicing' ); ?></th> |
|
911 | - <th scope="col" class="wpinv_tax_name"><?php _e( 'Tax Name', 'invoicing' ); ?></th> |
|
912 | - <th scope="col" class="wpinv_tax_action"><?php _e( 'Remove', 'invoicing' ); ?></th> |
|
907 | + <th scope="col" class="wpinv_tax_country"><?php _e('Country', 'invoicing'); ?></th> |
|
908 | + <th scope="col" class="wpinv_tax_state"><?php _e('State / Province', 'invoicing'); ?></th> |
|
909 | + <th scope="col" class="wpinv_tax_global" title="<?php esc_attr_e('Apply rate to whole country, regardless of state / province', 'invoicing'); ?>"><?php _e('Country Wide', 'invoicing'); ?></th> |
|
910 | + <th scope="col" class="wpinv_tax_rate"><?php _e('Rate %', 'invoicing'); ?></th> |
|
911 | + <th scope="col" class="wpinv_tax_name"><?php _e('Tax Name', 'invoicing'); ?></th> |
|
912 | + <th scope="col" class="wpinv_tax_action"><?php _e('Remove', 'invoicing'); ?></th> |
|
913 | 913 | </tr> |
914 | 914 | </thead> |
915 | 915 | <tbody> |
916 | - <?php if( !empty( $rates ) ) : ?> |
|
917 | - <?php foreach( $rates as $key => $rate ) : ?> |
|
916 | + <?php if (!empty($rates)) : ?> |
|
917 | + <?php foreach ($rates as $key => $rate) : ?> |
|
918 | 918 | <?php |
919 | - $sanitized_key = wpinv_sanitize_key( $key ); |
|
919 | + $sanitized_key = wpinv_sanitize_key($key); |
|
920 | 920 | ?> |
921 | 921 | <tr> |
922 | 922 | <td class="wpinv_tax_country"> |
923 | 923 | <?php |
924 | - echo wpinv_html_select( array( |
|
925 | - 'options' => wpinv_get_country_list( true ), |
|
924 | + echo wpinv_html_select(array( |
|
925 | + 'options' => wpinv_get_country_list(true), |
|
926 | 926 | 'name' => 'tax_rates[' . $sanitized_key . '][country]', |
927 | 927 | 'id' => 'tax_rates[' . $sanitized_key . '][country]', |
928 | 928 | 'selected' => $rate['country'], |
929 | 929 | 'show_option_all' => false, |
930 | 930 | 'show_option_none' => false, |
931 | 931 | 'class' => 'wpinv-tax-country wpi_select2', |
932 | - 'placeholder' => __( 'Choose a country', 'invoicing' ) |
|
933 | - ) ); |
|
932 | + 'placeholder' => __('Choose a country', 'invoicing') |
|
933 | + )); |
|
934 | 934 | ?> |
935 | 935 | </td> |
936 | 936 | <td class="wpinv_tax_state"> |
937 | 937 | <?php |
938 | - $states = wpinv_get_country_states( $rate['country'] ); |
|
939 | - if( !empty( $states ) ) { |
|
940 | - echo wpinv_html_select( array( |
|
941 | - 'options' => array_merge( array( '' => '' ), $states ), |
|
938 | + $states = wpinv_get_country_states($rate['country']); |
|
939 | + if (!empty($states)) { |
|
940 | + echo wpinv_html_select(array( |
|
941 | + 'options' => array_merge(array('' => ''), $states), |
|
942 | 942 | 'name' => 'tax_rates[' . $sanitized_key . '][state]', |
943 | 943 | 'id' => 'tax_rates[' . $sanitized_key . '][state]', |
944 | 944 | 'selected' => $rate['state'], |
945 | 945 | 'show_option_all' => false, |
946 | 946 | 'show_option_none' => false, |
947 | 947 | 'class' => 'wpi_select2', |
948 | - 'placeholder' => __( 'Choose a state', 'invoicing' ) |
|
949 | - ) ); |
|
948 | + 'placeholder' => __('Choose a state', 'invoicing') |
|
949 | + )); |
|
950 | 950 | } else { |
951 | - echo wpinv_html_text( array( |
|
951 | + echo wpinv_html_text(array( |
|
952 | 952 | 'name' => 'tax_rates[' . $sanitized_key . '][state]', $rate['state'], |
953 | - 'value' => ! empty( $rate['state'] ) ? $rate['state'] : '', |
|
953 | + 'value' => !empty($rate['state']) ? $rate['state'] : '', |
|
954 | 954 | 'id' => 'tax_rates[' . $sanitized_key . '][state]', |
955 | - ) ); |
|
955 | + )); |
|
956 | 956 | } |
957 | 957 | ?> |
958 | 958 | </td> |
959 | 959 | <td class="wpinv_tax_global"> |
960 | - <input type="checkbox" name="tax_rates[<?php echo $sanitized_key; ?>][global]" id="tax_rates[<?php echo $sanitized_key; ?>][global]" value="1"<?php checked( true, ! empty( $rate['global'] ) ); ?>/> |
|
961 | - <label for="tax_rates[<?php echo $sanitized_key; ?>][global]"><?php _e( 'Apply to whole country', 'invoicing' ); ?></label> |
|
960 | + <input type="checkbox" name="tax_rates[<?php echo $sanitized_key; ?>][global]" id="tax_rates[<?php echo $sanitized_key; ?>][global]" value="1"<?php checked(true, !empty($rate['global'])); ?>/> |
|
961 | + <label for="tax_rates[<?php echo $sanitized_key; ?>][global]"><?php _e('Apply to whole country', 'invoicing'); ?></label> |
|
962 | 962 | </td> |
963 | - <td class="wpinv_tax_rate"><input type="number" class="small-text" step="any" min="0" max="99" name="tax_rates[<?php echo $sanitized_key; ?>][rate]" value="<?php echo esc_html( $rate['rate'] ); ?>"/></td> |
|
964 | - <td class="wpinv_tax_name"><input type="text" class="regular-text" name="tax_rates[<?php echo $sanitized_key; ?>][name]" value="<?php echo esc_html( $rate['name'] ); ?>"/></td> |
|
965 | - <td class="wpinv_tax_action"><span class="wpinv_remove_tax_rate button-secondary"><?php _e( 'Remove Rate', 'invoicing' ); ?></span></td> |
|
963 | + <td class="wpinv_tax_rate"><input type="number" class="small-text" step="any" min="0" max="99" name="tax_rates[<?php echo $sanitized_key; ?>][rate]" value="<?php echo esc_html($rate['rate']); ?>"/></td> |
|
964 | + <td class="wpinv_tax_name"><input type="text" class="regular-text" name="tax_rates[<?php echo $sanitized_key; ?>][name]" value="<?php echo esc_html($rate['name']); ?>"/></td> |
|
965 | + <td class="wpinv_tax_action"><span class="wpinv_remove_tax_rate button-secondary"><?php _e('Remove Rate', 'invoicing'); ?></span></td> |
|
966 | 966 | </tr> |
967 | 967 | <?php endforeach; ?> |
968 | 968 | <?php else : ?> |
969 | 969 | <tr> |
970 | 970 | <td class="wpinv_tax_country"> |
971 | 971 | <?php |
972 | - echo wpinv_html_select( array( |
|
973 | - 'options' => wpinv_get_country_list( true ), |
|
972 | + echo wpinv_html_select(array( |
|
973 | + 'options' => wpinv_get_country_list(true), |
|
974 | 974 | 'name' => 'tax_rates[0][country]', |
975 | 975 | 'show_option_all' => false, |
976 | 976 | 'show_option_none' => false, |
977 | 977 | 'class' => 'wpinv-tax-country wpi_select2', |
978 | - 'placeholder' => __( 'Choose a country', 'invoicing' ) |
|
979 | - ) ); ?> |
|
978 | + 'placeholder' => __('Choose a country', 'invoicing') |
|
979 | + )); ?> |
|
980 | 980 | </td> |
981 | 981 | <td class="wpinv_tax_state"> |
982 | - <?php echo wpinv_html_text( array( |
|
982 | + <?php echo wpinv_html_text(array( |
|
983 | 983 | 'name' => 'tax_rates[0][state]' |
984 | - ) ); ?> |
|
984 | + )); ?> |
|
985 | 985 | </td> |
986 | 986 | <td class="wpinv_tax_global"> |
987 | 987 | <input type="checkbox" name="tax_rates[0][global]" id="tax_rates[0][global]" value="1"/> |
988 | - <label for="tax_rates[0][global]"><?php _e( 'Apply to whole country', 'invoicing' ); ?></label> |
|
988 | + <label for="tax_rates[0][global]"><?php _e('Apply to whole country', 'invoicing'); ?></label> |
|
989 | 989 | </td> |
990 | - <td class="wpinv_tax_rate"><input type="number" class="small-text" step="any" min="0" max="99" name="tax_rates[0][rate]" placeholder="<?php echo (float)wpinv_get_option( 'tax_rate', 0 ) ;?>" value="<?php echo (float)wpinv_get_option( 'tax_rate', 0 ) ;?>"/></td> |
|
990 | + <td class="wpinv_tax_rate"><input type="number" class="small-text" step="any" min="0" max="99" name="tax_rates[0][rate]" placeholder="<?php echo (float) wpinv_get_option('tax_rate', 0); ?>" value="<?php echo (float) wpinv_get_option('tax_rate', 0); ?>"/></td> |
|
991 | 991 | <td class="wpinv_tax_name"><input type="text" class="regular-text" name="tax_rates[0][name]" /></td> |
992 | - <td><span class="wpinv_remove_tax_rate button-secondary"><?php _e( 'Remove Rate', 'invoicing' ); ?></span></td> |
|
992 | + <td><span class="wpinv_remove_tax_rate button-secondary"><?php _e('Remove Rate', 'invoicing'); ?></span></td> |
|
993 | 993 | </tr> |
994 | 994 | <?php endif; ?> |
995 | 995 | </tbody> |
996 | - <tfoot><tr><td colspan="5"></td><td class="wpinv_tax_action"><span class="button-secondary" id="wpinv_add_tax_rate"><?php _e( 'Add Tax Rate', 'invoicing' ); ?></span></td></tr></tfoot> |
|
996 | + <tfoot><tr><td colspan="5"></td><td class="wpinv_tax_action"><span class="button-secondary" id="wpinv_add_tax_rate"><?php _e('Add Tax Rate', 'invoicing'); ?></span></td></tr></tfoot> |
|
997 | 997 | </table> |
998 | 998 | <?php |
999 | 999 | echo ob_get_clean(); |
@@ -1004,76 +1004,76 @@ discard block |
||
1004 | 1004 | ob_start(); ?> |
1005 | 1005 | </td><tr> |
1006 | 1006 | <td colspan="2" class="wpinv_tools_tdbox"> |
1007 | - <?php if ( $args['desc'] ) { ?><p><?php echo $args['desc']; ?></p><?php } ?> |
|
1008 | - <?php do_action( 'wpinv_tools_before' ); ?> |
|
1007 | + <?php if ($args['desc']) { ?><p><?php echo $args['desc']; ?></p><?php } ?> |
|
1008 | + <?php do_action('wpinv_tools_before'); ?> |
|
1009 | 1009 | <table id="wpinv_tools_table" class="wp-list-table widefat fixed posts"> |
1010 | 1010 | <thead> |
1011 | 1011 | <tr> |
1012 | - <th scope="col" class="wpinv-th-tool"><?php _e( 'Tool', 'invoicing' ); ?></th> |
|
1013 | - <th scope="col" class="wpinv-th-desc"><?php _e( 'Description', 'invoicing' ); ?></th> |
|
1014 | - <th scope="col" class="wpinv-th-action"><?php _e( 'Action', 'invoicing' ); ?></th> |
|
1012 | + <th scope="col" class="wpinv-th-tool"><?php _e('Tool', 'invoicing'); ?></th> |
|
1013 | + <th scope="col" class="wpinv-th-desc"><?php _e('Description', 'invoicing'); ?></th> |
|
1014 | + <th scope="col" class="wpinv-th-action"><?php _e('Action', 'invoicing'); ?></th> |
|
1015 | 1015 | </tr> |
1016 | 1016 | </thead> |
1017 | - <?php do_action( 'wpinv_tools_row' ); ?> |
|
1017 | + <?php do_action('wpinv_tools_row'); ?> |
|
1018 | 1018 | <tbody> |
1019 | 1019 | </tbody> |
1020 | 1020 | </table> |
1021 | - <?php do_action( 'wpinv_tools_after' ); ?> |
|
1021 | + <?php do_action('wpinv_tools_after'); ?> |
|
1022 | 1022 | <?php |
1023 | 1023 | echo ob_get_clean(); |
1024 | 1024 | } |
1025 | 1025 | |
1026 | -function wpinv_descriptive_text_callback( $args ) { |
|
1027 | - echo wp_kses_post( $args['desc'] ); |
|
1026 | +function wpinv_descriptive_text_callback($args) { |
|
1027 | + echo wp_kses_post($args['desc']); |
|
1028 | 1028 | } |
1029 | 1029 | |
1030 | -function wpinv_hook_callback( $args ) { |
|
1031 | - do_action( 'wpinv_' . $args['id'], $args ); |
|
1030 | +function wpinv_hook_callback($args) { |
|
1031 | + do_action('wpinv_' . $args['id'], $args); |
|
1032 | 1032 | } |
1033 | 1033 | |
1034 | 1034 | function wpinv_set_settings_cap() { |
1035 | 1035 | return wpinv_get_capability(); |
1036 | 1036 | } |
1037 | -add_filter( 'option_page_capability_wpinv_settings', 'wpinv_set_settings_cap' ); |
|
1037 | +add_filter('option_page_capability_wpinv_settings', 'wpinv_set_settings_cap'); |
|
1038 | 1038 | |
1039 | -function wpinv_settings_sanitize_input( $value, $key ) { |
|
1040 | - if ( $key == 'tax_rate' || $key == 'eu_fallback_rate' ) { |
|
1041 | - $value = wpinv_sanitize_amount( $value, 4 ); |
|
1039 | +function wpinv_settings_sanitize_input($value, $key) { |
|
1040 | + if ($key == 'tax_rate' || $key == 'eu_fallback_rate') { |
|
1041 | + $value = wpinv_sanitize_amount($value, 4); |
|
1042 | 1042 | $value = $value >= 100 ? 99 : $value; |
1043 | 1043 | } |
1044 | 1044 | |
1045 | 1045 | return $value; |
1046 | 1046 | } |
1047 | -add_filter( 'wpinv_settings_sanitize', 'wpinv_settings_sanitize_input', 10, 2 ); |
|
1047 | +add_filter('wpinv_settings_sanitize', 'wpinv_settings_sanitize_input', 10, 2); |
|
1048 | 1048 | |
1049 | -function wpinv_on_update_settings( $old_value, $value, $option ) { |
|
1050 | - $old = !empty( $old_value['remove_data_on_unistall'] ) ? 1 : ''; |
|
1051 | - $new = !empty( $value['remove_data_on_unistall'] ) ? 1 : ''; |
|
1049 | +function wpinv_on_update_settings($old_value, $value, $option) { |
|
1050 | + $old = !empty($old_value['remove_data_on_unistall']) ? 1 : ''; |
|
1051 | + $new = !empty($value['remove_data_on_unistall']) ? 1 : ''; |
|
1052 | 1052 | |
1053 | - if ( $old != $new ) { |
|
1054 | - update_option( 'wpinv_remove_data_on_invoice_unistall', $new ); |
|
1053 | + if ($old != $new) { |
|
1054 | + update_option('wpinv_remove_data_on_invoice_unistall', $new); |
|
1055 | 1055 | } |
1056 | 1056 | } |
1057 | -add_action( 'update_option_wpinv_settings', 'wpinv_on_update_settings', 10, 3 ); |
|
1058 | -add_action( 'wpinv_settings_tab_bottom_emails_new_invoice', 'wpinv_settings_tab_bottom_emails', 10, 2 ); |
|
1059 | -add_action( 'wpinv_settings_tab_bottom_emails_cancelled_invoice', 'wpinv_settings_tab_bottom_emails', 10, 2 ); |
|
1060 | -add_action( 'wpinv_settings_tab_bottom_emails_failed_invoice', 'wpinv_settings_tab_bottom_emails', 10, 2 ); |
|
1061 | -add_action( 'wpinv_settings_tab_bottom_emails_onhold_invoice', 'wpinv_settings_tab_bottom_emails', 10, 2 ); |
|
1062 | -add_action( 'wpinv_settings_tab_bottom_emails_processing_invoice', 'wpinv_settings_tab_bottom_emails', 10, 2 ); |
|
1063 | -add_action( 'wpinv_settings_tab_bottom_emails_completed_invoice', 'wpinv_settings_tab_bottom_emails', 10, 2 ); |
|
1064 | -add_action( 'wpinv_settings_tab_bottom_emails_refunded_invoice', 'wpinv_settings_tab_bottom_emails', 10, 2 ); |
|
1065 | -add_action( 'wpinv_settings_tab_bottom_emails_user_invoice', 'wpinv_settings_tab_bottom_emails', 10, 2 ); |
|
1066 | -add_action( 'wpinv_settings_tab_bottom_emails_user_note', 'wpinv_settings_tab_bottom_emails', 10, 2 ); |
|
1067 | -add_action( 'wpinv_settings_tab_bottom_emails_overdue', 'wpinv_settings_tab_bottom_emails', 10, 2 ); |
|
1068 | - |
|
1069 | -function wpinv_settings_tab_bottom_emails( $active_tab, $section ) { |
|
1057 | +add_action('update_option_wpinv_settings', 'wpinv_on_update_settings', 10, 3); |
|
1058 | +add_action('wpinv_settings_tab_bottom_emails_new_invoice', 'wpinv_settings_tab_bottom_emails', 10, 2); |
|
1059 | +add_action('wpinv_settings_tab_bottom_emails_cancelled_invoice', 'wpinv_settings_tab_bottom_emails', 10, 2); |
|
1060 | +add_action('wpinv_settings_tab_bottom_emails_failed_invoice', 'wpinv_settings_tab_bottom_emails', 10, 2); |
|
1061 | +add_action('wpinv_settings_tab_bottom_emails_onhold_invoice', 'wpinv_settings_tab_bottom_emails', 10, 2); |
|
1062 | +add_action('wpinv_settings_tab_bottom_emails_processing_invoice', 'wpinv_settings_tab_bottom_emails', 10, 2); |
|
1063 | +add_action('wpinv_settings_tab_bottom_emails_completed_invoice', 'wpinv_settings_tab_bottom_emails', 10, 2); |
|
1064 | +add_action('wpinv_settings_tab_bottom_emails_refunded_invoice', 'wpinv_settings_tab_bottom_emails', 10, 2); |
|
1065 | +add_action('wpinv_settings_tab_bottom_emails_user_invoice', 'wpinv_settings_tab_bottom_emails', 10, 2); |
|
1066 | +add_action('wpinv_settings_tab_bottom_emails_user_note', 'wpinv_settings_tab_bottom_emails', 10, 2); |
|
1067 | +add_action('wpinv_settings_tab_bottom_emails_overdue', 'wpinv_settings_tab_bottom_emails', 10, 2); |
|
1068 | + |
|
1069 | +function wpinv_settings_tab_bottom_emails($active_tab, $section) { |
|
1070 | 1070 | ?> |
1071 | 1071 | <div class="wpinv-email-wc-row "> |
1072 | 1072 | <div class="wpinv-email-wc-td"> |
1073 | - <h3 class="wpinv-email-wc-title"><?php echo apply_filters( 'wpinv_settings_email_wildcards_title', __( 'Wildcards For Emails', 'invoicing' ) ); ?></h3> |
|
1073 | + <h3 class="wpinv-email-wc-title"><?php echo apply_filters('wpinv_settings_email_wildcards_title', __('Wildcards For Emails', 'invoicing')); ?></h3> |
|
1074 | 1074 | <p class="wpinv-email-wc-description"> |
1075 | 1075 | <?php |
1076 | - $description = __( 'The following wildcards can be used in email subjects, heading and content:<br> |
|
1076 | + $description = __('The following wildcards can be used in email subjects, heading and content:<br> |
|
1077 | 1077 | <strong>{site_title} :</strong> Site Title<br> |
1078 | 1078 | <strong>{name} :</strong> Customer\'s full name<br> |
1079 | 1079 | <strong>{first_name} :</strong> Customer\'s first name<br> |
@@ -1087,7 +1087,7 @@ discard block |
||
1087 | 1087 | <strong>{invoice_due_date} :</strong> The date the invoice is due<br> |
1088 | 1088 | <strong>{date} :</strong> Today\'s date.<br> |
1089 | 1089 | <strong>{is_was} :</strong> If due date of invoice is past, displays "was" otherwise displays "is"<br> |
1090 | - <strong>{invoice_label} :</strong> Invoices/quotes singular name. Ex: Invoice/Quote<br>', 'invoicing' ); |
|
1090 | + <strong>{invoice_label} :</strong> Invoices/quotes singular name. Ex: Invoice/Quote<br>', 'invoicing'); |
|
1091 | 1091 | echo apply_filters('wpinv_settings_email_wildcards_description', $description, $active_tab, $section); |
1092 | 1092 | ?> |
1093 | 1093 | </p> |
@@ -1,16 +1,16 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | // MUST have WordPress. |
3 | -if ( !defined( 'WPINC' ) ) { |
|
4 | - exit( 'Do NOT access this file directly: ' . basename( __FILE__ ) ); |
|
3 | +if (!defined('WPINC')) { |
|
4 | + exit('Do NOT access this file directly: ' . basename(__FILE__)); |
|
5 | 5 | } |
6 | 6 | |
7 | -add_action( 'manage_wpi_discount_posts_custom_column', 'wpinv_discount_custom_column' ); |
|
8 | -function wpinv_discount_custom_column( $column ) { |
|
7 | +add_action('manage_wpi_discount_posts_custom_column', 'wpinv_discount_custom_column'); |
|
8 | +function wpinv_discount_custom_column($column) { |
|
9 | 9 | global $post; |
10 | 10 | |
11 | - $discount = new WPInv_Discount( $post ); |
|
11 | + $discount = new WPInv_Discount($post); |
|
12 | 12 | |
13 | - switch ( $column ) { |
|
13 | + switch ($column) { |
|
14 | 14 | case 'code' : |
15 | 15 | echo $discount->get_code(); |
16 | 16 | break; |
@@ -21,38 +21,38 @@ discard block |
||
21 | 21 | echo $discount->get_usage(); |
22 | 22 | break; |
23 | 23 | case 'start_date' : |
24 | - echo getpaid_format_date_value( $discount->get_start_date() ); |
|
24 | + echo getpaid_format_date_value($discount->get_start_date()); |
|
25 | 25 | break; |
26 | 26 | case 'expiry_date' : |
27 | - echo getpaid_format_date_value( $discount->get_expiration_date(), __( 'Never', 'invoicing' ) ); |
|
27 | + echo getpaid_format_date_value($discount->get_expiration_date(), __('Never', 'invoicing')); |
|
28 | 28 | break; |
29 | 29 | } |
30 | 30 | } |
31 | 31 | |
32 | -add_filter( 'post_row_actions', 'wpinv_post_row_actions', 9999, 2 ); |
|
33 | -function wpinv_post_row_actions( $actions, $post ) { |
|
34 | - $post_type = !empty( $post->post_type ) ? $post->post_type : ''; |
|
32 | +add_filter('post_row_actions', 'wpinv_post_row_actions', 9999, 2); |
|
33 | +function wpinv_post_row_actions($actions, $post) { |
|
34 | + $post_type = !empty($post->post_type) ? $post->post_type : ''; |
|
35 | 35 | |
36 | - if ( $post_type == 'wpi_invoice' ) { |
|
36 | + if ($post_type == 'wpi_invoice') { |
|
37 | 37 | $actions = array(); |
38 | 38 | } |
39 | 39 | |
40 | - if ( $post_type == 'wpi_discount' ) { |
|
41 | - $actions = wpinv_discount_row_actions( $post, $actions ); |
|
40 | + if ($post_type == 'wpi_discount') { |
|
41 | + $actions = wpinv_discount_row_actions($post, $actions); |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | return $actions; |
45 | 45 | } |
46 | 46 | |
47 | -function wpinv_discount_row_actions( $discount, $row_actions ) { |
|
48 | - $row_actions = array(); |
|
49 | - $edit_link = get_edit_post_link( $discount->ID ); |
|
50 | - $row_actions['edit'] = '<a href="' . esc_url( $edit_link ) . '">' . __( 'Edit', 'invoicing' ) . '</a>'; |
|
47 | +function wpinv_discount_row_actions($discount, $row_actions) { |
|
48 | + $row_actions = array(); |
|
49 | + $edit_link = get_edit_post_link($discount->ID); |
|
50 | + $row_actions['edit'] = '<a href="' . esc_url($edit_link) . '">' . __('Edit', 'invoicing') . '</a>'; |
|
51 | 51 | |
52 | - if( in_array( strtolower( $discount->post_status ), array( 'publish' ) ) ) { |
|
53 | - $row_actions['deactivate'] = '<a href="' . esc_url( wp_nonce_url( add_query_arg( array( 'wpi_action' => 'deactivate_discount', 'discount' => $discount->ID ) ), 'wpinv_discount_nonce' ) ) . '">' . __( 'Deactivate', 'invoicing' ) . '</a>'; |
|
54 | - } elseif( in_array( strtolower( $discount->post_status ), array( 'pending', 'draft' ) ) ) { |
|
55 | - $row_actions['activate'] = '<a href="' . esc_url( wp_nonce_url( add_query_arg( array( 'wpi_action' => 'activate_discount', 'discount' => $discount->ID ) ), 'wpinv_discount_nonce' ) ) . '">' . __( 'Activate', 'invoicing' ) . '</a>'; |
|
52 | + if (in_array(strtolower($discount->post_status), array('publish'))) { |
|
53 | + $row_actions['deactivate'] = '<a href="' . esc_url(wp_nonce_url(add_query_arg(array('wpi_action' => 'deactivate_discount', 'discount' => $discount->ID)), 'wpinv_discount_nonce')) . '">' . __('Deactivate', 'invoicing') . '</a>'; |
|
54 | + } elseif (in_array(strtolower($discount->post_status), array('pending', 'draft'))) { |
|
55 | + $row_actions['activate'] = '<a href="' . esc_url(wp_nonce_url(add_query_arg(array('wpi_action' => 'activate_discount', 'discount' => $discount->ID)), 'wpinv_discount_nonce')) . '">' . __('Activate', 'invoicing') . '</a>'; |
|
56 | 56 | } |
57 | 57 | |
58 | 58 | $delete_url = esc_url( |
@@ -66,110 +66,110 @@ discard block |
||
66 | 66 | 'wpinv_discount_nonce' |
67 | 67 | ) |
68 | 68 | ); |
69 | - $row_actions['delete'] = '<a href="' . $delete_url . '">' . __( 'Delete', 'invoicing' ) . '</a>'; |
|
69 | + $row_actions['delete'] = '<a href="' . $delete_url . '">' . __('Delete', 'invoicing') . '</a>'; |
|
70 | 70 | |
71 | - $row_actions = apply_filters( 'wpinv_discount_row_actions', $row_actions, $discount ); |
|
71 | + $row_actions = apply_filters('wpinv_discount_row_actions', $row_actions, $discount); |
|
72 | 72 | |
73 | 73 | return $row_actions; |
74 | 74 | } |
75 | 75 | |
76 | -add_filter( 'list_table_primary_column', 'wpinv_table_primary_column', 10, 2 ); |
|
77 | -function wpinv_table_primary_column( $default, $screen_id ) { |
|
78 | - if ( 'edit-wpi_invoice' === $screen_id ) { |
|
76 | +add_filter('list_table_primary_column', 'wpinv_table_primary_column', 10, 2); |
|
77 | +function wpinv_table_primary_column($default, $screen_id) { |
|
78 | + if ('edit-wpi_invoice' === $screen_id) { |
|
79 | 79 | return 'name'; |
80 | 80 | } |
81 | 81 | |
82 | 82 | return $default; |
83 | 83 | } |
84 | 84 | |
85 | -function wpinv_discount_bulk_actions( $actions, $display = false ) { |
|
86 | - if ( !$display ) { |
|
85 | +function wpinv_discount_bulk_actions($actions, $display = false) { |
|
86 | + if (!$display) { |
|
87 | 87 | return array(); |
88 | 88 | } |
89 | 89 | |
90 | 90 | $actions = array( |
91 | - 'activate' => __( 'Activate', 'invoicing' ), |
|
92 | - 'deactivate' => __( 'Deactivate', 'invoicing' ), |
|
93 | - 'delete' => __( 'Delete', 'invoicing' ), |
|
91 | + 'activate' => __('Activate', 'invoicing'), |
|
92 | + 'deactivate' => __('Deactivate', 'invoicing'), |
|
93 | + 'delete' => __('Delete', 'invoicing'), |
|
94 | 94 | ); |
95 | 95 | $two = ''; |
96 | 96 | $which = 'top'; |
97 | 97 | echo '</div><div class="alignleft actions bulkactions">'; |
98 | - echo '<label for="bulk-action-selector-' . esc_attr( $which ) . '" class="screen-reader-text">' . __( 'Select bulk action' ) . '</label>'; |
|
99 | - echo '<select name="action' . $two . '" id="bulk-action-selector-' . esc_attr( $which ) . "\">"; |
|
100 | - echo '<option value="-1">' . __( 'Bulk Actions' ) . "</option>"; |
|
98 | + echo '<label for="bulk-action-selector-' . esc_attr($which) . '" class="screen-reader-text">' . __('Select bulk action') . '</label>'; |
|
99 | + echo '<select name="action' . $two . '" id="bulk-action-selector-' . esc_attr($which) . "\">"; |
|
100 | + echo '<option value="-1">' . __('Bulk Actions') . "</option>"; |
|
101 | 101 | |
102 | - foreach ( $actions as $name => $title ) { |
|
102 | + foreach ($actions as $name => $title) { |
|
103 | 103 | $class = 'edit' === $name ? ' class="hide-if-no-js"' : ''; |
104 | 104 | |
105 | 105 | echo "" . '<option value="' . $name . '"' . $class . '>' . $title . "</option>"; |
106 | 106 | } |
107 | 107 | echo "</select>"; |
108 | 108 | |
109 | - submit_button( __( 'Apply' ), 'action', '', false, array( 'id' => "doaction$two" ) ); |
|
109 | + submit_button(__('Apply'), 'action', '', false, array('id' => "doaction$two")); |
|
110 | 110 | |
111 | 111 | echo '</div><div class="alignleft actions">'; |
112 | 112 | } |
113 | -add_filter( 'bulk_actions-edit-wpi_discount', 'wpinv_discount_bulk_actions', 10 ); |
|
113 | +add_filter('bulk_actions-edit-wpi_discount', 'wpinv_discount_bulk_actions', 10); |
|
114 | 114 | |
115 | -function wpinv_disable_months_dropdown( $disable, $post_type ) { |
|
116 | - if ( $post_type == 'wpi_discount' ) { |
|
115 | +function wpinv_disable_months_dropdown($disable, $post_type) { |
|
116 | + if ($post_type == 'wpi_discount') { |
|
117 | 117 | $disable = true; |
118 | 118 | } |
119 | 119 | |
120 | 120 | return $disable; |
121 | 121 | } |
122 | -add_filter( 'disable_months_dropdown', 'wpinv_disable_months_dropdown', 10, 2 ); |
|
122 | +add_filter('disable_months_dropdown', 'wpinv_disable_months_dropdown', 10, 2); |
|
123 | 123 | |
124 | 124 | function wpinv_restrict_manage_posts() { |
125 | 125 | global $typenow; |
126 | 126 | |
127 | - if( 'wpi_discount' == $typenow ) { |
|
127 | + if ('wpi_discount' == $typenow) { |
|
128 | 128 | wpinv_discount_filters(); |
129 | 129 | } |
130 | 130 | } |
131 | -add_action( 'restrict_manage_posts', 'wpinv_restrict_manage_posts', 10 ); |
|
131 | +add_action('restrict_manage_posts', 'wpinv_restrict_manage_posts', 10); |
|
132 | 132 | |
133 | 133 | function wpinv_discount_filters() { |
134 | - wpinv_discount_bulk_actions( array(), true ); |
|
134 | + wpinv_discount_bulk_actions(array(), true); |
|
135 | 135 | |
136 | 136 | ?> |
137 | 137 | <select name="discount_type" id="dropdown_wpinv_discount_type"> |
138 | - <option value=""><?php _e( 'Show all types', 'invoicing' ); ?></option> |
|
138 | + <option value=""><?php _e('Show all types', 'invoicing'); ?></option> |
|
139 | 139 | <?php |
140 | 140 | $types = wpinv_get_discount_types(); |
141 | 141 | |
142 | - foreach ( $types as $name => $type ) { |
|
143 | - echo '<option value="' . esc_attr( $name ) . '"'; |
|
142 | + foreach ($types as $name => $type) { |
|
143 | + echo '<option value="' . esc_attr($name) . '"'; |
|
144 | 144 | |
145 | - if ( isset( $_GET['discount_type'] ) ) |
|
146 | - selected( $name, $_GET['discount_type'] ); |
|
145 | + if (isset($_GET['discount_type'])) |
|
146 | + selected($name, $_GET['discount_type']); |
|
147 | 147 | |
148 | - echo '>' . esc_html__( $type, 'invoicing' ) . '</option>'; |
|
148 | + echo '>' . esc_html__($type, 'invoicing') . '</option>'; |
|
149 | 149 | } |
150 | 150 | ?> |
151 | 151 | </select> |
152 | 152 | <?php |
153 | 153 | } |
154 | 154 | |
155 | -function wpinv_request( $vars ) { |
|
155 | +function wpinv_request($vars) { |
|
156 | 156 | global $typenow, $wp_query, $wp_post_statuses; |
157 | 157 | |
158 | - if ( 'wpi_invoice' === $typenow ) { |
|
159 | - if ( !isset( $vars['post_status'] ) ) { |
|
158 | + if ('wpi_invoice' === $typenow) { |
|
159 | + if (!isset($vars['post_status'])) { |
|
160 | 160 | $post_statuses = wpinv_get_invoice_statuses(); |
161 | 161 | |
162 | - foreach ( $post_statuses as $status => $value ) { |
|
163 | - if ( isset( $wp_post_statuses[ $status ] ) && false === $wp_post_statuses[ $status ]->show_in_admin_all_list ) { |
|
164 | - unset( $post_statuses[ $status ] ); |
|
162 | + foreach ($post_statuses as $status => $value) { |
|
163 | + if (isset($wp_post_statuses[$status]) && false === $wp_post_statuses[$status]->show_in_admin_all_list) { |
|
164 | + unset($post_statuses[$status]); |
|
165 | 165 | } |
166 | 166 | } |
167 | 167 | |
168 | - $vars['post_status'] = array_keys( $post_statuses ); |
|
168 | + $vars['post_status'] = array_keys($post_statuses); |
|
169 | 169 | } |
170 | 170 | |
171 | - if ( isset( $vars['orderby'] ) ) { |
|
172 | - if ( 'amount' == $vars['orderby'] ) { |
|
171 | + if (isset($vars['orderby'])) { |
|
172 | + if ('amount' == $vars['orderby']) { |
|
173 | 173 | $vars = array_merge( |
174 | 174 | $vars, |
175 | 175 | array( |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | 'orderby' => 'meta_value_num' |
178 | 178 | ) |
179 | 179 | ); |
180 | - } else if ( 'customer' == $vars['orderby'] ) { |
|
180 | + } else if ('customer' == $vars['orderby']) { |
|
181 | 181 | $vars = array_merge( |
182 | 182 | $vars, |
183 | 183 | array( |
@@ -185,7 +185,7 @@ discard block |
||
185 | 185 | 'orderby' => 'meta_value' |
186 | 186 | ) |
187 | 187 | ); |
188 | - } else if ( 'number' == $vars['orderby'] ) { |
|
188 | + } else if ('number' == $vars['orderby']) { |
|
189 | 189 | $vars = array_merge( |
190 | 190 | $vars, |
191 | 191 | array( |
@@ -193,7 +193,7 @@ discard block |
||
193 | 193 | 'orderby' => 'meta_value' |
194 | 194 | ) |
195 | 195 | ); |
196 | - } else if ( 'payment_date' == $vars['orderby'] ) { |
|
196 | + } else if ('payment_date' == $vars['orderby']) { |
|
197 | 197 | $vars = array_merge( |
198 | 198 | $vars, |
199 | 199 | array( |
@@ -203,73 +203,73 @@ discard block |
||
203 | 203 | ); |
204 | 204 | } |
205 | 205 | } |
206 | - } else if ( 'wpi_discount' == $typenow ) { |
|
207 | - $meta_query = !empty( $vars['meta_query'] ) ? $vars['meta_query'] : array(); |
|
206 | + } else if ('wpi_discount' == $typenow) { |
|
207 | + $meta_query = !empty($vars['meta_query']) ? $vars['meta_query'] : array(); |
|
208 | 208 | // Filter vat rule type |
209 | - if ( isset( $_GET['discount_type'] ) && $_GET['discount_type'] !== '' ) { |
|
209 | + if (isset($_GET['discount_type']) && $_GET['discount_type'] !== '') { |
|
210 | 210 | $meta_query[] = array( |
211 | 211 | 'key' => '_wpi_discount_type', |
212 | - 'value' => sanitize_text_field( $_GET['discount_type'] ), |
|
212 | + 'value' => sanitize_text_field($_GET['discount_type']), |
|
213 | 213 | 'compare' => '=' |
214 | 214 | ); |
215 | 215 | } |
216 | 216 | |
217 | - if ( !empty( $meta_query ) ) { |
|
217 | + if (!empty($meta_query)) { |
|
218 | 218 | $vars['meta_query'] = $meta_query; |
219 | 219 | } |
220 | 220 | } |
221 | 221 | |
222 | 222 | return $vars; |
223 | 223 | } |
224 | -add_filter( 'request', 'wpinv_request' ); |
|
224 | +add_filter('request', 'wpinv_request'); |
|
225 | 225 | |
226 | -function wpinv_item_type_class( $classes, $class, $post_id ) { |
|
226 | +function wpinv_item_type_class($classes, $class, $post_id) { |
|
227 | 227 | global $pagenow, $typenow; |
228 | 228 | |
229 | - if ( $pagenow == 'edit.php' && $typenow == 'wpi_item' && get_post_type( $post_id ) == $typenow ) { |
|
230 | - if ( $type = get_post_meta( $post_id, '_wpinv_type', true ) ) { |
|
231 | - $classes[] = 'wpi-type-' . sanitize_html_class( $type ); |
|
229 | + if ($pagenow == 'edit.php' && $typenow == 'wpi_item' && get_post_type($post_id) == $typenow) { |
|
230 | + if ($type = get_post_meta($post_id, '_wpinv_type', true)) { |
|
231 | + $classes[] = 'wpi-type-' . sanitize_html_class($type); |
|
232 | 232 | } |
233 | 233 | |
234 | - if ( !wpinv_item_is_editable( $post_id ) ) { |
|
234 | + if (!wpinv_item_is_editable($post_id)) { |
|
235 | 235 | $classes[] = 'wpi-editable-n'; |
236 | 236 | } |
237 | 237 | } |
238 | 238 | return $classes; |
239 | 239 | } |
240 | -add_filter( 'post_class', 'wpinv_item_type_class', 10, 3 ); |
|
240 | +add_filter('post_class', 'wpinv_item_type_class', 10, 3); |
|
241 | 241 | |
242 | 242 | function wpinv_check_quick_edit() { |
243 | 243 | global $pagenow, $current_screen, $wpinv_item_screen; |
244 | 244 | |
245 | - if ( $pagenow == 'edit.php' && !empty( $current_screen->post_type ) ) { |
|
246 | - if ( empty( $wpinv_item_screen ) ) { |
|
247 | - if ( $current_screen->post_type == 'wpi_item' ) { |
|
245 | + if ($pagenow == 'edit.php' && !empty($current_screen->post_type)) { |
|
246 | + if (empty($wpinv_item_screen)) { |
|
247 | + if ($current_screen->post_type == 'wpi_item') { |
|
248 | 248 | $wpinv_item_screen = 'y'; |
249 | 249 | } else { |
250 | 250 | $wpinv_item_screen = 'n'; |
251 | 251 | } |
252 | 252 | } |
253 | 253 | |
254 | - if ( $wpinv_item_screen == 'y' && $pagenow == 'edit.php' ) { |
|
255 | - add_filter( 'post_row_actions', 'wpinv_item_disable_quick_edit', 10, 2 ); |
|
256 | - add_filter( 'page_row_actions', 'wpinv_item_disable_quick_edit', 10, 2 ); |
|
254 | + if ($wpinv_item_screen == 'y' && $pagenow == 'edit.php') { |
|
255 | + add_filter('post_row_actions', 'wpinv_item_disable_quick_edit', 10, 2); |
|
256 | + add_filter('page_row_actions', 'wpinv_item_disable_quick_edit', 10, 2); |
|
257 | 257 | } |
258 | 258 | } |
259 | 259 | } |
260 | -add_action( 'admin_head', 'wpinv_check_quick_edit', 10 ); |
|
260 | +add_action('admin_head', 'wpinv_check_quick_edit', 10); |
|
261 | 261 | |
262 | -function wpinv_item_disable_quick_edit( $actions = array(), $row = null ) { |
|
263 | - if ( isset( $actions['inline hide-if-no-js'] ) ) { |
|
264 | - unset( $actions['inline hide-if-no-js'] ); |
|
262 | +function wpinv_item_disable_quick_edit($actions = array(), $row = null) { |
|
263 | + if (isset($actions['inline hide-if-no-js'])) { |
|
264 | + unset($actions['inline hide-if-no-js']); |
|
265 | 265 | } |
266 | 266 | |
267 | - if ( !empty( $row->post_type ) && $row->post_type == 'wpi_item' && !wpinv_item_is_editable( $row ) ) { |
|
268 | - if ( isset( $actions['trash'] ) ) { |
|
269 | - unset( $actions['trash'] ); |
|
267 | + if (!empty($row->post_type) && $row->post_type == 'wpi_item' && !wpinv_item_is_editable($row)) { |
|
268 | + if (isset($actions['trash'])) { |
|
269 | + unset($actions['trash']); |
|
270 | 270 | } |
271 | - if ( isset( $actions['delete'] ) ) { |
|
272 | - unset( $actions['delete'] ); |
|
271 | + if (isset($actions['delete'])) { |
|
272 | + unset($actions['delete']); |
|
273 | 273 | } |
274 | 274 | } |
275 | 275 | |
@@ -286,19 +286,19 @@ discard block |
||
286 | 286 | * @param int $post_parent (default: 0) Parent for the new page |
287 | 287 | * @return int page ID |
288 | 288 | */ |
289 | -function wpinv_create_page( $slug, $option = '', $page_title = '', $page_content = '', $post_parent = 0 ) { |
|
289 | +function wpinv_create_page($slug, $option = '', $page_title = '', $page_content = '', $post_parent = 0) { |
|
290 | 290 | global $wpdb; |
291 | 291 | |
292 | - $option_value = wpinv_get_option( $option ); |
|
292 | + $option_value = wpinv_get_option($option); |
|
293 | 293 | |
294 | - if ( $option_value > 0 && ( $page_object = get_post( $option_value ) ) ) { |
|
295 | - if ( 'page' === $page_object->post_type && ! in_array( $page_object->post_status, array( 'pending', 'trash', 'future', 'auto-draft' ) ) ) { |
|
294 | + if ($option_value > 0 && ($page_object = get_post($option_value))) { |
|
295 | + if ('page' === $page_object->post_type && !in_array($page_object->post_status, array('pending', 'trash', 'future', 'auto-draft'))) { |
|
296 | 296 | // Valid page is already in place |
297 | 297 | return $page_object->ID; |
298 | 298 | } |
299 | 299 | } |
300 | 300 | |
301 | - if(!empty($post_parent)){ |
|
301 | + if (!empty($post_parent)) { |
|
302 | 302 | $page = get_page_by_path($post_parent); |
303 | 303 | if ($page) { |
304 | 304 | $post_parent = $page->ID; |
@@ -307,40 +307,40 @@ discard block |
||
307 | 307 | } |
308 | 308 | } |
309 | 309 | |
310 | - if ( strlen( $page_content ) > 0 ) { |
|
310 | + if (strlen($page_content) > 0) { |
|
311 | 311 | // Search for an existing page with the specified page content (typically a shortcode) |
312 | - $valid_page_found = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type='page' AND post_status NOT IN ( 'pending', 'trash', 'future', 'auto-draft' ) AND post_content LIKE %s LIMIT 1;", "%{$page_content}%" ) ); |
|
312 | + $valid_page_found = $wpdb->get_var($wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE post_type='page' AND post_status NOT IN ( 'pending', 'trash', 'future', 'auto-draft' ) AND post_content LIKE %s LIMIT 1;", "%{$page_content}%")); |
|
313 | 313 | } else { |
314 | 314 | // Search for an existing page with the specified page slug |
315 | - $valid_page_found = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type='page' AND post_status NOT IN ( 'pending', 'trash', 'future', 'auto-draft' ) AND post_name = %s LIMIT 1;", $slug ) ); |
|
315 | + $valid_page_found = $wpdb->get_var($wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE post_type='page' AND post_status NOT IN ( 'pending', 'trash', 'future', 'auto-draft' ) AND post_name = %s LIMIT 1;", $slug)); |
|
316 | 316 | } |
317 | 317 | |
318 | - $valid_page_found = apply_filters( 'wpinv_create_page_id', $valid_page_found, $slug, $page_content ); |
|
318 | + $valid_page_found = apply_filters('wpinv_create_page_id', $valid_page_found, $slug, $page_content); |
|
319 | 319 | |
320 | - if ( $valid_page_found ) { |
|
321 | - if ( $option ) { |
|
322 | - wpinv_update_option( $option, $valid_page_found ); |
|
320 | + if ($valid_page_found) { |
|
321 | + if ($option) { |
|
322 | + wpinv_update_option($option, $valid_page_found); |
|
323 | 323 | } |
324 | 324 | return $valid_page_found; |
325 | 325 | } |
326 | 326 | |
327 | 327 | // Search for a matching valid trashed page |
328 | - if ( strlen( $page_content ) > 0 ) { |
|
328 | + if (strlen($page_content) > 0) { |
|
329 | 329 | // Search for an existing page with the specified page content (typically a shortcode) |
330 | - $trashed_page_found = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type='page' AND post_status = 'trash' AND post_content LIKE %s LIMIT 1;", "%{$page_content}%" ) ); |
|
330 | + $trashed_page_found = $wpdb->get_var($wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE post_type='page' AND post_status = 'trash' AND post_content LIKE %s LIMIT 1;", "%{$page_content}%")); |
|
331 | 331 | } else { |
332 | 332 | // Search for an existing page with the specified page slug |
333 | - $trashed_page_found = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type='page' AND post_status = 'trash' AND post_name = %s LIMIT 1;", $slug ) ); |
|
333 | + $trashed_page_found = $wpdb->get_var($wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE post_type='page' AND post_status = 'trash' AND post_name = %s LIMIT 1;", $slug)); |
|
334 | 334 | } |
335 | 335 | |
336 | - if ( $trashed_page_found ) { |
|
336 | + if ($trashed_page_found) { |
|
337 | 337 | $page_id = $trashed_page_found; |
338 | 338 | $page_data = array( |
339 | 339 | 'ID' => $page_id, |
340 | 340 | 'post_status' => 'publish', |
341 | 341 | 'post_parent' => $post_parent, |
342 | 342 | ); |
343 | - wp_update_post( $page_data ); |
|
343 | + wp_update_post($page_data); |
|
344 | 344 | } else { |
345 | 345 | $page_data = array( |
346 | 346 | 'post_status' => 'publish', |
@@ -352,11 +352,11 @@ discard block |
||
352 | 352 | 'post_parent' => $post_parent, |
353 | 353 | 'comment_status' => 'closed', |
354 | 354 | ); |
355 | - $page_id = wp_insert_post( $page_data ); |
|
355 | + $page_id = wp_insert_post($page_data); |
|
356 | 356 | } |
357 | 357 | |
358 | - if ( $option ) { |
|
359 | - wpinv_update_option( $option, (int)$page_id ); |
|
358 | + if ($option) { |
|
359 | + wpinv_update_option($option, (int) $page_id); |
|
360 | 360 | } |
361 | 361 | |
362 | 362 | return $page_id; |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | * |
5 | 5 | */ |
6 | 6 | |
7 | -defined( 'ABSPATH' ) || exit; |
|
7 | +defined('ABSPATH') || exit; |
|
8 | 8 | |
9 | 9 | /** |
10 | 10 | * Metaboxes Admin Class |
@@ -25,93 +25,93 @@ discard block |
||
25 | 25 | public static function init() { |
26 | 26 | |
27 | 27 | // Register metaboxes. |
28 | - add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::add_meta_boxes', 5, 2 ); |
|
28 | + add_action('add_meta_boxes', 'GetPaid_Metaboxes::add_meta_boxes', 5, 2); |
|
29 | 29 | |
30 | 30 | // Remove metaboxes. |
31 | - add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::remove_meta_boxes', 30 ); |
|
31 | + add_action('add_meta_boxes', 'GetPaid_Metaboxes::remove_meta_boxes', 30); |
|
32 | 32 | |
33 | 33 | // Rename metaboxes. |
34 | - add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::rename_meta_boxes', 45 ); |
|
34 | + add_action('add_meta_boxes', 'GetPaid_Metaboxes::rename_meta_boxes', 45); |
|
35 | 35 | |
36 | 36 | // Save metaboxes. |
37 | - add_action( 'save_post', 'GetPaid_Metaboxes::save_meta_boxes', 1, 2 ); |
|
37 | + add_action('save_post', 'GetPaid_Metaboxes::save_meta_boxes', 1, 2); |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | /** |
41 | 41 | * Register core metaboxes. |
42 | 42 | */ |
43 | - public static function add_meta_boxes( $post_type, $post ) { |
|
43 | + public static function add_meta_boxes($post_type, $post) { |
|
44 | 44 | global $wpinv_euvat; |
45 | 45 | |
46 | 46 | // For invoices... |
47 | - if ( $post_type == 'wpi_invoice' ) { |
|
48 | - $invoice = new WPInv_Invoice( $post ); |
|
47 | + if ($post_type == 'wpi_invoice') { |
|
48 | + $invoice = new WPInv_Invoice($post); |
|
49 | 49 | |
50 | 50 | // Resend invoice. |
51 | - if ( ! $invoice->is_draft() && ! $invoice->is_paid() ) { |
|
52 | - add_meta_box( 'wpinv-mb-resend-invoice', __( 'Resend Invoice', 'invoicing' ), 'GetPaid_Meta_Box_Resend_Invoice::output', 'wpi_invoice', 'side', 'low' ); |
|
51 | + if (!$invoice->is_draft() && !$invoice->is_paid()) { |
|
52 | + add_meta_box('wpinv-mb-resend-invoice', __('Resend Invoice', 'invoicing'), 'GetPaid_Meta_Box_Resend_Invoice::output', 'wpi_invoice', 'side', 'low'); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | // Subscriptions. |
56 | - $subscription = getpaid_get_invoice_subscription( $invoice ); |
|
57 | - if ( ! empty( $subscription ) ) { |
|
58 | - add_meta_box( 'wpinv-mb-subscriptions', __( 'Subscription Details', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output', 'wpi_invoice', 'advanced' ); |
|
59 | - add_meta_box( 'wpinv-mb-subscription-invoices', __( 'Related Payments', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output_invoices', 'wpi_invoice', 'advanced' ); |
|
56 | + $subscription = getpaid_get_invoice_subscription($invoice); |
|
57 | + if (!empty($subscription)) { |
|
58 | + add_meta_box('wpinv-mb-subscriptions', __('Subscription Details', 'invoicing'), 'GetPaid_Meta_Box_Invoice_Subscription::output', 'wpi_invoice', 'advanced'); |
|
59 | + add_meta_box('wpinv-mb-subscription-invoices', __('Related Payments', 'invoicing'), 'GetPaid_Meta_Box_Invoice_Subscription::output_invoices', 'wpi_invoice', 'advanced'); |
|
60 | 60 | } |
61 | 61 | |
62 | 62 | // Invoice details. |
63 | - add_meta_box( 'wpinv-details', __( 'Invoice Details', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Details::output', 'wpi_invoice', 'side', 'default' ); |
|
63 | + add_meta_box('wpinv-details', __('Invoice Details', 'invoicing'), 'GetPaid_Meta_Box_Invoice_Details::output', 'wpi_invoice', 'side', 'default'); |
|
64 | 64 | |
65 | 65 | // Payment details. |
66 | - if ( ! $invoice->is_draft() ) { |
|
67 | - add_meta_box( 'wpinv-payment-meta', __( 'Payment Meta', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Payment_Meta::output', 'wpi_invoice', 'side', 'default' ); |
|
66 | + if (!$invoice->is_draft()) { |
|
67 | + add_meta_box('wpinv-payment-meta', __('Payment Meta', 'invoicing'), 'GetPaid_Meta_Box_Invoice_Payment_Meta::output', 'wpi_invoice', 'side', 'default'); |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | // Billing details. |
71 | - add_meta_box( 'wpinv-address', __( 'Billing Details', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Address::output', 'wpi_invoice', 'normal', 'high' ); |
|
71 | + add_meta_box('wpinv-address', __('Billing Details', 'invoicing'), 'GetPaid_Meta_Box_Invoice_Address::output', 'wpi_invoice', 'normal', 'high'); |
|
72 | 72 | |
73 | 73 | // Invoice items. |
74 | - add_meta_box( 'wpinv-items', __( 'Invoice Items', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Items::output', 'wpi_invoice', 'normal', 'high' ); |
|
74 | + add_meta_box('wpinv-items', __('Invoice Items', 'invoicing'), 'GetPaid_Meta_Box_Invoice_Items::output', 'wpi_invoice', 'normal', 'high'); |
|
75 | 75 | |
76 | 76 | // Invoice notes. |
77 | - add_meta_box( 'wpinv-notes', __( 'Invoice Notes', 'invoicing' ), 'WPInv_Meta_Box_Notes::output', 'wpi_invoice', 'side', 'low' ); |
|
77 | + add_meta_box('wpinv-notes', __('Invoice Notes', 'invoicing'), 'WPInv_Meta_Box_Notes::output', 'wpi_invoice', 'side', 'low'); |
|
78 | 78 | |
79 | 79 | // Payment form information. |
80 | - if ( ! empty( $post->ID ) && get_post_meta( $post->ID, 'payment_form_data', true ) ) { |
|
81 | - add_meta_box( 'wpinv-invoice-payment-form-details', __( 'Payment Form Details', 'invoicing' ), 'WPInv_Meta_Box_Payment_Form::output_details', 'wpi_invoice', 'side', 'high' ); |
|
80 | + if (!empty($post->ID) && get_post_meta($post->ID, 'payment_form_data', true)) { |
|
81 | + add_meta_box('wpinv-invoice-payment-form-details', __('Payment Form Details', 'invoicing'), 'WPInv_Meta_Box_Payment_Form::output_details', 'wpi_invoice', 'side', 'high'); |
|
82 | 82 | } |
83 | 83 | } |
84 | 84 | |
85 | 85 | // For payment forms. |
86 | - if ( $post_type == 'wpi_payment_form' ) { |
|
86 | + if ($post_type == 'wpi_payment_form') { |
|
87 | 87 | |
88 | 88 | // Design payment form. |
89 | - add_meta_box( 'wpinv-payment-form-design', __( 'Payment Form', 'invoicing' ), 'GetPaid_Meta_Box_Payment_Form::output', 'wpi_payment_form', 'normal' ); |
|
89 | + add_meta_box('wpinv-payment-form-design', __('Payment Form', 'invoicing'), 'GetPaid_Meta_Box_Payment_Form::output', 'wpi_payment_form', 'normal'); |
|
90 | 90 | |
91 | 91 | // Payment form information. |
92 | - add_meta_box( 'wpinv-payment-form-info', __( 'Details', 'invoicing' ), 'GetPaid_Meta_Box_Payment_Form_Info::output', 'wpi_payment_form', 'side' ); |
|
92 | + add_meta_box('wpinv-payment-form-info', __('Details', 'invoicing'), 'GetPaid_Meta_Box_Payment_Form_Info::output', 'wpi_payment_form', 'side'); |
|
93 | 93 | |
94 | 94 | } |
95 | 95 | |
96 | 96 | // For invoice items. |
97 | - if ( $post_type == 'wpi_item' ) { |
|
97 | + if ($post_type == 'wpi_item') { |
|
98 | 98 | |
99 | 99 | // Item details. |
100 | - add_meta_box( 'wpinv_item_details', __( 'Item Details', 'invoicing' ), 'GetPaid_Meta_Box_Item_Details::output', 'wpi_item', 'normal', 'high' ); |
|
100 | + add_meta_box('wpinv_item_details', __('Item Details', 'invoicing'), 'GetPaid_Meta_Box_Item_Details::output', 'wpi_item', 'normal', 'high'); |
|
101 | 101 | |
102 | 102 | // If taxes are enabled, register the tax metabox. |
103 | - if ( $wpinv_euvat->allow_vat_rules() || $wpinv_euvat->allow_vat_classes() ) { |
|
104 | - add_meta_box( 'wpinv_item_vat', __( 'VAT / Tax', 'invoicing' ), 'GetPaid_Meta_Box_Item_VAT::output', 'wpi_item', 'normal', 'high' ); |
|
103 | + if ($wpinv_euvat->allow_vat_rules() || $wpinv_euvat->allow_vat_classes()) { |
|
104 | + add_meta_box('wpinv_item_vat', __('VAT / Tax', 'invoicing'), 'GetPaid_Meta_Box_Item_VAT::output', 'wpi_item', 'normal', 'high'); |
|
105 | 105 | } |
106 | 106 | |
107 | 107 | // Item info. |
108 | - add_meta_box( 'wpinv_field_item_info', __( 'Item info', 'invoicing' ), 'GetPaid_Meta_Box_Item_Info::output', 'wpi_item', 'side', 'core' ); |
|
108 | + add_meta_box('wpinv_field_item_info', __('Item info', 'invoicing'), 'GetPaid_Meta_Box_Item_Info::output', 'wpi_item', 'side', 'core'); |
|
109 | 109 | |
110 | 110 | } |
111 | 111 | |
112 | 112 | // For invoice discounts. |
113 | - if ( $post_type == 'wpi_discount' ) { |
|
114 | - add_meta_box( 'wpinv_discount_details', __( 'Discount Details', 'invoicing' ), 'GetPaid_Meta_Box_Discount_Details::output', 'wpi_discount', 'normal', 'high' ); |
|
113 | + if ($post_type == 'wpi_discount') { |
|
114 | + add_meta_box('wpinv_discount_details', __('Discount Details', 'invoicing'), 'GetPaid_Meta_Box_Discount_Details::output', 'wpi_discount', 'normal', 'high'); |
|
115 | 115 | } |
116 | 116 | |
117 | 117 | |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | * Remove some metaboxes. |
122 | 122 | */ |
123 | 123 | public static function remove_meta_boxes() { |
124 | - remove_meta_box( 'wpseo_meta', 'wpi_invoice', 'normal' ); |
|
124 | + remove_meta_box('wpseo_meta', 'wpi_invoice', 'normal'); |
|
125 | 125 | } |
126 | 126 | |
127 | 127 | /** |
@@ -137,37 +137,37 @@ discard block |
||
137 | 137 | * @param int $post_id Post ID. |
138 | 138 | * @param object $post Post object. |
139 | 139 | */ |
140 | - public static function save_meta_boxes( $post_id, $post ) { |
|
141 | - $post_id = absint( $post_id ); |
|
142 | - $data = wp_unslash( $_POST ); |
|
140 | + public static function save_meta_boxes($post_id, $post) { |
|
141 | + $post_id = absint($post_id); |
|
142 | + $data = wp_unslash($_POST); |
|
143 | 143 | |
144 | 144 | // Do not save for ajax requests. |
145 | - if ( ( defined( 'DOING_AJAX') && DOING_AJAX ) || isset( $_REQUEST['bulk_edit'] ) ) { |
|
145 | + if ((defined('DOING_AJAX') && DOING_AJAX) || isset($_REQUEST['bulk_edit'])) { |
|
146 | 146 | return; |
147 | 147 | } |
148 | 148 | |
149 | 149 | // $post_id and $post are required |
150 | - if ( empty( $post_id ) || empty( $post ) || self::$saved_meta_boxes ) { |
|
150 | + if (empty($post_id) || empty($post) || self::$saved_meta_boxes) { |
|
151 | 151 | return; |
152 | 152 | } |
153 | 153 | |
154 | 154 | // Dont' save meta boxes for revisions or autosaves. |
155 | - if ( ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) || is_int( wp_is_post_revision( $post ) ) || is_int( wp_is_post_autosave( $post ) ) ) { |
|
155 | + if ((defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) || is_int(wp_is_post_revision($post)) || is_int(wp_is_post_autosave($post))) { |
|
156 | 156 | return; |
157 | 157 | } |
158 | 158 | |
159 | 159 | // Check the nonce. |
160 | - if ( empty( $data['getpaid_meta_nonce'] ) || ! wp_verify_nonce( $data['getpaid_meta_nonce'], 'getpaid_meta_nonce' ) ) { |
|
160 | + if (empty($data['getpaid_meta_nonce']) || !wp_verify_nonce($data['getpaid_meta_nonce'], 'getpaid_meta_nonce')) { |
|
161 | 161 | return; |
162 | 162 | } |
163 | 163 | |
164 | 164 | // Check the post being saved == the $post_id to prevent triggering this call for other save_post events. |
165 | - if ( empty( $data['post_ID'] ) || absint( $data['post_ID'] ) !== $post_id ) { |
|
165 | + if (empty($data['post_ID']) || absint($data['post_ID']) !== $post_id) { |
|
166 | 166 | return; |
167 | 167 | } |
168 | 168 | |
169 | 169 | // Check user has permission to edit. |
170 | - if ( ! current_user_can( 'edit_post', $post_id ) ) { |
|
170 | + if (!current_user_can('edit_post', $post_id)) { |
|
171 | 171 | return; |
172 | 172 | } |
173 | 173 | |
@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | ); |
182 | 182 | |
183 | 183 | // Is this our post type? |
184 | - if ( empty( $post->post_type ) || ! isset( $post_types_map[ $post->post_type ] ) ) { |
|
184 | + if (empty($post->post_type) || !isset($post_types_map[$post->post_type])) { |
|
185 | 185 | return; |
186 | 186 | } |
187 | 187 | |
@@ -189,8 +189,8 @@ discard block |
||
189 | 189 | self::$saved_meta_boxes = true; |
190 | 190 | |
191 | 191 | // Save the post. |
192 | - $class = $post_types_map[ $post->post_type ]; |
|
193 | - $class::save( $post_id, $_POST, $post ); |
|
192 | + $class = $post_types_map[$post->post_type]; |
|
193 | + $class::save($post_id, $_POST, $post); |
|
194 | 194 | |
195 | 195 | } |
196 | 196 |
@@ -7,7 +7,7 @@ discard block |
||
7 | 7 | * |
8 | 8 | */ |
9 | 9 | |
10 | -if ( ! defined( 'ABSPATH' ) ) { |
|
10 | +if (!defined('ABSPATH')) { |
|
11 | 11 | exit; // Exit if accessed directly |
12 | 12 | } |
13 | 13 | |
@@ -21,10 +21,10 @@ discard block |
||
21 | 21 | * |
22 | 22 | * @param WP_Post $post |
23 | 23 | */ |
24 | - public static function output( $post ) { |
|
24 | + public static function output($post) { |
|
25 | 25 | |
26 | 26 | // Prepare the invoice. |
27 | - $invoice = new WPInv_Invoice( $post ); |
|
27 | + $invoice = new WPInv_Invoice($post); |
|
28 | 28 | |
29 | 29 | ?> |
30 | 30 | |
@@ -46,10 +46,10 @@ discard block |
||
46 | 46 | 'type' => 'text', |
47 | 47 | 'id' => 'wpinv_key', |
48 | 48 | 'name' => 'wpinv_key', |
49 | - 'label' => __( 'Invoice Key:', 'invoicing' ), |
|
49 | + 'label' => __('Invoice Key:', 'invoicing'), |
|
50 | 50 | 'label_type' => 'vertical', |
51 | 51 | 'class' => 'form-control-sm', |
52 | - 'value' => $invoice->get_key( 'edit' ), |
|
52 | + 'value' => $invoice->get_key('edit'), |
|
53 | 53 | 'extra_attributes' => array( |
54 | 54 | 'onclick' => 'this.select();', |
55 | 55 | 'readonly' => 'true', |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | 'type' => 'text', |
64 | 64 | 'id' => 'wpinv_view_url', |
65 | 65 | 'name' => 'wpinv_view_url', |
66 | - 'label' => __( 'Invoice URL:', 'invoicing' ), |
|
66 | + 'label' => __('Invoice URL:', 'invoicing'), |
|
67 | 67 | 'label_type' => 'vertical', |
68 | 68 | 'class' => 'form-control-sm', |
69 | 69 | 'value' => $invoice->get_view_url(), |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | ); |
76 | 76 | |
77 | 77 | // If the invoice is paid... |
78 | - if ( $invoice->is_paid() || $invoice->is_refunded() ) { |
|
78 | + if ($invoice->is_paid() || $invoice->is_refunded()) { |
|
79 | 79 | |
80 | 80 | // Payment date. |
81 | 81 | echo aui()->input( |
@@ -83,11 +83,11 @@ discard block |
||
83 | 83 | 'type' => 'datepicker', |
84 | 84 | 'id' => 'wpinv_date_completed', |
85 | 85 | 'name' => 'date_completed', |
86 | - 'label' => __( 'Payment Date:', 'invoicing' ), |
|
86 | + 'label' => __('Payment Date:', 'invoicing'), |
|
87 | 87 | 'label_type' => 'vertical', |
88 | 88 | 'placeholder' => 'YYYY-MM-DD 00:00', |
89 | 89 | 'class' => 'form-control-sm', |
90 | - 'value' => $invoice->get_date_completed( 'edit' ), |
|
90 | + 'value' => $invoice->get_date_completed('edit'), |
|
91 | 91 | 'extra_attributes' => array( |
92 | 92 | 'data-enable-time' => 'true', |
93 | 93 | 'data-time_24hr' => 'true', |
@@ -102,10 +102,10 @@ discard block |
||
102 | 102 | 'type' => 'text', |
103 | 103 | 'id' => 'wpinv_gateway', |
104 | 104 | 'name' => 'wpinv_gateway', |
105 | - 'label' => __( 'Gateway:', 'invoicing' ), |
|
105 | + 'label' => __('Gateway:', 'invoicing'), |
|
106 | 106 | 'label_type' => 'vertical', |
107 | 107 | 'class' => 'form-control-sm', |
108 | - 'value' => wpinv_get_gateway_admin_label( $invoice->get_gateway( 'edit' ) ), |
|
108 | + 'value' => wpinv_get_gateway_admin_label($invoice->get_gateway('edit')), |
|
109 | 109 | 'extra_attributes' => array( |
110 | 110 | 'onclick' => 'this.select();', |
111 | 111 | 'readonly' => 'true', |
@@ -119,11 +119,11 @@ discard block |
||
119 | 119 | 'type' => 'text', |
120 | 120 | 'id' => 'wpinv_transaction_id', |
121 | 121 | 'name' => 'wpinv_transaction_id', |
122 | - 'label' => __( 'Transaction ID:', 'invoicing' ), |
|
122 | + 'label' => __('Transaction ID:', 'invoicing'), |
|
123 | 123 | 'label_type' => 'vertical', |
124 | 124 | 'class' => 'form-control-sm', |
125 | - 'value' => $invoice->get_transaction_id( 'edit' ), |
|
126 | - 'help_text' => apply_filters( 'wpinv_invoice_transaction_link_' . $invoice->get_gateway( 'edit' ), '', $invoice->get_transaction_id(), $invoice ), |
|
125 | + 'value' => $invoice->get_transaction_id('edit'), |
|
126 | + 'help_text' => apply_filters('wpinv_invoice_transaction_link_' . $invoice->get_gateway('edit'), '', $invoice->get_transaction_id(), $invoice), |
|
127 | 127 | 'extra_attributes' => array( |
128 | 128 | 'onclick' => 'this.select();', |
129 | 129 | 'readonly' => 'true', |
@@ -137,10 +137,10 @@ discard block |
||
137 | 137 | 'type' => 'text', |
138 | 138 | 'id' => 'wpinv_currency', |
139 | 139 | 'name' => 'wpinv_currency', |
140 | - 'label' => __( 'Currency:', 'invoicing' ), |
|
140 | + 'label' => __('Currency:', 'invoicing'), |
|
141 | 141 | 'label_type' => 'vertical', |
142 | 142 | 'class' => 'form-control-sm', |
143 | - 'value' => $invoice->get_currency( 'edit' ), |
|
143 | + 'value' => $invoice->get_currency('edit'), |
|
144 | 144 | 'extra_attributes' => array( |
145 | 145 | 'onclick' => 'this.select();', |
146 | 146 | 'readonly' => 'true', |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | 'type' => 'text', |
157 | 157 | 'id' => 'wpinv_payment_url', |
158 | 158 | 'name' => 'wpinv_payment_url', |
159 | - 'label' => __( 'Payment URL:', 'invoicing' ), |
|
159 | + 'label' => __('Payment URL:', 'invoicing'), |
|
160 | 160 | 'label_type' => 'vertical', |
161 | 161 | 'class' => 'form-control-sm', |
162 | 162 | 'value' => $invoice->get_checkout_payment_url(), |
@@ -172,13 +172,13 @@ discard block |
||
172 | 172 | array( |
173 | 173 | 'id' => 'wpinv_gateway', |
174 | 174 | 'name' => 'wpinv_gateway', |
175 | - 'label' => __( 'Gateway:', 'invoicing' ), |
|
175 | + 'label' => __('Gateway:', 'invoicing'), |
|
176 | 176 | 'label_type' => 'vertical', |
177 | - 'placeholder' => __( 'Select Gateway', 'invoicing' ), |
|
178 | - 'value' => $invoice->get_gateway( 'edit' ), |
|
177 | + 'placeholder' => __('Select Gateway', 'invoicing'), |
|
178 | + 'value' => $invoice->get_gateway('edit'), |
|
179 | 179 | 'select2' => true, |
180 | 180 | 'data-allow-clear' => 'false', |
181 | - 'options' => wp_list_pluck( wpinv_get_enabled_payment_gateways( true ), 'admin_label' ), |
|
181 | + 'options' => wp_list_pluck(wpinv_get_enabled_payment_gateways(true), 'admin_label'), |
|
182 | 182 | ) |
183 | 183 | ); |
184 | 184 |
@@ -11,55 +11,55 @@ discard block |
||
11 | 11 | * @since 1.0.0 |
12 | 12 | */ |
13 | 13 | function wpinv_automatic_upgrade() { |
14 | - $wpi_version = get_option( 'wpinv_version' ); |
|
14 | + $wpi_version = get_option('wpinv_version'); |
|
15 | 15 | |
16 | 16 | // Update tables. |
17 | - if ( ! get_option( 'getpaid_created_invoice_tables' ) ) { |
|
17 | + if (!get_option('getpaid_created_invoice_tables')) { |
|
18 | 18 | wpinv_v119_upgrades(); |
19 | - update_option( 'getpaid_created_invoice_tables', true ); |
|
19 | + update_option('getpaid_created_invoice_tables', true); |
|
20 | 20 | } |
21 | 21 | |
22 | - if ( $wpi_version == WPINV_VERSION ) { |
|
22 | + if ($wpi_version == WPINV_VERSION) { |
|
23 | 23 | return; |
24 | 24 | } |
25 | 25 | |
26 | - if ( version_compare( $wpi_version, '0.0.5', '<' ) ) { |
|
26 | + if (version_compare($wpi_version, '0.0.5', '<')) { |
|
27 | 27 | wpinv_v005_upgrades(); |
28 | 28 | } |
29 | 29 | |
30 | - if ( version_compare( $wpi_version, '1.0.3', '<' ) ) { |
|
30 | + if (version_compare($wpi_version, '1.0.3', '<')) { |
|
31 | 31 | wpinv_v110_upgrades(); |
32 | 32 | } |
33 | 33 | |
34 | - update_option( 'wpinv_version', WPINV_VERSION ); |
|
34 | + update_option('wpinv_version', WPINV_VERSION); |
|
35 | 35 | } |
36 | -add_action( 'admin_init', 'wpinv_automatic_upgrade' ); |
|
36 | +add_action('admin_init', 'wpinv_automatic_upgrade'); |
|
37 | 37 | |
38 | 38 | function wpinv_v005_upgrades() { |
39 | 39 | global $wpdb; |
40 | 40 | |
41 | 41 | // Invoices status |
42 | - $results = $wpdb->get_results( "SELECT ID FROM " . $wpdb->posts . " WHERE post_type = 'wpi_invoice' AND post_status IN( 'pending', 'processing', 'onhold', 'refunded', 'cancelled', 'failed', 'renewal' )" ); |
|
43 | - if ( !empty( $results ) ) { |
|
44 | - $wpdb->query( "UPDATE " . $wpdb->posts . " SET post_status = CONCAT( 'wpi-', post_status ) WHERE post_type = 'wpi_invoice' AND post_status IN( 'pending', 'processing', 'onhold', 'refunded', 'cancelled', 'failed', 'renewal' )" ); |
|
42 | + $results = $wpdb->get_results("SELECT ID FROM " . $wpdb->posts . " WHERE post_type = 'wpi_invoice' AND post_status IN( 'pending', 'processing', 'onhold', 'refunded', 'cancelled', 'failed', 'renewal' )"); |
|
43 | + if (!empty($results)) { |
|
44 | + $wpdb->query("UPDATE " . $wpdb->posts . " SET post_status = CONCAT( 'wpi-', post_status ) WHERE post_type = 'wpi_invoice' AND post_status IN( 'pending', 'processing', 'onhold', 'refunded', 'cancelled', 'failed', 'renewal' )"); |
|
45 | 45 | |
46 | 46 | // Clean post cache |
47 | - foreach ( $results as $row ) { |
|
48 | - clean_post_cache( $row->ID ); |
|
47 | + foreach ($results as $row) { |
|
48 | + clean_post_cache($row->ID); |
|
49 | 49 | } |
50 | 50 | } |
51 | 51 | |
52 | 52 | // Item meta key changes |
53 | 53 | $query = "SELECT DISTINCT post_id FROM " . $wpdb->postmeta . " WHERE meta_key IN( '_wpinv_item_id', '_wpinv_package_id', '_wpinv_post_id', '_wpinv_cpt_name', '_wpinv_cpt_singular_name' )"; |
54 | - $results = $wpdb->get_results( $query ); |
|
54 | + $results = $wpdb->get_results($query); |
|
55 | 55 | |
56 | - if ( !empty( $results ) ) { |
|
57 | - $wpdb->query( "UPDATE " . $wpdb->postmeta . " SET meta_key = '_wpinv_custom_id' WHERE meta_key IN( '_wpinv_item_id', '_wpinv_package_id', '_wpinv_post_id' )" ); |
|
58 | - $wpdb->query( "UPDATE " . $wpdb->postmeta . " SET meta_key = '_wpinv_custom_name' WHERE meta_key = '_wpinv_cpt_name'" ); |
|
59 | - $wpdb->query( "UPDATE " . $wpdb->postmeta . " SET meta_key = '_wpinv_custom_singular_name' WHERE meta_key = '_wpinv_cpt_singular_name'" ); |
|
56 | + if (!empty($results)) { |
|
57 | + $wpdb->query("UPDATE " . $wpdb->postmeta . " SET meta_key = '_wpinv_custom_id' WHERE meta_key IN( '_wpinv_item_id', '_wpinv_package_id', '_wpinv_post_id' )"); |
|
58 | + $wpdb->query("UPDATE " . $wpdb->postmeta . " SET meta_key = '_wpinv_custom_name' WHERE meta_key = '_wpinv_cpt_name'"); |
|
59 | + $wpdb->query("UPDATE " . $wpdb->postmeta . " SET meta_key = '_wpinv_custom_singular_name' WHERE meta_key = '_wpinv_cpt_singular_name'"); |
|
60 | 60 | |
61 | - foreach ( $results as $row ) { |
|
62 | - clean_post_cache( $row->post_id ); |
|
61 | + foreach ($results as $row) { |
|
62 | + clean_post_cache($row->post_id); |
|
63 | 63 | } |
64 | 64 | } |
65 | 65 | |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | function wpinv_create_invoices_table() { |
89 | 89 | global $wpdb; |
90 | 90 | |
91 | - require_once( ABSPATH . 'wp-admin/includes/upgrade.php' ); |
|
91 | + require_once(ABSPATH . 'wp-admin/includes/upgrade.php'); |
|
92 | 92 | |
93 | 93 | // Create invoices table. |
94 | 94 | $table = $wpdb->prefix . 'getpaid_invoices'; |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | KEY `key` ( `key` ) |
133 | 133 | ) CHARACTER SET utf8 COLLATE utf8_general_ci;"; |
134 | 134 | |
135 | - dbDelta( $sql ); |
|
135 | + dbDelta($sql); |
|
136 | 136 | |
137 | 137 | // Create invoice items table. |
138 | 138 | $table = $wpdb->prefix . 'getpaid_invoice_items'; |
@@ -160,7 +160,7 @@ discard block |
||
160 | 160 | KEY post_id ( post_id ) |
161 | 161 | ) CHARACTER SET utf8 COLLATE utf8_general_ci;"; |
162 | 162 | |
163 | - dbDelta( $sql ); |
|
163 | + dbDelta($sql); |
|
164 | 164 | } |
165 | 165 | |
166 | 166 | /** |
@@ -172,29 +172,29 @@ discard block |
||
172 | 172 | $invoices = array_unique( |
173 | 173 | get_posts( |
174 | 174 | array( |
175 | - 'post_type' => array( 'wpi_invoice', 'wpi_quote' ), |
|
175 | + 'post_type' => array('wpi_invoice', 'wpi_quote'), |
|
176 | 176 | 'posts_per_page' => -1, |
177 | 177 | 'fields' => 'ids', |
178 | - 'post_status' => array_keys( wpinv_get_invoice_statuses( true ) ), |
|
178 | + 'post_status' => array_keys(wpinv_get_invoice_statuses(true)), |
|
179 | 179 | ) |
180 | 180 | ) |
181 | 181 | ); |
182 | 182 | $invoices_table = $wpdb->prefix . 'getpaid_invoices'; |
183 | 183 | $invoice_items_table = $wpdb->prefix . 'getpaid_invoice_items'; |
184 | 184 | |
185 | - if ( ! class_exists( 'WPInv_Legacy_Invoice' ) ) { |
|
186 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-legacy-invoice.php' ); |
|
185 | + if (!class_exists('WPInv_Legacy_Invoice')) { |
|
186 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-legacy-invoice.php'); |
|
187 | 187 | } |
188 | 188 | |
189 | 189 | $invoice_rows = array(); |
190 | - foreach ( $invoices as $invoice ) { |
|
190 | + foreach ($invoices as $invoice) { |
|
191 | 191 | |
192 | - $invoice = new WPInv_Legacy_Invoice( $invoice ); |
|
193 | - $fields = array ( |
|
192 | + $invoice = new WPInv_Legacy_Invoice($invoice); |
|
193 | + $fields = array( |
|
194 | 194 | 'post_id' => $invoice->ID, |
195 | 195 | 'number' => $invoice->get_number(), |
196 | 196 | 'key' => $invoice->get_key(), |
197 | - 'type' => str_replace( 'wpi_', '', $invoice->post_type ), |
|
197 | + 'type' => str_replace('wpi_', '', $invoice->post_type), |
|
198 | 198 | 'mode' => $invoice->mode, |
199 | 199 | 'user_ip' => $invoice->get_ip(), |
200 | 200 | 'first_name' => $invoice->get_first_name(), |
@@ -223,27 +223,27 @@ discard block |
||
223 | 223 | 'custom_meta' => $invoice->payment_meta |
224 | 224 | ); |
225 | 225 | |
226 | - foreach ( $fields as $key => $val ) { |
|
227 | - if ( is_null( $val ) ) { |
|
226 | + foreach ($fields as $key => $val) { |
|
227 | + if (is_null($val)) { |
|
228 | 228 | $val = ''; |
229 | 229 | } |
230 | - $val = maybe_serialize( $val ); |
|
231 | - $fields[ $key ] = $wpdb->prepare( '%s', $val ); |
|
230 | + $val = maybe_serialize($val); |
|
231 | + $fields[$key] = $wpdb->prepare('%s', $val); |
|
232 | 232 | } |
233 | 233 | |
234 | - $fields = implode( ', ', $fields ); |
|
234 | + $fields = implode(', ', $fields); |
|
235 | 235 | $invoice_rows[] = "($fields)"; |
236 | 236 | |
237 | 237 | $item_rows = array(); |
238 | 238 | $item_columns = array(); |
239 | - foreach ( $invoice->get_cart_details() as $details ) { |
|
239 | + foreach ($invoice->get_cart_details() as $details) { |
|
240 | 240 | $fields = array( |
241 | 241 | 'post_id' => $invoice->ID, |
242 | 242 | 'item_id' => $details['id'], |
243 | 243 | 'item_name' => $details['name'], |
244 | - 'item_description' => empty( $details['meta']['description'] ) ? '' : $details['meta']['description'], |
|
244 | + 'item_description' => empty($details['meta']['description']) ? '' : $details['meta']['description'], |
|
245 | 245 | 'vat_rate' => $details['vat_rate'], |
246 | - 'vat_class' => empty( $details['vat_class'] ) ? '_standard' : $details['vat_class'], |
|
246 | + 'vat_class' => empty($details['vat_class']) ? '_standard' : $details['vat_class'], |
|
247 | 247 | 'tax' => $details['tax'], |
248 | 248 | 'item_price' => $details['item_price'], |
249 | 249 | 'custom_price' => $details['custom_price'], |
@@ -255,26 +255,26 @@ discard block |
||
255 | 255 | 'fees' => $details['fees'], |
256 | 256 | ); |
257 | 257 | |
258 | - $item_columns = array_keys ( $fields ); |
|
258 | + $item_columns = array_keys($fields); |
|
259 | 259 | |
260 | - foreach ( $fields as $key => $val ) { |
|
261 | - if ( is_null( $val ) ) { |
|
260 | + foreach ($fields as $key => $val) { |
|
261 | + if (is_null($val)) { |
|
262 | 262 | $val = ''; |
263 | 263 | } |
264 | - $val = maybe_serialize( $val ); |
|
265 | - $fields[ $key ] = $wpdb->prepare( '%s', $val ); |
|
264 | + $val = maybe_serialize($val); |
|
265 | + $fields[$key] = $wpdb->prepare('%s', $val); |
|
266 | 266 | } |
267 | 267 | |
268 | - $fields = implode( ', ', $fields ); |
|
268 | + $fields = implode(', ', $fields); |
|
269 | 269 | $item_rows[] = "($fields)"; |
270 | 270 | } |
271 | 271 | |
272 | - $item_rows = implode( ', ', $item_rows ); |
|
273 | - $item_columns = implode( ', ', $item_columns ); |
|
274 | - $wpdb->query( "INSERT INTO $invoice_items_table ($item_columns) VALUES $item_rows" ); |
|
272 | + $item_rows = implode(', ', $item_rows); |
|
273 | + $item_columns = implode(', ', $item_columns); |
|
274 | + $wpdb->query("INSERT INTO $invoice_items_table ($item_columns) VALUES $item_rows"); |
|
275 | 275 | } |
276 | 276 | |
277 | - $invoice_rows = implode( ', ', $invoice_rows ); |
|
278 | - $wpdb->query( "INSERT INTO $invoices_table VALUES $invoice_rows" ); |
|
277 | + $invoice_rows = implode(', ', $invoice_rows); |
|
278 | + $wpdb->query("INSERT INTO $invoices_table VALUES $invoice_rows"); |
|
279 | 279 | |
280 | 280 | } |
@@ -15,26 +15,26 @@ discard block |
||
15 | 15 | * |
16 | 16 | * @return int|array|WPInv_Subscription[]|GetPaid_Subscriptions_Query |
17 | 17 | */ |
18 | -function getpaid_get_subscriptions( $args = array(), $return = 'results' ) { |
|
18 | +function getpaid_get_subscriptions($args = array(), $return = 'results') { |
|
19 | 19 | |
20 | 20 | // Do not retrieve all fields if we just want the count. |
21 | - if ( 'count' == $return ) { |
|
21 | + if ('count' == $return) { |
|
22 | 22 | $args['fields'] = 'id'; |
23 | 23 | $args['number'] = 1; |
24 | 24 | } |
25 | 25 | |
26 | 26 | // Do not count all matches if we just want the results. |
27 | - if ( 'results' == $return ) { |
|
27 | + if ('results' == $return) { |
|
28 | 28 | $args['count_total'] = false; |
29 | 29 | } |
30 | 30 | |
31 | - $query = new GetPaid_Subscriptions_Query( $args ); |
|
31 | + $query = new GetPaid_Subscriptions_Query($args); |
|
32 | 32 | |
33 | - if ( 'results' == $return ) { |
|
33 | + if ('results' == $return) { |
|
34 | 34 | return $query->get_results(); |
35 | 35 | } |
36 | 36 | |
37 | - if ( 'count' == $return ) { |
|
37 | + if ('count' == $return) { |
|
38 | 38 | return $query->get_total(); |
39 | 39 | } |
40 | 40 | |
@@ -51,13 +51,13 @@ discard block |
||
51 | 51 | return apply_filters( |
52 | 52 | 'getpaid_get_subscription_statuses', |
53 | 53 | array( |
54 | - 'pending' => __( 'Pending', 'invoicing' ), |
|
55 | - 'trialling' => __( 'Trialing', 'invoicing' ), |
|
56 | - 'active' => __( 'Active', 'invoicing' ), |
|
57 | - 'failing' => __( 'Failing', 'invoicing' ), |
|
58 | - 'expired' => __( 'Expired', 'invoicing' ), |
|
59 | - 'completed' => __( 'Complete', 'invoicing' ), |
|
60 | - 'cancelled' => __( 'Cancelled', 'invoicing' ), |
|
54 | + 'pending' => __('Pending', 'invoicing'), |
|
55 | + 'trialling' => __('Trialing', 'invoicing'), |
|
56 | + 'active' => __('Active', 'invoicing'), |
|
57 | + 'failing' => __('Failing', 'invoicing'), |
|
58 | + 'expired' => __('Expired', 'invoicing'), |
|
59 | + 'completed' => __('Complete', 'invoicing'), |
|
60 | + 'cancelled' => __('Cancelled', 'invoicing'), |
|
61 | 61 | ) |
62 | 62 | ); |
63 | 63 | |
@@ -68,9 +68,9 @@ discard block |
||
68 | 68 | * |
69 | 69 | * @return string |
70 | 70 | */ |
71 | -function getpaid_get_subscription_status_label( $status ) { |
|
71 | +function getpaid_get_subscription_status_label($status) { |
|
72 | 72 | $statuses = getpaid_get_subscription_statuses(); |
73 | - return isset( $statuses[ $status ] ) ? $statuses[ $status ] : ucfirst( sanitize_text_field( $status ) ); |
|
73 | + return isset($statuses[$status]) ? $statuses[$status] : ucfirst(sanitize_text_field($status)); |
|
74 | 74 | } |
75 | 75 | |
76 | 76 | /** |
@@ -100,14 +100,14 @@ discard block |
||
100 | 100 | * |
101 | 101 | * @return array |
102 | 102 | */ |
103 | -function getpaid_get_subscription_status_counts( $args = array() ) { |
|
103 | +function getpaid_get_subscription_status_counts($args = array()) { |
|
104 | 104 | |
105 | - $statuses = array_keys( getpaid_get_subscription_statuses() ); |
|
105 | + $statuses = array_keys(getpaid_get_subscription_statuses()); |
|
106 | 106 | $counts = array(); |
107 | 107 | |
108 | - foreach ( $statuses as $status ) { |
|
109 | - $_args = wp_parse_args( "status=$status", $args ); |
|
110 | - $counts[ $status ] = getpaid_get_subscriptions( $_args, 'count' ); |
|
108 | + foreach ($statuses as $status) { |
|
109 | + $_args = wp_parse_args("status=$status", $args); |
|
110 | + $counts[$status] = getpaid_get_subscriptions($_args, 'count'); |
|
111 | 111 | } |
112 | 112 | |
113 | 113 | return $counts; |
@@ -126,23 +126,23 @@ discard block |
||
126 | 126 | array( |
127 | 127 | |
128 | 128 | 'day' => array( |
129 | - 'singular' => __( '%s day', 'invoicing' ), |
|
130 | - 'plural' => __( '%d days', 'invoicing' ), |
|
129 | + 'singular' => __('%s day', 'invoicing'), |
|
130 | + 'plural' => __('%d days', 'invoicing'), |
|
131 | 131 | ), |
132 | 132 | |
133 | 133 | 'week' => array( |
134 | - 'singular' => __( '%s week', 'invoicing' ), |
|
135 | - 'plural' => __( '%d weeks', 'invoicing' ), |
|
134 | + 'singular' => __('%s week', 'invoicing'), |
|
135 | + 'plural' => __('%d weeks', 'invoicing'), |
|
136 | 136 | ), |
137 | 137 | |
138 | 138 | 'month' => array( |
139 | - 'singular' => __( '%s month', 'invoicing' ), |
|
140 | - 'plural' => __( '%d months', 'invoicing' ), |
|
139 | + 'singular' => __('%s month', 'invoicing'), |
|
140 | + 'plural' => __('%d months', 'invoicing'), |
|
141 | 141 | ), |
142 | 142 | |
143 | 143 | 'year' => array( |
144 | - 'singular' => __( '%s year', 'invoicing' ), |
|
145 | - 'plural' => __( '%d years', 'invoicing' ), |
|
144 | + 'singular' => __('%s year', 'invoicing'), |
|
145 | + 'plural' => __('%d years', 'invoicing'), |
|
146 | 146 | ), |
147 | 147 | |
148 | 148 | ) |
@@ -156,8 +156,8 @@ discard block |
||
156 | 156 | * @param string $trial_period |
157 | 157 | * @return int |
158 | 158 | */ |
159 | -function getpaid_get_subscription_trial_period_interval( $trial_period ) { |
|
160 | - return (int) preg_replace( '/[^0-9]/', '', $trial_period ); |
|
159 | +function getpaid_get_subscription_trial_period_interval($trial_period) { |
|
160 | + return (int) preg_replace('/[^0-9]/', '', $trial_period); |
|
161 | 161 | } |
162 | 162 | |
163 | 163 | /** |
@@ -166,8 +166,8 @@ discard block |
||
166 | 166 | * @param string $trial_period |
167 | 167 | * @return string |
168 | 168 | */ |
169 | -function getpaid_get_subscription_trial_period_period( $trial_period ) { |
|
170 | - return preg_replace( '/[^a-z]/', '', strtolower( $trial_period ) ); |
|
169 | +function getpaid_get_subscription_trial_period_period($trial_period) { |
|
170 | + return preg_replace('/[^a-z]/', '', strtolower($trial_period)); |
|
171 | 171 | } |
172 | 172 | |
173 | 173 | /** |
@@ -177,9 +177,9 @@ discard block |
||
177 | 177 | * @param int $interval |
178 | 178 | * @return string |
179 | 179 | */ |
180 | -function getpaid_get_subscription_period_label( $period, $interval = 1, $singular_prefix = '1' ) { |
|
181 | - $label = (int) $interval > 1 ? getpaid_get_plural_subscription_period_label( $period, $interval ) : getpaid_get_singular_subscription_period_label( $period, $singular_prefix ); |
|
182 | - return strtolower( sanitize_text_field( $label ) ); |
|
180 | +function getpaid_get_subscription_period_label($period, $interval = 1, $singular_prefix = '1') { |
|
181 | + $label = (int) $interval > 1 ? getpaid_get_plural_subscription_period_label($period, $interval) : getpaid_get_singular_subscription_period_label($period, $singular_prefix); |
|
182 | + return strtolower(sanitize_text_field($label)); |
|
183 | 183 | } |
184 | 184 | |
185 | 185 | /** |
@@ -188,19 +188,19 @@ discard block |
||
188 | 188 | * @param string $period |
189 | 189 | * @return string |
190 | 190 | */ |
191 | -function getpaid_get_singular_subscription_period_label( $period, $singular_prefix = '1' ) { |
|
191 | +function getpaid_get_singular_subscription_period_label($period, $singular_prefix = '1') { |
|
192 | 192 | |
193 | 193 | $periods = getpaid_get_subscription_periods(); |
194 | - $period = strtolower( $period ); |
|
194 | + $period = strtolower($period); |
|
195 | 195 | |
196 | - if ( isset( $periods[ $period ] ) ) { |
|
197 | - return sprintf( $periods[ $period ]['singular'], $singular_prefix ); |
|
196 | + if (isset($periods[$period])) { |
|
197 | + return sprintf($periods[$period]['singular'], $singular_prefix); |
|
198 | 198 | } |
199 | 199 | |
200 | 200 | // Backwards compatibility. |
201 | - foreach ( $periods as $key => $data ) { |
|
202 | - if ( strpos( $key, $period ) === 0 ) { |
|
203 | - return sprintf( $data['singular'], $singular_prefix ); |
|
201 | + foreach ($periods as $key => $data) { |
|
202 | + if (strpos($key, $period) === 0) { |
|
203 | + return sprintf($data['singular'], $singular_prefix); |
|
204 | 204 | } |
205 | 205 | } |
206 | 206 | |
@@ -215,19 +215,19 @@ discard block |
||
215 | 215 | * @param int $interval |
216 | 216 | * @return string |
217 | 217 | */ |
218 | -function getpaid_get_plural_subscription_period_label( $period, $interval ) { |
|
218 | +function getpaid_get_plural_subscription_period_label($period, $interval) { |
|
219 | 219 | |
220 | 220 | $periods = getpaid_get_subscription_periods(); |
221 | - $period = strtolower( $period ); |
|
221 | + $period = strtolower($period); |
|
222 | 222 | |
223 | - if ( isset( $periods[ $period ] ) ) { |
|
224 | - return sprintf( $periods[ $period ]['plural'], $interval ); |
|
223 | + if (isset($periods[$period])) { |
|
224 | + return sprintf($periods[$period]['plural'], $interval); |
|
225 | 225 | } |
226 | 226 | |
227 | 227 | // Backwards compatibility. |
228 | - foreach ( $periods as $key => $data ) { |
|
229 | - if ( strpos( $key, $period ) === 0 ) { |
|
230 | - return sprintf( $data['plural'], $interval ); |
|
228 | + foreach ($periods as $key => $data) { |
|
229 | + if (strpos($key, $period) === 0) { |
|
230 | + return sprintf($data['plural'], $interval); |
|
231 | 231 | } |
232 | 232 | } |
233 | 233 | |
@@ -241,23 +241,23 @@ discard block |
||
241 | 241 | * @param WPInv_Subscription $subscription |
242 | 242 | * @return string |
243 | 243 | */ |
244 | -function getpaid_get_formatted_subscription_amount( $subscription ) { |
|
244 | +function getpaid_get_formatted_subscription_amount($subscription) { |
|
245 | 245 | |
246 | - $initial = wpinv_price( wpinv_format_amount( $subscription->get_initial_amount() ), $subscription->get_parent_payment()->get_currency() ); |
|
247 | - $recurring = wpinv_price( wpinv_format_amount( $subscription->get_recurring_amount() ), $subscription->get_parent_payment()->get_currency() ); |
|
248 | - $period = getpaid_get_subscription_period_label( $subscription->get_period(), $subscription->get_frequency(), '' ); |
|
246 | + $initial = wpinv_price(wpinv_format_amount($subscription->get_initial_amount()), $subscription->get_parent_payment()->get_currency()); |
|
247 | + $recurring = wpinv_price(wpinv_format_amount($subscription->get_recurring_amount()), $subscription->get_parent_payment()->get_currency()); |
|
248 | + $period = getpaid_get_subscription_period_label($subscription->get_period(), $subscription->get_frequency(), ''); |
|
249 | 249 | |
250 | 250 | // Trial periods. |
251 | - if ( $subscription->has_trial_period() ) { |
|
251 | + if ($subscription->has_trial_period()) { |
|
252 | 252 | |
253 | - $trial_period = getpaid_get_subscription_trial_period_period( $subscription->get_trial_period() ); |
|
254 | - $trial_interval = getpaid_get_subscription_trial_period_interval( $subscription->get_trial_period() ); |
|
253 | + $trial_period = getpaid_get_subscription_trial_period_period($subscription->get_trial_period()); |
|
254 | + $trial_interval = getpaid_get_subscription_trial_period_interval($subscription->get_trial_period()); |
|
255 | 255 | return sprintf( |
256 | 256 | |
257 | 257 | // translators: $1: is the initial amount, $2: is the trial period, $3: is the recurring amount, $4: is the recurring period |
258 | - _x( '%1$s trial for %2$s then %3$s / %4$s', 'Subscription amount. (e.g.: $10 trial for 1 month then $120 / year)', 'invoicing' ), |
|
258 | + _x('%1$s trial for %2$s then %3$s / %4$s', 'Subscription amount. (e.g.: $10 trial for 1 month then $120 / year)', 'invoicing'), |
|
259 | 259 | $initial, |
260 | - getpaid_get_subscription_period_label( $trial_period, $trial_interval ), |
|
260 | + getpaid_get_subscription_period_label($trial_period, $trial_interval), |
|
261 | 261 | $recurring, |
262 | 262 | $period |
263 | 263 | |
@@ -265,12 +265,12 @@ discard block |
||
265 | 265 | |
266 | 266 | } |
267 | 267 | |
268 | - if ( $initial != $recurring ) { |
|
268 | + if ($initial != $recurring) { |
|
269 | 269 | |
270 | 270 | return sprintf( |
271 | 271 | |
272 | 272 | // translators: $1: is the initial amount, $2: is the recurring amount, $3: is the recurring period |
273 | - _x( 'Initial payment of %1$s which renews at %2$s / %3$s', 'Subscription amount. (e.g.:Initial payment of $100 which renews at $120 / year)', 'invoicing' ), |
|
273 | + _x('Initial payment of %1$s which renews at %2$s / %3$s', 'Subscription amount. (e.g.:Initial payment of $100 which renews at $120 / year)', 'invoicing'), |
|
274 | 274 | $initial, |
275 | 275 | $recurring, |
276 | 276 | $period |
@@ -282,7 +282,7 @@ discard block |
||
282 | 282 | return sprintf( |
283 | 283 | |
284 | 284 | // translators: $1: is the recurring amount, $2: is the recurring period |
285 | - _x( '%1$s / %2$s', 'Subscription amount. (e.g.: $120 / year)', 'invoicing' ), |
|
285 | + _x('%1$s / %2$s', 'Subscription amount. (e.g.: $120 / year)', 'invoicing'), |
|
286 | 286 | $initial, |
287 | 287 | $period |
288 | 288 | |
@@ -296,8 +296,8 @@ discard block |
||
296 | 296 | * @param WPInv_Invoice $invoice |
297 | 297 | * @return WPInv_Subscription|bool |
298 | 298 | */ |
299 | -function getpaid_get_invoice_subscription( $invoice ) { |
|
300 | - return getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
299 | +function getpaid_get_invoice_subscription($invoice) { |
|
300 | + return getpaid_subscriptions()->get_invoice_subscription($invoice); |
|
301 | 301 | } |
302 | 302 | |
303 | 303 | /** |
@@ -305,9 +305,9 @@ discard block |
||
305 | 305 | * |
306 | 306 | * @param WPInv_Invoice $invoice |
307 | 307 | */ |
308 | -function getpaid_activate_invoice_subscription( $invoice ) { |
|
309 | - $subscription = getpaid_get_invoice_subscription( $invoice ); |
|
310 | - if ( is_a( $subscription, 'WPInv_Subscription' ) ) { |
|
308 | +function getpaid_activate_invoice_subscription($invoice) { |
|
309 | + $subscription = getpaid_get_invoice_subscription($invoice); |
|
310 | + if (is_a($subscription, 'WPInv_Subscription')) { |
|
311 | 311 | $subscription->activate(); |
312 | 312 | } |
313 | 313 | } |
@@ -318,7 +318,7 @@ discard block |
||
318 | 318 | * @return WPInv_Subscriptions |
319 | 319 | */ |
320 | 320 | function getpaid_subscriptions() { |
321 | - return getpaid()->get( 'subscriptions' ); |
|
321 | + return getpaid()->get('subscriptions'); |
|
322 | 322 | } |
323 | 323 | |
324 | 324 | /** |
@@ -326,13 +326,13 @@ discard block |
||
326 | 326 | * |
327 | 327 | * @return WPInv_Subscription|bool |
328 | 328 | */ |
329 | -function wpinv_get_subscription( $invoice ) { |
|
329 | +function wpinv_get_subscription($invoice) { |
|
330 | 330 | |
331 | 331 | // Retrieve the invoice. |
332 | - $invoice = new WPInv_Invoice( $invoice ); |
|
332 | + $invoice = new WPInv_Invoice($invoice); |
|
333 | 333 | |
334 | 334 | // Ensure it is a recurring invoice. |
335 | - if ( ! $invoice->is_recurring() ) { |
|
335 | + if (!$invoice->is_recurring()) { |
|
336 | 336 | return false; |
337 | 337 | } |
338 | 338 | |
@@ -344,6 +344,6 @@ discard block |
||
344 | 344 | ) |
345 | 345 | ); |
346 | 346 | |
347 | - return empty( $subscription ) ? false : $subscription[0]; |
|
347 | + return empty($subscription) ? false : $subscription[0]; |
|
348 | 348 | |
349 | 349 | } |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | * |
5 | 5 | */ |
6 | 6 | |
7 | -defined( 'ABSPATH' ) || exit; |
|
7 | +defined('ABSPATH') || exit; |
|
8 | 8 | |
9 | 9 | /** |
10 | 10 | * Manual Payment Gateway class. |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | * |
25 | 25 | * @var array |
26 | 26 | */ |
27 | - protected $supports = array( 'subscription' ); |
|
27 | + protected $supports = array('subscription'); |
|
28 | 28 | |
29 | 29 | /** |
30 | 30 | * Payment method order. |
@@ -39,10 +39,10 @@ discard block |
||
39 | 39 | public function __construct() { |
40 | 40 | parent::__construct(); |
41 | 41 | |
42 | - $this->title = __( 'Manual Payment', 'invoicing' ); |
|
43 | - $this->method_title = __( 'Manual Payment', 'invoicing' ); |
|
42 | + $this->title = __('Manual Payment', 'invoicing'); |
|
43 | + $this->method_title = __('Manual Payment', 'invoicing'); |
|
44 | 44 | |
45 | - add_filter( 'getpaid_daily_maintenance_should_expire_subscription', array( $this, 'maybe_renew_subscription' ), 10, 2 ); |
|
45 | + add_filter('getpaid_daily_maintenance_should_expire_subscription', array($this, 'maybe_renew_subscription'), 10, 2); |
|
46 | 46 | } |
47 | 47 | |
48 | 48 | /** |
@@ -54,16 +54,16 @@ discard block |
||
54 | 54 | * @param GetPaid_Payment_Form_Submission $submission Checkout submission. |
55 | 55 | * @return array |
56 | 56 | */ |
57 | - public function process_payment( $invoice, $submission_data, $submission ) { |
|
57 | + public function process_payment($invoice, $submission_data, $submission) { |
|
58 | 58 | |
59 | 59 | // Mark it as paid. |
60 | 60 | $invoice->mark_paid(); |
61 | 61 | |
62 | 62 | // (Maybe) activate subscription. |
63 | - getpaid_activate_invoice_subscription( $invoice ); |
|
63 | + getpaid_activate_invoice_subscription($invoice); |
|
64 | 64 | |
65 | 65 | // Send to the success page. |
66 | - wpinv_send_to_success_page( array( 'invoice_key' => $invoice->get_key() ) ); |
|
66 | + wpinv_send_to_success_page(array('invoice_key' => $invoice->get_key())); |
|
67 | 67 | |
68 | 68 | } |
69 | 69 | |
@@ -74,15 +74,15 @@ discard block |
||
74 | 74 | * @param bool $should_expire |
75 | 75 | * @param WPInv_Subscription $subscription |
76 | 76 | */ |
77 | - public function maybe_renew_subscription( $should_expire, $subscription ) { |
|
77 | + public function maybe_renew_subscription($should_expire, $subscription) { |
|
78 | 78 | |
79 | 79 | // Ensure its our subscription && it's active. |
80 | - if ( 'manual' != $subscription->get_gateway() || ! $subscription->has_status( 'active trialling' ) ) { |
|
80 | + if ('manual' != $subscription->get_gateway() || !$subscription->has_status('active trialling')) { |
|
81 | 81 | return $should_expire; |
82 | 82 | } |
83 | 83 | |
84 | 84 | // If this is the last renewal, complete the subscription. |
85 | - if ( $subscription->is_last_renewal() ) { |
|
85 | + if ($subscription->is_last_renewal()) { |
|
86 | 86 | $subscription->complete(); |
87 | 87 | return false; |
88 | 88 | } |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | * |
5 | 5 | */ |
6 | 6 | |
7 | -defined( 'ABSPATH' ) || exit; |
|
7 | +defined('ABSPATH') || exit; |
|
8 | 8 | |
9 | 9 | /** |
10 | 10 | * Represents a single email type. |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | * @param string $id Email Type. |
33 | 33 | * @param mixed $object Optional. Associated object. |
34 | 34 | */ |
35 | - public function __construct( $id, $object = false ) { |
|
35 | + public function __construct($id, $object = false) { |
|
36 | 36 | $this->id = $id; |
37 | 37 | $this->object = $object; |
38 | 38 | } |
@@ -42,18 +42,18 @@ discard block |
||
42 | 42 | * |
43 | 43 | * @return mixed |
44 | 44 | */ |
45 | - public function get_option( $key ) { |
|
45 | + public function get_option($key) { |
|
46 | 46 | |
47 | 47 | $key = "email_{$this->id}_$key"; |
48 | - $value = wpinv_get_option( $key, null ); |
|
49 | - if ( is_null( $value ) ) { |
|
48 | + $value = wpinv_get_option($key, null); |
|
49 | + if (is_null($value)) { |
|
50 | 50 | $options = wpinv_get_emails(); |
51 | 51 | |
52 | - if ( ! isset( $options[ $this->id ] ) || ! isset( $options[ $this->id ][ $key ] ) ) { |
|
52 | + if (!isset($options[$this->id]) || !isset($options[$this->id][$key])) { |
|
53 | 53 | return ''; |
54 | 54 | } |
55 | 55 | |
56 | - $value = isset( $options[ $this->id ][ $key ]['std'] ) ? $options[ $this->id ][ $key ]['std'] : ''; |
|
56 | + $value = isset($options[$this->id][$key]['std']) ? $options[$this->id][$key]['std'] : ''; |
|
57 | 57 | } |
58 | 58 | |
59 | 59 | return $value; |
@@ -65,8 +65,8 @@ discard block |
||
65 | 65 | * @return string |
66 | 66 | */ |
67 | 67 | public function get_body() { |
68 | - $body = $this->get_option( 'body' ); |
|
69 | - return apply_filters( 'getpaid_get_email_body', $body, $this->id, $this->object ); |
|
68 | + $body = $this->get_option('body'); |
|
69 | + return apply_filters('getpaid_get_email_body', $body, $this->id, $this->object); |
|
70 | 70 | } |
71 | 71 | |
72 | 72 | /** |
@@ -75,8 +75,8 @@ discard block |
||
75 | 75 | * @return string |
76 | 76 | */ |
77 | 77 | public function get_subject() { |
78 | - $subject = $this->get_option( 'subject' ); |
|
79 | - return apply_filters( 'getpaid_get_email_subject', $subject, $this->id, $this->object ); |
|
78 | + $subject = $this->get_option('subject'); |
|
79 | + return apply_filters('getpaid_get_email_subject', $subject, $this->id, $this->object); |
|
80 | 80 | } |
81 | 81 | |
82 | 82 | /** |
@@ -85,8 +85,8 @@ discard block |
||
85 | 85 | * @return string |
86 | 86 | */ |
87 | 87 | public function get_heading() { |
88 | - $heading = $this->get_option( 'heading' ); |
|
89 | - return apply_filters( 'getpaid_get_email_heading', $heading, $this->id, $this->object ); |
|
88 | + $heading = $this->get_option('heading'); |
|
89 | + return apply_filters('getpaid_get_email_heading', $heading, $this->id, $this->object); |
|
90 | 90 | } |
91 | 91 | |
92 | 92 | /** |
@@ -95,8 +95,8 @@ discard block |
||
95 | 95 | * @return bool |
96 | 96 | */ |
97 | 97 | public function is_active() { |
98 | - $is_active = ! empty( $this->get_option( 'active' ) ); |
|
99 | - return apply_filters( 'getpaid_email_type_is_active', $is_active, $this->id, $this->object ); |
|
98 | + $is_active = !empty($this->get_option('active')); |
|
99 | + return apply_filters('getpaid_email_type_is_active', $is_active, $this->id, $this->object); |
|
100 | 100 | } |
101 | 101 | |
102 | 102 | /** |
@@ -105,8 +105,8 @@ discard block |
||
105 | 105 | * @return bool |
106 | 106 | */ |
107 | 107 | public function include_admin_bcc() { |
108 | - $include_admin_bcc = ! empty( $this->get_option( 'admin_bcc' ) ); |
|
109 | - return apply_filters( 'getpaid_email_type_include_admin_bcc', $include_admin_bcc, $this->id, $this->object ); |
|
108 | + $include_admin_bcc = !empty($this->get_option('admin_bcc')); |
|
109 | + return apply_filters('getpaid_email_type_include_admin_bcc', $include_admin_bcc, $this->id, $this->object); |
|
110 | 110 | } |
111 | 111 | |
112 | 112 | /** |
@@ -115,8 +115,8 @@ discard block |
||
115 | 115 | * @return bool |
116 | 116 | */ |
117 | 117 | public function is_admin_email() { |
118 | - $is_admin_email = in_array( $this->id, array( 'new_invoice', 'cancelled_invoice', 'failed_invoice' ) ); |
|
119 | - return apply_filters( 'getpaid_email_type_is_admin_email', $is_admin_email, $this->id, $this->object ); |
|
118 | + $is_admin_email = in_array($this->id, array('new_invoice', 'cancelled_invoice', 'failed_invoice')); |
|
119 | + return apply_filters('getpaid_email_type_is_admin_email', $is_admin_email, $this->id, $this->object); |
|
120 | 120 | } |
121 | 121 | |
122 | 122 | /** |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | * @return array |
126 | 126 | */ |
127 | 127 | public function get_attachments() { |
128 | - return apply_filters( 'getpaid_get_email_attachments', array(), $this->id, $this->object ); |
|
128 | + return apply_filters('getpaid_get_email_attachments', array(), $this->id, $this->object); |
|
129 | 129 | } |
130 | 130 | |
131 | 131 | /** |
@@ -137,10 +137,10 @@ discard block |
||
137 | 137 | |
138 | 138 | $merge_tags = array( |
139 | 139 | '{site_title}' => wpinv_get_blogname(), |
140 | - '{date}' => getpaid_format_date_value( current_time( 'mysql' ) ), |
|
140 | + '{date}' => getpaid_format_date_value(current_time('mysql')), |
|
141 | 141 | ); |
142 | 142 | |
143 | - return apply_filters( 'getpaid_get_email_merge_tags', $merge_tags, $this->object, $this->id ); |
|
143 | + return apply_filters('getpaid_get_email_merge_tags', $merge_tags, $this->object, $this->id); |
|
144 | 144 | } |
145 | 145 | |
146 | 146 | /** |
@@ -150,13 +150,13 @@ discard block |
||
150 | 150 | * @param array $merge_tags |
151 | 151 | * @return string |
152 | 152 | */ |
153 | - public function add_merge_tags( $text, $merge_tags = array() ) { |
|
153 | + public function add_merge_tags($text, $merge_tags = array()) { |
|
154 | 154 | |
155 | - foreach ( $merge_tags as $key => $value ) { |
|
156 | - $text = str_replace( $key, $value, $text ); |
|
155 | + foreach ($merge_tags as $key => $value) { |
|
156 | + $text = str_replace($key, $value, $text); |
|
157 | 157 | } |
158 | 158 | |
159 | - return wptexturize( $text ); |
|
159 | + return wptexturize($text); |
|
160 | 160 | } |
161 | 161 | |
162 | 162 | /** |
@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | * @param array $extra_args Extra template args |
167 | 167 | * @return string |
168 | 168 | */ |
169 | - public function get_content( $merge_tags = array(), $extra_args = array() ) { |
|
169 | + public function get_content($merge_tags = array(), $extra_args = array()) { |
|
170 | 170 | |
171 | 171 | $content = wpinv_get_template_html( |
172 | 172 | "emails/wpinv-email-{$this->id}.php", |
@@ -176,15 +176,15 @@ discard block |
||
176 | 176 | 'invoice' => $this->object, // Backwards compat. |
177 | 177 | 'object' => $this->object, |
178 | 178 | 'email_type' => $this->id, |
179 | - 'email_heading' => $this->add_merge_tags( $this->get_heading(), $merge_tags ), |
|
179 | + 'email_heading' => $this->add_merge_tags($this->get_heading(), $merge_tags), |
|
180 | 180 | 'sent_to_admin' => $this->is_admin_email(), |
181 | 181 | 'plain_text' => false, |
182 | - 'message_body' => wpautop( $this->add_merge_tags( $this->get_body(), $merge_tags ) ), |
|
182 | + 'message_body' => wpautop($this->add_merge_tags($this->get_body(), $merge_tags)), |
|
183 | 183 | ) |
184 | 184 | ) |
185 | 185 | ); |
186 | 186 | |
187 | - return wpinv_email_style_body( $content ); |
|
187 | + return wpinv_email_style_body($content); |
|
188 | 188 | } |
189 | 189 | |
190 | 190 | } |
@@ -8,24 +8,24 @@ discard block |
||
8 | 8 | * @version 1.0.19 |
9 | 9 | */ |
10 | 10 | |
11 | -defined( 'ABSPATH' ) || exit; |
|
11 | +defined('ABSPATH') || exit; |
|
12 | 12 | |
13 | 13 | // Prepare the due date reminder options. |
14 | 14 | $overdue_days_options = array(); |
15 | -$overdue_days_options['0'] = __( 'On the Due Date', 'invoicing' ); |
|
16 | -$overdue_days_options['1'] = __( '1 day after Due Date', 'invoicing' ); |
|
15 | +$overdue_days_options['0'] = __('On the Due Date', 'invoicing'); |
|
16 | +$overdue_days_options['1'] = __('1 day after Due Date', 'invoicing'); |
|
17 | 17 | |
18 | -for ( $i = 2; $i <= 10; $i++ ) { |
|
19 | - $overdue_days_options["$i"] = wp_sprintf( __( '%d days after Due Date', 'invoicing' ), $i ); |
|
18 | +for ($i = 2; $i <= 10; $i++) { |
|
19 | + $overdue_days_options["$i"] = wp_sprintf(__('%d days after Due Date', 'invoicing'), $i); |
|
20 | 20 | } |
21 | 21 | |
22 | 22 | // Prepare up coming renewal reminder options. |
23 | 23 | $renewal_days_options = array(); |
24 | -$renewal_days_options['0'] = __( 'On the renewal date', 'invoicing' ); |
|
25 | -$renewal_days_options['1'] = __( '1 day before the renewal date', 'invoicing' ); |
|
24 | +$renewal_days_options['0'] = __('On the renewal date', 'invoicing'); |
|
25 | +$renewal_days_options['1'] = __('1 day before the renewal date', 'invoicing'); |
|
26 | 26 | |
27 | -for ( $i = 2; $i <= 10; $i++ ) { |
|
28 | - $renewal_days_options["$i"] = wp_sprintf( __( '%d days before the renewal date', 'invoicing' ), $i ); |
|
27 | +for ($i = 2; $i <= 10; $i++) { |
|
28 | + $renewal_days_options["$i"] = wp_sprintf(__('%d days before the renewal date', 'invoicing'), $i); |
|
29 | 29 | } |
30 | 30 | |
31 | 31 | // Default, built-in gateways |
@@ -34,45 +34,45 @@ discard block |
||
34 | 34 | |
35 | 35 | 'email_new_invoice_header' => array( |
36 | 36 | 'id' => 'email_new_invoice_header', |
37 | - 'name' => '<h3>' . __( 'New Invoice', 'invoicing' ) . '</h3>', |
|
38 | - 'desc' => __( 'These emails are sent to the site admin whenever there is a new invoice.', 'invoicing' ), |
|
37 | + 'name' => '<h3>' . __('New Invoice', 'invoicing') . '</h3>', |
|
38 | + 'desc' => __('These emails are sent to the site admin whenever there is a new invoice.', 'invoicing'), |
|
39 | 39 | 'type' => 'header', |
40 | 40 | ), |
41 | 41 | |
42 | 42 | 'email_new_invoice_active' => array( |
43 | 43 | 'id' => 'email_new_invoice_active', |
44 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
45 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
44 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
45 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
46 | 46 | 'type' => 'checkbox', |
47 | 47 | 'std' => 1 |
48 | 48 | ), |
49 | 49 | |
50 | 50 | 'email_new_invoice_subject' => array( |
51 | 51 | 'id' => 'email_new_invoice_subject', |
52 | - 'name' => __( 'Subject', 'invoicing' ), |
|
53 | - 'desc' => __( 'Enter the subject line for the invoice receipt email.', 'invoicing' ), |
|
52 | + 'name' => __('Subject', 'invoicing'), |
|
53 | + 'desc' => __('Enter the subject line for the invoice receipt email.', 'invoicing'), |
|
54 | 54 | 'help-tip' => true, |
55 | 55 | 'type' => 'text', |
56 | - 'std' => __( '[{site_title}] We sent your invoice ({invoice_number}) for {invoice_total} {invoice_currency}', 'invoicing' ), |
|
56 | + 'std' => __('[{site_title}] We sent your invoice ({invoice_number}) for {invoice_total} {invoice_currency}', 'invoicing'), |
|
57 | 57 | 'size' => 'large' |
58 | 58 | ), |
59 | 59 | |
60 | 60 | 'email_new_invoice_heading' => array( |
61 | 61 | 'id' => 'email_new_invoice_heading', |
62 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
63 | - 'desc' => __( 'Enter the main heading contained within the email notification for the invoice receipt email.', 'invoicing' ), |
|
62 | + 'name' => __('Email Heading', 'invoicing'), |
|
63 | + 'desc' => __('Enter the main heading contained within the email notification for the invoice receipt email.', 'invoicing'), |
|
64 | 64 | 'help-tip' => true, |
65 | 65 | 'type' => 'text', |
66 | - 'std' => __( 'Invoice sent', 'invoicing' ), |
|
66 | + 'std' => __('Invoice sent', 'invoicing'), |
|
67 | 67 | 'size' => 'large' |
68 | 68 | ), |
69 | 69 | |
70 | 70 | 'email_new_invoice_body' => array( |
71 | 71 | 'id' => 'email_new_invoice_body', |
72 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
73 | - 'desc' => __( 'The content of the email (wildcards and HTML are allowed).', 'invoicing' ), |
|
72 | + 'name' => __('Email Content', 'invoicing'), |
|
73 | + 'desc' => __('The content of the email (wildcards and HTML are allowed).', 'invoicing'), |
|
74 | 74 | 'type' => 'rich_editor', |
75 | - 'std' => __( '<p>We sent your invoice <a href="{invoice_link}">({invoice_number})</a> to {name} for {invoice_total} {invoice_currency}.</p>', 'invoicing' ), |
|
75 | + 'std' => __('<p>We sent your invoice <a href="{invoice_link}">({invoice_number})</a> to {name} for {invoice_total} {invoice_currency}.</p>', 'invoicing'), |
|
76 | 76 | 'class' => 'large', |
77 | 77 | 'size' => '10' |
78 | 78 | ), |
@@ -82,45 +82,45 @@ discard block |
||
82 | 82 | |
83 | 83 | 'email_cancelled_invoice_header' => array( |
84 | 84 | 'id' => 'email_cancelled_invoice_header', |
85 | - 'name' => '<h3>' . __( 'Cancelled Invoice', 'invoicing' ) . '</h3>', |
|
86 | - 'desc' => __( 'These emails are sent to the site admin whenever invoices are cancelled.', 'invoicing' ), |
|
85 | + 'name' => '<h3>' . __('Cancelled Invoice', 'invoicing') . '</h3>', |
|
86 | + 'desc' => __('These emails are sent to the site admin whenever invoices are cancelled.', 'invoicing'), |
|
87 | 87 | 'type' => 'header', |
88 | 88 | ), |
89 | 89 | |
90 | 90 | 'email_cancelled_invoice_active' => array( |
91 | 91 | 'id' => 'email_cancelled_invoice_active', |
92 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
93 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
92 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
93 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
94 | 94 | 'type' => 'checkbox', |
95 | 95 | 'std' => 1 |
96 | 96 | ), |
97 | 97 | |
98 | 98 | 'email_cancelled_invoice_subject' => array( |
99 | 99 | 'id' => 'email_cancelled_invoice_subject', |
100 | - 'name' => __( 'Subject', 'invoicing' ), |
|
101 | - 'desc' => __( 'Enter the subject line for the invoice receipt email.', 'invoicing' ), |
|
100 | + 'name' => __('Subject', 'invoicing'), |
|
101 | + 'desc' => __('Enter the subject line for the invoice receipt email.', 'invoicing'), |
|
102 | 102 | 'help-tip' => true, |
103 | 103 | 'type' => 'text', |
104 | - 'std' => __( '[{site_title}] Cancelled invoice ({invoice_number})', 'invoicing' ), |
|
104 | + 'std' => __('[{site_title}] Cancelled invoice ({invoice_number})', 'invoicing'), |
|
105 | 105 | 'size' => 'large' |
106 | 106 | ), |
107 | 107 | |
108 | 108 | 'email_cancelled_invoice_heading' => array( |
109 | 109 | 'id' => 'email_cancelled_invoice_heading', |
110 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
111 | - 'desc' => __( 'Enter the main heading contained within the email notification.', 'invoicing' ), |
|
110 | + 'name' => __('Email Heading', 'invoicing'), |
|
111 | + 'desc' => __('Enter the main heading contained within the email notification.', 'invoicing'), |
|
112 | 112 | 'help-tip' => true, |
113 | 113 | 'type' => 'text', |
114 | - 'std' => __( 'Cancelled Invoice', 'invoicing' ), |
|
114 | + 'std' => __('Cancelled Invoice', 'invoicing'), |
|
115 | 115 | 'size' => 'large' |
116 | 116 | ), |
117 | 117 | |
118 | 118 | 'email_cancelled_invoice_body' => array( |
119 | 119 | 'id' => 'email_cancelled_invoice_body', |
120 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
121 | - 'desc' => __( 'The content of the email (wildcards and HTML are allowed).', 'invoicing' ), |
|
120 | + 'name' => __('Email Content', 'invoicing'), |
|
121 | + 'desc' => __('The content of the email (wildcards and HTML are allowed).', 'invoicing'), |
|
122 | 122 | 'type' => 'rich_editor', |
123 | - 'std' => __( '<p>The invoice <a href="{invoice_link}">#{invoice_number}</a> created for {name} on {site_title} has been cancelled.</p>', 'invoicing' ), |
|
123 | + 'std' => __('<p>The invoice <a href="{invoice_link}">#{invoice_number}</a> created for {name} on {site_title} has been cancelled.</p>', 'invoicing'), |
|
124 | 124 | 'class' => 'large', |
125 | 125 | 'size' => '10' |
126 | 126 | ), |
@@ -131,45 +131,45 @@ discard block |
||
131 | 131 | |
132 | 132 | 'email_failed_invoice_header' => array( |
133 | 133 | 'id' => 'email_failed_invoice_header', |
134 | - 'name' => '<h3>' . __( 'Failed Invoice', 'invoicing' ) . '</h3>', |
|
135 | - 'desc' => __( 'Failed invoice emails are sent to the site admin when invoice payments fail.', 'invoicing' ), |
|
134 | + 'name' => '<h3>' . __('Failed Invoice', 'invoicing') . '</h3>', |
|
135 | + 'desc' => __('Failed invoice emails are sent to the site admin when invoice payments fail.', 'invoicing'), |
|
136 | 136 | 'type' => 'header', |
137 | 137 | ), |
138 | 138 | |
139 | 139 | 'email_failed_invoice_active' => array( |
140 | 140 | 'id' => 'email_failed_invoice_active', |
141 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
142 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
141 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
142 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
143 | 143 | 'type' => 'checkbox', |
144 | 144 | 'std' => 1 |
145 | 145 | ), |
146 | 146 | |
147 | 147 | 'email_failed_invoice_subject' => array( |
148 | 148 | 'id' => 'email_failed_invoice_subject', |
149 | - 'name' => __( 'Subject', 'invoicing' ), |
|
150 | - 'desc' => __( 'Enter the subject line for the invoice receipt email.', 'invoicing' ), |
|
149 | + 'name' => __('Subject', 'invoicing'), |
|
150 | + 'desc' => __('Enter the subject line for the invoice receipt email.', 'invoicing'), |
|
151 | 151 | 'help-tip' => true, |
152 | 152 | 'type' => 'text', |
153 | - 'std' => __( '[{site_title}] Failed invoice ({invoice_number})', 'invoicing' ), |
|
153 | + 'std' => __('[{site_title}] Failed invoice ({invoice_number})', 'invoicing'), |
|
154 | 154 | 'size' => 'large' |
155 | 155 | ), |
156 | 156 | |
157 | 157 | 'email_failed_invoice_heading' => array( |
158 | 158 | 'id' => 'email_failed_invoice_heading', |
159 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
160 | - 'desc' => __( 'Enter the main heading contained within the email notification.', 'invoicing' ), |
|
159 | + 'name' => __('Email Heading', 'invoicing'), |
|
160 | + 'desc' => __('Enter the main heading contained within the email notification.', 'invoicing'), |
|
161 | 161 | 'help-tip' => true, |
162 | 162 | 'type' => 'text', |
163 | - 'std' => __( 'Failed invoice', 'invoicing' ), |
|
163 | + 'std' => __('Failed invoice', 'invoicing'), |
|
164 | 164 | 'size' => 'large' |
165 | 165 | ), |
166 | 166 | |
167 | 167 | 'email_failed_invoice_body' => array( |
168 | 168 | 'id' => 'email_failed_invoice_body', |
169 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
170 | - 'desc' => __( 'The content of the email (wildcards and HTML are allowed).', 'invoicing' ), |
|
169 | + 'name' => __('Email Content', 'invoicing'), |
|
170 | + 'desc' => __('The content of the email (wildcards and HTML are allowed).', 'invoicing'), |
|
171 | 171 | 'type' => 'rich_editor', |
172 | - 'std' => __( '<p>Payment for the invoice <a href="{invoice_link}">#{invoice_number}</a> on {site_title} has failed to go through.</p>', 'invoicing' ), |
|
172 | + 'std' => __('<p>Payment for the invoice <a href="{invoice_link}">#{invoice_number}</a> on {site_title} has failed to go through.</p>', 'invoicing'), |
|
173 | 173 | 'class' => 'large', |
174 | 174 | 'size' => '10' |
175 | 175 | ), |
@@ -179,53 +179,53 @@ discard block |
||
179 | 179 | |
180 | 180 | 'email_onhold_invoice_header' => array( |
181 | 181 | 'id' => 'email_onhold_invoice_header', |
182 | - 'name' => '<h3>' . __( 'On Hold Invoice', 'invoicing' ) . '</h3>', |
|
183 | - 'desc' => __( 'These emails are sent to customers whenever their invoices are held.', 'invoicing' ), |
|
182 | + 'name' => '<h3>' . __('On Hold Invoice', 'invoicing') . '</h3>', |
|
183 | + 'desc' => __('These emails are sent to customers whenever their invoices are held.', 'invoicing'), |
|
184 | 184 | 'type' => 'header', |
185 | 185 | ), |
186 | 186 | |
187 | 187 | 'email_onhold_invoice_active' => array( |
188 | 188 | 'id' => 'email_onhold_invoice_active', |
189 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
190 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
189 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
190 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
191 | 191 | 'type' => 'checkbox', |
192 | 192 | 'std' => 1 |
193 | 193 | ), |
194 | 194 | |
195 | 195 | 'email_onhold_invoice_admin_bcc' => array( |
196 | 196 | 'id' => 'email_onhold_invoice_admin_bcc', |
197 | - 'name' => __( 'Enable Admin BCC', 'invoicing' ), |
|
198 | - 'desc' => __( 'Check if you want to send this notification email to site Admin.', 'invoicing' ), |
|
197 | + 'name' => __('Enable Admin BCC', 'invoicing'), |
|
198 | + 'desc' => __('Check if you want to send this notification email to site Admin.', 'invoicing'), |
|
199 | 199 | 'type' => 'checkbox', |
200 | 200 | 'std' => 1 |
201 | 201 | ), |
202 | 202 | |
203 | 203 | 'email_onhold_invoice_subject' => array( |
204 | 204 | 'id' => 'email_onhold_invoice_subject', |
205 | - 'name' => __( 'Subject', 'invoicing' ), |
|
206 | - 'desc' => __( 'Enter the subject line for the invoice receipt email.', 'invoicing' ), |
|
205 | + 'name' => __('Subject', 'invoicing'), |
|
206 | + 'desc' => __('Enter the subject line for the invoice receipt email.', 'invoicing'), |
|
207 | 207 | 'help-tip' => true, |
208 | 208 | 'type' => 'text', |
209 | - 'std' => __( '[{site_title}] Your invoice receipt from {invoice_date}', 'invoicing' ), |
|
209 | + 'std' => __('[{site_title}] Your invoice receipt from {invoice_date}', 'invoicing'), |
|
210 | 210 | 'size' => 'large' |
211 | 211 | ), |
212 | 212 | |
213 | 213 | 'email_onhold_invoice_heading' => array( |
214 | 214 | 'id' => 'email_onhold_invoice_heading', |
215 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
216 | - 'desc' => __( 'Enter the main heading contained within the email notification.', 'invoicing' ), |
|
215 | + 'name' => __('Email Heading', 'invoicing'), |
|
216 | + 'desc' => __('Enter the main heading contained within the email notification.', 'invoicing'), |
|
217 | 217 | 'help-tip' => true, |
218 | 218 | 'type' => 'text', |
219 | - 'std' => __( 'Thank you for your invoice', 'invoicing' ), |
|
219 | + 'std' => __('Thank you for your invoice', 'invoicing'), |
|
220 | 220 | 'size' => 'large' |
221 | 221 | ), |
222 | 222 | |
223 | 223 | 'email_onhold_invoice_body' => array( |
224 | 224 | 'id' => 'email_onhold_invoice_body', |
225 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
226 | - 'desc' => __( 'The content of the email (wildcards and HTML are allowed).', 'invoicing' ), |
|
225 | + 'name' => __('Email Content', 'invoicing'), |
|
226 | + 'desc' => __('The content of the email (wildcards and HTML are allowed).', 'invoicing'), |
|
227 | 227 | 'type' => 'rich_editor', |
228 | - 'std' => __( '<p>Hi {name},</p><p>Your invoice is on-hold and will be processed when we receive your payment.</p>', 'invoicing' ), |
|
228 | + 'std' => __('<p>Hi {name},</p><p>Your invoice is on-hold and will be processed when we receive your payment.</p>', 'invoicing'), |
|
229 | 229 | 'class' => 'large', |
230 | 230 | 'size' => '10' |
231 | 231 | ), |
@@ -236,53 +236,53 @@ discard block |
||
236 | 236 | |
237 | 237 | 'email_processing_invoice_header' => array( |
238 | 238 | 'id' => 'email_processing_invoice_header', |
239 | - 'name' => '<h3>' . __( 'Processing Invoice', 'invoicing' ) . '</h3>', |
|
240 | - 'desc' => __( 'These emails are sent to users whenever payments for their invoices are processing.', 'invoicing' ), |
|
239 | + 'name' => '<h3>' . __('Processing Invoice', 'invoicing') . '</h3>', |
|
240 | + 'desc' => __('These emails are sent to users whenever payments for their invoices are processing.', 'invoicing'), |
|
241 | 241 | 'type' => 'header', |
242 | 242 | ), |
243 | 243 | |
244 | 244 | 'email_processing_invoice_active' => array( |
245 | 245 | 'id' => 'email_processing_invoice_active', |
246 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
247 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
246 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
247 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
248 | 248 | 'type' => 'checkbox', |
249 | 249 | 'std' => 1 |
250 | 250 | ), |
251 | 251 | |
252 | 252 | 'email_processing_invoice_admin_bcc' => array( |
253 | 253 | 'id' => 'email_processing_invoice_admin_bcc', |
254 | - 'name' => __( 'Enable Admin BCC', 'invoicing' ), |
|
255 | - 'desc' => __( 'Check if you want to send a copy of this notification email to the site admin.', 'invoicing' ), |
|
254 | + 'name' => __('Enable Admin BCC', 'invoicing'), |
|
255 | + 'desc' => __('Check if you want to send a copy of this notification email to the site admin.', 'invoicing'), |
|
256 | 256 | 'type' => 'checkbox', |
257 | 257 | 'std' => 1 |
258 | 258 | ), |
259 | 259 | |
260 | 260 | 'email_processing_invoice_subject' => array( |
261 | 261 | 'id' => 'email_processing_invoice_subject', |
262 | - 'name' => __( 'Subject', 'invoicing' ), |
|
263 | - 'desc' => __( 'Enter the subject line for the invoice receipt email.', 'invoicing' ), |
|
262 | + 'name' => __('Subject', 'invoicing'), |
|
263 | + 'desc' => __('Enter the subject line for the invoice receipt email.', 'invoicing'), |
|
264 | 264 | 'help-tip' => true, |
265 | 265 | 'type' => 'text', |
266 | - 'std' => __( '[{site_title}] Your invoice receipt from {invoice_date}', 'invoicing' ), |
|
266 | + 'std' => __('[{site_title}] Your invoice receipt from {invoice_date}', 'invoicing'), |
|
267 | 267 | 'size' => 'large' |
268 | 268 | ), |
269 | 269 | |
270 | 270 | 'email_processing_invoice_heading' => array( |
271 | 271 | 'id' => 'email_processing_invoice_heading', |
272 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
273 | - 'desc' => __( 'Enter the main heading contained within the email notification for the invoice receipt email.', 'invoicing' ), |
|
272 | + 'name' => __('Email Heading', 'invoicing'), |
|
273 | + 'desc' => __('Enter the main heading contained within the email notification for the invoice receipt email.', 'invoicing'), |
|
274 | 274 | 'help-tip' => true, |
275 | 275 | 'type' => 'text', |
276 | - 'std' => __( 'Thank you for your invoice', 'invoicing' ), |
|
276 | + 'std' => __('Thank you for your invoice', 'invoicing'), |
|
277 | 277 | 'size' => 'large' |
278 | 278 | ), |
279 | 279 | |
280 | 280 | 'email_processing_invoice_body' => array( |
281 | 281 | 'id' => 'email_processing_invoice_body', |
282 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
283 | - 'desc' => __( 'The content of the email (wildcards and HTML are allowed).', 'invoicing' ), |
|
282 | + 'name' => __('Email Content', 'invoicing'), |
|
283 | + 'desc' => __('The content of the email (wildcards and HTML are allowed).', 'invoicing'), |
|
284 | 284 | 'type' => 'rich_editor', |
285 | - 'std' => __( '<p>Hi {name},</p><p>I would like to let you know that we have received and are currently processing your payment for the invoice <a href="{invoice_link}">#{invoice_number}</a> on {site_title}.</p>', 'invoicing' ), |
|
285 | + 'std' => __('<p>Hi {name},</p><p>I would like to let you know that we have received and are currently processing your payment for the invoice <a href="{invoice_link}">#{invoice_number}</a> on {site_title}.</p>', 'invoicing'), |
|
286 | 286 | 'class' => 'large', |
287 | 287 | 'size' => '10' |
288 | 288 | ), |
@@ -293,61 +293,61 @@ discard block |
||
293 | 293 | |
294 | 294 | 'email_completed_invoice_header' => array( |
295 | 295 | 'id' => 'email_completed_invoice_header', |
296 | - 'name' => '<h3>' . __( 'Paid Invoice', 'invoicing' ) . '</h3>', |
|
297 | - 'desc' => __( 'These emails are sent to customers when their invoices are marked as paid.', 'invoicing' ), |
|
296 | + 'name' => '<h3>' . __('Paid Invoice', 'invoicing') . '</h3>', |
|
297 | + 'desc' => __('These emails are sent to customers when their invoices are marked as paid.', 'invoicing'), |
|
298 | 298 | 'type' => 'header', |
299 | 299 | ), |
300 | 300 | |
301 | 301 | 'email_completed_invoice_active' => array( |
302 | 302 | 'id' => 'email_completed_invoice_active', |
303 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
304 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
303 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
304 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
305 | 305 | 'type' => 'checkbox', |
306 | 306 | 'std' => 1 |
307 | 307 | ), |
308 | 308 | |
309 | 309 | 'email_completed_invoice_renewal_active' => array( |
310 | 310 | 'id' => 'email_completed_invoice_renewal_active', |
311 | - 'name' => __( 'Enable renewal notification', 'invoicing' ), |
|
312 | - 'desc' => __( 'Should this email be sent for renewals too?', 'invoicing' ), |
|
311 | + 'name' => __('Enable renewal notification', 'invoicing'), |
|
312 | + 'desc' => __('Should this email be sent for renewals too?', 'invoicing'), |
|
313 | 313 | 'type' => 'checkbox', |
314 | 314 | 'std' => 1 |
315 | 315 | ), |
316 | 316 | |
317 | 317 | 'email_completed_invoice_admin_bcc' => array( |
318 | 318 | 'id' => 'email_completed_invoice_admin_bcc', |
319 | - 'name' => __( 'Enable Admin BCC', 'invoicing' ), |
|
320 | - 'desc' => __( 'Check if you want to send a copy of this notification email to the site admin.', 'invoicing' ), |
|
319 | + 'name' => __('Enable Admin BCC', 'invoicing'), |
|
320 | + 'desc' => __('Check if you want to send a copy of this notification email to the site admin.', 'invoicing'), |
|
321 | 321 | 'type' => 'checkbox', |
322 | 322 | 'std' => 1, |
323 | 323 | ), |
324 | 324 | |
325 | 325 | 'email_completed_invoice_subject' => array( |
326 | 326 | 'id' => 'email_completed_invoice_subject', |
327 | - 'name' => __( 'Subject', 'invoicing' ), |
|
328 | - 'desc' => __( 'Enter the subject line for the invoice receipt email.', 'invoicing' ), |
|
327 | + 'name' => __('Subject', 'invoicing'), |
|
328 | + 'desc' => __('Enter the subject line for the invoice receipt email.', 'invoicing'), |
|
329 | 329 | 'help-tip' => true, |
330 | 330 | 'type' => 'text', |
331 | - 'std' => __( '[{site_title}] Your invoice from {invoice_date} has been paid', 'invoicing' ), |
|
331 | + 'std' => __('[{site_title}] Your invoice from {invoice_date} has been paid', 'invoicing'), |
|
332 | 332 | 'size' => 'large' |
333 | 333 | ), |
334 | 334 | |
335 | 335 | 'email_completed_invoice_heading' => array( |
336 | 336 | 'id' => 'email_completed_invoice_heading', |
337 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
338 | - 'desc' => __( 'Enter the main heading contained within the email notification for the invoice receipt email.', 'invoicing' ), |
|
337 | + 'name' => __('Email Heading', 'invoicing'), |
|
338 | + 'desc' => __('Enter the main heading contained within the email notification for the invoice receipt email.', 'invoicing'), |
|
339 | 339 | 'help-tip' => true, |
340 | 340 | 'type' => 'text', |
341 | - 'std' => __( 'Your invoice has been paid', 'invoicing' ), |
|
341 | + 'std' => __('Your invoice has been paid', 'invoicing'), |
|
342 | 342 | 'size' => 'large' |
343 | 343 | ), |
344 | 344 | |
345 | 345 | 'email_completed_invoice_body' => array( |
346 | 346 | 'id' => 'email_completed_invoice_body', |
347 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
348 | - 'desc' => __( 'The content of the email (wildcards and HTML are allowed).', 'invoicing' ), |
|
347 | + 'name' => __('Email Content', 'invoicing'), |
|
348 | + 'desc' => __('The content of the email (wildcards and HTML are allowed).', 'invoicing'), |
|
349 | 349 | 'type' => 'rich_editor', |
350 | - 'std' => __( '<p>Hi {name},</p><p>Your recent invoice on {site_title} has been paid.</p>', 'invoicing' ), |
|
350 | + 'std' => __('<p>Hi {name},</p><p>Your recent invoice on {site_title} has been paid.</p>', 'invoicing'), |
|
351 | 351 | 'class' => 'large', |
352 | 352 | 'size' => '10' |
353 | 353 | ), |
@@ -358,53 +358,53 @@ discard block |
||
358 | 358 | |
359 | 359 | 'email_refunded_invoice_header' => array( |
360 | 360 | 'id' => 'email_refunded_invoice_header', |
361 | - 'name' => '<h3>' . __( 'Refunded Invoice', 'invoicing' ) . '</h3>', |
|
362 | - 'desc' => __( 'These emails are sent to users when their invoices are marked as refunded.', 'invoicing' ), |
|
361 | + 'name' => '<h3>' . __('Refunded Invoice', 'invoicing') . '</h3>', |
|
362 | + 'desc' => __('These emails are sent to users when their invoices are marked as refunded.', 'invoicing'), |
|
363 | 363 | 'type' => 'header', |
364 | 364 | ), |
365 | 365 | |
366 | 366 | 'email_refunded_invoice_active' => array( |
367 | 367 | 'id' => 'email_refunded_invoice_active', |
368 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
369 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
368 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
369 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
370 | 370 | 'type' => 'checkbox', |
371 | 371 | 'std' => 1 |
372 | 372 | ), |
373 | 373 | |
374 | 374 | 'email_refunded_invoice_admin_bcc' => array( |
375 | 375 | 'id' => 'email_refunded_invoice_admin_bcc', |
376 | - 'name' => __( 'Enable Admin BCC', 'invoicing' ), |
|
377 | - 'desc' => __( 'Check if you want to send a copy of this notification email to the site admin.', 'invoicing' ), |
|
376 | + 'name' => __('Enable Admin BCC', 'invoicing'), |
|
377 | + 'desc' => __('Check if you want to send a copy of this notification email to the site admin.', 'invoicing'), |
|
378 | 378 | 'type' => 'checkbox', |
379 | 379 | 'std' => 1 |
380 | 380 | ), |
381 | 381 | |
382 | 382 | 'email_refunded_invoice_subject' => array( |
383 | 383 | 'id' => 'email_refunded_invoice_subject', |
384 | - 'name' => __( 'Subject', 'invoicing' ), |
|
385 | - 'desc' => __( 'Enter the subject line for the invoice receipt email.', 'invoicing' ), |
|
384 | + 'name' => __('Subject', 'invoicing'), |
|
385 | + 'desc' => __('Enter the subject line for the invoice receipt email.', 'invoicing'), |
|
386 | 386 | 'help-tip' => true, |
387 | 387 | 'type' => 'text', |
388 | - 'std' => __( '[{site_title}] Your invoice from {invoice_date} has been refunded', 'invoicing' ), |
|
388 | + 'std' => __('[{site_title}] Your invoice from {invoice_date} has been refunded', 'invoicing'), |
|
389 | 389 | 'size' => 'large' |
390 | 390 | ), |
391 | 391 | |
392 | 392 | 'email_refunded_invoice_heading' => array( |
393 | 393 | 'id' => 'email_refunded_invoice_heading', |
394 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
395 | - 'desc' => __( 'Enter the main heading contained within the email notification.', 'invoicing' ), |
|
394 | + 'name' => __('Email Heading', 'invoicing'), |
|
395 | + 'desc' => __('Enter the main heading contained within the email notification.', 'invoicing'), |
|
396 | 396 | 'help-tip' => true, |
397 | 397 | 'type' => 'text', |
398 | - 'std' => __( 'Your invoice has been refunded', 'invoicing' ), |
|
398 | + 'std' => __('Your invoice has been refunded', 'invoicing'), |
|
399 | 399 | 'size' => 'large' |
400 | 400 | ), |
401 | 401 | |
402 | 402 | 'email_refunded_invoice_body' => array( |
403 | 403 | 'id' => 'email_refunded_invoice_body', |
404 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
405 | - 'desc' => __( 'The content of the email (wildcards and HTML are allowed).', 'invoicing' ), |
|
404 | + 'name' => __('Email Content', 'invoicing'), |
|
405 | + 'desc' => __('The content of the email (wildcards and HTML are allowed).', 'invoicing'), |
|
406 | 406 | 'type' => 'rich_editor', |
407 | - 'std' => __( '<p>Hi {name},</p><p>Your invoice on {site_title} has been refunded.</p>', 'invoicing' ), |
|
407 | + 'std' => __('<p>Hi {name},</p><p>Your invoice on {site_title} has been refunded.</p>', 'invoicing'), |
|
408 | 408 | 'class' => 'large', |
409 | 409 | 'size' => '10' |
410 | 410 | ), |
@@ -415,53 +415,53 @@ discard block |
||
415 | 415 | |
416 | 416 | 'email_user_invoice_header' => array( |
417 | 417 | 'id' => 'email_user_invoice_header', |
418 | - 'name' => '<h3>' . __( 'Customer Invoice', 'invoicing' ) . '</h3>', |
|
419 | - 'desc' => __( 'These emails are sent to customers containing their invoice information and payment links.', 'invoicing' ), |
|
418 | + 'name' => '<h3>' . __('Customer Invoice', 'invoicing') . '</h3>', |
|
419 | + 'desc' => __('These emails are sent to customers containing their invoice information and payment links.', 'invoicing'), |
|
420 | 420 | 'type' => 'header', |
421 | 421 | ), |
422 | 422 | |
423 | 423 | 'email_user_invoice_active' => array( |
424 | 424 | 'id' => 'email_user_invoice_active', |
425 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
426 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
425 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
426 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
427 | 427 | 'type' => 'checkbox', |
428 | 428 | 'std' => 1 |
429 | 429 | ), |
430 | 430 | |
431 | 431 | 'email_user_invoice_admin_bcc' => array( |
432 | 432 | 'id' => 'email_user_invoice_admin_bcc', |
433 | - 'name' => __( 'Enable Admin BCC', 'invoicing' ), |
|
434 | - 'desc' => __( 'Check if you want to send a copy of this notification email to to the site admin.', 'invoicing' ), |
|
433 | + 'name' => __('Enable Admin BCC', 'invoicing'), |
|
434 | + 'desc' => __('Check if you want to send a copy of this notification email to to the site admin.', 'invoicing'), |
|
435 | 435 | 'type' => 'checkbox', |
436 | 436 | 'std' => 0 |
437 | 437 | ), |
438 | 438 | |
439 | 439 | 'email_user_invoice_subject' => array( |
440 | 440 | 'id' => 'email_user_invoice_subject', |
441 | - 'name' => __( 'Subject', 'invoicing' ), |
|
442 | - 'desc' => __( 'Enter the subject line for the invoice receipt email.', 'invoicing' ), |
|
441 | + 'name' => __('Subject', 'invoicing'), |
|
442 | + 'desc' => __('Enter the subject line for the invoice receipt email.', 'invoicing'), |
|
443 | 443 | 'help-tip' => true, |
444 | 444 | 'type' => 'text', |
445 | - 'std' => __( '[{site_title}] Your invoice from {invoice_date}', 'invoicing' ), |
|
445 | + 'std' => __('[{site_title}] Your invoice from {invoice_date}', 'invoicing'), |
|
446 | 446 | 'size' => 'large' |
447 | 447 | ), |
448 | 448 | |
449 | 449 | 'email_user_invoice_heading' => array( |
450 | 450 | 'id' => 'email_user_invoice_heading', |
451 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
452 | - 'desc' => __( 'Enter the main heading contained within the email notification for the invoice receipt email.', 'invoicing' ), |
|
451 | + 'name' => __('Email Heading', 'invoicing'), |
|
452 | + 'desc' => __('Enter the main heading contained within the email notification for the invoice receipt email.', 'invoicing'), |
|
453 | 453 | 'help-tip' => true, |
454 | 454 | 'type' => 'text', |
455 | - 'std' => __( 'Your invoice {invoice_number} details', 'invoicing' ), |
|
455 | + 'std' => __('Your invoice {invoice_number} details', 'invoicing'), |
|
456 | 456 | 'size' => 'large' |
457 | 457 | ), |
458 | 458 | |
459 | 459 | 'email_user_invoice_body' => array( |
460 | 460 | 'id' => 'email_user_invoice_body', |
461 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
462 | - 'desc' => __( 'The content of the email (wildcards and HTML are allowed).', 'invoicing' ), |
|
461 | + 'name' => __('Email Content', 'invoicing'), |
|
462 | + 'desc' => __('The content of the email (wildcards and HTML are allowed).', 'invoicing'), |
|
463 | 463 | 'type' => 'rich_editor', |
464 | - 'std' => __( '<p>Hi {name},</p><p>An invoice of {invoice_total} has been created for you on {site_title}. You can <a href="{invoice_link}">view</a> or <a href="{invoice_pay_link}">pay</a> the invoice. Please reply to this email if you have any questions about the invoice.', 'invoicing' ), |
|
464 | + 'std' => __('<p>Hi {name},</p><p>An invoice of {invoice_total} has been created for you on {site_title}. You can <a href="{invoice_link}">view</a> or <a href="{invoice_pay_link}">pay</a> the invoice. Please reply to this email if you have any questions about the invoice.', 'invoicing'), |
|
465 | 465 | 'class' => 'large', |
466 | 466 | 'size' => '10' |
467 | 467 | ), |
@@ -471,53 +471,53 @@ discard block |
||
471 | 471 | |
472 | 472 | 'email_user_note_header' => array( |
473 | 473 | 'id' => 'email_user_note_header', |
474 | - 'name' => '<h3>' . __( 'Customer Note', 'invoicing' ) . '</h3>', |
|
475 | - 'desc' => __( 'These emails are sent when you add a customer note to an invoice/quote.', 'invoicing' ), |
|
474 | + 'name' => '<h3>' . __('Customer Note', 'invoicing') . '</h3>', |
|
475 | + 'desc' => __('These emails are sent when you add a customer note to an invoice/quote.', 'invoicing'), |
|
476 | 476 | 'type' => 'header', |
477 | 477 | ), |
478 | 478 | |
479 | 479 | 'email_user_note_active' => array( |
480 | 480 | 'id' => 'email_user_note_active', |
481 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
482 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
481 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
482 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
483 | 483 | 'type' => 'checkbox', |
484 | 484 | 'std' => 1 |
485 | 485 | ), |
486 | 486 | |
487 | 487 | 'email_user_note_admin_bcc' => array( |
488 | 488 | 'id' => 'email_user_note_admin_bcc', |
489 | - 'name' => __( 'Enable Admin BCC', 'invoicing' ), |
|
490 | - 'desc' => __( 'Check if you want to send a copy of this notification email to the site admin.', 'invoicing' ), |
|
489 | + 'name' => __('Enable Admin BCC', 'invoicing'), |
|
490 | + 'desc' => __('Check if you want to send a copy of this notification email to the site admin.', 'invoicing'), |
|
491 | 491 | 'type' => 'checkbox', |
492 | 492 | 'std' => 0 |
493 | 493 | ), |
494 | 494 | |
495 | 495 | 'email_user_note_subject' => array( |
496 | 496 | 'id' => 'email_user_note_subject', |
497 | - 'name' => __( 'Subject', 'invoicing' ), |
|
498 | - 'desc' => __( 'Enter the subject line for the invoice receipt email.', 'invoicing' ), |
|
497 | + 'name' => __('Subject', 'invoicing'), |
|
498 | + 'desc' => __('Enter the subject line for the invoice receipt email.', 'invoicing'), |
|
499 | 499 | 'help-tip' => true, |
500 | 500 | 'type' => 'text', |
501 | - 'std' => __( '[{site_title}] Note added to your {invoice_label} #{invoice_number} from {invoice_date}', 'invoicing' ), |
|
501 | + 'std' => __('[{site_title}] Note added to your {invoice_label} #{invoice_number} from {invoice_date}', 'invoicing'), |
|
502 | 502 | 'size' => 'large' |
503 | 503 | ), |
504 | 504 | |
505 | 505 | 'email_user_note_heading' => array( |
506 | 506 | 'id' => 'email_user_note_heading', |
507 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
508 | - 'desc' => __( 'Enter the main heading contained within the email notification.', 'invoicing' ), |
|
507 | + 'name' => __('Email Heading', 'invoicing'), |
|
508 | + 'desc' => __('Enter the main heading contained within the email notification.', 'invoicing'), |
|
509 | 509 | 'help-tip' => true, |
510 | 510 | 'type' => 'text', |
511 | - 'std' => __( 'A note has been added to your {invoice_label}', 'invoicing' ), |
|
511 | + 'std' => __('A note has been added to your {invoice_label}', 'invoicing'), |
|
512 | 512 | 'size' => 'large' |
513 | 513 | ), |
514 | 514 | |
515 | 515 | 'email_user_note_body' => array( |
516 | 516 | 'id' => 'email_user_note_body', |
517 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
518 | - 'desc' => __( 'The content of the email (wildcards and HTML are allowed).', 'invoicing' ), |
|
517 | + 'name' => __('Email Content', 'invoicing'), |
|
518 | + 'desc' => __('The content of the email (wildcards and HTML are allowed).', 'invoicing'), |
|
519 | 519 | 'type' => 'rich_editor', |
520 | - 'std' => __( '<p>Hi {name},</p><p>Following note has been added to your {invoice_label}:</p><blockquote class="wpinv-note">{customer_note}</blockquote>', 'invoicing' ), |
|
520 | + 'std' => __('<p>Hi {name},</p><p>Following note has been added to your {invoice_label}:</p><blockquote class="wpinv-note">{customer_note}</blockquote>', 'invoicing'), |
|
521 | 521 | 'class' => 'large', |
522 | 522 | 'size' => '10' |
523 | 523 | ), |
@@ -528,63 +528,63 @@ discard block |
||
528 | 528 | |
529 | 529 | 'email_overdue_header' => array( |
530 | 530 | 'id' => 'email_overdue_header', |
531 | - 'name' => '<h3>' . __( 'Payment Reminder', 'invoicing' ) . '</h3>', |
|
532 | - 'desc' => __( 'Payment reminder emails are sent to customers whenever their invoices are due.', 'invoicing' ), |
|
531 | + 'name' => '<h3>' . __('Payment Reminder', 'invoicing') . '</h3>', |
|
532 | + 'desc' => __('Payment reminder emails are sent to customers whenever their invoices are due.', 'invoicing'), |
|
533 | 533 | 'type' => 'header', |
534 | 534 | ), |
535 | 535 | |
536 | 536 | 'email_overdue_active' => array( |
537 | 537 | 'id' => 'email_overdue_active', |
538 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
539 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
538 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
539 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
540 | 540 | 'type' => 'checkbox', |
541 | 541 | 'std' => 1 |
542 | 542 | ), |
543 | 543 | |
544 | 544 | 'email_overdue_admin_bcc' => array( |
545 | 545 | 'id' => 'email_overdue_admin_bcc', |
546 | - 'name' => __( 'Enable Admin BCC', 'invoicing' ), |
|
547 | - 'desc' => __( 'Check if you want to send a copy of this notification email to the site admin.', 'invoicing' ), |
|
546 | + 'name' => __('Enable Admin BCC', 'invoicing'), |
|
547 | + 'desc' => __('Check if you want to send a copy of this notification email to the site admin.', 'invoicing'), |
|
548 | 548 | 'type' => 'checkbox', |
549 | 549 | 'std' => 0 |
550 | 550 | ), |
551 | 551 | |
552 | 552 | 'email_overdue_days' => array( |
553 | 553 | 'id' => 'email_overdue_days', |
554 | - 'name' => __( 'When to Send', 'invoicing' ), |
|
555 | - 'desc' => __( 'Check when you would like payment reminders sent out.', 'invoicing' ), |
|
554 | + 'name' => __('When to Send', 'invoicing'), |
|
555 | + 'desc' => __('Check when you would like payment reminders sent out.', 'invoicing'), |
|
556 | 556 | 'help-tip' => true, |
557 | - 'std' => array( '1' ), |
|
557 | + 'std' => array('1'), |
|
558 | 558 | 'type' => 'multicheck', |
559 | 559 | 'options' => $overdue_days_options, |
560 | 560 | ), |
561 | 561 | |
562 | 562 | 'email_overdue_subject' => array( |
563 | 563 | 'id' => 'email_overdue_subject', |
564 | - 'name' => __( 'Subject', 'invoicing' ), |
|
565 | - 'desc' => __( 'Enter the subject line for the invoice receipt email.', 'invoicing' ), |
|
564 | + 'name' => __('Subject', 'invoicing'), |
|
565 | + 'desc' => __('Enter the subject line for the invoice receipt email.', 'invoicing'), |
|
566 | 566 | 'help-tip' => true, |
567 | 567 | 'type' => 'text', |
568 | - 'std' => __( '[{site_title}] Payment Reminder', 'invoicing' ), |
|
568 | + 'std' => __('[{site_title}] Payment Reminder', 'invoicing'), |
|
569 | 569 | 'size' => 'large' |
570 | 570 | ), |
571 | 571 | |
572 | 572 | 'email_overdue_heading' => array( |
573 | 573 | 'id' => 'email_overdue_heading', |
574 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
575 | - 'desc' => __( 'Enter the main heading contained within the email notification.', 'invoicing' ), |
|
574 | + 'name' => __('Email Heading', 'invoicing'), |
|
575 | + 'desc' => __('Enter the main heading contained within the email notification.', 'invoicing'), |
|
576 | 576 | 'help-tip' => true, |
577 | 577 | 'type' => 'text', |
578 | - 'std' => __( 'Payment reminder for your invoice', 'invoicing' ), |
|
578 | + 'std' => __('Payment reminder for your invoice', 'invoicing'), |
|
579 | 579 | 'size' => 'large' |
580 | 580 | ), |
581 | 581 | |
582 | 582 | 'email_overdue_body' => array( |
583 | 583 | 'id' => 'email_overdue_body', |
584 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
585 | - 'desc' => __( 'The content of the email.', 'invoicing' ), |
|
584 | + 'name' => __('Email Content', 'invoicing'), |
|
585 | + 'desc' => __('The content of the email.', 'invoicing'), |
|
586 | 586 | 'type' => 'rich_editor', |
587 | - 'std' => __( '<p>Hi {full_name},</p><p>This is just a friendly reminder that your invoice <a href="{invoice_link}">#{invoice_number}</a> {is_was} due on {invoice_due_date}.</p><p>The total of this invoice is {invoice_total}</p><p>To view / pay now for this invoice please use the following link: <a class="btn btn-success" href="{invoice_link}">View / Pay</a></p>', 'invoicing' ), |
|
587 | + 'std' => __('<p>Hi {full_name},</p><p>This is just a friendly reminder that your invoice <a href="{invoice_link}">#{invoice_number}</a> {is_was} due on {invoice_due_date}.</p><p>The total of this invoice is {invoice_total}</p><p>To view / pay now for this invoice please use the following link: <a class="btn btn-success" href="{invoice_link}">View / Pay</a></p>', 'invoicing'), |
|
588 | 588 | 'class' => 'large', |
589 | 589 | 'size' => 10, |
590 | 590 | ), |
@@ -595,63 +595,63 @@ discard block |
||
595 | 595 | |
596 | 596 | 'email_renewal_reminder_header' => array( |
597 | 597 | 'id' => 'email_renewal_reminder_header', |
598 | - 'name' => '<h3>' . __( 'Renewal Reminder', 'invoicing' ) . '</h3>', |
|
599 | - 'desc' => __( 'These emails are sent to customers whenever their subscription is about to expire.', 'invoicing' ), |
|
598 | + 'name' => '<h3>' . __('Renewal Reminder', 'invoicing') . '</h3>', |
|
599 | + 'desc' => __('These emails are sent to customers whenever their subscription is about to expire.', 'invoicing'), |
|
600 | 600 | 'type' => 'header', |
601 | 601 | ), |
602 | 602 | |
603 | 603 | 'email_renewal_reminder_active' => array( |
604 | 604 | 'id' => 'email_renewal_reminder_active', |
605 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
606 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
605 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
606 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
607 | 607 | 'type' => 'checkbox', |
608 | 608 | 'std' => 0 |
609 | 609 | ), |
610 | 610 | |
611 | 611 | 'email_renewal_reminder_admin_bcc' => array( |
612 | 612 | 'id' => 'email_renewal_reminder_admin_bcc', |
613 | - 'name' => __( 'Enable Admin BCC', 'invoicing' ), |
|
614 | - 'desc' => __( 'Check if you want to send a copy of this notification email to the site admin.', 'invoicing' ), |
|
613 | + 'name' => __('Enable Admin BCC', 'invoicing'), |
|
614 | + 'desc' => __('Check if you want to send a copy of this notification email to the site admin.', 'invoicing'), |
|
615 | 615 | 'type' => 'checkbox', |
616 | 616 | 'std' => 0 |
617 | 617 | ), |
618 | 618 | |
619 | 619 | 'email_renewal_reminder_days' => array( |
620 | 620 | 'id' => 'email_renewal_reminder_days', |
621 | - 'name' => __( 'When to Send', 'invoicing' ), |
|
622 | - 'desc' => __( 'Check when you would like renewal reminders sent out.', 'invoicing' ), |
|
621 | + 'name' => __('When to Send', 'invoicing'), |
|
622 | + 'desc' => __('Check when you would like renewal reminders sent out.', 'invoicing'), |
|
623 | 623 | 'help-tip' => true, |
624 | - 'std' => array( '1', '5', '10' ), |
|
624 | + 'std' => array('1', '5', '10'), |
|
625 | 625 | 'type' => 'multicheck', |
626 | 626 | 'options' => $renewal_days_options, |
627 | 627 | ), |
628 | 628 | |
629 | 629 | 'email_renewal_reminder_subject' => array( |
630 | 630 | 'id' => 'email_renewal_reminder_subject', |
631 | - 'name' => __( 'Subject', 'invoicing' ), |
|
632 | - 'desc' => __( 'Enter the subject line for the email.', 'invoicing' ), |
|
631 | + 'name' => __('Subject', 'invoicing'), |
|
632 | + 'desc' => __('Enter the subject line for the email.', 'invoicing'), |
|
633 | 633 | 'help-tip' => true, |
634 | 634 | 'type' => 'text', |
635 | - 'std' => __( '[{site_title}] Renewal Reminder', 'invoicing' ), |
|
635 | + 'std' => __('[{site_title}] Renewal Reminder', 'invoicing'), |
|
636 | 636 | 'size' => 'large' |
637 | 637 | ), |
638 | 638 | |
639 | 639 | 'email_renewal_reminder_heading' => array( |
640 | 640 | 'id' => 'email_renewal_reminder_heading', |
641 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
642 | - 'desc' => __( 'Enter the main heading contained within the email notification.', 'invoicing' ), |
|
641 | + 'name' => __('Email Heading', 'invoicing'), |
|
642 | + 'desc' => __('Enter the main heading contained within the email notification.', 'invoicing'), |
|
643 | 643 | 'help-tip' => true, |
644 | 644 | 'type' => 'text', |
645 | - 'std' => __( 'Upcoming renewal reminder', 'invoicing' ), |
|
645 | + 'std' => __('Upcoming renewal reminder', 'invoicing'), |
|
646 | 646 | 'size' => 'large' |
647 | 647 | ), |
648 | 648 | |
649 | 649 | 'email_renewal_reminder_body' => array( |
650 | 650 | 'id' => 'email_renewal_reminder_body', |
651 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
652 | - 'desc' => __( 'The content of the email.', 'invoicing' ), |
|
651 | + 'name' => __('Email Content', 'invoicing'), |
|
652 | + 'desc' => __('The content of the email.', 'invoicing'), |
|
653 | 653 | 'type' => 'rich_editor', |
654 | - 'std' => __( '<p>Hi {full_name},</p><p>This is just a friendly reminder that your subscription for invoice <a href="{invoice_link}">#{invoice_number}</a> will renew on {subscription_renewal_date}.</p>', 'invoicing' ), |
|
654 | + 'std' => __('<p>Hi {full_name},</p><p>This is just a friendly reminder that your subscription for invoice <a href="{invoice_link}">#{invoice_number}</a> will renew on {subscription_renewal_date}.</p>', 'invoicing'), |
|
655 | 655 | 'class' => 'large', |
656 | 656 | 'size' => 10, |
657 | 657 | ), |
@@ -662,53 +662,53 @@ discard block |
||
662 | 662 | |
663 | 663 | 'email_subscription_trial_header' => array( |
664 | 664 | 'id' => 'email_subscription_trial_header', |
665 | - 'name' => '<h3>' . __( 'Trial Started', 'invoicing' ) . '</h3>', |
|
666 | - 'desc' => __( 'These emails are sent when a customer starts a subscription trial.', 'invoicing' ), |
|
665 | + 'name' => '<h3>' . __('Trial Started', 'invoicing') . '</h3>', |
|
666 | + 'desc' => __('These emails are sent when a customer starts a subscription trial.', 'invoicing'), |
|
667 | 667 | 'type' => 'header', |
668 | 668 | ), |
669 | 669 | |
670 | 670 | 'email_subscription_trial_active' => array( |
671 | 671 | 'id' => 'email_subscription_trial_active', |
672 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
673 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
672 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
673 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
674 | 674 | 'type' => 'checkbox', |
675 | 675 | 'std' => 0 |
676 | 676 | ), |
677 | 677 | |
678 | 678 | 'email_subscription_trial_bcc' => array( |
679 | 679 | 'id' => 'email_subscription_trial_admin_bcc', |
680 | - 'name' => __( 'Enable Admin BCC', 'invoicing' ), |
|
681 | - 'desc' => __( 'Check if you want to send a copy of this notification email to the site admin.', 'invoicing' ), |
|
680 | + 'name' => __('Enable Admin BCC', 'invoicing'), |
|
681 | + 'desc' => __('Check if you want to send a copy of this notification email to the site admin.', 'invoicing'), |
|
682 | 682 | 'type' => 'checkbox', |
683 | 683 | 'std' => 0 |
684 | 684 | ), |
685 | 685 | |
686 | 686 | 'email_subscription_trial_subject' => array( |
687 | 687 | 'id' => 'email_subscription_trial_subject', |
688 | - 'name' => __( 'Subject', 'invoicing' ), |
|
689 | - 'desc' => __( 'Enter the subject line for the subscription trial email.', 'invoicing' ), |
|
688 | + 'name' => __('Subject', 'invoicing'), |
|
689 | + 'desc' => __('Enter the subject line for the subscription trial email.', 'invoicing'), |
|
690 | 690 | 'help-tip' => true, |
691 | 691 | 'type' => 'text', |
692 | - 'std' => __( '[{site_title}] Trial Started', 'invoicing' ), |
|
692 | + 'std' => __('[{site_title}] Trial Started', 'invoicing'), |
|
693 | 693 | 'size' => 'large' |
694 | 694 | ), |
695 | 695 | |
696 | 696 | 'email_subscription_trial_heading' => array( |
697 | 697 | 'id' => 'email_subscription_trial_heading', |
698 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
699 | - 'desc' => __( 'Enter the main heading of this email.', 'invoicing' ), |
|
698 | + 'name' => __('Email Heading', 'invoicing'), |
|
699 | + 'desc' => __('Enter the main heading of this email.', 'invoicing'), |
|
700 | 700 | 'help-tip' => true, |
701 | 701 | 'type' => 'text', |
702 | - 'std' => __( 'Trial Started', 'invoicing' ), |
|
702 | + 'std' => __('Trial Started', 'invoicing'), |
|
703 | 703 | 'size' => 'large' |
704 | 704 | ), |
705 | 705 | |
706 | 706 | 'email_subscription_trial_body' => array( |
707 | 707 | 'id' => 'email_trial_body', |
708 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
709 | - 'desc' => __( 'The content of the email.', 'invoicing' ), |
|
708 | + 'name' => __('Email Content', 'invoicing'), |
|
709 | + 'desc' => __('The content of the email.', 'invoicing'), |
|
710 | 710 | 'type' => 'rich_editor', |
711 | - 'std' => __( '<p>Hi {first_name},</p><p>Your trial for {subscription_name} is now active and will renew on {subscription_renewal_date}.</p>', 'invoicing' ), |
|
711 | + 'std' => __('<p>Hi {first_name},</p><p>Your trial for {subscription_name} is now active and will renew on {subscription_renewal_date}.</p>', 'invoicing'), |
|
712 | 712 | 'class' => 'large', |
713 | 713 | 'size' => 10, |
714 | 714 | ), |
@@ -718,53 +718,53 @@ discard block |
||
718 | 718 | |
719 | 719 | 'email_subscription_cancelled_header' => array( |
720 | 720 | 'id' => 'email_subscription_cancelled_header', |
721 | - 'name' => '<h3>' . __( 'Subscription Cancelled', 'invoicing' ) . '</h3>', |
|
722 | - 'desc' => __( 'These emails are sent when a customer cancels their subscription.', 'invoicing' ), |
|
721 | + 'name' => '<h3>' . __('Subscription Cancelled', 'invoicing') . '</h3>', |
|
722 | + 'desc' => __('These emails are sent when a customer cancels their subscription.', 'invoicing'), |
|
723 | 723 | 'type' => 'header', |
724 | 724 | ), |
725 | 725 | |
726 | 726 | 'email_subscription_cancelled_active' => array( |
727 | 727 | 'id' => 'email_subscription_cancelled_active', |
728 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
729 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
728 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
729 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
730 | 730 | 'type' => 'checkbox', |
731 | 731 | 'std' => 1 |
732 | 732 | ), |
733 | 733 | |
734 | 734 | 'email_subscription_cancelled_bcc' => array( |
735 | 735 | 'id' => 'email_subscription_cancelled_admin_bcc', |
736 | - 'name' => __( 'Enable Admin BCC', 'invoicing' ), |
|
737 | - 'desc' => __( 'Check if you want to send a copy of this notification email to the site admin.', 'invoicing' ), |
|
736 | + 'name' => __('Enable Admin BCC', 'invoicing'), |
|
737 | + 'desc' => __('Check if you want to send a copy of this notification email to the site admin.', 'invoicing'), |
|
738 | 738 | 'type' => 'checkbox', |
739 | 739 | 'std' => 1 |
740 | 740 | ), |
741 | 741 | |
742 | 742 | 'email_subscription_cancelled_subject' => array( |
743 | 743 | 'id' => 'email_subscription_cancelled_subject', |
744 | - 'name' => __( 'Subject', 'invoicing' ), |
|
745 | - 'desc' => __( 'Enter the subject line for the subscription cancelled email.', 'invoicing' ), |
|
744 | + 'name' => __('Subject', 'invoicing'), |
|
745 | + 'desc' => __('Enter the subject line for the subscription cancelled email.', 'invoicing'), |
|
746 | 746 | 'help-tip' => true, |
747 | 747 | 'type' => 'text', |
748 | - 'std' => __( '[{site_title}] Subscription Cancelled', 'invoicing' ), |
|
748 | + 'std' => __('[{site_title}] Subscription Cancelled', 'invoicing'), |
|
749 | 749 | 'size' => 'large' |
750 | 750 | ), |
751 | 751 | |
752 | 752 | 'email_subscription_cancelled_heading' => array( |
753 | 753 | 'id' => 'email_subscription_complete_heading', |
754 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
755 | - 'desc' => __( 'Enter the main heading of this email.', 'invoicing' ), |
|
754 | + 'name' => __('Email Heading', 'invoicing'), |
|
755 | + 'desc' => __('Enter the main heading of this email.', 'invoicing'), |
|
756 | 756 | 'help-tip' => true, |
757 | 757 | 'type' => 'text', |
758 | - 'std' => __( 'Subscription Cancelled', 'invoicing' ), |
|
758 | + 'std' => __('Subscription Cancelled', 'invoicing'), |
|
759 | 759 | 'size' => 'large' |
760 | 760 | ), |
761 | 761 | |
762 | 762 | 'email_subscription_cancelled_body' => array( |
763 | 763 | 'id' => 'email_cancelled_body', |
764 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
765 | - 'desc' => __( 'The content of the email.', 'invoicing' ), |
|
764 | + 'name' => __('Email Content', 'invoicing'), |
|
765 | + 'desc' => __('The content of the email.', 'invoicing'), |
|
766 | 766 | 'type' => 'rich_editor', |
767 | - 'std' => __( '<p>Hi {first_name},</p><p>Your subscription for {subscription_name} has been cancelled and will no longer renew.</p>', 'invoicing' ), |
|
767 | + 'std' => __('<p>Hi {first_name},</p><p>Your subscription for {subscription_name} has been cancelled and will no longer renew.</p>', 'invoicing'), |
|
768 | 768 | 'class' => 'large', |
769 | 769 | 'size' => 10, |
770 | 770 | ), |
@@ -774,53 +774,53 @@ discard block |
||
774 | 774 | |
775 | 775 | 'email_subscription_expired_header' => array( |
776 | 776 | 'id' => 'email_subscription_expired_header', |
777 | - 'name' => '<h3>' . __( 'Subscription Expired', 'invoicing' ) . '</h3>', |
|
778 | - 'desc' => __( "These emails are sent when a customer's subscription expires and automatic renewal fails.", 'invoicing' ), |
|
777 | + 'name' => '<h3>' . __('Subscription Expired', 'invoicing') . '</h3>', |
|
778 | + 'desc' => __("These emails are sent when a customer's subscription expires and automatic renewal fails.", 'invoicing'), |
|
779 | 779 | 'type' => 'header', |
780 | 780 | ), |
781 | 781 | |
782 | 782 | 'email_subscription_expired_active' => array( |
783 | 783 | 'id' => 'email_subscription_expired_active', |
784 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
785 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
784 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
785 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
786 | 786 | 'type' => 'checkbox', |
787 | 787 | 'std' => 1 |
788 | 788 | ), |
789 | 789 | |
790 | 790 | 'email_subscription_expired_bcc' => array( |
791 | 791 | 'id' => 'email_subscription_expired_admin_bcc', |
792 | - 'name' => __( 'Enable Admin BCC', 'invoicing' ), |
|
793 | - 'desc' => __( 'Check if you want to send a copy of this notification email to the site admin.', 'invoicing' ), |
|
792 | + 'name' => __('Enable Admin BCC', 'invoicing'), |
|
793 | + 'desc' => __('Check if you want to send a copy of this notification email to the site admin.', 'invoicing'), |
|
794 | 794 | 'type' => 'checkbox', |
795 | 795 | 'std' => 1 |
796 | 796 | ), |
797 | 797 | |
798 | 798 | 'email_subscription_expired_subject' => array( |
799 | 799 | 'id' => 'email_subscription_expired_subject', |
800 | - 'name' => __( 'Subject', 'invoicing' ), |
|
801 | - 'desc' => __( 'Enter the subject line for the subscription expired email.', 'invoicing' ), |
|
800 | + 'name' => __('Subject', 'invoicing'), |
|
801 | + 'desc' => __('Enter the subject line for the subscription expired email.', 'invoicing'), |
|
802 | 802 | 'help-tip' => true, |
803 | 803 | 'type' => 'text', |
804 | - 'std' => __( '[{site_title}] Subscription Expired', 'invoicing' ), |
|
804 | + 'std' => __('[{site_title}] Subscription Expired', 'invoicing'), |
|
805 | 805 | 'size' => 'large' |
806 | 806 | ), |
807 | 807 | |
808 | 808 | 'email_subscription_expired_heading' => array( |
809 | 809 | 'id' => 'email_subscription_expired_heading', |
810 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
811 | - 'desc' => __( 'Enter the main heading of this email.', 'invoicing' ), |
|
810 | + 'name' => __('Email Heading', 'invoicing'), |
|
811 | + 'desc' => __('Enter the main heading of this email.', 'invoicing'), |
|
812 | 812 | 'type' => 'text', |
813 | - 'std' => __( 'Subscription Expired', 'invoicing' ), |
|
813 | + 'std' => __('Subscription Expired', 'invoicing'), |
|
814 | 814 | 'help-tip' => true, |
815 | 815 | 'size' => 'large' |
816 | 816 | ), |
817 | 817 | |
818 | 818 | 'email_subscription_expired_body' => array( |
819 | 819 | 'id' => 'email_expired_body', |
820 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
821 | - 'desc' => __( 'The content of the email.', 'invoicing' ), |
|
820 | + 'name' => __('Email Content', 'invoicing'), |
|
821 | + 'desc' => __('The content of the email.', 'invoicing'), |
|
822 | 822 | 'type' => 'rich_editor', |
823 | - 'std' => __( '<p>Hi {first_name},</p><p>Your subscription for {subscription_name} has expired.</p>', 'invoicing' ), |
|
823 | + 'std' => __('<p>Hi {first_name},</p><p>Your subscription for {subscription_name} has expired.</p>', 'invoicing'), |
|
824 | 824 | 'class' => 'large', |
825 | 825 | 'size' => 10, |
826 | 826 | ), |
@@ -830,53 +830,53 @@ discard block |
||
830 | 830 | |
831 | 831 | 'email_subscription_complete_header' => array( |
832 | 832 | 'id' => 'email_subscription_complete_header', |
833 | - 'name' => '<h3>' . __( 'Subscription Complete', 'invoicing' ) . '</h3>', |
|
834 | - 'desc' => __( 'These emails are sent when a customer completes their subscription.', 'invoicing' ), |
|
833 | + 'name' => '<h3>' . __('Subscription Complete', 'invoicing') . '</h3>', |
|
834 | + 'desc' => __('These emails are sent when a customer completes their subscription.', 'invoicing'), |
|
835 | 835 | 'type' => 'header', |
836 | 836 | ), |
837 | 837 | |
838 | 838 | 'email_subscription_complete_active' => array( |
839 | 839 | 'id' => 'email_subscription_complete_active', |
840 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
841 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
840 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
841 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
842 | 842 | 'type' => 'checkbox', |
843 | 843 | 'std' => 1 |
844 | 844 | ), |
845 | 845 | |
846 | 846 | 'email_subscription_complete_bcc' => array( |
847 | 847 | 'id' => 'email_subscription_complete_admin_bcc', |
848 | - 'name' => __( 'Enable Admin BCC', 'invoicing' ), |
|
849 | - 'desc' => __( 'Check if you want to send a copy of this notification email to the site admin.', 'invoicing' ), |
|
848 | + 'name' => __('Enable Admin BCC', 'invoicing'), |
|
849 | + 'desc' => __('Check if you want to send a copy of this notification email to the site admin.', 'invoicing'), |
|
850 | 850 | 'type' => 'checkbox', |
851 | 851 | 'std' => 1 |
852 | 852 | ), |
853 | 853 | |
854 | 854 | 'email_subscription_complete_subject' => array( |
855 | 855 | 'id' => 'email_subscription_complete_subject', |
856 | - 'name' => __( 'Subject', 'invoicing' ), |
|
857 | - 'desc' => __( 'Enter the subject line for the subscription complete email.', 'invoicing' ), |
|
856 | + 'name' => __('Subject', 'invoicing'), |
|
857 | + 'desc' => __('Enter the subject line for the subscription complete email.', 'invoicing'), |
|
858 | 858 | 'help-tip' => true, |
859 | 859 | 'type' => 'text', |
860 | - 'std' => __( '[{site_title}] Subscription Complete', 'invoicing' ), |
|
860 | + 'std' => __('[{site_title}] Subscription Complete', 'invoicing'), |
|
861 | 861 | 'size' => 'large' |
862 | 862 | ), |
863 | 863 | |
864 | 864 | 'email_subscription_complete_heading' => array( |
865 | 865 | 'id' => 'email_subscription_complete_heading', |
866 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
867 | - 'desc' => __( 'Enter the main heading of this email.', 'invoicing' ), |
|
866 | + 'name' => __('Email Heading', 'invoicing'), |
|
867 | + 'desc' => __('Enter the main heading of this email.', 'invoicing'), |
|
868 | 868 | 'help-tip' => true, |
869 | 869 | 'type' => 'text', |
870 | - 'std' => __( 'Subscription Complete', 'invoicing' ), |
|
870 | + 'std' => __('Subscription Complete', 'invoicing'), |
|
871 | 871 | 'size' => 'large' |
872 | 872 | ), |
873 | 873 | |
874 | 874 | 'email_subscription_complete_body' => array( |
875 | 875 | 'id' => 'email_complete_body', |
876 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
877 | - 'desc' => __( 'The content of the email.', 'invoicing' ), |
|
876 | + 'name' => __('Email Content', 'invoicing'), |
|
877 | + 'desc' => __('The content of the email.', 'invoicing'), |
|
878 | 878 | 'type' => 'rich_editor', |
879 | - 'std' => __( '<p>Hi {first_name},</p><p>Your subscription for {subscription_name} is now complete.</p>', 'invoicing' ), |
|
879 | + 'std' => __('<p>Hi {first_name},</p><p>Your subscription for {subscription_name} is now complete.</p>', 'invoicing'), |
|
880 | 880 | 'class' => 'large', |
881 | 881 | 'size' => 10, |
882 | 882 | ), |