@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | */ |
11 | 11 | |
12 | 12 | // Exit if accessed directly |
13 | -if ( ! defined( 'ABSPATH' ) ) { |
|
13 | +if ( ! defined('ABSPATH')) { |
|
14 | 14 | exit; |
15 | 15 | } |
16 | 16 | |
@@ -24,39 +24,39 @@ discard block |
||
24 | 24 | * |
25 | 25 | * @return void |
26 | 26 | */ |
27 | -function give_email_donation_receipt( $payment_id, $admin_notice = true ) { |
|
27 | +function give_email_donation_receipt($payment_id, $admin_notice = true) { |
|
28 | 28 | |
29 | - $payment_data = give_get_payment_meta( $payment_id ); |
|
29 | + $payment_data = give_get_payment_meta($payment_id); |
|
30 | 30 | |
31 | - $from_name = give_get_option( 'from_name', wp_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES ) ); |
|
32 | - $from_name = apply_filters( 'give_purchase_from_name', $from_name, $payment_id, $payment_data ); |
|
31 | + $from_name = give_get_option('from_name', wp_specialchars_decode(get_bloginfo('name'), ENT_QUOTES)); |
|
32 | + $from_name = apply_filters('give_purchase_from_name', $from_name, $payment_id, $payment_data); |
|
33 | 33 | |
34 | - $from_email = give_get_option( 'from_email', get_bloginfo( 'admin_email' ) ); |
|
35 | - $from_email = apply_filters( 'give_purchase_from_address', $from_email, $payment_id, $payment_data ); |
|
34 | + $from_email = give_get_option('from_email', get_bloginfo('admin_email')); |
|
35 | + $from_email = apply_filters('give_purchase_from_address', $from_email, $payment_id, $payment_data); |
|
36 | 36 | |
37 | - $to_email = give_get_payment_user_email( $payment_id ); |
|
37 | + $to_email = give_get_payment_user_email($payment_id); |
|
38 | 38 | |
39 | - $subject = give_get_option( 'donation_subject', __( 'Donation Receipt', 'give' ) ); |
|
40 | - $subject = apply_filters( 'give_donation_subject', wp_strip_all_tags( $subject ), $payment_id ); |
|
41 | - $subject = give_do_email_tags( $subject, $payment_id ); |
|
39 | + $subject = give_get_option('donation_subject', __('Donation Receipt', 'give')); |
|
40 | + $subject = apply_filters('give_donation_subject', wp_strip_all_tags($subject), $payment_id); |
|
41 | + $subject = give_do_email_tags($subject, $payment_id); |
|
42 | 42 | |
43 | - $attachments = apply_filters( 'give_receipt_attachments', array(), $payment_id, $payment_data ); |
|
44 | - $message = give_do_email_tags( give_get_email_body_content( $payment_id, $payment_data ), $payment_id ); |
|
43 | + $attachments = apply_filters('give_receipt_attachments', array(), $payment_id, $payment_data); |
|
44 | + $message = give_do_email_tags(give_get_email_body_content($payment_id, $payment_data), $payment_id); |
|
45 | 45 | |
46 | 46 | $emails = Give()->emails; |
47 | 47 | |
48 | - $emails->__set( 'from_name', $from_name ); |
|
49 | - $emails->__set( 'from_email', $from_email ); |
|
50 | - $emails->__set( 'heading', __( 'Donation Receipt', 'give' ) ); |
|
48 | + $emails->__set('from_name', $from_name); |
|
49 | + $emails->__set('from_email', $from_email); |
|
50 | + $emails->__set('heading', __('Donation Receipt', 'give')); |
|
51 | 51 | |
52 | 52 | |
53 | - $headers = apply_filters( 'give_receipt_headers', $emails->get_headers(), $payment_id, $payment_data ); |
|
54 | - $emails->__set( 'headers', $headers ); |
|
53 | + $headers = apply_filters('give_receipt_headers', $emails->get_headers(), $payment_id, $payment_data); |
|
54 | + $emails->__set('headers', $headers); |
|
55 | 55 | |
56 | - $emails->send( $to_email, $subject, $message, $attachments ); |
|
56 | + $emails->send($to_email, $subject, $message, $attachments); |
|
57 | 57 | |
58 | - if ( $admin_notice && ! give_admin_notices_disabled( $payment_id ) ) { |
|
59 | - do_action( 'give_admin_sale_notice', $payment_id, $payment_data ); |
|
58 | + if ($admin_notice && ! give_admin_notices_disabled($payment_id)) { |
|
59 | + do_action('give_admin_sale_notice', $payment_id, $payment_data); |
|
60 | 60 | } |
61 | 61 | } |
62 | 62 | |
@@ -69,29 +69,29 @@ discard block |
||
69 | 69 | */ |
70 | 70 | function give_email_test_donation_receipt() { |
71 | 71 | |
72 | - $from_name = give_get_option( 'from_name', wp_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES ) ); |
|
73 | - $from_name = apply_filters( 'give_purchase_from_name', $from_name, 0, array() ); |
|
72 | + $from_name = give_get_option('from_name', wp_specialchars_decode(get_bloginfo('name'), ENT_QUOTES)); |
|
73 | + $from_name = apply_filters('give_purchase_from_name', $from_name, 0, array()); |
|
74 | 74 | |
75 | - $from_email = give_get_option( 'from_email', get_bloginfo( 'admin_email' ) ); |
|
76 | - $from_email = apply_filters( 'give_purchase_from_address', $from_email, 0, array() ); |
|
75 | + $from_email = give_get_option('from_email', get_bloginfo('admin_email')); |
|
76 | + $from_email = apply_filters('give_purchase_from_address', $from_email, 0, array()); |
|
77 | 77 | |
78 | - $subject = give_get_option( 'donation_subject', __( 'Donation Receipt', 'give' ) ); |
|
79 | - $subject = apply_filters( 'give_donation_subject', wp_strip_all_tags( $subject ), 0 ); |
|
80 | - $subject = give_do_email_tags( $subject, 0 ); |
|
78 | + $subject = give_get_option('donation_subject', __('Donation Receipt', 'give')); |
|
79 | + $subject = apply_filters('give_donation_subject', wp_strip_all_tags($subject), 0); |
|
80 | + $subject = give_do_email_tags($subject, 0); |
|
81 | 81 | |
82 | - $attachments = apply_filters( 'give_receipt_attachments', array(), 0, array() ); |
|
82 | + $attachments = apply_filters('give_receipt_attachments', array(), 0, array()); |
|
83 | 83 | |
84 | - $message = give_email_preview_template_tags( give_get_email_body_content( 0, array() ), 0 ); |
|
84 | + $message = give_email_preview_template_tags(give_get_email_body_content(0, array()), 0); |
|
85 | 85 | |
86 | 86 | $emails = Give()->emails; |
87 | - $emails->__set( 'from_name', $from_name ); |
|
88 | - $emails->__set( 'from_email', $from_email ); |
|
89 | - $emails->__set( 'heading', __( 'Donation Receipt', 'give' ) ); |
|
87 | + $emails->__set('from_name', $from_name); |
|
88 | + $emails->__set('from_email', $from_email); |
|
89 | + $emails->__set('heading', __('Donation Receipt', 'give')); |
|
90 | 90 | |
91 | - $headers = apply_filters( 'give_receipt_headers', $emails->get_headers(), 0, array() ); |
|
92 | - $emails->__set( 'headers', $headers ); |
|
91 | + $headers = apply_filters('give_receipt_headers', $emails->get_headers(), 0, array()); |
|
92 | + $emails->__set('headers', $headers); |
|
93 | 93 | |
94 | - $emails->send( give_get_admin_notice_emails(), $subject, $message, $attachments ); |
|
94 | + $emails->send(give_get_admin_notice_emails(), $subject, $message, $attachments); |
|
95 | 95 | |
96 | 96 | } |
97 | 97 | |
@@ -105,49 +105,49 @@ discard block |
||
105 | 105 | * |
106 | 106 | * @return void |
107 | 107 | */ |
108 | -function give_admin_email_notice( $payment_id = 0, $payment_data = array() ) { |
|
108 | +function give_admin_email_notice($payment_id = 0, $payment_data = array()) { |
|
109 | 109 | |
110 | - $payment_id = absint( $payment_id ); |
|
110 | + $payment_id = absint($payment_id); |
|
111 | 111 | |
112 | - if ( empty( $payment_id ) ) { |
|
112 | + if (empty($payment_id)) { |
|
113 | 113 | return; |
114 | 114 | } |
115 | 115 | |
116 | - if ( ! give_get_payment_by( 'id', $payment_id ) ) { |
|
116 | + if ( ! give_get_payment_by('id', $payment_id)) { |
|
117 | 117 | return; |
118 | 118 | } |
119 | 119 | |
120 | - $from_name = give_get_option( 'from_name', wp_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES ) ); |
|
121 | - $from_name = apply_filters( 'give_purchase_from_name', $from_name, $payment_id, $payment_data ); |
|
120 | + $from_name = give_get_option('from_name', wp_specialchars_decode(get_bloginfo('name'), ENT_QUOTES)); |
|
121 | + $from_name = apply_filters('give_purchase_from_name', $from_name, $payment_id, $payment_data); |
|
122 | 122 | |
123 | - $from_email = give_get_option( 'from_email', get_bloginfo( 'admin_email' ) ); |
|
124 | - $from_email = apply_filters( 'give_purchase_from_address', $from_email, $payment_id, $payment_data ); |
|
123 | + $from_email = give_get_option('from_email', get_bloginfo('admin_email')); |
|
124 | + $from_email = apply_filters('give_purchase_from_address', $from_email, $payment_id, $payment_data); |
|
125 | 125 | |
126 | - $subject = give_get_option( 'donation_notification_subject', sprintf( __( 'New Donation - Payment #%1$s', 'give' ), $payment_id ) ); |
|
127 | - $subject = apply_filters( 'give_admin_donation_notification_subject', wp_strip_all_tags( $subject ), $payment_id ); |
|
128 | - $subject = give_do_email_tags( $subject, $payment_id ); |
|
126 | + $subject = give_get_option('donation_notification_subject', sprintf(__('New Donation - Payment #%1$s', 'give'), $payment_id)); |
|
127 | + $subject = apply_filters('give_admin_donation_notification_subject', wp_strip_all_tags($subject), $payment_id); |
|
128 | + $subject = give_do_email_tags($subject, $payment_id); |
|
129 | 129 | |
130 | - $headers = "From: " . stripslashes_deep( html_entity_decode( $from_name, ENT_COMPAT, 'UTF-8' ) ) . " <$from_email>\r\n"; |
|
131 | - $headers .= "Reply-To: " . $from_email . "\r\n"; |
|
130 | + $headers = "From: ".stripslashes_deep(html_entity_decode($from_name, ENT_COMPAT, 'UTF-8'))." <$from_email>\r\n"; |
|
131 | + $headers .= "Reply-To: ".$from_email."\r\n"; |
|
132 | 132 | //$headers .= "MIME-Version: 1.0\r\n"; |
133 | 133 | $headers .= "Content-Type: text/html; charset=utf-8\r\n"; |
134 | - $headers = apply_filters( 'give_admin_donation_notification_headers', $headers, $payment_id, $payment_data ); |
|
134 | + $headers = apply_filters('give_admin_donation_notification_headers', $headers, $payment_id, $payment_data); |
|
135 | 135 | |
136 | - $attachments = apply_filters( 'give_admin_donation_notification_attachments', array(), $payment_id, $payment_data ); |
|
136 | + $attachments = apply_filters('give_admin_donation_notification_attachments', array(), $payment_id, $payment_data); |
|
137 | 137 | |
138 | - $message = give_get_donation_notification_body_content( $payment_id, $payment_data ); |
|
138 | + $message = give_get_donation_notification_body_content($payment_id, $payment_data); |
|
139 | 139 | |
140 | 140 | $emails = Give()->emails; |
141 | - $emails->__set( 'from_name', $from_name ); |
|
142 | - $emails->__set( 'from_email', $from_email ); |
|
143 | - $emails->__set( 'headers', $headers ); |
|
144 | - $emails->__set( 'heading', __( 'New Donation!', 'give' ) ); |
|
141 | + $emails->__set('from_name', $from_name); |
|
142 | + $emails->__set('from_email', $from_email); |
|
143 | + $emails->__set('headers', $headers); |
|
144 | + $emails->__set('heading', __('New Donation!', 'give')); |
|
145 | 145 | |
146 | - $emails->send( give_get_admin_notice_emails(), $subject, $message, $attachments ); |
|
146 | + $emails->send(give_get_admin_notice_emails(), $subject, $message, $attachments); |
|
147 | 147 | |
148 | 148 | } |
149 | 149 | |
150 | -add_action( 'give_admin_sale_notice', 'give_admin_email_notice', 10, 2 ); |
|
150 | +add_action('give_admin_sale_notice', 'give_admin_email_notice', 10, 2); |
|
151 | 151 | |
152 | 152 | /** |
153 | 153 | * Retrieves the emails for which admin notifications are sent to (these can be |
@@ -160,10 +160,10 @@ discard block |
||
160 | 160 | function give_get_admin_notice_emails() { |
161 | 161 | global $give_options; |
162 | 162 | |
163 | - $emails = isset( $give_options['admin_notice_emails'] ) && strlen( trim( $give_options['admin_notice_emails'] ) ) > 0 ? $give_options['admin_notice_emails'] : get_bloginfo( 'admin_email' ); |
|
164 | - $emails = array_map( 'trim', explode( "\n", $emails ) ); |
|
163 | + $emails = isset($give_options['admin_notice_emails']) && strlen(trim($give_options['admin_notice_emails'])) > 0 ? $give_options['admin_notice_emails'] : get_bloginfo('admin_email'); |
|
164 | + $emails = array_map('trim', explode("\n", $emails)); |
|
165 | 165 | |
166 | - return apply_filters( 'give_admin_notice_emails', $emails ); |
|
166 | + return apply_filters('give_admin_notice_emails', $emails); |
|
167 | 167 | } |
168 | 168 | |
169 | 169 | /** |
@@ -175,11 +175,11 @@ discard block |
||
175 | 175 | * |
176 | 176 | * @return mixed |
177 | 177 | */ |
178 | -function give_admin_notices_disabled( $payment_id = 0 ) { |
|
178 | +function give_admin_notices_disabled($payment_id = 0) { |
|
179 | 179 | global $give_options; |
180 | - $retval = isset( $give_options['disable_admin_notices'] ); |
|
180 | + $retval = isset($give_options['disable_admin_notices']); |
|
181 | 181 | |
182 | - return apply_filters( 'give_admin_notices_disabled', $retval, $payment_id ); |
|
182 | + return apply_filters('give_admin_notices_disabled', $retval, $payment_id); |
|
183 | 183 | } |
184 | 184 | |
185 | 185 | /** |
@@ -193,16 +193,16 @@ discard block |
||
193 | 193 | function give_get_default_donation_notification_email() { |
194 | 194 | global $give_options; |
195 | 195 | |
196 | - $default_email_body = __( 'Hi there,', 'give' ) . "\n\n" . __( 'This email is to inform you that a new donation has been made on your website: ', 'give' ) . '<a href="' . get_bloginfo( 'url' ) . '" target="_blank">' . get_bloginfo( 'url' ) . '</a>' . ".\n\n"; |
|
197 | - $default_email_body .= '<strong>' . __( 'Donor: ', 'give' ) . '</strong> ' . ' {name}' . "\n"; |
|
198 | - $default_email_body .= '<strong>' . __( 'Donation: ', 'give' ) . '</strong> ' . ' {donation}' . "\n"; |
|
199 | - $default_email_body .= '<strong>' . __( 'Amount: ', 'give' ) . '</strong> ' . ' {price}' . "\n"; |
|
200 | - $default_email_body .= '<strong>' . __( 'Payment Method: ', 'give' ) . '</strong> ' . ' {payment_method}' . "\n\n"; |
|
201 | - $default_email_body .= __( 'Thank you,', 'give' ) . "\n\n" . '{sitename}'; |
|
196 | + $default_email_body = __('Hi there,', 'give')."\n\n".__('This email is to inform you that a new donation has been made on your website: ', 'give').'<a href="'.get_bloginfo('url').'" target="_blank">'.get_bloginfo('url').'</a>'.".\n\n"; |
|
197 | + $default_email_body .= '<strong>'.__('Donor: ', 'give').'</strong> '.' {name}'."\n"; |
|
198 | + $default_email_body .= '<strong>'.__('Donation: ', 'give').'</strong> '.' {donation}'."\n"; |
|
199 | + $default_email_body .= '<strong>'.__('Amount: ', 'give').'</strong> '.' {price}'."\n"; |
|
200 | + $default_email_body .= '<strong>'.__('Payment Method: ', 'give').'</strong> '.' {payment_method}'."\n\n"; |
|
201 | + $default_email_body .= __('Thank you,', 'give')."\n\n".'{sitename}'; |
|
202 | 202 | |
203 | - $message = ( isset( $give_options['donation_notification'] ) && ! empty( $give_options['donation_notification'] ) ) ? $give_options['donation_notification'] : $default_email_body; |
|
203 | + $message = (isset($give_options['donation_notification']) && ! empty($give_options['donation_notification'])) ? $give_options['donation_notification'] : $default_email_body; |
|
204 | 204 | |
205 | - return apply_filters( 'give_default_donation_notification_email', $message ); |
|
205 | + return apply_filters('give_default_donation_notification_email', $message); |
|
206 | 206 | } |
207 | 207 | |
208 | 208 | |
@@ -217,24 +217,24 @@ discard block |
||
217 | 217 | function give_get_default_donation_receipt_email() { |
218 | 218 | global $give_options; |
219 | 219 | |
220 | - $default_email_body = __( 'Dear', 'give' ) . " {name},\n\n"; |
|
221 | - $default_email_body .= __( 'Thank you for your donation. Your generosity is appreciated! Here are the details of your donation:', 'give' ) . "\n\n"; |
|
222 | - $default_email_body .= '<strong>' . __( 'Donor', 'give' ) . ':</strong> ' . '{fullname}' . "\n"; |
|
223 | - $default_email_body .= '<strong>' . __( 'Donation', 'give' ) . ':</strong> ' . '{donation}' . "\n"; |
|
224 | - $default_email_body .= '<strong>' . __( 'Donation Date', 'give' ) . ':</strong> ' . '{date}' . "\n"; |
|
225 | - $default_email_body .= '<strong>' . __( 'Amount', 'give' ) . ':</strong> ' . '{price}' . "\n"; |
|
226 | - $default_email_body .= '<strong>' . __( 'Payment Method', 'give' ) . ':</strong> ' . '{payment_method}' . "\n"; |
|
227 | - $default_email_body .= '<strong>' . __( 'Payment ID', 'give' ) . ':</strong> ' . '{payment_id}' . "\n"; |
|
228 | - $default_email_body .= '<strong>' . __( 'Receipt ID', 'give' ) . ':</strong> ' . '{receipt_id}' . "\n\n"; |
|
229 | - $default_email_body .= '{receipt_link}' . "\n\n"; |
|
220 | + $default_email_body = __('Dear', 'give')." {name},\n\n"; |
|
221 | + $default_email_body .= __('Thank you for your donation. Your generosity is appreciated! Here are the details of your donation:', 'give')."\n\n"; |
|
222 | + $default_email_body .= '<strong>'.__('Donor', 'give').':</strong> '.'{fullname}'."\n"; |
|
223 | + $default_email_body .= '<strong>'.__('Donation', 'give').':</strong> '.'{donation}'."\n"; |
|
224 | + $default_email_body .= '<strong>'.__('Donation Date', 'give').':</strong> '.'{date}'."\n"; |
|
225 | + $default_email_body .= '<strong>'.__('Amount', 'give').':</strong> '.'{price}'."\n"; |
|
226 | + $default_email_body .= '<strong>'.__('Payment Method', 'give').':</strong> '.'{payment_method}'."\n"; |
|
227 | + $default_email_body .= '<strong>'.__('Payment ID', 'give').':</strong> '.'{payment_id}'."\n"; |
|
228 | + $default_email_body .= '<strong>'.__('Receipt ID', 'give').':</strong> '.'{receipt_id}'."\n\n"; |
|
229 | + $default_email_body .= '{receipt_link}'."\n\n"; |
|
230 | 230 | |
231 | 231 | $default_email_body .= "\n\n"; |
232 | - $default_email_body .= __( 'Sincerely,', 'give' ); |
|
233 | - $default_email_body .= "\n" . '{sitename}' . "\n"; |
|
232 | + $default_email_body .= __('Sincerely,', 'give'); |
|
233 | + $default_email_body .= "\n".'{sitename}'."\n"; |
|
234 | 234 | |
235 | - $message = ( isset( $give_options['donation_receipt'] ) && ! empty( $give_options['donation_receipt'] ) ) ? $give_options['donation_receipt'] : $default_email_body; |
|
235 | + $message = (isset($give_options['donation_receipt']) && ! empty($give_options['donation_receipt'])) ? $give_options['donation_receipt'] : $default_email_body; |
|
236 | 236 | |
237 | - return apply_filters( 'give_default_donation_receipt_email', $message ); |
|
237 | + return apply_filters('give_default_donation_receipt_email', $message); |
|
238 | 238 | } |
239 | 239 | |
240 | 240 | /** |
@@ -246,19 +246,19 @@ discard block |
||
246 | 246 | * |
247 | 247 | * @return array $email_names |
248 | 248 | */ |
249 | -function give_get_email_names( $user_info ) { |
|
249 | +function give_get_email_names($user_info) { |
|
250 | 250 | $email_names = array(); |
251 | - $user_info = maybe_unserialize( $user_info ); |
|
251 | + $user_info = maybe_unserialize($user_info); |
|
252 | 252 | |
253 | 253 | $email_names['fullname'] = ''; |
254 | - if ( isset( $user_info['id'] ) && $user_info['id'] > 0 && isset( $user_info['first_name'] ) ) { |
|
255 | - $user_data = get_userdata( $user_info['id'] ); |
|
254 | + if (isset($user_info['id']) && $user_info['id'] > 0 && isset($user_info['first_name'])) { |
|
255 | + $user_data = get_userdata($user_info['id']); |
|
256 | 256 | $email_names['name'] = $user_info['first_name']; |
257 | - $email_names['fullname'] = $user_info['first_name'] . ' ' . $user_info['last_name']; |
|
257 | + $email_names['fullname'] = $user_info['first_name'].' '.$user_info['last_name']; |
|
258 | 258 | $email_names['username'] = $user_data->user_login; |
259 | - } elseif ( isset( $user_info['first_name'] ) ) { |
|
259 | + } elseif (isset($user_info['first_name'])) { |
|
260 | 260 | $email_names['name'] = $user_info['first_name']; |
261 | - $email_names['fullname'] = $user_info['first_name'] . ' ' . $user_info['last_name']; |
|
261 | + $email_names['fullname'] = $user_info['first_name'].' '.$user_info['last_name']; |
|
262 | 262 | $email_names['username'] = $user_info['first_name']; |
263 | 263 | } else { |
264 | 264 | $email_names['name'] = $user_info['email']; |
@@ -49,7 +49,7 @@ |
||
49 | 49 | * |
50 | 50 | * @since: 1.4 |
51 | 51 | * |
52 | - * @return bool |
|
52 | + * @return boolean|null |
|
53 | 53 | */ |
54 | 54 | function give_allow_sessions_for_sysinfo() { |
55 | 55 | if ( is_admin() && ( isset( $_GET['page'] ) && isset( $_GET['tab'] ) ) && ( $_GET['tab'] == 'system_info' && $_GET['page'] == 'give-settings' ) ) { |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | */ |
12 | 12 | |
13 | 13 | // Exit if accessed directly |
14 | -if ( ! defined( 'ABSPATH' ) ) { |
|
14 | +if ( ! defined('ABSPATH')) { |
|
15 | 15 | exit; |
16 | 16 | } |
17 | 17 | |
@@ -24,14 +24,14 @@ discard block |
||
24 | 24 | */ |
25 | 25 | function give_system_info_callback() { |
26 | 26 | |
27 | - if ( ! current_user_can( 'manage_give_settings' ) ) { |
|
27 | + if ( ! current_user_can('manage_give_settings')) { |
|
28 | 28 | return; |
29 | 29 | } |
30 | 30 | ?> |
31 | 31 | <textarea readonly="readonly" onclick="this.focus(); this.select()" id="system-info-textarea" name="give-sysinfo" title="To copy the system info, click below then press Ctrl + C (PC) or Cmd + C (Mac)."><?php echo give_tools_sysinfo_get(); ?></textarea> |
32 | 32 | <p class="submit"> |
33 | 33 | <input type="hidden" name="give-action" value="download_sysinfo"/> |
34 | - <?php submit_button( 'Download System Info File', 'secondary', 'give-download-sysinfo', false ); ?> |
|
34 | + <?php submit_button('Download System Info File', 'secondary', 'give-download-sysinfo', false); ?> |
|
35 | 35 | </p> |
36 | 36 | <style> |
37 | 37 | .give_forms_page_give-settings .give-submit-wrap { |
@@ -52,12 +52,12 @@ discard block |
||
52 | 52 | * @return bool |
53 | 53 | */ |
54 | 54 | function give_allow_sessions_for_sysinfo() { |
55 | - if ( is_admin() && ( isset( $_GET['page'] ) && isset( $_GET['tab'] ) ) && ( $_GET['tab'] == 'system_info' && $_GET['page'] == 'give-settings' ) ) { |
|
55 | + if (is_admin() && (isset($_GET['page']) && isset($_GET['tab'])) && ($_GET['tab'] == 'system_info' && $_GET['page'] == 'give-settings')) { |
|
56 | 56 | return true; |
57 | 57 | } |
58 | 58 | } |
59 | 59 | |
60 | -add_filter( 'give_start_session', 'give_allow_sessions_for_sysinfo' ); |
|
60 | +add_filter('give_start_session', 'give_allow_sessions_for_sysinfo'); |
|
61 | 61 | |
62 | 62 | |
63 | 63 | /** |
@@ -72,63 +72,63 @@ discard block |
||
72 | 72 | function give_tools_sysinfo_get() { |
73 | 73 | global $wpdb, $give_options; |
74 | 74 | |
75 | - if ( ! class_exists( 'Browser' ) ) { |
|
76 | - require_once GIVE_PLUGIN_DIR . 'includes/libraries/browser.php'; |
|
75 | + if ( ! class_exists('Browser')) { |
|
76 | + require_once GIVE_PLUGIN_DIR.'includes/libraries/browser.php'; |
|
77 | 77 | } |
78 | 78 | |
79 | 79 | $browser = new Browser(); |
80 | 80 | |
81 | 81 | // Get theme info |
82 | - if ( get_bloginfo( 'version' ) < '3.4' ) { |
|
83 | - $theme_data = wp_get_theme( get_stylesheet_directory() . '/style.css' ); |
|
84 | - $theme = $theme_data['Name'] . ' ' . $theme_data['Version']; |
|
82 | + if (get_bloginfo('version') < '3.4') { |
|
83 | + $theme_data = wp_get_theme(get_stylesheet_directory().'/style.css'); |
|
84 | + $theme = $theme_data['Name'].' '.$theme_data['Version']; |
|
85 | 85 | } else { |
86 | 86 | $theme_data = wp_get_theme(); |
87 | - $theme = $theme_data->Name . ' ' . $theme_data->Version; |
|
87 | + $theme = $theme_data->Name.' '.$theme_data->Version; |
|
88 | 88 | } |
89 | 89 | |
90 | 90 | // Try to identify the hosting provider |
91 | 91 | $host = give_get_host(); |
92 | 92 | |
93 | - $return = '### Begin System Info ###' . "\n\n"; |
|
93 | + $return = '### Begin System Info ###'."\n\n"; |
|
94 | 94 | |
95 | 95 | // Start with the basics... |
96 | - $return .= '-- Site Info' . "\n\n"; |
|
97 | - $return .= 'Site URL: ' . site_url() . "\n"; |
|
98 | - $return .= 'Home URL: ' . home_url() . "\n"; |
|
99 | - $return .= 'Multisite: ' . ( is_multisite() ? 'Yes' : 'No' ) . "\n"; |
|
96 | + $return .= '-- Site Info'."\n\n"; |
|
97 | + $return .= 'Site URL: '.site_url()."\n"; |
|
98 | + $return .= 'Home URL: '.home_url()."\n"; |
|
99 | + $return .= 'Multisite: '.(is_multisite() ? 'Yes' : 'No')."\n"; |
|
100 | 100 | |
101 | - $return = apply_filters( 'give_sysinfo_after_site_info', $return ); |
|
101 | + $return = apply_filters('give_sysinfo_after_site_info', $return); |
|
102 | 102 | |
103 | 103 | // Can we determine the site's host? |
104 | - if ( $host ) { |
|
105 | - $return .= "\n" . '-- Hosting Provider' . "\n\n"; |
|
106 | - $return .= 'Host: ' . $host . "\n"; |
|
104 | + if ($host) { |
|
105 | + $return .= "\n".'-- Hosting Provider'."\n\n"; |
|
106 | + $return .= 'Host: '.$host."\n"; |
|
107 | 107 | |
108 | - $return = apply_filters( 'give_sysinfo_after_host_info', $return ); |
|
108 | + $return = apply_filters('give_sysinfo_after_host_info', $return); |
|
109 | 109 | } |
110 | 110 | |
111 | 111 | // The local users' browser information, handled by the Browser class |
112 | - $return .= "\n" . '-- User Browser' . "\n\n"; |
|
112 | + $return .= "\n".'-- User Browser'."\n\n"; |
|
113 | 113 | $return .= $browser; |
114 | 114 | |
115 | - $return = apply_filters( 'give_sysinfo_after_user_browser', $return ); |
|
115 | + $return = apply_filters('give_sysinfo_after_user_browser', $return); |
|
116 | 116 | |
117 | 117 | // WordPress configuration |
118 | - $return .= "\n" . '-- WordPress Configuration' . "\n\n"; |
|
119 | - $return .= 'Version: ' . get_bloginfo( 'version' ) . "\n"; |
|
120 | - $return .= 'Language: ' . ( defined( 'WPLANG' ) && WPLANG ? WPLANG : 'en_US' ) . "\n"; |
|
121 | - $return .= 'Permalink Structure: ' . ( get_option( 'permalink_structure' ) ? get_option( 'permalink_structure' ) : 'Default' ) . "\n"; |
|
122 | - $return .= 'Active Theme: ' . $theme . "\n"; |
|
123 | - $return .= 'Show On Front: ' . get_option( 'show_on_front' ) . "\n"; |
|
118 | + $return .= "\n".'-- WordPress Configuration'."\n\n"; |
|
119 | + $return .= 'Version: '.get_bloginfo('version')."\n"; |
|
120 | + $return .= 'Language: '.(defined('WPLANG') && WPLANG ? WPLANG : 'en_US')."\n"; |
|
121 | + $return .= 'Permalink Structure: '.(get_option('permalink_structure') ? get_option('permalink_structure') : 'Default')."\n"; |
|
122 | + $return .= 'Active Theme: '.$theme."\n"; |
|
123 | + $return .= 'Show On Front: '.get_option('show_on_front')."\n"; |
|
124 | 124 | |
125 | 125 | // Only show page specs if frontpage is set to 'page' |
126 | - if ( get_option( 'show_on_front' ) == 'page' ) { |
|
127 | - $front_page_id = get_option( 'page_on_front' ); |
|
128 | - $blog_page_id = get_option( 'page_for_posts' ); |
|
126 | + if (get_option('show_on_front') == 'page') { |
|
127 | + $front_page_id = get_option('page_on_front'); |
|
128 | + $blog_page_id = get_option('page_for_posts'); |
|
129 | 129 | |
130 | - $return .= 'Page On Front: ' . ( $front_page_id != 0 ? get_the_title( $front_page_id ) . ' (#' . $front_page_id . ')' : 'Unset' ) . "\n"; |
|
131 | - $return .= 'Page For Posts: ' . ( $blog_page_id != 0 ? get_the_title( $blog_page_id ) . ' (#' . $blog_page_id . ')' : 'Unset' ) . "\n"; |
|
130 | + $return .= 'Page On Front: '.($front_page_id != 0 ? get_the_title($front_page_id).' (#'.$front_page_id.')' : 'Unset')."\n"; |
|
131 | + $return .= 'Page For Posts: '.($blog_page_id != 0 ? get_the_title($blog_page_id).' (#'.$blog_page_id.')' : 'Unset')."\n"; |
|
132 | 132 | } |
133 | 133 | |
134 | 134 | // Make sure wp_remote_post() is working |
@@ -137,205 +137,205 @@ discard block |
||
137 | 137 | $params = array( |
138 | 138 | 'sslverify' => false, |
139 | 139 | 'timeout' => 60, |
140 | - 'user-agent' => 'Give/' . GIVE_VERSION, |
|
140 | + 'user-agent' => 'Give/'.GIVE_VERSION, |
|
141 | 141 | 'body' => $request |
142 | 142 | ); |
143 | 143 | |
144 | - $response = wp_remote_post( 'https://www.paypal.com/cgi-bin/webscr', $params ); |
|
144 | + $response = wp_remote_post('https://www.paypal.com/cgi-bin/webscr', $params); |
|
145 | 145 | |
146 | - if ( ! is_wp_error( $response ) && $response['response']['code'] >= 200 && $response['response']['code'] < 300 ) { |
|
146 | + if ( ! is_wp_error($response) && $response['response']['code'] >= 200 && $response['response']['code'] < 300) { |
|
147 | 147 | $WP_REMOTE_POST = 'wp_remote_post() works'; |
148 | 148 | } else { |
149 | 149 | $WP_REMOTE_POST = 'wp_remote_post() does not work'; |
150 | 150 | } |
151 | 151 | |
152 | - $return .= 'Remote Post: ' . $WP_REMOTE_POST . "\n"; |
|
153 | - $return .= 'Table Prefix: ' . 'Length: ' . strlen( $wpdb->prefix ) . ' Status: ' . ( strlen( $wpdb->prefix ) > 16 ? 'ERROR: Too long' : 'Acceptable' ) . "\n"; |
|
154 | - $return .= 'Admin AJAX: ' . ( give_test_ajax_works() ? 'Accessible' : 'Inaccessible' ) . "\n"; |
|
155 | - $return .= 'WP_DEBUG: ' . ( defined( 'WP_DEBUG' ) ? WP_DEBUG ? 'Enabled' : 'Disabled' : 'Not set' ) . "\n"; |
|
156 | - $return .= 'Memory Limit: ' . WP_MEMORY_LIMIT . "\n"; |
|
157 | - $return .= 'Registered Post Stati: ' . implode( ', ', get_post_stati() ) . "\n"; |
|
152 | + $return .= 'Remote Post: '.$WP_REMOTE_POST."\n"; |
|
153 | + $return .= 'Table Prefix: '.'Length: '.strlen($wpdb->prefix).' Status: '.(strlen($wpdb->prefix) > 16 ? 'ERROR: Too long' : 'Acceptable')."\n"; |
|
154 | + $return .= 'Admin AJAX: '.(give_test_ajax_works() ? 'Accessible' : 'Inaccessible')."\n"; |
|
155 | + $return .= 'WP_DEBUG: '.(defined('WP_DEBUG') ? WP_DEBUG ? 'Enabled' : 'Disabled' : 'Not set')."\n"; |
|
156 | + $return .= 'Memory Limit: '.WP_MEMORY_LIMIT."\n"; |
|
157 | + $return .= 'Registered Post Stati: '.implode(', ', get_post_stati())."\n"; |
|
158 | 158 | |
159 | - $return = apply_filters( 'give_sysinfo_after_wordpress_config', $return ); |
|
159 | + $return = apply_filters('give_sysinfo_after_wordpress_config', $return); |
|
160 | 160 | |
161 | 161 | // GIVE configuration |
162 | - $return .= "\n" . '-- Give Configuration' . "\n\n"; |
|
163 | - $return .= 'Version: ' . GIVE_VERSION . "\n"; |
|
164 | - $return .= 'Upgraded From: ' . get_option( 'give_version_upgraded_from', 'None' ) . "\n"; |
|
165 | - $return .= 'Test Mode: ' . ( give_is_test_mode() ? "Enabled\n" : "Disabled\n" ); |
|
166 | - $return .= 'Currency Code: ' . give_get_currency() . "\n"; |
|
167 | - $return .= 'Currency Position: ' . give_get_option( 'currency_position', 'before' ) . "\n"; |
|
168 | - $return .= 'Decimal Separator: ' . give_get_option( 'decimal_separator', '.' ) . "\n"; |
|
169 | - $return .= 'Thousands Separator: ' . give_get_option( 'thousands_separator', ',' ) . "\n"; |
|
162 | + $return .= "\n".'-- Give Configuration'."\n\n"; |
|
163 | + $return .= 'Version: '.GIVE_VERSION."\n"; |
|
164 | + $return .= 'Upgraded From: '.get_option('give_version_upgraded_from', 'None')."\n"; |
|
165 | + $return .= 'Test Mode: '.(give_is_test_mode() ? "Enabled\n" : "Disabled\n"); |
|
166 | + $return .= 'Currency Code: '.give_get_currency()."\n"; |
|
167 | + $return .= 'Currency Position: '.give_get_option('currency_position', 'before')."\n"; |
|
168 | + $return .= 'Decimal Separator: '.give_get_option('decimal_separator', '.')."\n"; |
|
169 | + $return .= 'Thousands Separator: '.give_get_option('thousands_separator', ',')."\n"; |
|
170 | 170 | |
171 | - $return = apply_filters( 'give_sysinfo_after_give_config', $return ); |
|
171 | + $return = apply_filters('give_sysinfo_after_give_config', $return); |
|
172 | 172 | |
173 | 173 | // GIVE pages |
174 | - $return .= "\n" . '-- Give Page Configuration' . "\n\n"; |
|
175 | - $return .= 'Success Page: ' . ( ! empty( $give_options['success_page'] ) ? get_permalink( $give_options['success_page'] ) . "\n" : "Unset\n" ); |
|
176 | - $return .= 'Failure Page: ' . ( ! empty( $give_options['failure_page'] ) ? get_permalink( $give_options['failure_page'] ) . "\n" : "Unset\n" ); |
|
177 | - $return .= 'Give Forms Slug: ' . ( defined( 'GIVE_SLUG' ) ? '/' . GIVE_SLUG . "\n" : "/donations\n" ); |
|
174 | + $return .= "\n".'-- Give Page Configuration'."\n\n"; |
|
175 | + $return .= 'Success Page: '.( ! empty($give_options['success_page']) ? get_permalink($give_options['success_page'])."\n" : "Unset\n"); |
|
176 | + $return .= 'Failure Page: '.( ! empty($give_options['failure_page']) ? get_permalink($give_options['failure_page'])."\n" : "Unset\n"); |
|
177 | + $return .= 'Give Forms Slug: '.(defined('GIVE_SLUG') ? '/'.GIVE_SLUG."\n" : "/donations\n"); |
|
178 | 178 | |
179 | - $return = apply_filters( 'give_sysinfo_after_give_pages', $return ); |
|
179 | + $return = apply_filters('give_sysinfo_after_give_pages', $return); |
|
180 | 180 | |
181 | 181 | // GIVE gateways |
182 | - $return .= "\n" . '-- Give Gateway Configuration' . "\n\n"; |
|
182 | + $return .= "\n".'-- Give Gateway Configuration'."\n\n"; |
|
183 | 183 | |
184 | 184 | $active_gateways = give_get_enabled_payment_gateways(); |
185 | - if ( $active_gateways ) { |
|
186 | - $default_gateway_is_active = give_is_gateway_active( give_get_default_gateway( null ) ); |
|
187 | - if ( $default_gateway_is_active ) { |
|
188 | - $default_gateway = give_get_default_gateway( null ); |
|
189 | - $default_gateway = $active_gateways[ $default_gateway ]['admin_label']; |
|
185 | + if ($active_gateways) { |
|
186 | + $default_gateway_is_active = give_is_gateway_active(give_get_default_gateway(null)); |
|
187 | + if ($default_gateway_is_active) { |
|
188 | + $default_gateway = give_get_default_gateway(null); |
|
189 | + $default_gateway = $active_gateways[$default_gateway]['admin_label']; |
|
190 | 190 | } else { |
191 | 191 | $default_gateway = 'Test Payment'; |
192 | 192 | } |
193 | 193 | |
194 | 194 | $gateways = array(); |
195 | - foreach ( $active_gateways as $gateway ) { |
|
195 | + foreach ($active_gateways as $gateway) { |
|
196 | 196 | $gateways[] = $gateway['admin_label']; |
197 | 197 | } |
198 | 198 | |
199 | - $return .= 'Enabled Gateways: ' . implode( ', ', $gateways ) . "\n"; |
|
200 | - $return .= 'Default Gateway: ' . $default_gateway . "\n"; |
|
199 | + $return .= 'Enabled Gateways: '.implode(', ', $gateways)."\n"; |
|
200 | + $return .= 'Default Gateway: '.$default_gateway."\n"; |
|
201 | 201 | } else { |
202 | - $return .= 'Enabled Gateways: None' . "\n"; |
|
202 | + $return .= 'Enabled Gateways: None'."\n"; |
|
203 | 203 | } |
204 | 204 | |
205 | - $return = apply_filters( 'give_sysinfo_after_give_gateways', $return ); |
|
205 | + $return = apply_filters('give_sysinfo_after_give_gateways', $return); |
|
206 | 206 | |
207 | 207 | // GIVE Templates |
208 | - $dir = get_stylesheet_directory() . '/give_templates/*'; |
|
209 | - if ( is_dir( $dir ) && ( count( glob( "$dir/*" ) ) !== 0 ) ) { |
|
210 | - $return .= "\n" . '-- Give Template Overrides' . "\n\n"; |
|
208 | + $dir = get_stylesheet_directory().'/give_templates/*'; |
|
209 | + if (is_dir($dir) && (count(glob("$dir/*")) !== 0)) { |
|
210 | + $return .= "\n".'-- Give Template Overrides'."\n\n"; |
|
211 | 211 | |
212 | - foreach ( glob( $dir ) as $file ) { |
|
213 | - $return .= 'Filename: ' . basename( $file ) . "\n"; |
|
212 | + foreach (glob($dir) as $file) { |
|
213 | + $return .= 'Filename: '.basename($file)."\n"; |
|
214 | 214 | } |
215 | 215 | |
216 | - $return = apply_filters( 'give_sysinfo_after_give_templates', $return ); |
|
216 | + $return = apply_filters('give_sysinfo_after_give_templates', $return); |
|
217 | 217 | } |
218 | 218 | |
219 | 219 | // Must-use plugins |
220 | 220 | $muplugins = get_mu_plugins(); |
221 | - if ( count( $muplugins > 0 ) ) { |
|
222 | - $return .= "\n" . '-- Must-Use Plugins' . "\n\n"; |
|
221 | + if (count($muplugins > 0)) { |
|
222 | + $return .= "\n".'-- Must-Use Plugins'."\n\n"; |
|
223 | 223 | |
224 | - foreach ( $muplugins as $plugin => $plugin_data ) { |
|
225 | - $return .= $plugin_data['Name'] . ': ' . $plugin_data['Version'] . "\n"; |
|
224 | + foreach ($muplugins as $plugin => $plugin_data) { |
|
225 | + $return .= $plugin_data['Name'].': '.$plugin_data['Version']."\n"; |
|
226 | 226 | } |
227 | 227 | |
228 | - $return = apply_filters( 'give_sysinfo_after_wordpress_mu_plugins', $return ); |
|
228 | + $return = apply_filters('give_sysinfo_after_wordpress_mu_plugins', $return); |
|
229 | 229 | } |
230 | 230 | |
231 | 231 | // WordPress active plugins |
232 | - $return .= "\n" . '-- WordPress Active Plugins' . "\n\n"; |
|
232 | + $return .= "\n".'-- WordPress Active Plugins'."\n\n"; |
|
233 | 233 | |
234 | 234 | $plugins = get_plugins(); |
235 | - $active_plugins = get_option( 'active_plugins', array() ); |
|
235 | + $active_plugins = get_option('active_plugins', array()); |
|
236 | 236 | |
237 | - foreach ( $plugins as $plugin_path => $plugin ) { |
|
238 | - if ( ! in_array( $plugin_path, $active_plugins ) ) { |
|
237 | + foreach ($plugins as $plugin_path => $plugin) { |
|
238 | + if ( ! in_array($plugin_path, $active_plugins)) { |
|
239 | 239 | continue; |
240 | 240 | } |
241 | 241 | |
242 | - $return .= $plugin['Name'] . ': ' . $plugin['Version'] . "\n"; |
|
242 | + $return .= $plugin['Name'].': '.$plugin['Version']."\n"; |
|
243 | 243 | } |
244 | 244 | |
245 | - $return = apply_filters( 'give_sysinfo_after_wordpress_plugins', $return ); |
|
245 | + $return = apply_filters('give_sysinfo_after_wordpress_plugins', $return); |
|
246 | 246 | |
247 | 247 | // WordPress inactive plugins |
248 | - $return .= "\n" . '-- WordPress Inactive Plugins' . "\n\n"; |
|
248 | + $return .= "\n".'-- WordPress Inactive Plugins'."\n\n"; |
|
249 | 249 | |
250 | - foreach ( $plugins as $plugin_path => $plugin ) { |
|
251 | - if ( in_array( $plugin_path, $active_plugins ) ) { |
|
250 | + foreach ($plugins as $plugin_path => $plugin) { |
|
251 | + if (in_array($plugin_path, $active_plugins)) { |
|
252 | 252 | continue; |
253 | 253 | } |
254 | 254 | |
255 | - $return .= $plugin['Name'] . ': ' . $plugin['Version'] . "\n"; |
|
255 | + $return .= $plugin['Name'].': '.$plugin['Version']."\n"; |
|
256 | 256 | } |
257 | 257 | |
258 | - $return = apply_filters( 'give_sysinfo_after_wordpress_plugins_inactive', $return ); |
|
258 | + $return = apply_filters('give_sysinfo_after_wordpress_plugins_inactive', $return); |
|
259 | 259 | |
260 | - if ( is_multisite() ) { |
|
260 | + if (is_multisite()) { |
|
261 | 261 | // WordPress Multisite active plugins |
262 | - $return .= "\n" . '-- Network Active Plugins' . "\n\n"; |
|
262 | + $return .= "\n".'-- Network Active Plugins'."\n\n"; |
|
263 | 263 | |
264 | 264 | $plugins = wp_get_active_network_plugins(); |
265 | - $active_plugins = get_site_option( 'active_sitewide_plugins', array() ); |
|
265 | + $active_plugins = get_site_option('active_sitewide_plugins', array()); |
|
266 | 266 | |
267 | - foreach ( $plugins as $plugin_path ) { |
|
268 | - $plugin_base = plugin_basename( $plugin_path ); |
|
267 | + foreach ($plugins as $plugin_path) { |
|
268 | + $plugin_base = plugin_basename($plugin_path); |
|
269 | 269 | |
270 | - if ( ! array_key_exists( $plugin_base, $active_plugins ) ) { |
|
270 | + if ( ! array_key_exists($plugin_base, $active_plugins)) { |
|
271 | 271 | continue; |
272 | 272 | } |
273 | 273 | |
274 | - $plugin = get_plugin_data( $plugin_path ); |
|
275 | - $return .= $plugin['Name'] . ': ' . $plugin['Version'] . "\n"; |
|
274 | + $plugin = get_plugin_data($plugin_path); |
|
275 | + $return .= $plugin['Name'].': '.$plugin['Version']."\n"; |
|
276 | 276 | } |
277 | 277 | |
278 | - $return = apply_filters( 'give_sysinfo_after_wordpress_ms_plugins', $return ); |
|
278 | + $return = apply_filters('give_sysinfo_after_wordpress_ms_plugins', $return); |
|
279 | 279 | } |
280 | 280 | |
281 | 281 | // Server configuration (really just versioning) |
282 | - $return .= "\n" . '-- Webserver Configuration' . "\n\n"; |
|
283 | - $return .= 'PHP Version: ' . PHP_VERSION . "\n"; |
|
284 | - $return .= 'MySQL Version: ' . $wpdb->db_version() . "\n"; |
|
285 | - $return .= 'Webserver Info: ' . $_SERVER['SERVER_SOFTWARE'] . "\n"; |
|
282 | + $return .= "\n".'-- Webserver Configuration'."\n\n"; |
|
283 | + $return .= 'PHP Version: '.PHP_VERSION."\n"; |
|
284 | + $return .= 'MySQL Version: '.$wpdb->db_version()."\n"; |
|
285 | + $return .= 'Webserver Info: '.$_SERVER['SERVER_SOFTWARE']."\n"; |
|
286 | 286 | |
287 | - $return = apply_filters( 'give_sysinfo_after_webserver_config', $return ); |
|
287 | + $return = apply_filters('give_sysinfo_after_webserver_config', $return); |
|
288 | 288 | |
289 | 289 | // PHP configs... now we're getting to the important stuff |
290 | - $return .= "\n" . '-- PHP Configuration' . "\n\n"; |
|
291 | - $return .= 'Safe Mode: ' . ( ini_get( 'safe_mode' ) ? 'Enabled' : 'Disabled' . "\n" ); |
|
292 | - $return .= 'Memory Limit: ' . ini_get( 'memory_limit' ) . "\n"; |
|
293 | - $return .= 'Upload Max Size: ' . ini_get( 'upload_max_filesize' ) . "\n"; |
|
294 | - $return .= 'Post Max Size: ' . ini_get( 'post_max_size' ) . "\n"; |
|
295 | - $return .= 'Upload Max Filesize: ' . ini_get( 'upload_max_filesize' ) . "\n"; |
|
296 | - $return .= 'Time Limit: ' . ini_get( 'max_execution_time' ) . "\n"; |
|
297 | - $return .= 'Max Input Vars: ' . ini_get( 'max_input_vars' ) . "\n"; |
|
298 | - $return .= 'URL-aware fopen: ' . ( ini_get( 'allow_url_fopen' ) ? 'On (' . ini_get( 'allow_url_fopen' ) . ')' : 'N/A' ) . "\n"; |
|
299 | - $return .= 'Display Errors: ' . ( ini_get( 'display_errors' ) ? 'On (' . ini_get( 'display_errors' ) . ')' : 'N/A' ) . "\n"; |
|
300 | - |
|
301 | - $return = apply_filters( 'give_sysinfo_after_php_config', $return ); |
|
290 | + $return .= "\n".'-- PHP Configuration'."\n\n"; |
|
291 | + $return .= 'Safe Mode: '.(ini_get('safe_mode') ? 'Enabled' : 'Disabled'."\n"); |
|
292 | + $return .= 'Memory Limit: '.ini_get('memory_limit')."\n"; |
|
293 | + $return .= 'Upload Max Size: '.ini_get('upload_max_filesize')."\n"; |
|
294 | + $return .= 'Post Max Size: '.ini_get('post_max_size')."\n"; |
|
295 | + $return .= 'Upload Max Filesize: '.ini_get('upload_max_filesize')."\n"; |
|
296 | + $return .= 'Time Limit: '.ini_get('max_execution_time')."\n"; |
|
297 | + $return .= 'Max Input Vars: '.ini_get('max_input_vars')."\n"; |
|
298 | + $return .= 'URL-aware fopen: '.(ini_get('allow_url_fopen') ? 'On ('.ini_get('allow_url_fopen').')' : 'N/A')."\n"; |
|
299 | + $return .= 'Display Errors: '.(ini_get('display_errors') ? 'On ('.ini_get('display_errors').')' : 'N/A')."\n"; |
|
300 | + |
|
301 | + $return = apply_filters('give_sysinfo_after_php_config', $return); |
|
302 | 302 | |
303 | 303 | // PHP extensions and such |
304 | - $return .= "\n" . '-- PHP Extensions' . "\n\n"; |
|
305 | - $return .= 'cURL: ' . ( function_exists( 'curl_init' ) ? 'Supported' : 'Not Supported' ) . "\n"; |
|
304 | + $return .= "\n".'-- PHP Extensions'."\n\n"; |
|
305 | + $return .= 'cURL: '.(function_exists('curl_init') ? 'Supported' : 'Not Supported')."\n"; |
|
306 | 306 | |
307 | 307 | //cURL version |
308 | - if ( function_exists( 'curl_init' ) && function_exists( 'curl_version' ) ) { |
|
308 | + if (function_exists('curl_init') && function_exists('curl_version')) { |
|
309 | 309 | $curl_values = curl_version(); |
310 | - $return .= 'cURL Version: ' . $curl_values["version"] . "\n"; |
|
310 | + $return .= 'cURL Version: '.$curl_values["version"]."\n"; |
|
311 | 311 | } |
312 | - $return .= 'zlib: ' . ( function_exists( 'gzcompress' ) ? 'Supported' : 'Not Supported' ) . "\n"; |
|
313 | - $return .= 'GD: ' . ( ( extension_loaded( 'gd' ) && function_exists( 'gd_info' ) ) ? 'Supported' : 'Not Supported' ) . "\n"; |
|
314 | - $return .= 'fsockopen: ' . ( function_exists( 'fsockopen' ) ? 'Supported' : 'Not Supported' ) . "\n"; |
|
315 | - $return .= 'SOAP Client: ' . ( class_exists( 'SoapClient' ) ? 'Installed' : 'Not Installed' ) . "\n"; |
|
316 | - $return .= 'Suhosin: ' . ( extension_loaded( 'suhosin' ) ? 'Installed' : 'Not Installed' ) . "\n"; |
|
317 | - $return .= 'DOM: ' . ( extension_loaded( 'dom' ) ? 'Installed' : 'Not Installed' ) . "\n"; |
|
318 | - $return .= 'MBString: ' . ( extension_loaded( 'mbstring' ) ? 'Installed' : 'Not Installed' ) . "\n"; |
|
312 | + $return .= 'zlib: '.(function_exists('gzcompress') ? 'Supported' : 'Not Supported')."\n"; |
|
313 | + $return .= 'GD: '.((extension_loaded('gd') && function_exists('gd_info')) ? 'Supported' : 'Not Supported')."\n"; |
|
314 | + $return .= 'fsockopen: '.(function_exists('fsockopen') ? 'Supported' : 'Not Supported')."\n"; |
|
315 | + $return .= 'SOAP Client: '.(class_exists('SoapClient') ? 'Installed' : 'Not Installed')."\n"; |
|
316 | + $return .= 'Suhosin: '.(extension_loaded('suhosin') ? 'Installed' : 'Not Installed')."\n"; |
|
317 | + $return .= 'DOM: '.(extension_loaded('dom') ? 'Installed' : 'Not Installed')."\n"; |
|
318 | + $return .= 'MBString: '.(extension_loaded('mbstring') ? 'Installed' : 'Not Installed')."\n"; |
|
319 | 319 | |
320 | - $return = apply_filters( 'give_sysinfo_after_php_ext', $return ); |
|
320 | + $return = apply_filters('give_sysinfo_after_php_ext', $return); |
|
321 | 321 | |
322 | 322 | // Session stuff |
323 | - $return .= "\n" . '-- Session Configuration' . "\n\n"; |
|
324 | - $return .= 'Give Use Sessions: ' . ( defined( 'GIVE_USE_PHP_SESSIONS' ) && GIVE_USE_PHP_SESSIONS ? 'Enforced' : ( Give()->session->use_php_sessions() ? 'Enabled' : 'Disabled' ) ) . "\n"; |
|
325 | - $return .= 'Session: ' . ( isset( $_SESSION ) ? 'Enabled' : 'Disabled' ) . "\n"; |
|
323 | + $return .= "\n".'-- Session Configuration'."\n\n"; |
|
324 | + $return .= 'Give Use Sessions: '.(defined('GIVE_USE_PHP_SESSIONS') && GIVE_USE_PHP_SESSIONS ? 'Enforced' : (Give()->session->use_php_sessions() ? 'Enabled' : 'Disabled'))."\n"; |
|
325 | + $return .= 'Session: '.(isset($_SESSION) ? 'Enabled' : 'Disabled')."\n"; |
|
326 | 326 | |
327 | 327 | // The rest of this is only relevant is session is enabled |
328 | - if ( isset( $_SESSION ) ) { |
|
329 | - $return .= 'Session Name: ' . esc_html( ini_get( 'session.name' ) ) . "\n"; |
|
330 | - $return .= 'Cookie Path: ' . esc_html( ini_get( 'session.cookie_path' ) ) . "\n"; |
|
331 | - $return .= 'Save Path: ' . esc_html( ini_get( 'session.save_path' ) ) . "\n"; |
|
332 | - $return .= 'Use Cookies: ' . ( ini_get( 'session.use_cookies' ) ? 'On' : 'Off' ) . "\n"; |
|
333 | - $return .= 'Use Only Cookies: ' . ( ini_get( 'session.use_only_cookies' ) ? 'On' : 'Off' ) . "\n"; |
|
328 | + if (isset($_SESSION)) { |
|
329 | + $return .= 'Session Name: '.esc_html(ini_get('session.name'))."\n"; |
|
330 | + $return .= 'Cookie Path: '.esc_html(ini_get('session.cookie_path'))."\n"; |
|
331 | + $return .= 'Save Path: '.esc_html(ini_get('session.save_path'))."\n"; |
|
332 | + $return .= 'Use Cookies: '.(ini_get('session.use_cookies') ? 'On' : 'Off')."\n"; |
|
333 | + $return .= 'Use Only Cookies: '.(ini_get('session.use_only_cookies') ? 'On' : 'Off')."\n"; |
|
334 | 334 | } |
335 | 335 | |
336 | - $return = apply_filters( 'give_sysinfo_after_session_config', $return ); |
|
336 | + $return = apply_filters('give_sysinfo_after_session_config', $return); |
|
337 | 337 | |
338 | - $return .= "\n" . '### End System Info ###'; |
|
338 | + $return .= "\n".'### End System Info ###'; |
|
339 | 339 | |
340 | 340 | return $return; |
341 | 341 | } |
@@ -349,17 +349,17 @@ discard block |
||
349 | 349 | */ |
350 | 350 | function give_tools_sysinfo_download() { |
351 | 351 | |
352 | - if ( ! current_user_can( 'manage_give_settings' ) ) { |
|
352 | + if ( ! current_user_can('manage_give_settings')) { |
|
353 | 353 | return; |
354 | 354 | } |
355 | 355 | |
356 | 356 | nocache_headers(); |
357 | 357 | |
358 | - header( 'Content-Type: text/plain' ); |
|
359 | - header( 'Content-Disposition: attachment; filename="give-system-info.txt"' ); |
|
358 | + header('Content-Type: text/plain'); |
|
359 | + header('Content-Disposition: attachment; filename="give-system-info.txt"'); |
|
360 | 360 | |
361 | - echo wp_strip_all_tags( $_POST['give-sysinfo'] ); |
|
361 | + echo wp_strip_all_tags($_POST['give-sysinfo']); |
|
362 | 362 | give_die(); |
363 | 363 | } |
364 | 364 | |
365 | -add_action( 'give_download_sysinfo', 'give_tools_sysinfo_download' ); |
|
366 | 365 | \ No newline at end of file |
366 | +add_action('give_download_sysinfo', 'give_tools_sysinfo_download'); |
|
367 | 367 | \ No newline at end of file |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | * @since 1.0 |
10 | 10 | */ |
11 | 11 | |
12 | -if ( ! defined( 'ABSPATH' ) ) { |
|
12 | +if ( ! defined('ABSPATH')) { |
|
13 | 13 | exit; |
14 | 14 | } |
15 | 15 | |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | * @access private |
22 | 22 | * @since 1.0 |
23 | 23 | */ |
24 | -add_action( 'give_paypal_cc_form', '__return_false' ); |
|
24 | +add_action('give_paypal_cc_form', '__return_false'); |
|
25 | 25 | |
26 | 26 | /** |
27 | 27 | * Process PayPal Purchase |
@@ -32,13 +32,13 @@ discard block |
||
32 | 32 | * |
33 | 33 | * @return void |
34 | 34 | */ |
35 | -function give_process_paypal_purchase( $purchase_data ) { |
|
35 | +function give_process_paypal_purchase($purchase_data) { |
|
36 | 36 | |
37 | - if ( ! wp_verify_nonce( $purchase_data['gateway_nonce'], 'give-gateway' ) ) { |
|
38 | - wp_die( __( 'Nonce verification has failed', 'give' ), __( 'Error', 'give' ), array( 'response' => 403 ) ); |
|
37 | + if ( ! wp_verify_nonce($purchase_data['gateway_nonce'], 'give-gateway')) { |
|
38 | + wp_die(__('Nonce verification has failed', 'give'), __('Error', 'give'), array('response' => 403)); |
|
39 | 39 | } |
40 | 40 | |
41 | - $form_id = intval( $purchase_data['post_data']['give-form-id'] ); |
|
41 | + $form_id = intval($purchase_data['post_data']['give-form-id']); |
|
42 | 42 | |
43 | 43 | // Collect payment data |
44 | 44 | $payment_data = array( |
@@ -55,59 +55,59 @@ discard block |
||
55 | 55 | ); |
56 | 56 | |
57 | 57 | // Record the pending payment |
58 | - $payment = give_insert_payment( $payment_data ); |
|
58 | + $payment = give_insert_payment($payment_data); |
|
59 | 59 | |
60 | 60 | // Check payment |
61 | - if ( ! $payment ) { |
|
61 | + if ( ! $payment) { |
|
62 | 62 | // Record the error |
63 | - give_record_gateway_error( __( 'Payment Error', 'give' ), sprintf( __( 'Payment creation failed before sending buyer to PayPal. Payment data: %s', 'give' ), json_encode( $payment_data ) ), $payment ); |
|
63 | + give_record_gateway_error(__('Payment Error', 'give'), sprintf(__('Payment creation failed before sending buyer to PayPal. Payment data: %s', 'give'), json_encode($payment_data)), $payment); |
|
64 | 64 | // Problems? send back |
65 | - give_send_back_to_checkout( '?payment-mode=' . $purchase_data['post_data']['give-gateway'] ); |
|
65 | + give_send_back_to_checkout('?payment-mode='.$purchase_data['post_data']['give-gateway']); |
|
66 | 66 | } else { |
67 | 67 | // Only send to PayPal if the pending payment is created successfully |
68 | - $listener_url = add_query_arg( 'give-listener', 'IPN', home_url( 'index.php' ) ); |
|
68 | + $listener_url = add_query_arg('give-listener', 'IPN', home_url('index.php')); |
|
69 | 69 | |
70 | 70 | // Get the success url |
71 | - $return_url = add_query_arg( array( |
|
71 | + $return_url = add_query_arg(array( |
|
72 | 72 | 'payment-confirmation' => 'paypal', |
73 | 73 | 'payment-id' => $payment |
74 | 74 | |
75 | - ), get_permalink( give_get_option( 'success_page' ) ) ); |
|
75 | + ), get_permalink(give_get_option('success_page'))); |
|
76 | 76 | |
77 | 77 | // Get the PayPal redirect uri |
78 | - $paypal_redirect = trailingslashit( give_get_paypal_redirect() ) . '?'; |
|
78 | + $paypal_redirect = trailingslashit(give_get_paypal_redirect()).'?'; |
|
79 | 79 | |
80 | 80 | //Item name - pass level name if variable priced |
81 | 81 | $item_name = $purchase_data['post_data']['give-form-title']; |
82 | 82 | |
83 | 83 | //Verify has variable prices |
84 | - if ( give_has_variable_prices( $form_id ) && isset( $purchase_data['post_data']['give-price-id'] ) ) { |
|
84 | + if (give_has_variable_prices($form_id) && isset($purchase_data['post_data']['give-price-id'])) { |
|
85 | 85 | |
86 | - $item_price_level_text = give_get_price_option_name( $form_id, $purchase_data['post_data']['give-price-id'] ); |
|
86 | + $item_price_level_text = give_get_price_option_name($form_id, $purchase_data['post_data']['give-price-id']); |
|
87 | 87 | |
88 | - $price_level_amount = give_get_price_option_amount( $form_id, $purchase_data['post_data']['give-price-id'] ); |
|
88 | + $price_level_amount = give_get_price_option_amount($form_id, $purchase_data['post_data']['give-price-id']); |
|
89 | 89 | |
90 | 90 | //Donation given doesn't match selected level (must be a custom amount) |
91 | - if ( $price_level_amount != give_sanitize_amount( $purchase_data['price'] ) ) { |
|
92 | - $custom_amount_text = get_post_meta( $form_id, '_give_custom_amount_text', true ); |
|
91 | + if ($price_level_amount != give_sanitize_amount($purchase_data['price'])) { |
|
92 | + $custom_amount_text = get_post_meta($form_id, '_give_custom_amount_text', true); |
|
93 | 93 | //user custom amount text if any, fallback to default if not |
94 | - $item_name .= ' - ' . ( ! empty( $custom_amount_text ) ? $custom_amount_text : __( 'Custom Amount', 'give' ) ); |
|
94 | + $item_name .= ' - '.( ! empty($custom_amount_text) ? $custom_amount_text : __('Custom Amount', 'give')); |
|
95 | 95 | |
96 | 96 | } //Is there any donation level text? |
97 | - elseif ( ! empty( $item_price_level_text ) ) { |
|
98 | - $item_name .= ' - ' . $item_price_level_text; |
|
97 | + elseif ( ! empty($item_price_level_text)) { |
|
98 | + $item_name .= ' - '.$item_price_level_text; |
|
99 | 99 | } |
100 | 100 | |
101 | 101 | } //Single donation: Custom Amount |
102 | - elseif ( give_get_form_price( $form_id ) !== give_sanitize_amount( $purchase_data['price'] ) ) { |
|
103 | - $custom_amount_text = get_post_meta( $form_id, '_give_custom_amount_text', true ); |
|
102 | + elseif (give_get_form_price($form_id) !== give_sanitize_amount($purchase_data['price'])) { |
|
103 | + $custom_amount_text = get_post_meta($form_id, '_give_custom_amount_text', true); |
|
104 | 104 | //user custom amount text if any, fallback to default if not |
105 | - $item_name .= ' - ' . ( ! empty( $custom_amount_text ) ? $custom_amount_text : __( 'Custom Amount', 'give' ) ); |
|
105 | + $item_name .= ' - '.( ! empty($custom_amount_text) ? $custom_amount_text : __('Custom Amount', 'give')); |
|
106 | 106 | } |
107 | 107 | |
108 | 108 | // Setup PayPal arguments |
109 | 109 | $paypal_args = array( |
110 | - 'business' => give_get_option( 'paypal_email', false ), |
|
110 | + 'business' => give_get_option('paypal_email', false), |
|
111 | 111 | 'email' => $purchase_data['user_email'], |
112 | 112 | 'invoice' => $purchase_data['purchase_key'], |
113 | 113 | 'amount' => $purchase_data['price'], |
@@ -118,25 +118,25 @@ discard block |
||
118 | 118 | 'shipping' => '0', |
119 | 119 | 'no_note' => '1', |
120 | 120 | 'currency_code' => give_get_currency(), |
121 | - 'charset' => get_bloginfo( 'charset' ), |
|
121 | + 'charset' => get_bloginfo('charset'), |
|
122 | 122 | 'custom' => $payment, |
123 | 123 | 'rm' => '2', |
124 | 124 | 'return' => $return_url, |
125 | - 'cancel_return' => give_get_failed_transaction_uri( '?payment-id=' . $payment ), |
|
125 | + 'cancel_return' => give_get_failed_transaction_uri('?payment-id='.$payment), |
|
126 | 126 | 'notify_url' => $listener_url, |
127 | 127 | 'page_style' => give_get_paypal_page_style(), |
128 | - 'cbt' => get_bloginfo( 'name' ), |
|
128 | + 'cbt' => get_bloginfo('name'), |
|
129 | 129 | 'bn' => 'givewp_SP' |
130 | 130 | ); |
131 | 131 | |
132 | - if ( ! empty( $purchase_data['user_info']['address'] ) ) { |
|
132 | + if ( ! empty($purchase_data['user_info']['address'])) { |
|
133 | 133 | $paypal_args['address1'] = $purchase_data['user_info']['address']['line1']; |
134 | 134 | $paypal_args['address2'] = $purchase_data['user_info']['address']['line2']; |
135 | 135 | $paypal_args['city'] = $purchase_data['user_info']['address']['city']; |
136 | 136 | $paypal_args['country'] = $purchase_data['user_info']['address']['country']; |
137 | 137 | } |
138 | 138 | |
139 | - if ( give_get_option( 'paypal_button_type' ) === 'standard' ) { |
|
139 | + if (give_get_option('paypal_button_type') === 'standard') { |
|
140 | 140 | $paypal_extra_args = array( |
141 | 141 | 'cmd' => '_xclick', |
142 | 142 | ); |
@@ -146,25 +146,25 @@ discard block |
||
146 | 146 | ); |
147 | 147 | } |
148 | 148 | |
149 | - $paypal_args = array_merge( $paypal_extra_args, $paypal_args ); |
|
149 | + $paypal_args = array_merge($paypal_extra_args, $paypal_args); |
|
150 | 150 | |
151 | 151 | |
152 | - $paypal_args = apply_filters( 'give_paypal_redirect_args', $paypal_args, $purchase_data ); |
|
152 | + $paypal_args = apply_filters('give_paypal_redirect_args', $paypal_args, $purchase_data); |
|
153 | 153 | |
154 | 154 | // Build query |
155 | - $paypal_redirect .= http_build_query( $paypal_args ); |
|
155 | + $paypal_redirect .= http_build_query($paypal_args); |
|
156 | 156 | |
157 | 157 | // Fix for some sites that encode the entities |
158 | - $paypal_redirect = str_replace( '&', '&', $paypal_redirect ); |
|
158 | + $paypal_redirect = str_replace('&', '&', $paypal_redirect); |
|
159 | 159 | |
160 | 160 | // Redirect to PayPal |
161 | - wp_redirect( $paypal_redirect ); |
|
161 | + wp_redirect($paypal_redirect); |
|
162 | 162 | exit; |
163 | 163 | } |
164 | 164 | |
165 | 165 | } |
166 | 166 | |
167 | -add_action( 'give_gateway_paypal', 'give_process_paypal_purchase' ); |
|
167 | +add_action('give_gateway_paypal', 'give_process_paypal_purchase'); |
|
168 | 168 | |
169 | 169 | /** |
170 | 170 | * Listens for a PayPal IPN requests and then sends to the processing function |
@@ -174,12 +174,12 @@ discard block |
||
174 | 174 | */ |
175 | 175 | function give_listen_for_paypal_ipn() { |
176 | 176 | // Regular PayPal IPN |
177 | - if ( isset( $_GET['give-listener'] ) && $_GET['give-listener'] == 'IPN' ) { |
|
178 | - do_action( 'give_verify_paypal_ipn' ); |
|
177 | + if (isset($_GET['give-listener']) && $_GET['give-listener'] == 'IPN') { |
|
178 | + do_action('give_verify_paypal_ipn'); |
|
179 | 179 | } |
180 | 180 | } |
181 | 181 | |
182 | -add_action( 'init', 'give_listen_for_paypal_ipn' ); |
|
182 | +add_action('init', 'give_listen_for_paypal_ipn'); |
|
183 | 183 | |
184 | 184 | /** |
185 | 185 | * Process PayPal IPN |
@@ -190,7 +190,7 @@ discard block |
||
190 | 190 | function give_process_paypal_ipn() { |
191 | 191 | |
192 | 192 | // Check the request method is POST |
193 | - if ( isset( $_SERVER['REQUEST_METHOD'] ) && $_SERVER['REQUEST_METHOD'] != 'POST' ) { |
|
193 | + if (isset($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] != 'POST') { |
|
194 | 194 | return; |
195 | 195 | } |
196 | 196 | |
@@ -198,11 +198,11 @@ discard block |
||
198 | 198 | $post_data = ''; |
199 | 199 | |
200 | 200 | // Fallback just in case post_max_size is lower than needed |
201 | - if ( ini_get( 'allow_url_fopen' ) ) { |
|
202 | - $post_data = file_get_contents( 'php://input' ); |
|
201 | + if (ini_get('allow_url_fopen')) { |
|
202 | + $post_data = file_get_contents('php://input'); |
|
203 | 203 | } else { |
204 | 204 | // If allow_url_fopen is not enabled, then make sure that post_max_size is large enough |
205 | - ini_set( 'post_max_size', '12M' ); |
|
205 | + ini_set('post_max_size', '12M'); |
|
206 | 206 | } |
207 | 207 | // Start the encoded data collection with notification command |
208 | 208 | $encoded_data = 'cmd=_notify-validate'; |
@@ -211,40 +211,40 @@ discard block |
||
211 | 211 | $arg_separator = give_get_php_arg_separator_output(); |
212 | 212 | |
213 | 213 | // Verify there is a post_data |
214 | - if ( $post_data || strlen( $post_data ) > 0 ) { |
|
214 | + if ($post_data || strlen($post_data) > 0) { |
|
215 | 215 | // Append the data |
216 | - $encoded_data .= $arg_separator . $post_data; |
|
216 | + $encoded_data .= $arg_separator.$post_data; |
|
217 | 217 | } else { |
218 | 218 | // Check if POST is empty |
219 | - if ( empty( $_POST ) ) { |
|
219 | + if (empty($_POST)) { |
|
220 | 220 | // Nothing to do |
221 | 221 | return; |
222 | 222 | } else { |
223 | 223 | // Loop through each POST |
224 | - foreach ( $_POST as $key => $value ) { |
|
224 | + foreach ($_POST as $key => $value) { |
|
225 | 225 | // Encode the value and append the data |
226 | - $encoded_data .= $arg_separator . "$key=" . urlencode( $value ); |
|
226 | + $encoded_data .= $arg_separator."$key=".urlencode($value); |
|
227 | 227 | } |
228 | 228 | } |
229 | 229 | } |
230 | 230 | |
231 | 231 | // Convert collected post data to an array |
232 | - parse_str( $encoded_data, $encoded_data_array ); |
|
232 | + parse_str($encoded_data, $encoded_data_array); |
|
233 | 233 | |
234 | - foreach ( $encoded_data_array as $key => $value ) { |
|
234 | + foreach ($encoded_data_array as $key => $value) { |
|
235 | 235 | |
236 | - if ( false !== strpos( $key, 'amp;' ) ) { |
|
237 | - $new_key = str_replace( '&', '&', $key ); |
|
238 | - $new_key = str_replace( 'amp;', '&' , $new_key ); |
|
236 | + if (false !== strpos($key, 'amp;')) { |
|
237 | + $new_key = str_replace('&', '&', $key); |
|
238 | + $new_key = str_replace('amp;', '&', $new_key); |
|
239 | 239 | |
240 | - unset( $encoded_data_array[ $key ] ); |
|
241 | - $encoded_data_array[ $new_key ] = $value; |
|
240 | + unset($encoded_data_array[$key]); |
|
241 | + $encoded_data_array[$new_key] = $value; |
|
242 | 242 | } |
243 | 243 | |
244 | 244 | } |
245 | 245 | |
246 | 246 | //Validate IPN request w/ PayPal if user hasn't disabled this security measure |
247 | - if ( ! give_get_option( 'disable_paypal_verification' ) ) { |
|
247 | + if ( ! give_get_option('disable_paypal_verification')) { |
|
248 | 248 | |
249 | 249 | $remote_post_vars = array( |
250 | 250 | 'method' => 'POST', |
@@ -264,22 +264,22 @@ discard block |
||
264 | 264 | ); |
265 | 265 | |
266 | 266 | // Validate the IPN |
267 | - $api_response = wp_remote_post( give_get_paypal_redirect(), $remote_post_vars ); |
|
267 | + $api_response = wp_remote_post(give_get_paypal_redirect(), $remote_post_vars); |
|
268 | 268 | |
269 | - if ( is_wp_error( $api_response ) ) { |
|
270 | - give_record_gateway_error( __( 'IPN Error', 'give' ), sprintf( __( 'Invalid IPN verification response. IPN data: %s', 'give' ), json_encode( $api_response ) ) ); |
|
269 | + if (is_wp_error($api_response)) { |
|
270 | + give_record_gateway_error(__('IPN Error', 'give'), sprintf(__('Invalid IPN verification response. IPN data: %s', 'give'), json_encode($api_response))); |
|
271 | 271 | return; // Something went wrong |
272 | 272 | } |
273 | 273 | |
274 | - if ( $api_response['body'] !== 'VERIFIED' && give_get_option( 'disable_paypal_verification', false ) ) { |
|
275 | - give_record_gateway_error( __( 'IPN Error', 'give' ), sprintf( __( 'Invalid IPN verification response. IPN data: %s', 'give' ), json_encode( $api_response ) ) ); |
|
274 | + if ($api_response['body'] !== 'VERIFIED' && give_get_option('disable_paypal_verification', false)) { |
|
275 | + give_record_gateway_error(__('IPN Error', 'give'), sprintf(__('Invalid IPN verification response. IPN data: %s', 'give'), json_encode($api_response))); |
|
276 | 276 | return; // Response not okay |
277 | 277 | } |
278 | 278 | |
279 | 279 | } |
280 | 280 | |
281 | 281 | // Check if $post_data_array has been populated |
282 | - if ( ! is_array( $encoded_data_array ) && ! empty( $encoded_data_array ) ) { |
|
282 | + if ( ! is_array($encoded_data_array) && ! empty($encoded_data_array)) { |
|
283 | 283 | return; |
284 | 284 | } |
285 | 285 | |
@@ -288,21 +288,21 @@ discard block |
||
288 | 288 | 'payment_status' => '' |
289 | 289 | ); |
290 | 290 | |
291 | - $encoded_data_array = wp_parse_args( $encoded_data_array, $defaults ); |
|
291 | + $encoded_data_array = wp_parse_args($encoded_data_array, $defaults); |
|
292 | 292 | |
293 | - $payment_id = isset( $encoded_data_array['custom'] ) ? absint( $encoded_data_array['custom'] ) : 0; |
|
293 | + $payment_id = isset($encoded_data_array['custom']) ? absint($encoded_data_array['custom']) : 0; |
|
294 | 294 | |
295 | - if ( has_action( 'give_paypal_' . $encoded_data_array['txn_type'] ) ) { |
|
295 | + if (has_action('give_paypal_'.$encoded_data_array['txn_type'])) { |
|
296 | 296 | // Allow PayPal IPN types to be processed separately |
297 | - do_action( 'give_paypal_' . $encoded_data_array['txn_type'], $encoded_data_array, $payment_id ); |
|
297 | + do_action('give_paypal_'.$encoded_data_array['txn_type'], $encoded_data_array, $payment_id); |
|
298 | 298 | } else { |
299 | 299 | // Fallback to web accept just in case the txn_type isn't present |
300 | - do_action( 'give_paypal_web_accept', $encoded_data_array, $payment_id ); |
|
300 | + do_action('give_paypal_web_accept', $encoded_data_array, $payment_id); |
|
301 | 301 | } |
302 | 302 | exit; |
303 | 303 | } |
304 | 304 | |
305 | -add_action( 'give_verify_paypal_ipn', 'give_process_paypal_ipn' ); |
|
305 | +add_action('give_verify_paypal_ipn', 'give_process_paypal_ipn'); |
|
306 | 306 | |
307 | 307 | /** |
308 | 308 | * Process web accept (one time) payment IPNs |
@@ -313,185 +313,185 @@ discard block |
||
313 | 313 | * |
314 | 314 | * @return void |
315 | 315 | */ |
316 | -function give_process_paypal_web_accept_and_cart( $data, $payment_id ) { |
|
316 | +function give_process_paypal_web_accept_and_cart($data, $payment_id) { |
|
317 | 317 | |
318 | - if ( $data['txn_type'] != 'web_accept' && $data['txn_type'] != 'cart' && $data['payment_status'] != 'Refunded' ) { |
|
318 | + if ($data['txn_type'] != 'web_accept' && $data['txn_type'] != 'cart' && $data['payment_status'] != 'Refunded') { |
|
319 | 319 | return; |
320 | 320 | } |
321 | 321 | |
322 | - if ( empty( $payment_id ) ) { |
|
322 | + if (empty($payment_id)) { |
|
323 | 323 | return; |
324 | 324 | } |
325 | 325 | |
326 | 326 | // Collect payment details |
327 | - $purchase_key = isset( $data['invoice'] ) ? $data['invoice'] : $data['item_number']; |
|
327 | + $purchase_key = isset($data['invoice']) ? $data['invoice'] : $data['item_number']; |
|
328 | 328 | $paypal_amount = $data['mc_gross']; |
329 | - $payment_status = strtolower( $data['payment_status'] ); |
|
330 | - $currency_code = strtolower( $data['mc_currency'] ); |
|
331 | - $business_email = isset( $data['business'] ) && is_email( $data['business'] ) ? trim( $data['business'] ) : trim( $data['receiver_email'] ); |
|
332 | - $payment_meta = give_get_payment_meta( $payment_id ); |
|
329 | + $payment_status = strtolower($data['payment_status']); |
|
330 | + $currency_code = strtolower($data['mc_currency']); |
|
331 | + $business_email = isset($data['business']) && is_email($data['business']) ? trim($data['business']) : trim($data['receiver_email']); |
|
332 | + $payment_meta = give_get_payment_meta($payment_id); |
|
333 | 333 | |
334 | 334 | |
335 | - if ( give_get_payment_gateway( $payment_id ) != 'paypal' ) { |
|
335 | + if (give_get_payment_gateway($payment_id) != 'paypal') { |
|
336 | 336 | return; // this isn't a PayPal standard IPN |
337 | 337 | } |
338 | 338 | |
339 | 339 | // Verify payment recipient |
340 | - if ( strcasecmp( $business_email, trim( give_get_option( 'paypal_email' ) ) ) != 0 ) { |
|
340 | + if (strcasecmp($business_email, trim(give_get_option('paypal_email'))) != 0) { |
|
341 | 341 | |
342 | - give_record_gateway_error( __( 'IPN Error', 'give' ), sprintf( __( 'Invalid business email in IPN response. IPN data: %s', 'give' ), json_encode( $data ) ), $payment_id ); |
|
343 | - give_update_payment_status( $payment_id, 'failed' ); |
|
344 | - give_insert_payment_note( $payment_id, __( 'Payment failed due to invalid PayPal business email.', 'give' ) ); |
|
342 | + give_record_gateway_error(__('IPN Error', 'give'), sprintf(__('Invalid business email in IPN response. IPN data: %s', 'give'), json_encode($data)), $payment_id); |
|
343 | + give_update_payment_status($payment_id, 'failed'); |
|
344 | + give_insert_payment_note($payment_id, __('Payment failed due to invalid PayPal business email.', 'give')); |
|
345 | 345 | |
346 | 346 | return; |
347 | 347 | } |
348 | 348 | |
349 | 349 | // Verify payment currency |
350 | - if ( $currency_code != strtolower( $payment_meta['currency'] ) ) { |
|
350 | + if ($currency_code != strtolower($payment_meta['currency'])) { |
|
351 | 351 | |
352 | - give_record_gateway_error( __( 'IPN Error', 'give' ), sprintf( __( 'Invalid currency in IPN response. IPN data: %s', 'give' ), json_encode( $data ) ), $payment_id ); |
|
353 | - give_update_payment_status( $payment_id, 'failed' ); |
|
354 | - give_insert_payment_note( $payment_id, __( 'Payment failed due to invalid currency in PayPal IPN.', 'give' ) ); |
|
352 | + give_record_gateway_error(__('IPN Error', 'give'), sprintf(__('Invalid currency in IPN response. IPN data: %s', 'give'), json_encode($data)), $payment_id); |
|
353 | + give_update_payment_status($payment_id, 'failed'); |
|
354 | + give_insert_payment_note($payment_id, __('Payment failed due to invalid currency in PayPal IPN.', 'give')); |
|
355 | 355 | |
356 | 356 | return; |
357 | 357 | } |
358 | 358 | |
359 | - if ( ! give_get_payment_user_email( $payment_id ) ) { |
|
359 | + if ( ! give_get_payment_user_email($payment_id)) { |
|
360 | 360 | |
361 | 361 | // No email associated with purchase, so store from PayPal |
362 | - give_update_payment_meta( $payment_id, '_give_payment_user_email', $data['payer_email'] ); |
|
362 | + give_update_payment_meta($payment_id, '_give_payment_user_email', $data['payer_email']); |
|
363 | 363 | |
364 | 364 | // Setup and store the donors's details |
365 | 365 | $address = array(); |
366 | - $address['line1'] = ! empty( $data['address_street'] ) ? sanitize_text_field( $data['address_street'] ) : false; |
|
367 | - $address['city'] = ! empty( $data['address_city'] ) ? sanitize_text_field( $data['address_city'] ) : false; |
|
368 | - $address['state'] = ! empty( $data['address_state'] ) ? sanitize_text_field( $data['address_state'] ) : false; |
|
369 | - $address['country'] = ! empty( $data['address_country_code'] ) ? sanitize_text_field( $data['address_country_code'] ) : false; |
|
370 | - $address['zip'] = ! empty( $data['address_zip'] ) ? sanitize_text_field( $data['address_zip'] ) : false; |
|
366 | + $address['line1'] = ! empty($data['address_street']) ? sanitize_text_field($data['address_street']) : false; |
|
367 | + $address['city'] = ! empty($data['address_city']) ? sanitize_text_field($data['address_city']) : false; |
|
368 | + $address['state'] = ! empty($data['address_state']) ? sanitize_text_field($data['address_state']) : false; |
|
369 | + $address['country'] = ! empty($data['address_country_code']) ? sanitize_text_field($data['address_country_code']) : false; |
|
370 | + $address['zip'] = ! empty($data['address_zip']) ? sanitize_text_field($data['address_zip']) : false; |
|
371 | 371 | |
372 | 372 | $user_info = array( |
373 | 373 | 'id' => '-1', |
374 | - 'email' => sanitize_text_field( $data['payer_email'] ), |
|
375 | - 'first_name' => sanitize_text_field( $data['first_name'] ), |
|
376 | - 'last_name' => sanitize_text_field( $data['last_name'] ), |
|
374 | + 'email' => sanitize_text_field($data['payer_email']), |
|
375 | + 'first_name' => sanitize_text_field($data['first_name']), |
|
376 | + 'last_name' => sanitize_text_field($data['last_name']), |
|
377 | 377 | 'discount' => '', |
378 | 378 | 'address' => $address |
379 | 379 | ); |
380 | 380 | |
381 | 381 | $payment_meta['user_info'] = $user_info; |
382 | - give_update_payment_meta( $payment_id, '_give_payment_meta', $payment_meta ); |
|
382 | + give_update_payment_meta($payment_id, '_give_payment_meta', $payment_meta); |
|
383 | 383 | } |
384 | 384 | |
385 | - if ( $payment_status == 'refunded' || $payment_status == 'reversed' ) { |
|
385 | + if ($payment_status == 'refunded' || $payment_status == 'reversed') { |
|
386 | 386 | |
387 | 387 | // Process a refund |
388 | - give_process_paypal_refund( $data, $payment_id ); |
|
388 | + give_process_paypal_refund($data, $payment_id); |
|
389 | 389 | |
390 | 390 | } else { |
391 | 391 | |
392 | - if ( get_post_status( $payment_id ) == 'publish' ) { |
|
392 | + if (get_post_status($payment_id) == 'publish') { |
|
393 | 393 | return; // Only complete payments once |
394 | 394 | } |
395 | 395 | |
396 | 396 | // Retrieve the total purchase amount (before PayPal) |
397 | - $payment_amount = give_get_payment_amount( $payment_id ); |
|
397 | + $payment_amount = give_get_payment_amount($payment_id); |
|
398 | 398 | |
399 | - if ( number_format( (float) $paypal_amount, 2 ) < number_format( (float) $payment_amount, 2 ) ) { |
|
399 | + if (number_format((float) $paypal_amount, 2) < number_format((float) $payment_amount, 2)) { |
|
400 | 400 | // The prices don't match |
401 | - give_record_gateway_error( __( 'IPN Error', 'give' ), sprintf( __( 'Invalid payment amount in IPN response. IPN data: %s', 'give' ), json_encode( $data ) ), $payment_id ); |
|
402 | - give_update_payment_status( $payment_id, 'failed' ); |
|
403 | - give_insert_payment_note( $payment_id, __( 'Payment failed due to invalid amount in PayPal IPN.', 'give' ) ); |
|
401 | + give_record_gateway_error(__('IPN Error', 'give'), sprintf(__('Invalid payment amount in IPN response. IPN data: %s', 'give'), json_encode($data)), $payment_id); |
|
402 | + give_update_payment_status($payment_id, 'failed'); |
|
403 | + give_insert_payment_note($payment_id, __('Payment failed due to invalid amount in PayPal IPN.', 'give')); |
|
404 | 404 | |
405 | 405 | return; |
406 | 406 | } |
407 | - if ( $purchase_key != give_get_payment_key( $payment_id ) ) { |
|
407 | + if ($purchase_key != give_get_payment_key($payment_id)) { |
|
408 | 408 | // Purchase keys don't match |
409 | - give_record_gateway_error( __( 'IPN Error', 'give' ), sprintf( __( 'Invalid purchase key in IPN response. IPN data: %s', 'give' ), json_encode( $data ) ), $payment_id ); |
|
410 | - give_update_payment_status( $payment_id, 'failed' ); |
|
411 | - give_insert_payment_note( $payment_id, __( 'Payment failed due to invalid purchase key in PayPal IPN.', 'give' ) ); |
|
409 | + give_record_gateway_error(__('IPN Error', 'give'), sprintf(__('Invalid purchase key in IPN response. IPN data: %s', 'give'), json_encode($data)), $payment_id); |
|
410 | + give_update_payment_status($payment_id, 'failed'); |
|
411 | + give_insert_payment_note($payment_id, __('Payment failed due to invalid purchase key in PayPal IPN.', 'give')); |
|
412 | 412 | |
413 | 413 | return; |
414 | 414 | } |
415 | 415 | |
416 | - if ( $payment_status == 'completed' || give_is_test_mode() ) { |
|
417 | - give_insert_payment_note( $payment_id, sprintf( __( 'PayPal Transaction ID: %s', 'give' ), $data['txn_id'] ) ); |
|
418 | - give_set_payment_transaction_id( $payment_id, $data['txn_id'] ); |
|
419 | - give_update_payment_status( $payment_id, 'publish' ); |
|
420 | - } else if ( 'pending' == $payment_status && isset( $data['pending_reason'] ) ) { |
|
416 | + if ($payment_status == 'completed' || give_is_test_mode()) { |
|
417 | + give_insert_payment_note($payment_id, sprintf(__('PayPal Transaction ID: %s', 'give'), $data['txn_id'])); |
|
418 | + give_set_payment_transaction_id($payment_id, $data['txn_id']); |
|
419 | + give_update_payment_status($payment_id, 'publish'); |
|
420 | + } else if ('pending' == $payment_status && isset($data['pending_reason'])) { |
|
421 | 421 | |
422 | 422 | // Look for possible pending reasons, such as an echeck |
423 | 423 | |
424 | 424 | $note = ''; |
425 | 425 | |
426 | - switch ( strtolower( $data['pending_reason'] ) ) { |
|
426 | + switch (strtolower($data['pending_reason'])) { |
|
427 | 427 | |
428 | 428 | case 'echeck' : |
429 | 429 | |
430 | - $note = __( 'Payment made via eCheck and will clear automatically in 5-8 days', 'give' ); |
|
430 | + $note = __('Payment made via eCheck and will clear automatically in 5-8 days', 'give'); |
|
431 | 431 | |
432 | 432 | break; |
433 | 433 | |
434 | 434 | case 'address' : |
435 | 435 | |
436 | - $note = __( 'Payment requires a confirmed donor address and must be accepted manually through PayPal', 'give' ); |
|
436 | + $note = __('Payment requires a confirmed donor address and must be accepted manually through PayPal', 'give'); |
|
437 | 437 | |
438 | 438 | break; |
439 | 439 | |
440 | 440 | case 'intl' : |
441 | 441 | |
442 | - $note = __( 'Payment must be accepted manually through PayPal due to international account regulations', 'give' ); |
|
442 | + $note = __('Payment must be accepted manually through PayPal due to international account regulations', 'give'); |
|
443 | 443 | |
444 | 444 | break; |
445 | 445 | |
446 | 446 | case 'multi-currency' : |
447 | 447 | |
448 | - $note = __( 'Payment received in non-shop currency and must be accepted manually through PayPal', 'give' ); |
|
448 | + $note = __('Payment received in non-shop currency and must be accepted manually through PayPal', 'give'); |
|
449 | 449 | |
450 | 450 | break; |
451 | 451 | |
452 | 452 | case 'paymentreview' : |
453 | 453 | case 'regulatory_review' : |
454 | 454 | |
455 | - $note = __( 'Payment is being reviewed by PayPal staff as high-risk or in possible violation of government regulations', 'give' ); |
|
455 | + $note = __('Payment is being reviewed by PayPal staff as high-risk or in possible violation of government regulations', 'give'); |
|
456 | 456 | |
457 | 457 | break; |
458 | 458 | |
459 | 459 | case 'unilateral' : |
460 | 460 | |
461 | - $note = __( 'Payment was sent to non-confirmed or non-registered email address.', 'give' ); |
|
461 | + $note = __('Payment was sent to non-confirmed or non-registered email address.', 'give'); |
|
462 | 462 | |
463 | 463 | break; |
464 | 464 | |
465 | 465 | case 'upgrade' : |
466 | 466 | |
467 | - $note = __( 'PayPal account must be upgraded before this payment can be accepted', 'give' ); |
|
467 | + $note = __('PayPal account must be upgraded before this payment can be accepted', 'give'); |
|
468 | 468 | |
469 | 469 | break; |
470 | 470 | |
471 | 471 | case 'verify' : |
472 | 472 | |
473 | - $note = __( 'PayPal account is not verified. Verify account in order to accept this payment', 'give' ); |
|
473 | + $note = __('PayPal account is not verified. Verify account in order to accept this payment', 'give'); |
|
474 | 474 | |
475 | 475 | break; |
476 | 476 | |
477 | 477 | case 'other' : |
478 | 478 | |
479 | - $note = __( 'Payment is pending for unknown reasons. Contact PayPal support for assistance', 'give' ); |
|
479 | + $note = __('Payment is pending for unknown reasons. Contact PayPal support for assistance', 'give'); |
|
480 | 480 | |
481 | 481 | break; |
482 | 482 | |
483 | 483 | } |
484 | 484 | |
485 | - if ( ! empty( $note ) ) { |
|
485 | + if ( ! empty($note)) { |
|
486 | 486 | |
487 | - give_insert_payment_note( $payment_id, $note ); |
|
487 | + give_insert_payment_note($payment_id, $note); |
|
488 | 488 | |
489 | 489 | } |
490 | 490 | } |
491 | 491 | } |
492 | 492 | } |
493 | 493 | |
494 | -add_action( 'give_paypal_web_accept', 'give_process_paypal_web_accept_and_cart', 10, 2 ); |
|
494 | +add_action('give_paypal_web_accept', 'give_process_paypal_web_accept_and_cart', 10, 2); |
|
495 | 495 | |
496 | 496 | /** |
497 | 497 | * Process PayPal IPN Refunds |
@@ -502,32 +502,32 @@ discard block |
||
502 | 502 | * |
503 | 503 | * @return void |
504 | 504 | */ |
505 | -function give_process_paypal_refund( $data, $payment_id = 0 ) { |
|
505 | +function give_process_paypal_refund($data, $payment_id = 0) { |
|
506 | 506 | |
507 | 507 | // Collect payment details |
508 | 508 | |
509 | - if ( empty( $payment_id ) ) { |
|
509 | + if (empty($payment_id)) { |
|
510 | 510 | return; |
511 | 511 | } |
512 | 512 | |
513 | - if ( get_post_status( $payment_id ) == 'refunded' ) { |
|
513 | + if (get_post_status($payment_id) == 'refunded') { |
|
514 | 514 | return; // Only refund payments once |
515 | 515 | } |
516 | 516 | |
517 | - $payment_amount = give_get_payment_amount( $payment_id ); |
|
517 | + $payment_amount = give_get_payment_amount($payment_id); |
|
518 | 518 | $refund_amount = $data['payment_gross'] * - 1; |
519 | 519 | |
520 | - if ( number_format( (float) $refund_amount, 2 ) < number_format( (float) $payment_amount, 2 ) ) { |
|
520 | + if (number_format((float) $refund_amount, 2) < number_format((float) $payment_amount, 2)) { |
|
521 | 521 | |
522 | - give_insert_payment_note( $payment_id, sprintf( __( 'Partial PayPal refund processed: %s', 'give' ), $data['parent_txn_id'] ) ); |
|
522 | + give_insert_payment_note($payment_id, sprintf(__('Partial PayPal refund processed: %s', 'give'), $data['parent_txn_id'])); |
|
523 | 523 | |
524 | 524 | return; // This is a partial refund |
525 | 525 | |
526 | 526 | } |
527 | 527 | |
528 | - give_insert_payment_note( $payment_id, sprintf( __( 'PayPal Payment #%s Refunded for reason: %s', 'give' ), $data['parent_txn_id'], $data['reason_code'] ) ); |
|
529 | - give_insert_payment_note( $payment_id, sprintf( __( 'PayPal Refund Transaction ID: %s', 'give' ), $data['txn_id'] ) ); |
|
530 | - give_update_payment_status( $payment_id, 'refunded' ); |
|
528 | + give_insert_payment_note($payment_id, sprintf(__('PayPal Payment #%s Refunded for reason: %s', 'give'), $data['parent_txn_id'], $data['reason_code'])); |
|
529 | + give_insert_payment_note($payment_id, sprintf(__('PayPal Refund Transaction ID: %s', 'give'), $data['txn_id'])); |
|
530 | + give_update_payment_status($payment_id, 'refunded'); |
|
531 | 531 | } |
532 | 532 | |
533 | 533 | /** |
@@ -539,24 +539,24 @@ discard block |
||
539 | 539 | * |
540 | 540 | * @return string |
541 | 541 | */ |
542 | -function give_get_paypal_redirect( $ssl_check = false ) { |
|
542 | +function give_get_paypal_redirect($ssl_check = false) { |
|
543 | 543 | |
544 | - if ( is_ssl() || ! $ssl_check ) { |
|
544 | + if (is_ssl() || ! $ssl_check) { |
|
545 | 545 | $protocal = 'https://'; |
546 | 546 | } else { |
547 | 547 | $protocal = 'http://'; |
548 | 548 | } |
549 | 549 | |
550 | 550 | // Check the current payment mode |
551 | - if ( give_is_test_mode() ) { |
|
551 | + if (give_is_test_mode()) { |
|
552 | 552 | // Test mode |
553 | - $paypal_uri = $protocal . 'www.sandbox.paypal.com/cgi-bin/webscr'; |
|
553 | + $paypal_uri = $protocal.'www.sandbox.paypal.com/cgi-bin/webscr'; |
|
554 | 554 | } else { |
555 | 555 | // Live mode |
556 | - $paypal_uri = $protocal . 'www.paypal.com/cgi-bin/webscr'; |
|
556 | + $paypal_uri = $protocal.'www.paypal.com/cgi-bin/webscr'; |
|
557 | 557 | } |
558 | 558 | |
559 | - return apply_filters( 'give_paypal_uri', $paypal_uri ); |
|
559 | + return apply_filters('give_paypal_uri', $paypal_uri); |
|
560 | 560 | } |
561 | 561 | |
562 | 562 | /** |
@@ -566,8 +566,8 @@ discard block |
||
566 | 566 | * @return string |
567 | 567 | */ |
568 | 568 | function give_get_paypal_page_style() { |
569 | - $page_style = trim( give_get_option( 'paypal_page_style', 'PayPal' ) ); |
|
570 | - return apply_filters( 'give_paypal_page_style', $page_style ); |
|
569 | + $page_style = trim(give_get_option('paypal_page_style', 'PayPal')); |
|
570 | + return apply_filters('give_paypal_page_style', $page_style); |
|
571 | 571 | } |
572 | 572 | |
573 | 573 | /** |
@@ -582,27 +582,27 @@ discard block |
||
582 | 582 | * @return string |
583 | 583 | * |
584 | 584 | */ |
585 | -function give_paypal_success_page_content( $content ) { |
|
585 | +function give_paypal_success_page_content($content) { |
|
586 | 586 | |
587 | - if ( ! isset( $_GET['payment-id'] ) && ! give_get_purchase_session() ) { |
|
587 | + if ( ! isset($_GET['payment-id']) && ! give_get_purchase_session()) { |
|
588 | 588 | return $content; |
589 | 589 | } |
590 | 590 | |
591 | - $payment_id = isset( $_GET['payment-id'] ) ? absint( $_GET['payment-id'] ) : false; |
|
591 | + $payment_id = isset($_GET['payment-id']) ? absint($_GET['payment-id']) : false; |
|
592 | 592 | |
593 | - if ( ! $payment_id ) { |
|
593 | + if ( ! $payment_id) { |
|
594 | 594 | $session = give_get_purchase_session(); |
595 | - $payment_id = give_get_purchase_id_by_key( $session['purchase_key'] ); |
|
595 | + $payment_id = give_get_purchase_id_by_key($session['purchase_key']); |
|
596 | 596 | } |
597 | 597 | |
598 | - $payment = get_post( $payment_id ); |
|
598 | + $payment = get_post($payment_id); |
|
599 | 599 | |
600 | - if ( $payment && 'pending' == $payment->post_status ) { |
|
600 | + if ($payment && 'pending' == $payment->post_status) { |
|
601 | 601 | |
602 | 602 | // Payment is still pending so show processing indicator to fix the Race Condition |
603 | 603 | ob_start(); |
604 | 604 | |
605 | - give_get_template_part( 'payment', 'processing' ); |
|
605 | + give_get_template_part('payment', 'processing'); |
|
606 | 606 | |
607 | 607 | $content = ob_get_clean(); |
608 | 608 | |
@@ -612,7 +612,7 @@ discard block |
||
612 | 612 | |
613 | 613 | } |
614 | 614 | |
615 | -add_filter( 'give_payment_confirm_paypal', 'give_paypal_success_page_content' ); |
|
615 | +add_filter('give_payment_confirm_paypal', 'give_paypal_success_page_content'); |
|
616 | 616 | |
617 | 617 | /** |
618 | 618 | * Given a Payment ID, extract the transaction ID |
@@ -623,22 +623,22 @@ discard block |
||
623 | 623 | * |
624 | 624 | * @return string Transaction ID |
625 | 625 | */ |
626 | -function give_paypal_get_payment_transaction_id( $payment_id ) { |
|
626 | +function give_paypal_get_payment_transaction_id($payment_id) { |
|
627 | 627 | |
628 | 628 | $transaction_id = ''; |
629 | - $notes = give_get_payment_notes( $payment_id ); |
|
629 | + $notes = give_get_payment_notes($payment_id); |
|
630 | 630 | |
631 | - foreach ( $notes as $note ) { |
|
632 | - if ( preg_match( '/^PayPal Transaction ID: ([^\s]+)/', $note->comment_content, $match ) ) { |
|
631 | + foreach ($notes as $note) { |
|
632 | + if (preg_match('/^PayPal Transaction ID: ([^\s]+)/', $note->comment_content, $match)) { |
|
633 | 633 | $transaction_id = $match[1]; |
634 | 634 | continue; |
635 | 635 | } |
636 | 636 | } |
637 | 637 | |
638 | - return apply_filters( 'give_paypal_set_payment_transaction_id', $transaction_id, $payment_id ); |
|
638 | + return apply_filters('give_paypal_set_payment_transaction_id', $transaction_id, $payment_id); |
|
639 | 639 | } |
640 | 640 | |
641 | -add_filter( 'give_get_payment_transaction_id-paypal', 'give_paypal_get_payment_transaction_id', 10, 1 ); |
|
641 | +add_filter('give_get_payment_transaction_id-paypal', 'give_paypal_get_payment_transaction_id', 10, 1); |
|
642 | 642 | |
643 | 643 | /** |
644 | 644 | * Given a transaction ID, generate a link to the PayPal transaction ID details |
@@ -650,13 +650,13 @@ discard block |
||
650 | 650 | * |
651 | 651 | * @return string A link to the PayPal transaction details |
652 | 652 | */ |
653 | -function give_paypal_link_transaction_id( $transaction_id, $payment_id ) { |
|
653 | +function give_paypal_link_transaction_id($transaction_id, $payment_id) { |
|
654 | 654 | |
655 | 655 | $paypal_base_url = 'https://history.paypal.com/cgi-bin/webscr?cmd=_history-details-from-hub&id='; |
656 | - $transaction_url = '<a href="' . esc_url( $paypal_base_url . $transaction_id ) . '" target="_blank">' . $transaction_id . '</a>'; |
|
656 | + $transaction_url = '<a href="'.esc_url($paypal_base_url.$transaction_id).'" target="_blank">'.$transaction_id.'</a>'; |
|
657 | 657 | |
658 | - return apply_filters( 'give_paypal_link_payment_details_transaction_id', $transaction_url ); |
|
658 | + return apply_filters('give_paypal_link_payment_details_transaction_id', $transaction_url); |
|
659 | 659 | |
660 | 660 | } |
661 | 661 | |
662 | -add_filter( 'give_payment_details_transaction_id-paypal', 'give_paypal_link_transaction_id', 10, 2 ); |
|
662 | +add_filter('give_payment_details_transaction_id-paypal', 'give_paypal_link_transaction_id', 10, 2); |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | */ |
13 | 13 | |
14 | 14 | // Exit if accessed directly |
15 | -if ( ! defined( 'ABSPATH' ) ) { |
|
15 | +if ( ! defined('ABSPATH')) { |
|
16 | 16 | exit; |
17 | 17 | } |
18 | 18 | |
@@ -28,13 +28,13 @@ discard block |
||
28 | 28 | * |
29 | 29 | * @return bool $ret True if guest checkout is enabled, false otherwise |
30 | 30 | */ |
31 | -function give_no_guest_checkout( $form_id ) { |
|
31 | +function give_no_guest_checkout($form_id) { |
|
32 | 32 | |
33 | 33 | $backtrace = debug_backtrace(); |
34 | 34 | |
35 | - _give_deprecated_function( __FUNCTION__, '1.4.1', null, $backtrace ); |
|
35 | + _give_deprecated_function(__FUNCTION__, '1.4.1', null, $backtrace); |
|
36 | 36 | |
37 | - $ret = get_post_meta( $form_id, '_give_logged_in_only', true ); |
|
37 | + $ret = get_post_meta($form_id, '_give_logged_in_only', true); |
|
38 | 38 | |
39 | - return (bool) apply_filters( 'give_no_guest_checkout', $ret ); |
|
39 | + return (bool) apply_filters('give_no_guest_checkout', $ret); |
|
40 | 40 | } |
41 | 41 | \ No newline at end of file |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | * @since 1.4 |
11 | 11 | */ |
12 | 12 | |
13 | -defined( 'ABSPATH' ) or exit; |
|
13 | +defined('ABSPATH') or exit; |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * Class Give_Email_Access |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | function __construct() { |
31 | 31 | |
32 | 32 | // get it started |
33 | - add_action( 'init', array( $this, 'init' ) ); |
|
33 | + add_action('init', array($this, 'init')); |
|
34 | 34 | } |
35 | 35 | |
36 | 36 | |
@@ -39,30 +39,30 @@ discard block |
||
39 | 39 | */ |
40 | 40 | function init() { |
41 | 41 | |
42 | - $is_enabled = give_get_option( 'email_access' ); |
|
42 | + $is_enabled = give_get_option('email_access'); |
|
43 | 43 | |
44 | 44 | //Non-logged in users only |
45 | - if ( is_user_logged_in() || $is_enabled !== 'on' || is_admin() ) { |
|
45 | + if (is_user_logged_in() || $is_enabled !== 'on' || is_admin()) { |
|
46 | 46 | return; |
47 | 47 | } |
48 | 48 | |
49 | 49 | //Are db columns setup? |
50 | - $is_setup = give_get_option( 'email_access_installed' ); |
|
51 | - if ( empty( $is_setup ) ) { |
|
50 | + $is_setup = give_get_option('email_access_installed'); |
|
51 | + if (empty($is_setup)) { |
|
52 | 52 | $this->create_columns(); |
53 | 53 | } |
54 | 54 | |
55 | 55 | // Timeouts |
56 | - $this->verify_throttle = apply_filters( 'give_nl_verify_throttle', 300 ); |
|
57 | - $this->token_expiration = apply_filters( 'give_nl_token_expiration', 7200 ); |
|
56 | + $this->verify_throttle = apply_filters('give_nl_verify_throttle', 300); |
|
57 | + $this->token_expiration = apply_filters('give_nl_token_expiration', 7200); |
|
58 | 58 | |
59 | 59 | // Setup login |
60 | 60 | $this->check_for_token(); |
61 | 61 | |
62 | - if ( $this->token_exists ) { |
|
63 | - add_filter( 'give_can_view_receipt', '__return_true' ); |
|
64 | - add_filter( 'give_user_pending_verification', '__return_false' ); |
|
65 | - add_filter( 'give_get_users_purchases_args', array( $this, 'users_purchases_args' ) ); |
|
62 | + if ($this->token_exists) { |
|
63 | + add_filter('give_can_view_receipt', '__return_true'); |
|
64 | + add_filter('give_user_pending_verification', '__return_false'); |
|
65 | + add_filter('give_get_users_purchases_args', array($this, 'users_purchases_args')); |
|
66 | 66 | } |
67 | 67 | } |
68 | 68 | |
@@ -73,24 +73,24 @@ discard block |
||
73 | 73 | * |
74 | 74 | * @return bool |
75 | 75 | */ |
76 | - function can_send_email( $customer_id ) { |
|
76 | + function can_send_email($customer_id) { |
|
77 | 77 | global $wpdb; |
78 | 78 | |
79 | 79 | // Prevent multiple emails within X minutes |
80 | - $throttle = date( 'Y-m-d H:i:s', time() - $this->verify_throttle ); |
|
80 | + $throttle = date('Y-m-d H:i:s', time() - $this->verify_throttle); |
|
81 | 81 | |
82 | 82 | // Does a user row exist? |
83 | 83 | $exists = (int) $wpdb->get_var( |
84 | - $wpdb->prepare( "SELECT COUNT(*) FROM {$wpdb->prefix}give_customers WHERE id = %d", $customer_id ) |
|
84 | + $wpdb->prepare("SELECT COUNT(*) FROM {$wpdb->prefix}give_customers WHERE id = %d", $customer_id) |
|
85 | 85 | ); |
86 | 86 | |
87 | - if ( 0 < $exists ) { |
|
87 | + if (0 < $exists) { |
|
88 | 88 | $row_id = (int) $wpdb->get_var( |
89 | - $wpdb->prepare( "SELECT id FROM {$wpdb->prefix}give_customers WHERE id = %d AND (verify_throttle < %s OR verify_key = '') LIMIT 1", $customer_id, $throttle ) |
|
89 | + $wpdb->prepare("SELECT id FROM {$wpdb->prefix}give_customers WHERE id = %d AND (verify_throttle < %s OR verify_key = '') LIMIT 1", $customer_id, $throttle) |
|
90 | 90 | ); |
91 | 91 | |
92 | - if ( $row_id < 1 ) { |
|
93 | - give_set_error( 'give_email_access_attempts_exhausted', __( 'Please wait a few minutes before requesting a new email access link.', 'give' ) ); |
|
92 | + if ($row_id < 1) { |
|
93 | + give_set_error('give_email_access_attempts_exhausted', __('Please wait a few minutes before requesting a new email access link.', 'give')); |
|
94 | 94 | |
95 | 95 | return false; |
96 | 96 | } |
@@ -106,38 +106,38 @@ discard block |
||
106 | 106 | * @param $customer_id |
107 | 107 | * @param $email |
108 | 108 | */ |
109 | - function send_email( $customer_id, $email ) { |
|
109 | + function send_email($customer_id, $email) { |
|
110 | 110 | |
111 | - $verify_key = wp_generate_password( 20, false ); |
|
111 | + $verify_key = wp_generate_password(20, false); |
|
112 | 112 | |
113 | 113 | // Generate a new verify key |
114 | - $this->set_verify_key( $customer_id, $email, $verify_key ); |
|
114 | + $this->set_verify_key($customer_id, $email, $verify_key); |
|
115 | 115 | |
116 | 116 | // Get the purchase history URL |
117 | - $page_id = give_get_option( 'history_page' ); |
|
117 | + $page_id = give_get_option('history_page'); |
|
118 | 118 | |
119 | - $access_url = add_query_arg( array( |
|
119 | + $access_url = add_query_arg(array( |
|
120 | 120 | 'give_nl' => $verify_key, |
121 | - ), get_permalink( $page_id ) ); |
|
121 | + ), get_permalink($page_id)); |
|
122 | 122 | |
123 | 123 | //Nice subject and message |
124 | - $subject = apply_filters( 'give_email_access_token_subject', sprintf( __( 'Your Access Link to %1$s', 'give' ), get_bloginfo( 'name' ) ) ); |
|
124 | + $subject = apply_filters('give_email_access_token_subject', sprintf(__('Your Access Link to %1$s', 'give'), get_bloginfo('name'))); |
|
125 | 125 | |
126 | - $message = __( 'You or someone in your organization requested an access link be sent to this email address. This is a temporary access link for you to view your donation information. Click on the link below to view:', 'give' ) . "\n\n"; |
|
126 | + $message = __('You or someone in your organization requested an access link be sent to this email address. This is a temporary access link for you to view your donation information. Click on the link below to view:', 'give')."\n\n"; |
|
127 | 127 | |
128 | - $message .= '<a href="' . esc_url( $access_url ) . '" target="_blank">' . __( 'Access My Donation Details', 'give' ) . ' »</a>'; |
|
128 | + $message .= '<a href="'.esc_url($access_url).'" target="_blank">'.__('Access My Donation Details', 'give').' »</a>'; |
|
129 | 129 | |
130 | 130 | $message .= "\n\n"; |
131 | 131 | $message .= "\n\n"; |
132 | - $message .= __( 'Sincerely,', 'give' ); |
|
133 | - $message .= "\n" . get_bloginfo( 'name' ) . "\n"; |
|
132 | + $message .= __('Sincerely,', 'give'); |
|
133 | + $message .= "\n".get_bloginfo('name')."\n"; |
|
134 | 134 | |
135 | - $message = apply_filters( 'give_email_access_token_message', $message ); |
|
135 | + $message = apply_filters('give_email_access_token_message', $message); |
|
136 | 136 | |
137 | 137 | |
138 | 138 | // Send the email |
139 | - Give()->emails->__set( 'heading', apply_filters( 'give_email_access_token_heading', __( 'Your Access Link', 'give' ) ) ); |
|
140 | - Give()->emails->send( $email, $subject, $message ); |
|
139 | + Give()->emails->__set('heading', apply_filters('give_email_access_token_heading', __('Your Access Link', 'give'))); |
|
140 | + Give()->emails->send($email, $subject, $message); |
|
141 | 141 | |
142 | 142 | } |
143 | 143 | |
@@ -147,24 +147,24 @@ discard block |
||
147 | 147 | */ |
148 | 148 | function check_for_token() { |
149 | 149 | |
150 | - $token = isset( $_GET['give_nl'] ) ? $_GET['give_nl'] : ''; |
|
150 | + $token = isset($_GET['give_nl']) ? $_GET['give_nl'] : ''; |
|
151 | 151 | |
152 | 152 | // Check for cookie |
153 | - if ( empty( $token ) ) { |
|
154 | - $token = isset( $_COOKIE['give_nl'] ) ? $_COOKIE['give_nl'] : ''; |
|
153 | + if (empty($token)) { |
|
154 | + $token = isset($_COOKIE['give_nl']) ? $_COOKIE['give_nl'] : ''; |
|
155 | 155 | } |
156 | 156 | |
157 | - if ( ! empty( $token ) ) { |
|
158 | - if ( ! $this->is_valid_token( $token ) ) { |
|
159 | - if ( ! $this->is_valid_verify_key( $token ) ) { |
|
157 | + if ( ! empty($token)) { |
|
158 | + if ( ! $this->is_valid_token($token)) { |
|
159 | + if ( ! $this->is_valid_verify_key($token)) { |
|
160 | 160 | return; |
161 | 161 | } |
162 | 162 | } |
163 | 163 | |
164 | 164 | $this->token_exists = true; |
165 | 165 | // Set cookie |
166 | - $lifetime = current_time( 'timestamp' ) + Give()->session->set_expiration_time(); |
|
167 | - @setcookie( 'give_nl', $token, $lifetime, COOKIEPATH, COOKIE_DOMAIN, false ); |
|
166 | + $lifetime = current_time('timestamp') + Give()->session->set_expiration_time(); |
|
167 | + @setcookie('give_nl', $token, $lifetime, COOKIEPATH, COOKIE_DOMAIN, false); |
|
168 | 168 | } |
169 | 169 | } |
170 | 170 | |
@@ -175,18 +175,18 @@ discard block |
||
175 | 175 | * |
176 | 176 | * @return bool |
177 | 177 | */ |
178 | - function is_valid_token( $token ) { |
|
178 | + function is_valid_token($token) { |
|
179 | 179 | |
180 | 180 | global $wpdb; |
181 | 181 | |
182 | 182 | // Make sure token isn't expired |
183 | - $expires = date( 'Y-m-d H:i:s', time() - $this->token_expiration ); |
|
183 | + $expires = date('Y-m-d H:i:s', time() - $this->token_expiration); |
|
184 | 184 | |
185 | 185 | $email = $wpdb->get_var( |
186 | - $wpdb->prepare( "SELECT email FROM {$wpdb->prefix}give_customers WHERE token = %s AND verify_throttle >= %s LIMIT 1", $token, $expires ) |
|
186 | + $wpdb->prepare("SELECT email FROM {$wpdb->prefix}give_customers WHERE token = %s AND verify_throttle >= %s LIMIT 1", $token, $expires) |
|
187 | 187 | ); |
188 | 188 | |
189 | - if ( ! empty( $email ) ) { |
|
189 | + if ( ! empty($email)) { |
|
190 | 190 | $this->token_email = $email; |
191 | 191 | $this->token = $token; |
192 | 192 | |
@@ -194,8 +194,8 @@ discard block |
||
194 | 194 | } |
195 | 195 | |
196 | 196 | //Set error only if email access form isn't being submitted |
197 | - if ( ! isset( $_POST['give_email'] ) && ! isset( $_POST['_wpnonce'] ) ) { |
|
198 | - give_set_error( 'give_email_token_expired', apply_filters( 'give_email_token_expired_message', 'Sorry, your access token has expired. Please request a new one below:', 'give' ) ); |
|
197 | + if ( ! isset($_POST['give_email']) && ! isset($_POST['_wpnonce'])) { |
|
198 | + give_set_error('give_email_token_expired', apply_filters('give_email_token_expired_message', 'Sorry, your access token has expired. Please request a new one below:', 'give')); |
|
199 | 199 | } |
200 | 200 | |
201 | 201 | |
@@ -210,25 +210,25 @@ discard block |
||
210 | 210 | * @param $email |
211 | 211 | * @param $verify_key |
212 | 212 | */ |
213 | - function set_verify_key( $customer_id, $email, $verify_key ) { |
|
213 | + function set_verify_key($customer_id, $email, $verify_key) { |
|
214 | 214 | global $wpdb; |
215 | 215 | |
216 | - $now = date( 'Y-m-d H:i:s' ); |
|
216 | + $now = date('Y-m-d H:i:s'); |
|
217 | 217 | |
218 | 218 | // Insert or update? |
219 | 219 | $row_id = (int) $wpdb->get_var( |
220 | - $wpdb->prepare( "SELECT id FROM {$wpdb->prefix}give_customers WHERE id = %d LIMIT 1", $customer_id ) |
|
220 | + $wpdb->prepare("SELECT id FROM {$wpdb->prefix}give_customers WHERE id = %d LIMIT 1", $customer_id) |
|
221 | 221 | ); |
222 | 222 | |
223 | 223 | // Update |
224 | - if ( ! empty( $row_id ) ) { |
|
224 | + if ( ! empty($row_id)) { |
|
225 | 225 | $wpdb->query( |
226 | - $wpdb->prepare( "UPDATE {$wpdb->prefix}give_customers SET verify_key = %s, verify_throttle = %s WHERE id = %d LIMIT 1", $verify_key, $now, $row_id ) |
|
226 | + $wpdb->prepare("UPDATE {$wpdb->prefix}give_customers SET verify_key = %s, verify_throttle = %s WHERE id = %d LIMIT 1", $verify_key, $now, $row_id) |
|
227 | 227 | ); |
228 | 228 | } // Insert |
229 | 229 | else { |
230 | 230 | $wpdb->query( |
231 | - $wpdb->prepare( "INSERT INTO {$wpdb->prefix}give_customers ( verify_key, verify_throttle) VALUES (%s, %s)", $verify_key, $now ) |
|
231 | + $wpdb->prepare("INSERT INTO {$wpdb->prefix}give_customers ( verify_key, verify_throttle) VALUES (%s, %s)", $verify_key, $now) |
|
232 | 232 | ); |
233 | 233 | } |
234 | 234 | } |
@@ -240,20 +240,20 @@ discard block |
||
240 | 240 | * |
241 | 241 | * @return bool |
242 | 242 | */ |
243 | - function is_valid_verify_key( $token ) { |
|
243 | + function is_valid_verify_key($token) { |
|
244 | 244 | global $wpdb; |
245 | 245 | |
246 | 246 | // See if the verify_key exists |
247 | 247 | $row = $wpdb->get_row( |
248 | - $wpdb->prepare( "SELECT id, email FROM {$wpdb->prefix}give_customers WHERE verify_key = %s LIMIT 1", $token ) |
|
248 | + $wpdb->prepare("SELECT id, email FROM {$wpdb->prefix}give_customers WHERE verify_key = %s LIMIT 1", $token) |
|
249 | 249 | ); |
250 | 250 | |
251 | - $now = date( 'Y-m-d H:i:s' ); |
|
251 | + $now = date('Y-m-d H:i:s'); |
|
252 | 252 | |
253 | 253 | // Set token |
254 | - if ( ! empty( $row ) ) { |
|
254 | + if ( ! empty($row)) { |
|
255 | 255 | $wpdb->query( |
256 | - $wpdb->prepare( "UPDATE {$wpdb->prefix}give_customers SET verify_key = '', token = %s, verify_throttle = %s WHERE id = %d LIMIT 1", $token, $now, $row->id ) |
|
256 | + $wpdb->prepare("UPDATE {$wpdb->prefix}give_customers SET verify_key = '', token = %s, verify_throttle = %s WHERE id = %d LIMIT 1", $token, $now, $row->id) |
|
257 | 257 | ); |
258 | 258 | |
259 | 259 | $this->token_email = $row->email; |
@@ -272,7 +272,7 @@ discard block |
||
272 | 272 | * |
273 | 273 | * @return mixed |
274 | 274 | */ |
275 | - function users_purchases_args( $args ) { |
|
275 | + function users_purchases_args($args) { |
|
276 | 276 | $args['user'] = $this->token_email; |
277 | 277 | |
278 | 278 | return $args; |
@@ -289,11 +289,11 @@ discard block |
||
289 | 289 | global $wpdb; |
290 | 290 | |
291 | 291 | //Create columns in customers table |
292 | - $query = $wpdb->query( "ALTER TABLE {$wpdb->prefix}give_customers ADD `token` VARCHAR(255) CHARACTER SET utf8 NOT NULL, ADD `verify_key` VARCHAR(255) CHARACTER SET utf8 NOT NULL AFTER `token`, ADD `verify_throttle` DATETIME NOT NULL AFTER `verify_key`" ); |
|
292 | + $query = $wpdb->query("ALTER TABLE {$wpdb->prefix}give_customers ADD `token` VARCHAR(255) CHARACTER SET utf8 NOT NULL, ADD `verify_key` VARCHAR(255) CHARACTER SET utf8 NOT NULL AFTER `token`, ADD `verify_throttle` DATETIME NOT NULL AFTER `verify_key`"); |
|
293 | 293 | |
294 | 294 | //Columns added properly |
295 | - if ( $query ) { |
|
296 | - give_update_option( 'email_access_installed', 1 ); |
|
295 | + if ($query) { |
|
296 | + give_update_option('email_access_installed', 1); |
|
297 | 297 | } |
298 | 298 | |
299 | 299 | } |
@@ -9,13 +9,13 @@ discard block |
||
9 | 9 | */ |
10 | 10 | |
11 | 11 | // Exit if accessed directly |
12 | -if ( ! defined( 'ABSPATH' ) ) { |
|
12 | +if ( ! defined('ABSPATH')) { |
|
13 | 13 | exit; |
14 | 14 | } |
15 | 15 | |
16 | 16 | // Load WP_List_Table if not loaded |
17 | -if ( ! class_exists( 'WP_List_Table' ) ) { |
|
18 | - require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
|
17 | +if ( ! class_exists('WP_List_Table')) { |
|
18 | + require_once ABSPATH.'wp-admin/includes/class-wp-list-table.php'; |
|
19 | 19 | } |
20 | 20 | |
21 | 21 | /** |
@@ -45,11 +45,11 @@ discard block |
||
45 | 45 | global $status, $page; |
46 | 46 | |
47 | 47 | // Set parent defaults |
48 | - parent::__construct( array( |
|
49 | - 'singular' => give_get_forms_label_singular(), // Singular name of the listed records |
|
50 | - 'plural' => give_get_forms_label_plural(), // Plural name of the listed records |
|
48 | + parent::__construct(array( |
|
49 | + 'singular' => give_get_forms_label_singular(), // Singular name of the listed records |
|
50 | + 'plural' => give_get_forms_label_plural(), // Plural name of the listed records |
|
51 | 51 | 'ajax' => false // Does this table support ajax? |
52 | - ) ); |
|
52 | + )); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | /** |
@@ -63,14 +63,14 @@ discard block |
||
63 | 63 | * |
64 | 64 | * @return string Column Name |
65 | 65 | */ |
66 | - public function column_default( $item, $column_name ) { |
|
67 | - switch ( $column_name ) { |
|
66 | + public function column_default($item, $column_name) { |
|
67 | + switch ($column_name) { |
|
68 | 68 | case 'ID' : |
69 | 69 | return $item['ID_label']; |
70 | 70 | case 'error' : |
71 | - return get_the_title( $item['ID'] ) ? get_the_title( $item['ID'] ) : __( 'Payment Error', 'give' ); |
|
71 | + return get_the_title($item['ID']) ? get_the_title($item['ID']) : __('Payment Error', 'give'); |
|
72 | 72 | default: |
73 | - return $item[ $column_name ]; |
|
73 | + return $item[$column_name]; |
|
74 | 74 | } |
75 | 75 | } |
76 | 76 | |
@@ -84,29 +84,29 @@ discard block |
||
84 | 84 | * |
85 | 85 | * @return void |
86 | 86 | */ |
87 | - public function column_message( $item ) { |
|
87 | + public function column_message($item) { |
|
88 | 88 | |
89 | 89 | ?> |
90 | - <a href="#TB_inline?width=640&inlineId=log-message-<?php echo $item['ID']; ?>" class="thickbox" title="<?php _e( 'View Log Message', 'give' ); ?> "><?php _e( 'View Log Message', 'give' ); ?></a> |
|
90 | + <a href="#TB_inline?width=640&inlineId=log-message-<?php echo $item['ID']; ?>" class="thickbox" title="<?php _e('View Log Message', 'give'); ?> "><?php _e('View Log Message', 'give'); ?></a> |
|
91 | 91 | <div id="log-message-<?php echo $item['ID']; ?>" style="display:none;"> |
92 | 92 | <?php |
93 | 93 | |
94 | - $log_message = get_post_field( 'post_content', $item['ID'] ); |
|
94 | + $log_message = get_post_field('post_content', $item['ID']); |
|
95 | 95 | |
96 | - $serialized = strpos( $log_message, '{"' ); |
|
96 | + $serialized = strpos($log_message, '{"'); |
|
97 | 97 | |
98 | 98 | // Check to see if the log message contains serialized information |
99 | - if ( $serialized !== false ) { |
|
100 | - $length = strlen( $log_message ) - $serialized; |
|
101 | - $intro = substr( $log_message, 0, - $length ); |
|
102 | - $data = substr( $log_message, $serialized, strlen( $log_message ) - 1 ); |
|
99 | + if ($serialized !== false) { |
|
100 | + $length = strlen($log_message) - $serialized; |
|
101 | + $intro = substr($log_message, 0, - $length); |
|
102 | + $data = substr($log_message, $serialized, strlen($log_message) - 1); |
|
103 | 103 | |
104 | - echo wpautop( $intro ); |
|
105 | - echo wpautop( __( '<strong>Log data:</strong>', 'give' ) ); |
|
106 | - echo '<div style="word-wrap: break-word;">' . wpautop( $data ) . '</div>'; |
|
104 | + echo wpautop($intro); |
|
105 | + echo wpautop(__('<strong>Log data:</strong>', 'give')); |
|
106 | + echo '<div style="word-wrap: break-word;">'.wpautop($data).'</div>'; |
|
107 | 107 | } else { |
108 | 108 | // No serialized data found |
109 | - echo wpautop( $log_message ); |
|
109 | + echo wpautop($log_message); |
|
110 | 110 | } |
111 | 111 | ?> |
112 | 112 | </div> |
@@ -122,12 +122,12 @@ discard block |
||
122 | 122 | */ |
123 | 123 | public function get_columns() { |
124 | 124 | $columns = array( |
125 | - 'ID' => __( 'Log ID', 'give' ), |
|
126 | - 'payment_id' => __( 'Payment ID', 'give' ), |
|
127 | - 'error' => __( 'Error', 'give' ), |
|
128 | - 'message' => __( 'Error Message', 'give' ), |
|
129 | - 'gateway' => __( 'Gateway', 'give' ), |
|
130 | - 'date' => __( 'Date', 'give' ) |
|
125 | + 'ID' => __('Log ID', 'give'), |
|
126 | + 'payment_id' => __('Payment ID', 'give'), |
|
127 | + 'error' => __('Error', 'give'), |
|
128 | + 'message' => __('Error Message', 'give'), |
|
129 | + 'gateway' => __('Gateway', 'give'), |
|
130 | + 'date' => __('Date', 'give') |
|
131 | 131 | ); |
132 | 132 | |
133 | 133 | return $columns; |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | * @return int Current page number |
142 | 142 | */ |
143 | 143 | public function get_paged() { |
144 | - return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1; |
|
144 | + return isset($_GET['paged']) ? absint($_GET['paged']) : 1; |
|
145 | 145 | } |
146 | 146 | |
147 | 147 | /** |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | * @since 1.0 |
152 | 152 | * @return void |
153 | 153 | */ |
154 | - public function bulk_actions( $which = '' ) { |
|
154 | + public function bulk_actions($which = '') { |
|
155 | 155 | give_log_views(); |
156 | 156 | } |
157 | 157 | |
@@ -167,7 +167,7 @@ discard block |
||
167 | 167 | global $give_logs; |
168 | 168 | |
169 | 169 | // Prevent the queries from getting cached. Without this there are occasional memory issues for some installs |
170 | - wp_suspend_cache_addition( true ); |
|
170 | + wp_suspend_cache_addition(true); |
|
171 | 171 | |
172 | 172 | $logs_data = array(); |
173 | 173 | $paged = $this->get_paged(); |
@@ -176,17 +176,17 @@ discard block |
||
176 | 176 | 'paged' => $paged |
177 | 177 | ); |
178 | 178 | |
179 | - $logs = $give_logs->get_connected_logs( $log_query ); |
|
179 | + $logs = $give_logs->get_connected_logs($log_query); |
|
180 | 180 | |
181 | - if ( $logs ) { |
|
182 | - foreach ( $logs as $log ) { |
|
181 | + if ($logs) { |
|
182 | + foreach ($logs as $log) { |
|
183 | 183 | |
184 | 184 | $logs_data[] = array( |
185 | 185 | 'ID' => $log->ID, |
186 | - 'ID_label' => '<span class=\'give-item-label give-item-label-gray\'>' . $log->ID . '</span>', |
|
186 | + 'ID_label' => '<span class=\'give-item-label give-item-label-gray\'>'.$log->ID.'</span>', |
|
187 | 187 | 'payment_id' => $log->post_parent, |
188 | 188 | 'error' => 'error', |
189 | - 'gateway' => give_get_payment_gateway( $log->post_parent ), |
|
189 | + 'gateway' => give_get_payment_gateway($log->post_parent), |
|
190 | 190 | 'date' => $log->post_date |
191 | 191 | ); |
192 | 192 | } |
@@ -207,19 +207,19 @@ discard block |
||
207 | 207 | * |
208 | 208 | * @param string $which |
209 | 209 | */ |
210 | - protected function display_tablenav( $which ) { |
|
211 | - if ( 'top' === $which ) { |
|
212 | - wp_nonce_field( 'bulk-' . $this->_args['plural'] ); |
|
210 | + protected function display_tablenav($which) { |
|
211 | + if ('top' === $which) { |
|
212 | + wp_nonce_field('bulk-'.$this->_args['plural']); |
|
213 | 213 | } |
214 | 214 | ?> |
215 | - <div class="tablenav <?php echo esc_attr( $which ); ?>"> |
|
215 | + <div class="tablenav <?php echo esc_attr($which); ?>"> |
|
216 | 216 | |
217 | 217 | <div class="alignleft actions bulkactions"> |
218 | - <?php $this->bulk_actions( $which ); ?> |
|
218 | + <?php $this->bulk_actions($which); ?> |
|
219 | 219 | </div> |
220 | 220 | <?php |
221 | - $this->extra_tablenav( $which ); |
|
222 | - $this->pagination( $which ); |
|
221 | + $this->extra_tablenav($which); |
|
222 | + $this->pagination($which); |
|
223 | 223 | ?> |
224 | 224 | |
225 | 225 | <br class="clear"/> |
@@ -246,15 +246,15 @@ discard block |
||
246 | 246 | $columns = $this->get_columns(); |
247 | 247 | $hidden = array(); // No hidden columns |
248 | 248 | $sortable = $this->get_sortable_columns(); |
249 | - $this->_column_headers = array( $columns, $hidden, $sortable ); |
|
249 | + $this->_column_headers = array($columns, $hidden, $sortable); |
|
250 | 250 | $current_page = $this->get_pagenum(); |
251 | 251 | $this->items = $this->get_logs(); |
252 | - $total_items = $give_logs->get_log_count( 0, 'gateway_error' ); |
|
252 | + $total_items = $give_logs->get_log_count(0, 'gateway_error'); |
|
253 | 253 | |
254 | - $this->set_pagination_args( array( |
|
254 | + $this->set_pagination_args(array( |
|
255 | 255 | 'total_items' => $total_items, |
256 | 256 | 'per_page' => $this->per_page, |
257 | - 'total_pages' => ceil( $total_items / $this->per_page ) |
|
257 | + 'total_pages' => ceil($total_items / $this->per_page) |
|
258 | 258 | ) |
259 | 259 | ); |
260 | 260 | } |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | */ |
11 | 11 | |
12 | 12 | // Exit if accessed directly |
13 | -if ( ! defined( 'ABSPATH' ) ) { |
|
13 | +if ( ! defined('ABSPATH')) { |
|
14 | 14 | exit; |
15 | 15 | } |
16 | 16 | |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | * @return void |
24 | 24 | */ |
25 | 25 | function give_logs_view_sales() { |
26 | - include( dirname( __FILE__ ) . '/class-sales-logs-list-table.php' ); |
|
26 | + include(dirname(__FILE__).'/class-sales-logs-list-table.php'); |
|
27 | 27 | |
28 | 28 | $logs_table = new Give_Sales_Log_Table(); |
29 | 29 | $logs_table->prepare_items(); |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | |
32 | 32 | } |
33 | 33 | |
34 | -add_action( 'give_logs_view_sales', 'give_logs_view_sales' ); |
|
34 | +add_action('give_logs_view_sales', 'give_logs_view_sales'); |
|
35 | 35 | |
36 | 36 | |
37 | 37 | /** |
@@ -43,14 +43,14 @@ discard block |
||
43 | 43 | * @return void |
44 | 44 | */ |
45 | 45 | function give_logs_view_gateway_errors() { |
46 | - include( dirname( __FILE__ ) . '/class-gateway-error-logs-list-table.php' ); |
|
46 | + include(dirname(__FILE__).'/class-gateway-error-logs-list-table.php'); |
|
47 | 47 | |
48 | 48 | $logs_table = new Give_Gateway_Error_Log_Table(); |
49 | 49 | $logs_table->prepare_items(); |
50 | 50 | $logs_table->display(); |
51 | 51 | } |
52 | 52 | |
53 | -add_action( 'give_logs_view_gateway_errors', 'give_logs_view_gateway_errors' ); |
|
53 | +add_action('give_logs_view_gateway_errors', 'give_logs_view_gateway_errors'); |
|
54 | 54 | |
55 | 55 | /** |
56 | 56 | * API Request Logs |
@@ -62,28 +62,28 @@ discard block |
||
62 | 62 | * @return void |
63 | 63 | */ |
64 | 64 | function give_logs_view_api_requests() { |
65 | - include( dirname( __FILE__ ) . '/class-api-requests-logs-list-table.php' ); |
|
65 | + include(dirname(__FILE__).'/class-api-requests-logs-list-table.php'); |
|
66 | 66 | |
67 | 67 | $logs_table = new Give_API_Request_Log_Table(); |
68 | 68 | $logs_table->prepare_items(); |
69 | 69 | ?> |
70 | 70 | <div class="wrap"> |
71 | - <?php do_action( 'give_logs_api_requests_top' ); ?> |
|
72 | - <form id="give-logs-filter" method="get" action="<?php echo admin_url( 'edit.php?post_type=give_forms&page=give-reports&tab=logs' ); ?>"> |
|
71 | + <?php do_action('give_logs_api_requests_top'); ?> |
|
72 | + <form id="give-logs-filter" method="get" action="<?php echo admin_url('edit.php?post_type=give_forms&page=give-reports&tab=logs'); ?>"> |
|
73 | 73 | <?php |
74 | - $logs_table->search_box( __( 'Search', 'give' ), 'give-api-requests' ); |
|
74 | + $logs_table->search_box(__('Search', 'give'), 'give-api-requests'); |
|
75 | 75 | $logs_table->display(); |
76 | 76 | ?> |
77 | 77 | <input type="hidden" name="post_type" value="give_forms"/> |
78 | 78 | <input type="hidden" name="page" value="give-reports"/> |
79 | 79 | <input type="hidden" name="tab" value="logs"/> |
80 | 80 | </form> |
81 | - <?php do_action( 'give_logs_api_requests_bottom' ); ?> |
|
81 | + <?php do_action('give_logs_api_requests_bottom'); ?> |
|
82 | 82 | </div> |
83 | 83 | <?php |
84 | 84 | } |
85 | 85 | |
86 | -add_action( 'give_logs_view_api_requests', 'give_logs_view_api_requests' ); |
|
86 | +add_action('give_logs_view_api_requests', 'give_logs_view_api_requests'); |
|
87 | 87 | |
88 | 88 | |
89 | 89 | /** |
@@ -94,12 +94,12 @@ discard block |
||
94 | 94 | */ |
95 | 95 | function give_log_default_views() { |
96 | 96 | $views = array( |
97 | - 'sales' => __( 'Donations', 'give' ), |
|
98 | - 'gateway_errors' => __( 'Payment Errors', 'give' ), |
|
99 | - 'api_requests' => __( 'API Requests', 'give' ) |
|
97 | + 'sales' => __('Donations', 'give'), |
|
98 | + 'gateway_errors' => __('Payment Errors', 'give'), |
|
99 | + 'api_requests' => __('API Requests', 'give') |
|
100 | 100 | ); |
101 | 101 | |
102 | - $views = apply_filters( 'give_log_views', $views ); |
|
102 | + $views = apply_filters('give_log_views', $views); |
|
103 | 103 | |
104 | 104 | return $views; |
105 | 105 | } |
@@ -112,24 +112,24 @@ discard block |
||
112 | 112 | */ |
113 | 113 | function give_log_views() { |
114 | 114 | $views = give_log_default_views(); |
115 | - $current_view = isset( $_GET['view'] ) && array_key_exists( $_GET['view'], give_log_default_views() ) ? sanitize_text_field( $_GET['view'] ) : 'sales'; |
|
115 | + $current_view = isset($_GET['view']) && array_key_exists($_GET['view'], give_log_default_views()) ? sanitize_text_field($_GET['view']) : 'sales'; |
|
116 | 116 | ?> |
117 | 117 | <form id="give-logs-filter" method="get" action="edit.php"> |
118 | 118 | <select id="give-logs-view" name="view"> |
119 | 119 | <optgroup label="Log Type:"> |
120 | - <?php foreach ( $views as $view_id => $label ): ?> |
|
121 | - <option value="<?php echo esc_attr( $view_id ); ?>" <?php selected( $view_id, $current_view ); ?>><?php echo $label; ?></option> |
|
120 | + <?php foreach ($views as $view_id => $label): ?> |
|
121 | + <option value="<?php echo esc_attr($view_id); ?>" <?php selected($view_id, $current_view); ?>><?php echo $label; ?></option> |
|
122 | 122 | <?php endforeach; ?> |
123 | 123 | </optgroup> |
124 | 124 | </select> |
125 | 125 | |
126 | - <?php do_action( 'give_log_view_actions' ); ?> |
|
126 | + <?php do_action('give_log_view_actions'); ?> |
|
127 | 127 | |
128 | 128 | <input type="hidden" name="post_type" value="give_forms"/> |
129 | 129 | <input type="hidden" name="page" value="give-reports"/> |
130 | 130 | <input type="hidden" name="tab" value="logs"/> |
131 | 131 | |
132 | - <?php submit_button( __( 'Apply', 'give' ), 'secondary', 'submit', false ); ?> |
|
132 | + <?php submit_button(__('Apply', 'give'), 'secondary', 'submit', false); ?> |
|
133 | 133 | </form> |
134 | 134 | <?php |
135 | 135 | } |
136 | 136 | \ No newline at end of file |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | */ |
13 | 13 | |
14 | 14 | // Exit if accessed directly |
15 | -if ( ! defined( 'ABSPATH' ) ) { |
|
15 | +if ( ! defined('ABSPATH')) { |
|
16 | 16 | exit; |
17 | 17 | } |
18 | 18 | |
@@ -25,27 +25,27 @@ discard block |
||
25 | 25 | function give_test_ajax_works() { |
26 | 26 | |
27 | 27 | // Check if the Airplane Mode plugin is installed |
28 | - if ( class_exists( 'Airplane_Mode_Core' ) ) { |
|
28 | + if (class_exists('Airplane_Mode_Core')) { |
|
29 | 29 | |
30 | 30 | $airplane = Airplane_Mode_Core::getInstance(); |
31 | 31 | |
32 | - if ( method_exists( $airplane, 'enabled' ) ) { |
|
32 | + if (method_exists($airplane, 'enabled')) { |
|
33 | 33 | |
34 | - if ( $airplane->enabled() ) { |
|
34 | + if ($airplane->enabled()) { |
|
35 | 35 | return true; |
36 | 36 | } |
37 | 37 | |
38 | 38 | } else { |
39 | 39 | |
40 | - if ( $airplane->check_status() == 'on' ) { |
|
40 | + if ($airplane->check_status() == 'on') { |
|
41 | 41 | return true; |
42 | 42 | } |
43 | 43 | } |
44 | 44 | } |
45 | 45 | |
46 | - add_filter( 'block_local_requests', '__return_false' ); |
|
46 | + add_filter('block_local_requests', '__return_false'); |
|
47 | 47 | |
48 | - if ( get_transient( '_give_ajax_works' ) ) { |
|
48 | + if (get_transient('_give_ajax_works')) { |
|
49 | 49 | return true; |
50 | 50 | } |
51 | 51 | |
@@ -57,35 +57,35 @@ discard block |
||
57 | 57 | ) |
58 | 58 | ); |
59 | 59 | |
60 | - $ajax = wp_remote_post( give_get_ajax_url(), $params ); |
|
60 | + $ajax = wp_remote_post(give_get_ajax_url(), $params); |
|
61 | 61 | $works = true; |
62 | 62 | |
63 | - if ( is_wp_error( $ajax ) ) { |
|
63 | + if (is_wp_error($ajax)) { |
|
64 | 64 | |
65 | 65 | $works = false; |
66 | 66 | |
67 | 67 | } else { |
68 | 68 | |
69 | - if ( empty( $ajax['response'] ) ) { |
|
69 | + if (empty($ajax['response'])) { |
|
70 | 70 | $works = false; |
71 | 71 | } |
72 | 72 | |
73 | - if ( empty( $ajax['response']['code'] ) || 200 !== (int) $ajax['response']['code'] ) { |
|
73 | + if (empty($ajax['response']['code']) || 200 !== (int) $ajax['response']['code']) { |
|
74 | 74 | $works = false; |
75 | 75 | } |
76 | 76 | |
77 | - if ( empty( $ajax['response']['message'] ) || 'OK' !== $ajax['response']['message'] ) { |
|
77 | + if (empty($ajax['response']['message']) || 'OK' !== $ajax['response']['message']) { |
|
78 | 78 | $works = false; |
79 | 79 | } |
80 | 80 | |
81 | - if ( ! isset( $ajax['body'] ) || 0 !== (int) $ajax['body'] ) { |
|
81 | + if ( ! isset($ajax['body']) || 0 !== (int) $ajax['body']) { |
|
82 | 82 | $works = false; |
83 | 83 | } |
84 | 84 | |
85 | 85 | } |
86 | 86 | |
87 | - if ( $works ) { |
|
88 | - set_transient( '_give_ajax_works', '1', DAY_IN_SECONDS ); |
|
87 | + if ($works) { |
|
88 | + set_transient('_give_ajax_works', '1', DAY_IN_SECONDS); |
|
89 | 89 | } |
90 | 90 | |
91 | 91 | return $works; |
@@ -99,16 +99,16 @@ discard block |
||
99 | 99 | * @return string |
100 | 100 | */ |
101 | 101 | function give_get_ajax_url() { |
102 | - $scheme = defined( 'FORCE_SSL_ADMIN' ) && FORCE_SSL_ADMIN ? 'https' : 'admin'; |
|
102 | + $scheme = defined('FORCE_SSL_ADMIN') && FORCE_SSL_ADMIN ? 'https' : 'admin'; |
|
103 | 103 | |
104 | 104 | $current_url = give_get_current_page_url(); |
105 | - $ajax_url = admin_url( 'admin-ajax.php', $scheme ); |
|
105 | + $ajax_url = admin_url('admin-ajax.php', $scheme); |
|
106 | 106 | |
107 | - if ( preg_match( '/^https/', $current_url ) && ! preg_match( '/^https/', $ajax_url ) ) { |
|
108 | - $ajax_url = preg_replace( '/^http/', 'https', $ajax_url ); |
|
107 | + if (preg_match('/^https/', $current_url) && ! preg_match('/^https/', $ajax_url)) { |
|
108 | + $ajax_url = preg_replace('/^http/', 'https', $ajax_url); |
|
109 | 109 | } |
110 | 110 | |
111 | - return apply_filters( 'give_ajax_url', $ajax_url ); |
|
111 | + return apply_filters('give_ajax_url', $ajax_url); |
|
112 | 112 | } |
113 | 113 | |
114 | 114 | /** |
@@ -118,11 +118,11 @@ discard block |
||
118 | 118 | * @return void |
119 | 119 | */ |
120 | 120 | function give_load_checkout_login_fields() { |
121 | - do_action( 'give_purchase_form_login_fields' ); |
|
121 | + do_action('give_purchase_form_login_fields'); |
|
122 | 122 | give_die(); |
123 | 123 | } |
124 | 124 | |
125 | -add_action( 'wp_ajax_nopriv_give_checkout_login', 'give_load_checkout_login_fields' ); |
|
125 | +add_action('wp_ajax_nopriv_give_checkout_login', 'give_load_checkout_login_fields'); |
|
126 | 126 | |
127 | 127 | /** |
128 | 128 | * Load Checkout Fields |
@@ -131,22 +131,22 @@ discard block |
||
131 | 131 | * @return void |
132 | 132 | */ |
133 | 133 | function give_load_checkout_fields() { |
134 | - $form_id = isset( $_POST['form_id'] ) ? $_POST['form_id'] : ''; |
|
134 | + $form_id = isset($_POST['form_id']) ? $_POST['form_id'] : ''; |
|
135 | 135 | |
136 | 136 | ob_start(); |
137 | 137 | |
138 | - do_action( 'give_purchase_form_register_login_fields', $form_id ); |
|
138 | + do_action('give_purchase_form_register_login_fields', $form_id); |
|
139 | 139 | |
140 | 140 | $fields = ob_get_clean(); |
141 | 141 | |
142 | - wp_send_json( array( |
|
143 | - 'fields' => wp_json_encode( $fields ), |
|
144 | - 'submit' => wp_json_encode( give_checkout_button_purchase( $form_id ) ), |
|
145 | - ) ); |
|
142 | + wp_send_json(array( |
|
143 | + 'fields' => wp_json_encode($fields), |
|
144 | + 'submit' => wp_json_encode(give_checkout_button_purchase($form_id)), |
|
145 | + )); |
|
146 | 146 | } |
147 | 147 | |
148 | -add_action( 'wp_ajax_nopriv_give_cancel_login', 'give_load_checkout_fields' ); |
|
149 | -add_action( 'wp_ajax_nopriv_give_checkout_register', 'give_load_checkout_fields' ); |
|
148 | +add_action('wp_ajax_nopriv_give_cancel_login', 'give_load_checkout_fields'); |
|
149 | +add_action('wp_ajax_nopriv_give_checkout_register', 'give_load_checkout_fields'); |
|
150 | 150 | |
151 | 151 | /** |
152 | 152 | * Get Form Title via AJAX (used only in WordPress Admin) |
@@ -155,9 +155,9 @@ discard block |
||
155 | 155 | * @return void |
156 | 156 | */ |
157 | 157 | function give_ajax_get_form_title() { |
158 | - if ( isset( $_POST['form_id'] ) ) { |
|
159 | - $title = get_the_title( $_POST['form_id'] ); |
|
160 | - if ( $title ) { |
|
158 | + if (isset($_POST['form_id'])) { |
|
159 | + $title = get_the_title($_POST['form_id']); |
|
160 | + if ($title) { |
|
161 | 161 | echo $title; |
162 | 162 | } else { |
163 | 163 | echo 'fail'; |
@@ -166,8 +166,8 @@ discard block |
||
166 | 166 | give_die(); |
167 | 167 | } |
168 | 168 | |
169 | -add_action( 'wp_ajax_give_get_form_title', 'give_ajax_get_form_title' ); |
|
170 | -add_action( 'wp_ajax_nopriv_give_get_form_title', 'give_ajax_get_form_title' ); |
|
169 | +add_action('wp_ajax_give_get_form_title', 'give_ajax_get_form_title'); |
|
170 | +add_action('wp_ajax_nopriv_give_get_form_title', 'give_ajax_get_form_title'); |
|
171 | 171 | |
172 | 172 | /** |
173 | 173 | * Retrieve a states drop down |
@@ -177,23 +177,23 @@ discard block |
||
177 | 177 | */ |
178 | 178 | function give_ajax_get_states_field() { |
179 | 179 | |
180 | - if ( empty( $_POST['country'] ) ) { |
|
180 | + if (empty($_POST['country'])) { |
|
181 | 181 | $_POST['country'] = give_get_country(); |
182 | 182 | } |
183 | - $states = give_get_states( $_POST['country'] ); |
|
183 | + $states = give_get_states($_POST['country']); |
|
184 | 184 | |
185 | - if ( ! empty( $states ) ) { |
|
185 | + if ( ! empty($states)) { |
|
186 | 186 | |
187 | 187 | $args = array( |
188 | 188 | 'name' => $_POST['field_name'], |
189 | 189 | 'id' => $_POST['field_name'], |
190 | - 'class' => $_POST['field_name'] . ' give-select', |
|
191 | - 'options' => give_get_states( $_POST['country'] ), |
|
190 | + 'class' => $_POST['field_name'].' give-select', |
|
191 | + 'options' => give_get_states($_POST['country']), |
|
192 | 192 | 'show_option_all' => false, |
193 | 193 | 'show_option_none' => false |
194 | 194 | ); |
195 | 195 | |
196 | - $response = Give()->html->select( $args ); |
|
196 | + $response = Give()->html->select($args); |
|
197 | 197 | |
198 | 198 | } else { |
199 | 199 | |
@@ -205,8 +205,8 @@ discard block |
||
205 | 205 | give_die(); |
206 | 206 | } |
207 | 207 | |
208 | -add_action( 'wp_ajax_give_get_states', 'give_ajax_get_states_field' ); |
|
209 | -add_action( 'wp_ajax_nopriv_give_get_states', 'give_ajax_get_states_field' ); |
|
208 | +add_action('wp_ajax_give_get_states', 'give_ajax_get_states_field'); |
|
209 | +add_action('wp_ajax_nopriv_give_get_states', 'give_ajax_get_states_field'); |
|
210 | 210 | |
211 | 211 | /** |
212 | 212 | * Retrieve a states drop down |
@@ -217,17 +217,17 @@ discard block |
||
217 | 217 | function give_ajax_form_search() { |
218 | 218 | global $wpdb; |
219 | 219 | |
220 | - $search = esc_sql( sanitize_text_field( $_GET['s'] ) ); |
|
220 | + $search = esc_sql(sanitize_text_field($_GET['s'])); |
|
221 | 221 | $results = array(); |
222 | - if ( current_user_can( 'edit_give_forms' ) ) { |
|
223 | - $items = $wpdb->get_results( "SELECT ID,post_title FROM $wpdb->posts WHERE `post_type` = 'give_forms' AND `post_title` LIKE '%$search%' LIMIT 50" ); |
|
222 | + if (current_user_can('edit_give_forms')) { |
|
223 | + $items = $wpdb->get_results("SELECT ID,post_title FROM $wpdb->posts WHERE `post_type` = 'give_forms' AND `post_title` LIKE '%$search%' LIMIT 50"); |
|
224 | 224 | } else { |
225 | - $items = $wpdb->get_results( "SELECT ID,post_title FROM $wpdb->posts WHERE `post_type` = 'give_forms' AND `post_status` = 'publish' AND `post_title` LIKE '%$search%' LIMIT 50" ); |
|
225 | + $items = $wpdb->get_results("SELECT ID,post_title FROM $wpdb->posts WHERE `post_type` = 'give_forms' AND `post_status` = 'publish' AND `post_title` LIKE '%$search%' LIMIT 50"); |
|
226 | 226 | } |
227 | 227 | |
228 | - if ( $items ) { |
|
228 | + if ($items) { |
|
229 | 229 | |
230 | - foreach ( $items as $item ) { |
|
230 | + foreach ($items as $item) { |
|
231 | 231 | |
232 | 232 | $results[] = array( |
233 | 233 | 'id' => $item->ID, |
@@ -239,18 +239,18 @@ discard block |
||
239 | 239 | |
240 | 240 | $items[] = array( |
241 | 241 | 'id' => 0, |
242 | - 'name' => __( 'No results found', 'give' ) |
|
242 | + 'name' => __('No results found', 'give') |
|
243 | 243 | ); |
244 | 244 | |
245 | 245 | } |
246 | 246 | |
247 | - echo json_encode( $results ); |
|
247 | + echo json_encode($results); |
|
248 | 248 | |
249 | 249 | give_die(); |
250 | 250 | } |
251 | 251 | |
252 | -add_action( 'wp_ajax_give_form_search', 'give_ajax_form_search' ); |
|
253 | -add_action( 'wp_ajax_nopriv_give_form_search', 'give_ajax_form_search' ); |
|
252 | +add_action('wp_ajax_give_form_search', 'give_ajax_form_search'); |
|
253 | +add_action('wp_ajax_nopriv_give_form_search', 'give_ajax_form_search'); |
|
254 | 254 | |
255 | 255 | /** |
256 | 256 | * Search the donors database via Ajax |
@@ -261,21 +261,21 @@ discard block |
||
261 | 261 | function give_ajax_donor_search() { |
262 | 262 | global $wpdb; |
263 | 263 | |
264 | - $search = esc_sql( sanitize_text_field( $_GET['s'] ) ); |
|
264 | + $search = esc_sql(sanitize_text_field($_GET['s'])); |
|
265 | 265 | $results = array(); |
266 | - if ( ! current_user_can( 'view_give_reports' ) ) { |
|
266 | + if ( ! current_user_can('view_give_reports')) { |
|
267 | 267 | $donors = array(); |
268 | 268 | } else { |
269 | - $donors = $wpdb->get_results( "SELECT id,name,email FROM {$wpdb->prefix}give_donors WHERE `name` LIKE '%$search%' OR `email` LIKE '%$search%' LIMIT 50" ); |
|
269 | + $donors = $wpdb->get_results("SELECT id,name,email FROM {$wpdb->prefix}give_donors WHERE `name` LIKE '%$search%' OR `email` LIKE '%$search%' LIMIT 50"); |
|
270 | 270 | } |
271 | 271 | |
272 | - if ( $donors ) { |
|
272 | + if ($donors) { |
|
273 | 273 | |
274 | - foreach ( $donors as $donor ) { |
|
274 | + foreach ($donors as $donor) { |
|
275 | 275 | |
276 | 276 | $results[] = array( |
277 | 277 | 'id' => $donor->id, |
278 | - 'name' => $donor->name . '(' . $donor->email . ')' |
|
278 | + 'name' => $donor->name.'('.$donor->email.')' |
|
279 | 279 | ); |
280 | 280 | } |
281 | 281 | |
@@ -283,17 +283,17 @@ discard block |
||
283 | 283 | |
284 | 284 | $donors[] = array( |
285 | 285 | 'id' => 0, |
286 | - 'name' => __( 'No results found', 'give' ) |
|
286 | + 'name' => __('No results found', 'give') |
|
287 | 287 | ); |
288 | 288 | |
289 | 289 | } |
290 | 290 | |
291 | - echo json_encode( $results ); |
|
291 | + echo json_encode($results); |
|
292 | 292 | |
293 | 293 | give_die(); |
294 | 294 | } |
295 | 295 | |
296 | -add_action( 'wp_ajax_give_donor_search', 'give_ajax_donor_search' ); |
|
296 | +add_action('wp_ajax_give_donor_search', 'give_ajax_donor_search'); |
|
297 | 297 | |
298 | 298 | |
299 | 299 | /** |
@@ -304,30 +304,30 @@ discard block |
||
304 | 304 | */ |
305 | 305 | function give_ajax_search_users() { |
306 | 306 | |
307 | - if ( current_user_can( 'manage_give_settings' ) ) { |
|
307 | + if (current_user_can('manage_give_settings')) { |
|
308 | 308 | |
309 | - $search_query = trim( $_POST['user_name'] ); |
|
309 | + $search_query = trim($_POST['user_name']); |
|
310 | 310 | |
311 | - $found_users = get_users( array( |
|
311 | + $found_users = get_users(array( |
|
312 | 312 | 'number' => 9999, |
313 | - 'search' => $search_query . '*' |
|
313 | + 'search' => $search_query.'*' |
|
314 | 314 | ) |
315 | 315 | ); |
316 | 316 | |
317 | 317 | $user_list = '<ul>'; |
318 | - if ( $found_users ) { |
|
319 | - foreach ( $found_users as $user ) { |
|
320 | - $user_list .= '<li><a href="#" data-login="' . esc_attr( $user->user_login ) . '">' . esc_html( $user->user_login ) . '</a></li>'; |
|
318 | + if ($found_users) { |
|
319 | + foreach ($found_users as $user) { |
|
320 | + $user_list .= '<li><a href="#" data-login="'.esc_attr($user->user_login).'">'.esc_html($user->user_login).'</a></li>'; |
|
321 | 321 | } |
322 | 322 | } else { |
323 | - $user_list .= '<li>' . __( 'No users found', 'give' ) . '</li>'; |
|
323 | + $user_list .= '<li>'.__('No users found', 'give').'</li>'; |
|
324 | 324 | } |
325 | 325 | $user_list .= '</ul>'; |
326 | 326 | |
327 | - echo json_encode( array( 'results' => $user_list ) ); |
|
327 | + echo json_encode(array('results' => $user_list)); |
|
328 | 328 | |
329 | 329 | } |
330 | 330 | die(); |
331 | 331 | } |
332 | 332 | |
333 | -add_action( 'wp_ajax_give_search_users', 'give_ajax_search_users' ); |
|
334 | 333 | \ No newline at end of file |
334 | +add_action('wp_ajax_give_search_users', 'give_ajax_search_users'); |
|
335 | 335 | \ No newline at end of file |
@@ -10,11 +10,11 @@ discard block |
||
10 | 10 | */ |
11 | 11 | |
12 | 12 | // Exit if accessed directly |
13 | -if ( ! defined( 'ABSPATH' ) ) { |
|
13 | +if ( ! defined('ABSPATH')) { |
|
14 | 14 | exit; |
15 | 15 | } |
16 | 16 | |
17 | -add_filter( 'cmb2_meta_boxes', 'give_single_forms_cmb2_metaboxes' ); |
|
17 | +add_filter('cmb2_meta_boxes', 'give_single_forms_cmb2_metaboxes'); |
|
18 | 18 | |
19 | 19 | /** |
20 | 20 | * Define the metabox and field configurations. |
@@ -23,23 +23,23 @@ discard block |
||
23 | 23 | * |
24 | 24 | * @return array |
25 | 25 | */ |
26 | -function give_single_forms_cmb2_metaboxes( array $meta_boxes ) { |
|
26 | +function give_single_forms_cmb2_metaboxes(array $meta_boxes) { |
|
27 | 27 | |
28 | 28 | $post_id = give_get_admin_post_id(); |
29 | - $price = give_get_form_price( $post_id ); |
|
30 | - $custom_amount_minimum = give_get_form_minimum_price( $post_id ); |
|
31 | - $goal = give_get_form_goal( $post_id ); |
|
32 | - $variable_pricing = give_has_variable_prices( $post_id ); |
|
33 | - $prices = give_get_variable_prices( $post_id ); |
|
29 | + $price = give_get_form_price($post_id); |
|
30 | + $custom_amount_minimum = give_get_form_minimum_price($post_id); |
|
31 | + $goal = give_get_form_goal($post_id); |
|
32 | + $variable_pricing = give_has_variable_prices($post_id); |
|
33 | + $prices = give_get_variable_prices($post_id); |
|
34 | 34 | |
35 | 35 | //No empty prices - min. 1.00 for new forms |
36 | - if ( empty( $price ) && is_null( $post_id ) ) { |
|
37 | - $price = esc_attr( give_format_amount( '1.00' ) ); |
|
36 | + if (empty($price) && is_null($post_id)) { |
|
37 | + $price = esc_attr(give_format_amount('1.00')); |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | //Min. $1.00 for new forms |
41 | - if ( empty( $custom_amount_minimum ) ) { |
|
42 | - $custom_amount_minimum = esc_attr( give_format_amount( '1.00' ) ); |
|
41 | + if (empty($custom_amount_minimum)) { |
|
42 | + $custom_amount_minimum = esc_attr(give_format_amount('1.00')); |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | // Start with an underscore to hide fields from custom fields list |
@@ -48,302 +48,302 @@ discard block |
||
48 | 48 | /** |
49 | 49 | * Repeatable Field Groups |
50 | 50 | */ |
51 | - $meta_boxes['form_field_options'] = apply_filters( 'give_forms_field_options', array( |
|
51 | + $meta_boxes['form_field_options'] = apply_filters('give_forms_field_options', array( |
|
52 | 52 | 'id' => 'form_field_options', |
53 | - 'title' => __( 'Donation Options', 'give' ), |
|
54 | - 'object_types' => array( 'give_forms' ), |
|
53 | + 'title' => __('Donation Options', 'give'), |
|
54 | + 'object_types' => array('give_forms'), |
|
55 | 55 | 'context' => 'normal', |
56 | 56 | 'priority' => 'high', //Show above Content WYSIWYG |
57 | - 'fields' => apply_filters( 'give_forms_donation_form_metabox_fields', array( |
|
57 | + 'fields' => apply_filters('give_forms_donation_form_metabox_fields', array( |
|
58 | 58 | //Donation Option |
59 | 59 | array( |
60 | - 'name' => __( 'Donation Option', 'give' ), |
|
61 | - 'description' => __( 'Would you like this form to have one set donation price or multiple levels (for example, $10 silver, $20 gold, $50 platinum)?', 'give' ), |
|
62 | - 'id' => $prefix . 'price_option', |
|
60 | + 'name' => __('Donation Option', 'give'), |
|
61 | + 'description' => __('Would you like this form to have one set donation price or multiple levels (for example, $10 silver, $20 gold, $50 platinum)?', 'give'), |
|
62 | + 'id' => $prefix.'price_option', |
|
63 | 63 | 'type' => 'radio_inline', |
64 | 64 | 'default' => 'set', |
65 | - 'options' => apply_filters( 'give_forms_price_options', array( |
|
66 | - 'set' => __( 'Set Donation', 'give' ), |
|
67 | - 'multi' => __( 'Multi-level Donation', 'give' ), |
|
68 | - ) ), |
|
65 | + 'options' => apply_filters('give_forms_price_options', array( |
|
66 | + 'set' => __('Set Donation', 'give'), |
|
67 | + 'multi' => __('Multi-level Donation', 'give'), |
|
68 | + )), |
|
69 | 69 | ), |
70 | 70 | array( |
71 | - 'name' => __( 'Set Donation', 'give' ), |
|
72 | - 'description' => __( 'This is the set donation amount for this form. If you have a "Custom Amount Minimum" set, make sure it is less than this amount.', 'give' ), |
|
73 | - 'id' => $prefix . 'set_price', |
|
71 | + 'name' => __('Set Donation', 'give'), |
|
72 | + 'description' => __('This is the set donation amount for this form. If you have a "Custom Amount Minimum" set, make sure it is less than this amount.', 'give'), |
|
73 | + 'id' => $prefix.'set_price', |
|
74 | 74 | 'type' => 'text_small', |
75 | 75 | 'row_classes' => 'give-subfield', |
76 | - 'before_field' => give_get_option( 'currency_position' ) == 'before' ? '<span class="give-money-symbol give-money-symbol-before">' . give_currency_symbol() . '</span>' : '', |
|
77 | - 'after_field' => give_get_option( 'currency_position' ) == 'after' ? '<span class="give-money-symbol give-money-symbol-after">' . give_currency_symbol() . '</span>' : '', |
|
76 | + 'before_field' => give_get_option('currency_position') == 'before' ? '<span class="give-money-symbol give-money-symbol-before">'.give_currency_symbol().'</span>' : '', |
|
77 | + 'after_field' => give_get_option('currency_position') == 'after' ? '<span class="give-money-symbol give-money-symbol-after">'.give_currency_symbol().'</span>' : '', |
|
78 | 78 | 'attributes' => array( |
79 | - 'placeholder' => give_format_amount( '1.00' ), |
|
80 | - 'value' => give_format_amount( $price ), |
|
79 | + 'placeholder' => give_format_amount('1.00'), |
|
80 | + 'value' => give_format_amount($price), |
|
81 | 81 | 'class' => 'cmb-type-text-small give-money-field', |
82 | 82 | ), |
83 | 83 | ), |
84 | 84 | //Donation levels: Header |
85 | 85 | array( |
86 | - 'id' => $prefix . 'levels_header', |
|
86 | + 'id' => $prefix.'levels_header', |
|
87 | 87 | 'type' => 'levels_repeater_header', |
88 | 88 | ), |
89 | 89 | //Donation Levels: Repeatable CMB2 Group |
90 | 90 | array( |
91 | - 'id' => $prefix . 'donation_levels', |
|
91 | + 'id' => $prefix.'donation_levels', |
|
92 | 92 | 'type' => 'group', |
93 | 93 | 'row_classes' => 'give-subfield', |
94 | 94 | 'options' => array( |
95 | - 'add_button' => __( 'Add Level', 'give' ), |
|
96 | - 'remove_button' => __( '<span class="dashicons dashicons-no"></span>', 'give' ), |
|
95 | + 'add_button' => __('Add Level', 'give'), |
|
96 | + 'remove_button' => __('<span class="dashicons dashicons-no"></span>', 'give'), |
|
97 | 97 | 'sortable' => true, // beta |
98 | 98 | ), |
99 | 99 | // Fields array works the same, except id's only need to be unique for this group. Prefix is not needed. |
100 | - 'fields' => apply_filters( 'give_donation_levels_table_row', array( |
|
100 | + 'fields' => apply_filters('give_donation_levels_table_row', array( |
|
101 | 101 | array( |
102 | - 'name' => __( 'ID', 'give' ), |
|
103 | - 'id' => $prefix . 'id', |
|
102 | + 'name' => __('ID', 'give'), |
|
103 | + 'id' => $prefix.'id', |
|
104 | 104 | 'type' => 'levels_id', |
105 | 105 | ), |
106 | 106 | array( |
107 | - 'name' => __( 'Amount', 'give' ), |
|
108 | - 'id' => $prefix . 'amount', |
|
107 | + 'name' => __('Amount', 'give'), |
|
108 | + 'id' => $prefix.'amount', |
|
109 | 109 | 'type' => 'text_small', |
110 | - 'before_field' => give_get_option( 'currency_position' ) == 'before' ? '<span class="give-money-symbol give-money-symbol-before">' . give_currency_symbol() . '</span>' : '', |
|
111 | - 'after_field' => give_get_option( 'currency_position' ) == 'after' ? '<span class="give-money-symbol give-money-symbol-after">' . give_currency_symbol() . '</span>' : '', |
|
110 | + 'before_field' => give_get_option('currency_position') == 'before' ? '<span class="give-money-symbol give-money-symbol-before">'.give_currency_symbol().'</span>' : '', |
|
111 | + 'after_field' => give_get_option('currency_position') == 'after' ? '<span class="give-money-symbol give-money-symbol-after">'.give_currency_symbol().'</span>' : '', |
|
112 | 112 | 'attributes' => array( |
113 | - 'placeholder' => give_format_amount( '1.00' ), |
|
113 | + 'placeholder' => give_format_amount('1.00'), |
|
114 | 114 | 'class' => 'cmb-type-text-small give-money-field', |
115 | 115 | ), |
116 | 116 | 'before' => 'give_format_admin_multilevel_amount', |
117 | 117 | ), |
118 | 118 | array( |
119 | - 'name' => __( 'Text', 'give' ), |
|
120 | - 'id' => $prefix . 'text', |
|
119 | + 'name' => __('Text', 'give'), |
|
120 | + 'id' => $prefix.'text', |
|
121 | 121 | 'type' => 'text', |
122 | 122 | 'attributes' => array( |
123 | - 'placeholder' => __( 'Donation Level', 'give' ), |
|
123 | + 'placeholder' => __('Donation Level', 'give'), |
|
124 | 124 | 'class' => 'give-multilevel-text-field', |
125 | 125 | ), |
126 | 126 | ), |
127 | 127 | array( |
128 | - 'name' => __( 'Default', 'give' ), |
|
129 | - 'id' => $prefix . 'default', |
|
128 | + 'name' => __('Default', 'give'), |
|
129 | + 'id' => $prefix.'default', |
|
130 | 130 | 'type' => 'give_default_radio_inline' |
131 | 131 | ), |
132 | - ) ), |
|
132 | + )), |
|
133 | 133 | ), |
134 | 134 | //Display Style |
135 | 135 | array( |
136 | - 'name' => __( 'Display Style', 'give' ), |
|
137 | - 'description' => __( 'Set how the donations levels will display on the form.', 'give' ), |
|
138 | - 'id' => $prefix . 'display_style', |
|
136 | + 'name' => __('Display Style', 'give'), |
|
137 | + 'description' => __('Set how the donations levels will display on the form.', 'give'), |
|
138 | + 'id' => $prefix.'display_style', |
|
139 | 139 | 'type' => 'radio_inline', |
140 | 140 | 'default' => 'buttons', |
141 | 141 | 'options' => array( |
142 | - 'buttons' => __( 'Buttons', 'give' ), |
|
143 | - 'radios' => __( 'Radios', 'give' ), |
|
144 | - 'dropdown' => __( 'Dropdown', 'give' ), |
|
142 | + 'buttons' => __('Buttons', 'give'), |
|
143 | + 'radios' => __('Radios', 'give'), |
|
144 | + 'dropdown' => __('Dropdown', 'give'), |
|
145 | 145 | ), |
146 | 146 | ), |
147 | 147 | //Custom Amount |
148 | 148 | array( |
149 | - 'name' => __( 'Custom Amount', 'give' ), |
|
150 | - 'description' => __( 'Do you want the user to be able to input their own donation amount?', 'give' ), |
|
151 | - 'id' => $prefix . 'custom_amount', |
|
149 | + 'name' => __('Custom Amount', 'give'), |
|
150 | + 'description' => __('Do you want the user to be able to input their own donation amount?', 'give'), |
|
151 | + 'id' => $prefix.'custom_amount', |
|
152 | 152 | 'type' => 'radio_inline', |
153 | 153 | 'default' => 'no', |
154 | 154 | 'options' => array( |
155 | - 'yes' => __( 'Yes', 'give' ), |
|
156 | - 'no' => __( 'No', 'give' ), |
|
155 | + 'yes' => __('Yes', 'give'), |
|
156 | + 'no' => __('No', 'give'), |
|
157 | 157 | ), |
158 | 158 | ), |
159 | 159 | array( |
160 | - 'name' => __( 'Custom Amount Minimum', 'give' ), |
|
161 | - 'description' => __( 'If you would like to set a minimum custom donation amount please enter it here.', 'give' ), |
|
162 | - 'id' => $prefix . 'custom_amount_minimum', |
|
160 | + 'name' => __('Custom Amount Minimum', 'give'), |
|
161 | + 'description' => __('If you would like to set a minimum custom donation amount please enter it here.', 'give'), |
|
162 | + 'id' => $prefix.'custom_amount_minimum', |
|
163 | 163 | 'type' => 'text_small', |
164 | 164 | 'row_classes' => 'give-subfield', |
165 | - 'before_field' => give_get_option( 'currency_position' ) == 'before' ? '<span class="give-money-symbol give-money-symbol-before">' . give_currency_symbol() . '</span>' : '', |
|
166 | - 'after_field' => give_get_option( 'currency_position' ) == 'after' ? '<span class="give-money-symbol give-money-symbol-after">' . give_currency_symbol() . '</span>' : '', |
|
165 | + 'before_field' => give_get_option('currency_position') == 'before' ? '<span class="give-money-symbol give-money-symbol-before">'.give_currency_symbol().'</span>' : '', |
|
166 | + 'after_field' => give_get_option('currency_position') == 'after' ? '<span class="give-money-symbol give-money-symbol-after">'.give_currency_symbol().'</span>' : '', |
|
167 | 167 | 'attributes' => array( |
168 | - 'placeholder' => give_format_amount( '1.00' ), |
|
169 | - 'value' => give_format_amount( $custom_amount_minimum ), |
|
168 | + 'placeholder' => give_format_amount('1.00'), |
|
169 | + 'value' => give_format_amount($custom_amount_minimum), |
|
170 | 170 | 'class' => 'cmb-type-text-small give-money-field', |
171 | 171 | ), |
172 | 172 | ), |
173 | 173 | array( |
174 | - 'name' => __( 'Custom Amount Text', 'give' ), |
|
175 | - 'description' => __( 'This text appears as a label below the custom amount field for set donation forms. For multi-level forms the text will appear as it\'s own level (ie button, radio, or select option).', 'give' ), |
|
176 | - 'id' => $prefix . 'custom_amount_text', |
|
174 | + 'name' => __('Custom Amount Text', 'give'), |
|
175 | + 'description' => __('This text appears as a label below the custom amount field for set donation forms. For multi-level forms the text will appear as it\'s own level (ie button, radio, or select option).', 'give'), |
|
176 | + 'id' => $prefix.'custom_amount_text', |
|
177 | 177 | 'type' => 'text', |
178 | 178 | 'row_classes' => 'give-subfield', |
179 | 179 | 'attributes' => array( |
180 | 180 | 'rows' => 3, |
181 | - 'placeholder' => __( 'Give a Custom Amount', 'give' ), |
|
181 | + 'placeholder' => __('Give a Custom Amount', 'give'), |
|
182 | 182 | ), |
183 | 183 | ), |
184 | 184 | //Goals |
185 | 185 | array( |
186 | - 'name' => __( 'Set Goal?', 'give' ), |
|
187 | - 'description' => __( 'Do you want to set a donation goal for this form?', 'give' ), |
|
188 | - 'id' => $prefix . 'goal_option', |
|
186 | + 'name' => __('Set Goal?', 'give'), |
|
187 | + 'description' => __('Do you want to set a donation goal for this form?', 'give'), |
|
188 | + 'id' => $prefix.'goal_option', |
|
189 | 189 | 'type' => 'radio_inline', |
190 | 190 | 'default' => 'no', |
191 | 191 | 'options' => array( |
192 | - 'yes' => __( 'Yes', 'give' ), |
|
193 | - 'no' => __( 'No', 'give' ), |
|
192 | + 'yes' => __('Yes', 'give'), |
|
193 | + 'no' => __('No', 'give'), |
|
194 | 194 | ), |
195 | 195 | ), |
196 | 196 | array( |
197 | - 'name' => __( 'Set Goal', 'give' ), |
|
198 | - 'description' => __( 'This is the monetary goal amount you want to reach for this donation form.', 'give' ), |
|
199 | - 'id' => $prefix . 'set_goal', |
|
197 | + 'name' => __('Set Goal', 'give'), |
|
198 | + 'description' => __('This is the monetary goal amount you want to reach for this donation form.', 'give'), |
|
199 | + 'id' => $prefix.'set_goal', |
|
200 | 200 | 'type' => 'text_small', |
201 | 201 | 'row_classes' => 'give-subfield', |
202 | - 'before_field' => give_get_option( 'currency_position' ) == 'before' ? '<span class="give-money-symbol give-money-symbol-before">' . give_currency_symbol() . '</span>' : '', |
|
203 | - 'after_field' => give_get_option( 'currency_position' ) == 'after' ? '<span class="give-money-symbol give-money-symbol-after">' . give_currency_symbol() . '</span>' : '', |
|
202 | + 'before_field' => give_get_option('currency_position') == 'before' ? '<span class="give-money-symbol give-money-symbol-before">'.give_currency_symbol().'</span>' : '', |
|
203 | + 'after_field' => give_get_option('currency_position') == 'after' ? '<span class="give-money-symbol give-money-symbol-after">'.give_currency_symbol().'</span>' : '', |
|
204 | 204 | 'attributes' => array( |
205 | - 'placeholder' => give_format_amount( '0.00' ), |
|
206 | - 'value' => isset( $goal ) ? esc_attr( give_format_amount( $goal ) ) : '', |
|
205 | + 'placeholder' => give_format_amount('0.00'), |
|
206 | + 'value' => isset($goal) ? esc_attr(give_format_amount($goal)) : '', |
|
207 | 207 | 'class' => 'cmb-type-text-small give-money-field', |
208 | 208 | ), |
209 | 209 | ), |
210 | 210 | |
211 | 211 | array( |
212 | - 'name' => __( 'Goal Format', 'give' ), |
|
213 | - 'description' => __( 'Would you like to display the total amount raised based on your monetary goal or a percentage? For instance, "$500 of $1,000 raised" or "50% funded".', 'give' ), |
|
214 | - 'id' => $prefix . 'goal_format', |
|
212 | + 'name' => __('Goal Format', 'give'), |
|
213 | + 'description' => __('Would you like to display the total amount raised based on your monetary goal or a percentage? For instance, "$500 of $1,000 raised" or "50% funded".', 'give'), |
|
214 | + 'id' => $prefix.'goal_format', |
|
215 | 215 | 'type' => 'radio_inline', |
216 | 216 | 'default' => 'amount', |
217 | 217 | 'row_classes' => 'give-subfield', |
218 | 218 | 'options' => array( |
219 | - 'amount' => __( 'Amount ', 'give' ), |
|
220 | - 'percentage' => __( 'Percentage', 'give' ), |
|
219 | + 'amount' => __('Amount ', 'give'), |
|
220 | + 'percentage' => __('Percentage', 'give'), |
|
221 | 221 | ), |
222 | 222 | ), |
223 | 223 | array( |
224 | - 'name' => __( 'Goal Progress Bar Color', 'give' ), |
|
225 | - 'id' => $prefix . 'goal_color', |
|
224 | + 'name' => __('Goal Progress Bar Color', 'give'), |
|
225 | + 'id' => $prefix.'goal_color', |
|
226 | 226 | 'type' => 'colorpicker', |
227 | 227 | 'row_classes' => 'give-subfield', |
228 | 228 | 'default' => '#2bc253', |
229 | 229 | ), |
230 | 230 | ) |
231 | 231 | ) |
232 | - ) ); |
|
232 | + )); |
|
233 | 233 | |
234 | 234 | |
235 | 235 | /** |
236 | 236 | * Content Field |
237 | 237 | */ |
238 | - $meta_boxes['form_content_options'] = apply_filters( 'give_forms_content_options', array( |
|
238 | + $meta_boxes['form_content_options'] = apply_filters('give_forms_content_options', array( |
|
239 | 239 | 'id' => 'form_content_options', |
240 | - 'title' => __( 'Form Content', 'give' ), |
|
241 | - 'object_types' => array( 'give_forms' ), |
|
240 | + 'title' => __('Form Content', 'give'), |
|
241 | + 'object_types' => array('give_forms'), |
|
242 | 242 | 'context' => 'normal', |
243 | 243 | 'priority' => 'high', //Show above Content WYSIWYG |
244 | - 'fields' => apply_filters( 'give_forms_content_options_metabox_fields', array( |
|
244 | + 'fields' => apply_filters('give_forms_content_options_metabox_fields', array( |
|
245 | 245 | //Donation Option |
246 | 246 | array( |
247 | - 'name' => __( 'Display Content', 'give' ), |
|
248 | - 'description' => __( 'Do you want to display content? If you select "Yes" a WYSIWYG editor will appear which you will be able to enter content to display above or below the form.', 'give' ), |
|
249 | - 'id' => $prefix . 'content_option', |
|
247 | + 'name' => __('Display Content', 'give'), |
|
248 | + 'description' => __('Do you want to display content? If you select "Yes" a WYSIWYG editor will appear which you will be able to enter content to display above or below the form.', 'give'), |
|
249 | + 'id' => $prefix.'content_option', |
|
250 | 250 | 'type' => 'select', |
251 | - 'options' => apply_filters( 'give_forms_content_options_select', array( |
|
252 | - 'none' => __( 'No content', 'give' ), |
|
253 | - 'give_pre_form' => __( 'Yes, display content ABOVE the form fields', 'give' ), |
|
254 | - 'give_post_form' => __( 'Yes, display content BELOW the form fields', 'give' ), |
|
251 | + 'options' => apply_filters('give_forms_content_options_select', array( |
|
252 | + 'none' => __('No content', 'give'), |
|
253 | + 'give_pre_form' => __('Yes, display content ABOVE the form fields', 'give'), |
|
254 | + 'give_post_form' => __('Yes, display content BELOW the form fields', 'give'), |
|
255 | 255 | ) |
256 | 256 | ), |
257 | 257 | 'default' => 'none', |
258 | 258 | ), |
259 | 259 | array( |
260 | - 'name' => __( 'Content', 'give' ), |
|
261 | - 'description' => __( 'This content will display on the single give form page.', 'give' ), |
|
262 | - 'id' => $prefix . 'form_content', |
|
260 | + 'name' => __('Content', 'give'), |
|
261 | + 'description' => __('This content will display on the single give form page.', 'give'), |
|
262 | + 'id' => $prefix.'form_content', |
|
263 | 263 | 'row_classes' => 'give-subfield', |
264 | 264 | 'type' => 'wysiwyg' |
265 | 265 | ), |
266 | 266 | ) |
267 | 267 | ) |
268 | - ) ); |
|
268 | + )); |
|
269 | 269 | |
270 | 270 | |
271 | 271 | /** |
272 | 272 | * Display Options |
273 | 273 | */ |
274 | - $meta_boxes['form_display_options'] = apply_filters( 'give_form_display_options', array( |
|
274 | + $meta_boxes['form_display_options'] = apply_filters('give_form_display_options', array( |
|
275 | 275 | 'id' => 'form_display_options', |
276 | - 'title' => __( 'Form Display Options', 'give' ), |
|
277 | - 'object_types' => array( 'give_forms' ), |
|
276 | + 'title' => __('Form Display Options', 'give'), |
|
277 | + 'object_types' => array('give_forms'), |
|
278 | 278 | 'context' => 'normal', // 'normal', 'advanced', or 'side' |
279 | 279 | 'priority' => 'high', //Show above Content WYSIWYG |
280 | 280 | 'show_names' => true, // Show field names on the left |
281 | - 'fields' => apply_filters( 'give_forms_display_options_metabox_fields', array( |
|
281 | + 'fields' => apply_filters('give_forms_display_options_metabox_fields', array( |
|
282 | 282 | array( |
283 | - 'name' => __( 'Payment Fields', 'give' ), |
|
284 | - 'desc' => __( 'How would you like to display payment information for this form? The "Show on Page" option will display the entire form when the page loads. "Reveal Upon Click" places a button below the donation fields and upon clicks slides into view the rest of the fields. "Modal Window Upon Click" is a similar option, rather than sliding into view the fields they will open in a shadow box or "modal" window.', 'give' ), |
|
285 | - 'id' => $prefix . 'payment_display', |
|
283 | + 'name' => __('Payment Fields', 'give'), |
|
284 | + 'desc' => __('How would you like to display payment information for this form? The "Show on Page" option will display the entire form when the page loads. "Reveal Upon Click" places a button below the donation fields and upon clicks slides into view the rest of the fields. "Modal Window Upon Click" is a similar option, rather than sliding into view the fields they will open in a shadow box or "modal" window.', 'give'), |
|
285 | + 'id' => $prefix.'payment_display', |
|
286 | 286 | 'type' => 'select', |
287 | 287 | 'options' => array( |
288 | - 'onpage' => __( 'Show on Page', 'give' ), |
|
289 | - 'reveal' => __( 'Reveal Upon Click', 'give' ), |
|
290 | - 'modal' => __( 'Modal Window Upon Click', 'give' ), |
|
288 | + 'onpage' => __('Show on Page', 'give'), |
|
289 | + 'reveal' => __('Reveal Upon Click', 'give'), |
|
290 | + 'modal' => __('Modal Window Upon Click', 'give'), |
|
291 | 291 | ), |
292 | 292 | 'default' => 'onpage', |
293 | 293 | ), |
294 | 294 | array( |
295 | - 'id' => $prefix . 'reveal_label', |
|
296 | - 'name' => __( 'Reveal / Modal Open Text', 'give' ), |
|
297 | - 'desc' => __( 'The button label for completing the donation.', 'give' ), |
|
295 | + 'id' => $prefix.'reveal_label', |
|
296 | + 'name' => __('Reveal / Modal Open Text', 'give'), |
|
297 | + 'desc' => __('The button label for completing the donation.', 'give'), |
|
298 | 298 | 'type' => 'text_small', |
299 | 299 | 'row_classes' => 'give-subfield', |
300 | 300 | 'attributes' => array( |
301 | - 'placeholder' => __( 'Donate Now', 'give' ), |
|
301 | + 'placeholder' => __('Donate Now', 'give'), |
|
302 | 302 | ), |
303 | 303 | ), |
304 | 304 | array( |
305 | - 'id' => $prefix . 'checkout_label', |
|
306 | - 'name' => __( 'Complete Donation Text', 'give' ), |
|
307 | - 'desc' => __( 'The button label for completing a donation.', 'give' ), |
|
305 | + 'id' => $prefix.'checkout_label', |
|
306 | + 'name' => __('Complete Donation Text', 'give'), |
|
307 | + 'desc' => __('The button label for completing a donation.', 'give'), |
|
308 | 308 | 'type' => 'text_small', |
309 | 309 | 'attributes' => array( |
310 | - 'placeholder' => __( 'Donate Now', 'give' ), |
|
310 | + 'placeholder' => __('Donate Now', 'give'), |
|
311 | 311 | ), |
312 | 312 | ), |
313 | 313 | array( |
314 | - 'name' => __( 'Default Gateway', 'give' ), |
|
315 | - 'desc' => __( 'By default, the gateway for this form will inherit the global default gateway (set under Give > Settings > Payment Gateways). This option allows you to customize the default gateway for this form only.', 'give' ), |
|
316 | - 'id' => $prefix . 'default_gateway', |
|
314 | + 'name' => __('Default Gateway', 'give'), |
|
315 | + 'desc' => __('By default, the gateway for this form will inherit the global default gateway (set under Give > Settings > Payment Gateways). This option allows you to customize the default gateway for this form only.', 'give'), |
|
316 | + 'id' => $prefix.'default_gateway', |
|
317 | 317 | 'type' => 'default_gateway' |
318 | 318 | ), |
319 | 319 | array( |
320 | - 'name' => __( 'Disable Guest Donations', 'give' ), |
|
321 | - 'desc' => __( 'Do you want to require users be logged-in to make donations?', 'give' ), |
|
322 | - 'id' => $prefix . 'logged_in_only', |
|
320 | + 'name' => __('Disable Guest Donations', 'give'), |
|
321 | + 'desc' => __('Do you want to require users be logged-in to make donations?', 'give'), |
|
322 | + 'id' => $prefix.'logged_in_only', |
|
323 | 323 | 'type' => 'checkbox' |
324 | 324 | ), |
325 | 325 | array( |
326 | - 'name' => __( 'Register / Login Form', 'give' ), |
|
327 | - 'desc' => __( 'Display the registration and login forms in the payment section for non-logged-in users.', 'give' ), |
|
328 | - 'id' => $prefix . 'show_register_form', |
|
326 | + 'name' => __('Register / Login Form', 'give'), |
|
327 | + 'desc' => __('Display the registration and login forms in the payment section for non-logged-in users.', 'give'), |
|
328 | + 'id' => $prefix.'show_register_form', |
|
329 | 329 | 'type' => 'select', |
330 | 330 | 'options' => array( |
331 | - 'both' => __( 'Registration and Login Forms', 'give' ), |
|
332 | - 'registration' => __( 'Registration Form Only', 'give' ), |
|
333 | - 'login' => __( 'Login Form Only', 'give' ), |
|
334 | - 'none' => __( 'None', 'give' ), |
|
331 | + 'both' => __('Registration and Login Forms', 'give'), |
|
332 | + 'registration' => __('Registration Form Only', 'give'), |
|
333 | + 'login' => __('Login Form Only', 'give'), |
|
334 | + 'none' => __('None', 'give'), |
|
335 | 335 | ), |
336 | 336 | 'default' => 'none', |
337 | 337 | ), |
338 | 338 | array( |
339 | - 'name' => __( 'Floating Labels', 'give' ), |
|
340 | - 'desc' => sprintf( __( 'Select the <a href="%s" target="_blank">floating labels</a> setting for this Give form.<br>Be aware that if you have the "Disable CSS" option enabled, you will need to style the floating labels yourself.', 'give' ), esc_url( "http://bradfrost.com/blog/post/float-label-pattern/" ) ), |
|
341 | - 'id' => $prefix . 'form_floating_labels', |
|
339 | + 'name' => __('Floating Labels', 'give'), |
|
340 | + 'desc' => sprintf(__('Select the <a href="%s" target="_blank">floating labels</a> setting for this Give form.<br>Be aware that if you have the "Disable CSS" option enabled, you will need to style the floating labels yourself.', 'give'), esc_url("http://bradfrost.com/blog/post/float-label-pattern/")), |
|
341 | + 'id' => $prefix.'form_floating_labels', |
|
342 | 342 | 'type' => 'select', |
343 | 343 | 'options' => array( |
344 | - '' => __( 'Use the global setting', 'give' ), |
|
345 | - 'enabled' => __( 'Enabled', 'give' ), |
|
346 | - 'disabled' => __( 'Disabled', 'give' ), |
|
344 | + '' => __('Use the global setting', 'give'), |
|
345 | + 'enabled' => __('Enabled', 'give'), |
|
346 | + 'disabled' => __('Disabled', 'give'), |
|
347 | 347 | ), |
348 | 348 | 'default' => 'none', |
349 | 349 | ) |
@@ -355,47 +355,47 @@ discard block |
||
355 | 355 | /** |
356 | 356 | * Terms & Conditions |
357 | 357 | */ |
358 | - $meta_boxes['form_terms_options'] = apply_filters( 'give_forms_terms_options', array( |
|
358 | + $meta_boxes['form_terms_options'] = apply_filters('give_forms_terms_options', array( |
|
359 | 359 | 'id' => 'form_terms_options', |
360 | - 'title' => __( 'Terms and Conditions', 'give' ), |
|
361 | - 'object_types' => array( 'give_forms' ), |
|
360 | + 'title' => __('Terms and Conditions', 'give'), |
|
361 | + 'object_types' => array('give_forms'), |
|
362 | 362 | 'context' => 'normal', |
363 | 363 | 'priority' => 'high', //Show above Content WYSIWYG |
364 | - 'fields' => apply_filters( 'give_forms_terms_options_metabox_fields', array( |
|
364 | + 'fields' => apply_filters('give_forms_terms_options_metabox_fields', array( |
|
365 | 365 | //Donation Option |
366 | 366 | array( |
367 | - 'name' => __( 'Terms and Conditions', 'give' ), |
|
368 | - 'description' => __( 'Do you want to require the user to agree to terms and conditions prior to being able to complete their donation?', 'give' ), |
|
369 | - 'id' => $prefix . 'terms_option', |
|
367 | + 'name' => __('Terms and Conditions', 'give'), |
|
368 | + 'description' => __('Do you want to require the user to agree to terms and conditions prior to being able to complete their donation?', 'give'), |
|
369 | + 'id' => $prefix.'terms_option', |
|
370 | 370 | 'type' => 'select', |
371 | - 'options' => apply_filters( 'give_forms_content_options_select', array( |
|
372 | - 'none' => __( 'No', 'give' ), |
|
373 | - 'yes' => __( 'Yes', 'give' ), |
|
371 | + 'options' => apply_filters('give_forms_content_options_select', array( |
|
372 | + 'none' => __('No', 'give'), |
|
373 | + 'yes' => __('Yes', 'give'), |
|
374 | 374 | ) |
375 | 375 | ), |
376 | 376 | 'default' => 'none', |
377 | 377 | ), |
378 | 378 | array( |
379 | - 'id' => $prefix . 'agree_label', |
|
380 | - 'name' => __( 'Agree to Terms Label', 'give' ), |
|
381 | - 'desc' => __( 'The label shown next to the agree to terms check box. Add your own to customize or leave blank to use the default text placeholder.', 'give' ), |
|
379 | + 'id' => $prefix.'agree_label', |
|
380 | + 'name' => __('Agree to Terms Label', 'give'), |
|
381 | + 'desc' => __('The label shown next to the agree to terms check box. Add your own to customize or leave blank to use the default text placeholder.', 'give'), |
|
382 | 382 | 'type' => 'text', |
383 | 383 | 'row_classes' => 'give-subfield', |
384 | 384 | 'size' => 'regular', |
385 | 385 | 'attributes' => array( |
386 | - 'placeholder' => __( 'Agree to Terms?', 'give' ), |
|
386 | + 'placeholder' => __('Agree to Terms?', 'give'), |
|
387 | 387 | ), |
388 | 388 | ), |
389 | 389 | array( |
390 | - 'id' => $prefix . 'agree_text', |
|
390 | + 'id' => $prefix.'agree_text', |
|
391 | 391 | 'row_classes' => 'give-subfield', |
392 | - 'name' => __( 'Agreement Text', 'give' ), |
|
393 | - 'desc' => __( 'This is the actual text which the user will have to agree to in order to make a donation.', 'give' ), |
|
392 | + 'name' => __('Agreement Text', 'give'), |
|
393 | + 'desc' => __('This is the actual text which the user will have to agree to in order to make a donation.', 'give'), |
|
394 | 394 | 'type' => 'wysiwyg' |
395 | 395 | ), |
396 | 396 | ) |
397 | 397 | ) |
398 | - ) ); |
|
398 | + )); |
|
399 | 399 | |
400 | 400 | return $meta_boxes; |
401 | 401 | |
@@ -409,18 +409,18 @@ discard block |
||
409 | 409 | |
410 | 410 | <div class="table-container"> |
411 | 411 | <div class="table-row"> |
412 | - <div class="table-cell col-amount"><?php _e( 'Amount', 'give' ); ?></div> |
|
413 | - <div class="table-cell col-text"><?php _e( 'Text', 'give' ); ?></div> |
|
414 | - <div class="table-cell col-default"><?php _e( 'Default', 'give' ); ?></div> |
|
415 | - <?php do_action( 'give_donation_levels_table_head' ); ?> |
|
416 | - <div class="table-cell col-sort"><?php _e( 'Sort', 'give' ); ?></div> |
|
412 | + <div class="table-cell col-amount"><?php _e('Amount', 'give'); ?></div> |
|
413 | + <div class="table-cell col-text"><?php _e('Text', 'give'); ?></div> |
|
414 | + <div class="table-cell col-default"><?php _e('Default', 'give'); ?></div> |
|
415 | + <?php do_action('give_donation_levels_table_head'); ?> |
|
416 | + <div class="table-cell col-sort"><?php _e('Sort', 'give'); ?></div> |
|
417 | 417 | |
418 | 418 | </div> |
419 | 419 | </div> |
420 | 420 | |
421 | 421 | <?php |
422 | 422 | } |
423 | -add_action( 'cmb2_render_levels_repeater_header', 'give_cmb_render_levels_repeater_header', 10 ); |
|
423 | +add_action('cmb2_render_levels_repeater_header', 'give_cmb_render_levels_repeater_header', 10); |
|
424 | 424 | |
425 | 425 | |
426 | 426 | /** |
@@ -437,24 +437,24 @@ discard block |
||
437 | 437 | * @param $object_type |
438 | 438 | * @param $field_type_object |
439 | 439 | */ |
440 | -function give_cmb_render_levels_id( $field_object, $escaped_value, $object_id, $object_type, $field_type_object ) { |
|
440 | +function give_cmb_render_levels_id($field_object, $escaped_value, $object_id, $object_type, $field_type_object) { |
|
441 | 441 | |
442 | - $escaped_value = ( isset( $escaped_value['level_id'] ) ? $escaped_value['level_id'] : '' ); |
|
442 | + $escaped_value = (isset($escaped_value['level_id']) ? $escaped_value['level_id'] : ''); |
|
443 | 443 | |
444 | 444 | $field_options_array = array( |
445 | 445 | 'class' => 'give-hidden give-level-id-input', |
446 | - 'name' => $field_type_object->_name( '[level_id]' ), |
|
447 | - 'id' => $field_type_object->_id( '_level_id' ), |
|
446 | + 'name' => $field_type_object->_name('[level_id]'), |
|
447 | + 'id' => $field_type_object->_id('_level_id'), |
|
448 | 448 | 'value' => $escaped_value, |
449 | 449 | 'type' => 'number', |
450 | 450 | 'desc' => '', |
451 | 451 | ); |
452 | 452 | |
453 | - echo '<p class="give-level-id">' . $escaped_value . '</p>'; |
|
454 | - echo $field_type_object->input( $field_options_array ); |
|
453 | + echo '<p class="give-level-id">'.$escaped_value.'</p>'; |
|
454 | + echo $field_type_object->input($field_options_array); |
|
455 | 455 | |
456 | 456 | } |
457 | -add_action( 'cmb2_render_levels_id', 'give_cmb_render_levels_id', 10, 5 ); |
|
457 | +add_action('cmb2_render_levels_id', 'give_cmb_render_levels_id', 10, 5); |
|
458 | 458 | |
459 | 459 | |
460 | 460 | /** |
@@ -466,13 +466,13 @@ discard block |
||
466 | 466 | * @param $object_type |
467 | 467 | * @param $field_type_object |
468 | 468 | */ |
469 | -function give_cmb_give_default_radio_inline( $field_object, $escaped_value, $object_id, $object_type, $field_type_object ) { |
|
470 | - echo '<input type="radio" class="cmb2-option donation-level-radio" name="' . $field_object->args['_name'] . '" id="' . $field_object->args['id'] . '" value="default" ' . checked( 'default', $escaped_value, false ) . '>'; |
|
471 | - echo '<label for="' . $field_object->args['id'] . '">Default</label>'; |
|
469 | +function give_cmb_give_default_radio_inline($field_object, $escaped_value, $object_id, $object_type, $field_type_object) { |
|
470 | + echo '<input type="radio" class="cmb2-option donation-level-radio" name="'.$field_object->args['_name'].'" id="'.$field_object->args['id'].'" value="default" '.checked('default', $escaped_value, false).'>'; |
|
471 | + echo '<label for="'.$field_object->args['id'].'">Default</label>'; |
|
472 | 472 | |
473 | 473 | } |
474 | 474 | |
475 | -add_action( 'cmb2_render_give_default_radio_inline', 'give_cmb_give_default_radio_inline', 10, 5 ); |
|
475 | +add_action('cmb2_render_give_default_radio_inline', 'give_cmb_give_default_radio_inline', 10, 5); |
|
476 | 476 | |
477 | 477 | |
478 | 478 | /** |
@@ -482,20 +482,20 @@ discard block |
||
482 | 482 | */ |
483 | 483 | function give_add_shortcode_to_publish_metabox() { |
484 | 484 | |
485 | - if ( 'give_forms' !== get_post_type() ) { |
|
485 | + if ('give_forms' !== get_post_type()) { |
|
486 | 486 | return false; |
487 | 487 | } |
488 | 488 | |
489 | 489 | global $post; |
490 | 490 | |
491 | 491 | //Only enqueue scripts for CPT on post type screen |
492 | - if ( 'give_forms' === $post->post_type ) { |
|
492 | + if ('give_forms' === $post->post_type) { |
|
493 | 493 | //Shortcode column with select all input |
494 | - $shortcode = htmlentities( '[give_form id="' . $post->ID . '"]' ); |
|
495 | - echo '<div class="shortcode-wrap box-sizing"><label>' . __( 'Give Form Shortcode:', 'give' ) . '</label><input onClick="this.setSelectionRange(0, this.value.length)" type="text" class="shortcode-input" readonly value="' . $shortcode . '"></div>'; |
|
494 | + $shortcode = htmlentities('[give_form id="'.$post->ID.'"]'); |
|
495 | + echo '<div class="shortcode-wrap box-sizing"><label>'.__('Give Form Shortcode:', 'give').'</label><input onClick="this.setSelectionRange(0, this.value.length)" type="text" class="shortcode-input" readonly value="'.$shortcode.'"></div>'; |
|
496 | 496 | |
497 | 497 | } |
498 | 498 | |
499 | 499 | } |
500 | 500 | |
501 | -add_action( 'post_submitbox_misc_actions', 'give_add_shortcode_to_publish_metabox' ); |
|
501 | +add_action('post_submitbox_misc_actions', 'give_add_shortcode_to_publish_metabox'); |