@@ -6,7 +6,7 @@ discard block |
||
| 6 | 6 | * Please use GetPaid_Notification_Email_Sender |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -defined( 'ABSPATH' ) || exit; |
|
| 9 | +defined('ABSPATH') || exit; |
|
| 10 | 10 | |
| 11 | 11 | /* |
| 12 | 12 | |-------------------------------------------------------------------------- |
@@ -17,19 +17,19 @@ discard block |
||
| 17 | 17 | /** |
| 18 | 18 | * Generates the email header. |
| 19 | 19 | */ |
| 20 | -function wpinv_email_header( $email_heading ) { |
|
| 21 | - wpinv_get_template( 'emails/wpinv-email-header.php', compact( 'email_heading' ) ); |
|
| 20 | +function wpinv_email_header($email_heading) { |
|
| 21 | + wpinv_get_template('emails/wpinv-email-header.php', compact('email_heading')); |
|
| 22 | 22 | } |
| 23 | -add_action( 'wpinv_email_header', 'wpinv_email_header' ); |
|
| 23 | +add_action('wpinv_email_header', 'wpinv_email_header'); |
|
| 24 | 24 | |
| 25 | 25 | |
| 26 | 26 | /** |
| 27 | 27 | * Generates the email footer. |
| 28 | 28 | */ |
| 29 | 29 | function wpinv_email_footer() { |
| 30 | - wpinv_get_template( 'emails/wpinv-email-footer.php' ); |
|
| 30 | + wpinv_get_template('emails/wpinv-email-footer.php'); |
|
| 31 | 31 | } |
| 32 | -add_action( 'wpinv_email_footer', 'wpinv_email_footer' ); |
|
| 32 | +add_action('wpinv_email_footer', 'wpinv_email_footer'); |
|
| 33 | 33 | |
| 34 | 34 | |
| 35 | 35 | /** |
@@ -39,13 +39,13 @@ discard block |
||
| 39 | 39 | * @param string $email_type |
| 40 | 40 | * @param bool $sent_to_admin |
| 41 | 41 | */ |
| 42 | -function wpinv_email_invoice_details( $invoice, $email_type, $sent_to_admin ) { |
|
| 42 | +function wpinv_email_invoice_details($invoice, $email_type, $sent_to_admin) { |
|
| 43 | 43 | |
| 44 | - $args = compact( 'invoice', 'email_type', 'sent_to_admin' ); |
|
| 45 | - wpinv_get_template( 'emails/invoice-details.php', $args ); |
|
| 44 | + $args = compact('invoice', 'email_type', 'sent_to_admin'); |
|
| 45 | + wpinv_get_template('emails/invoice-details.php', $args); |
|
| 46 | 46 | |
| 47 | 47 | } |
| 48 | -add_action( 'wpinv_email_invoice_details', 'wpinv_email_invoice_details', 10, 3 ); |
|
| 48 | +add_action('wpinv_email_invoice_details', 'wpinv_email_invoice_details', 10, 3); |
|
| 49 | 49 | |
| 50 | 50 | /** |
| 51 | 51 | * Display line items in emails. |
@@ -54,17 +54,17 @@ discard block |
||
| 54 | 54 | * @param string $email_type |
| 55 | 55 | * @param bool $sent_to_admin |
| 56 | 56 | */ |
| 57 | -function wpinv_email_invoice_items( $invoice, $email_type, $sent_to_admin ) { |
|
| 57 | +function wpinv_email_invoice_items($invoice, $email_type, $sent_to_admin) { |
|
| 58 | 58 | |
| 59 | 59 | // Prepare line items. |
| 60 | - $columns = getpaid_invoice_item_columns( $invoice ); |
|
| 61 | - $columns = apply_filters( 'getpaid_invoice_line_items_table_columns', $columns, $invoice ); |
|
| 60 | + $columns = getpaid_invoice_item_columns($invoice); |
|
| 61 | + $columns = apply_filters('getpaid_invoice_line_items_table_columns', $columns, $invoice); |
|
| 62 | 62 | |
| 63 | 63 | // Load the template. |
| 64 | - wpinv_get_template( 'emails/invoice-items.php', compact( 'invoice', 'columns', 'email_type', 'sent_to_admin' ) ); |
|
| 64 | + wpinv_get_template('emails/invoice-items.php', compact('invoice', 'columns', 'email_type', 'sent_to_admin')); |
|
| 65 | 65 | |
| 66 | 66 | } |
| 67 | -add_action( 'wpinv_email_invoice_items', 'wpinv_email_invoice_items', 10, 3 ); |
|
| 67 | +add_action('wpinv_email_invoice_items', 'wpinv_email_invoice_items', 10, 3); |
|
| 68 | 68 | |
| 69 | 69 | |
| 70 | 70 | /** |
@@ -74,13 +74,13 @@ discard block |
||
| 74 | 74 | * @param string $email_type |
| 75 | 75 | * @param bool $sent_to_admin |
| 76 | 76 | */ |
| 77 | -function wpinv_email_billing_details( $invoice, $email_type, $sent_to_admin ) { |
|
| 77 | +function wpinv_email_billing_details($invoice, $email_type, $sent_to_admin) { |
|
| 78 | 78 | |
| 79 | - $args = compact( 'invoice', 'email_type', 'sent_to_admin' ); |
|
| 80 | - wpinv_get_template( 'emails/wpinv-email-billing-details.php', $args ); |
|
| 79 | + $args = compact('invoice', 'email_type', 'sent_to_admin'); |
|
| 80 | + wpinv_get_template('emails/wpinv-email-billing-details.php', $args); |
|
| 81 | 81 | |
| 82 | 82 | } |
| 83 | -add_action( 'wpinv_email_billing_details', 'wpinv_email_billing_details', 10, 3 ); |
|
| 83 | +add_action('wpinv_email_billing_details', 'wpinv_email_billing_details', 10, 3); |
|
| 84 | 84 | |
| 85 | 85 | /** |
| 86 | 86 | * Returns email css. |
@@ -88,8 +88,8 @@ discard block |
||
| 88 | 88 | */ |
| 89 | 89 | function getpaid_get_email_css() { |
| 90 | 90 | |
| 91 | - $css = wpinv_get_template_html( 'emails/wpinv-email-styles.php' ); |
|
| 92 | - return apply_filters( 'wpinv_email_styles', $css ); |
|
| 91 | + $css = wpinv_get_template_html('emails/wpinv-email-styles.php'); |
|
| 92 | + return apply_filters('wpinv_email_styles', $css); |
|
| 93 | 93 | |
| 94 | 94 | } |
| 95 | 95 | |
@@ -100,26 +100,26 @@ discard block |
||
| 100 | 100 | * @return string |
| 101 | 101 | * |
| 102 | 102 | */ |
| 103 | -function wpinv_email_style_body( $content ) { |
|
| 103 | +function wpinv_email_style_body($content) { |
|
| 104 | 104 | |
| 105 | - if ( ! class_exists( 'DOMDocument' ) ) { |
|
| 105 | + if (!class_exists('DOMDocument')) { |
|
| 106 | 106 | return $content; |
| 107 | 107 | } |
| 108 | 108 | |
| 109 | 109 | $css = getpaid_get_email_css(); |
| 110 | 110 | |
| 111 | 111 | // include css inliner |
| 112 | - if ( ! class_exists( 'Emogrifier' ) ) { |
|
| 112 | + if (!class_exists('Emogrifier')) { |
|
| 113 | 113 | include_once WPINV_PLUGIN_DIR . 'includes/libraries/class-emogrifier.php'; |
| 114 | 114 | } |
| 115 | 115 | |
| 116 | 116 | // Inline the css. |
| 117 | 117 | try { |
| 118 | - $emogrifier = new Emogrifier( $content, $css ); |
|
| 118 | + $emogrifier = new Emogrifier($content, $css); |
|
| 119 | 119 | $_content = $emogrifier->emogrify(); |
| 120 | 120 | $content = $_content; |
| 121 | - } catch ( Exception $e ) { |
|
| 122 | - wpinv_error_log( $e->getMessage(), 'emogrifier' ); |
|
| 121 | + } catch (Exception $e) { |
|
| 122 | + wpinv_error_log($e->getMessage(), 'emogrifier'); |
|
| 123 | 123 | } |
| 124 | 124 | |
| 125 | 125 | return $content; |
@@ -128,37 +128,37 @@ discard block |
||
| 128 | 128 | |
| 129 | 129 | // Backwards compatibility. |
| 130 | 130 | function wpinv_init_transactional_emails() { |
| 131 | - foreach ( apply_filters( 'wpinv_email_actions', array() ) as $action ) { |
|
| 132 | - add_action( $action, 'wpinv_send_transactional_email', 10, 10 ); |
|
| 131 | + foreach (apply_filters('wpinv_email_actions', array()) as $action) { |
|
| 132 | + add_action($action, 'wpinv_send_transactional_email', 10, 10); |
|
| 133 | 133 | } |
| 134 | 134 | } |
| 135 | -add_action( 'init', 'wpinv_init_transactional_emails' ); |
|
| 135 | +add_action('init', 'wpinv_init_transactional_emails'); |
|
| 136 | 136 | |
| 137 | 137 | function wpinv_send_transactional_email() { |
| 138 | 138 | $args = func_get_args(); |
| 139 | 139 | $function = current_filter() . '_notification'; |
| 140 | - do_action_ref_array( $function, $args ); |
|
| 140 | + do_action_ref_array($function, $args); |
|
| 141 | 141 | } |
| 142 | 142 | |
| 143 | 143 | function wpinv_mail_get_from_address() { |
| 144 | - $from_address = apply_filters( 'wpinv_mail_from_address', wpinv_get_option( 'email_from', get_option( 'admin_email' ) ) ); |
|
| 145 | - return sanitize_email( $from_address ); |
|
| 144 | + $from_address = apply_filters('wpinv_mail_from_address', wpinv_get_option('email_from', get_option('admin_email'))); |
|
| 145 | + return sanitize_email($from_address); |
|
| 146 | 146 | } |
| 147 | 147 | |
| 148 | 148 | function wpinv_mail_get_from_name() { |
| 149 | - $from_name = apply_filters( 'wpinv_mail_from_name', wpinv_get_option( 'email_from_name', get_bloginfo( 'name', 'display' ) ) ); |
|
| 150 | - return wp_specialchars_decode( esc_html( $from_name ), ENT_QUOTES ); |
|
| 149 | + $from_name = apply_filters('wpinv_mail_from_name', wpinv_get_option('email_from_name', get_bloginfo('name', 'display'))); |
|
| 150 | + return wp_specialchars_decode(esc_html($from_name), ENT_QUOTES); |
|
| 151 | 151 | } |
| 152 | 152 | |
| 153 | -function wpinv_mail_admin_bcc_active( $mail_type = '' ) { |
|
| 154 | - $active = apply_filters( 'wpinv_mail_admin_bcc_active', wpinv_get_option( 'email_' . $mail_type . '_admin_bcc' ) ); |
|
| 155 | - return ( $active ? true : false ); |
|
| 153 | +function wpinv_mail_admin_bcc_active($mail_type = '') { |
|
| 154 | + $active = apply_filters('wpinv_mail_admin_bcc_active', wpinv_get_option('email_' . $mail_type . '_admin_bcc')); |
|
| 155 | + return ($active ? true : false); |
|
| 156 | 156 | } |
| 157 | 157 | |
| 158 | -function wpinv_mail_get_content_type( $content_type = 'text/html', $email_type = 'html' ) { |
|
| 159 | - $email_type = apply_filters( 'wpinv_mail_content_type', $email_type ); |
|
| 158 | +function wpinv_mail_get_content_type($content_type = 'text/html', $email_type = 'html') { |
|
| 159 | + $email_type = apply_filters('wpinv_mail_content_type', $email_type); |
|
| 160 | 160 | |
| 161 | - switch ( $email_type ) { |
|
| 161 | + switch ($email_type) { |
|
| 162 | 162 | case 'html': |
| 163 | 163 | $content_type = 'text/html'; |
| 164 | 164 | break; |
@@ -183,11 +183,11 @@ discard block |
||
| 183 | 183 | * @param array $attachments Any files to attach to the email. |
| 184 | 184 | * @param string|array $cc An email or array of extra emails to send a copy of the email to. |
| 185 | 185 | */ |
| 186 | -function wpinv_mail_send( $to, $subject, $message, $deprecated, $attachments = array(), $cc = array() ) { |
|
| 186 | +function wpinv_mail_send($to, $subject, $message, $deprecated, $attachments = array(), $cc = array()) { |
|
| 187 | 187 | |
| 188 | 188 | $mailer = new GetPaid_Notification_Email_Sender(); |
| 189 | - $message = wpinv_email_style_body( $message ); |
|
| 190 | - $to = array_merge( wpinv_parse_list( $to ), wpinv_parse_list( $cc ) ); |
|
| 189 | + $message = wpinv_email_style_body($message); |
|
| 190 | + $to = array_merge(wpinv_parse_list($to), wpinv_parse_list($cc)); |
|
| 191 | 191 | |
| 192 | 192 | return $mailer->send( |
| 193 | 193 | $to, |
@@ -204,7 +204,7 @@ discard block |
||
| 204 | 204 | * @return array |
| 205 | 205 | */ |
| 206 | 206 | function wpinv_get_emails() { |
| 207 | - return apply_filters( 'wpinv_get_emails', wpinv_get_data( 'email-settings' ) ); |
|
| 207 | + return apply_filters('wpinv_get_emails', wpinv_get_data('email-settings')); |
|
| 208 | 208 | } |
| 209 | 209 | |
| 210 | 210 | /** |
@@ -213,172 +213,172 @@ discard block |
||
| 213 | 213 | * @param array $settings |
| 214 | 214 | * @return array |
| 215 | 215 | */ |
| 216 | -function wpinv_settings_emails( $settings = array() ) { |
|
| 217 | - $settings = array_merge( $settings, wpinv_get_emails() ); |
|
| 218 | - return apply_filters( 'wpinv_settings_get_emails', $settings ); |
|
| 216 | +function wpinv_settings_emails($settings = array()) { |
|
| 217 | + $settings = array_merge($settings, wpinv_get_emails()); |
|
| 218 | + return apply_filters('wpinv_settings_get_emails', $settings); |
|
| 219 | 219 | } |
| 220 | -add_filter( 'wpinv_settings_emails', 'wpinv_settings_emails', 10, 1 ); |
|
| 220 | +add_filter('wpinv_settings_emails', 'wpinv_settings_emails', 10, 1); |
|
| 221 | 221 | |
| 222 | 222 | /** |
| 223 | 223 | * Filter email section names. |
| 224 | 224 | * |
| 225 | 225 | */ |
| 226 | -function wpinv_settings_sections_emails( $settings ) { |
|
| 227 | - foreach ( wpinv_get_emails() as $key => $email ) { |
|
| 228 | - $settings[ $key ] = ! empty( $email[ 'email_' . $key . '_header' ]['name'] ) ? strip_tags( $email[ 'email_' . $key . '_header' ]['name'] ) : strip_tags( $key ); |
|
| 226 | +function wpinv_settings_sections_emails($settings) { |
|
| 227 | + foreach (wpinv_get_emails() as $key => $email) { |
|
| 228 | + $settings[$key] = !empty($email['email_' . $key . '_header']['name']) ? strip_tags($email['email_' . $key . '_header']['name']) : strip_tags($key); |
|
| 229 | 229 | } |
| 230 | 230 | |
| 231 | 231 | return $settings; |
| 232 | 232 | } |
| 233 | -add_filter( 'wpinv_settings_sections_emails', 'wpinv_settings_sections_emails', 10, 1 ); |
|
| 233 | +add_filter('wpinv_settings_sections_emails', 'wpinv_settings_sections_emails', 10, 1); |
|
| 234 | 234 | |
| 235 | -function wpinv_email_is_enabled( $email_type ) { |
|
| 235 | +function wpinv_email_is_enabled($email_type) { |
|
| 236 | 236 | $emails = wpinv_get_emails(); |
| 237 | - $enabled = isset( $emails[ $email_type ] ) && wpinv_get_option( 'email_' . $email_type . '_active', 0 ) ? true : false; |
|
| 237 | + $enabled = isset($emails[$email_type]) && wpinv_get_option('email_' . $email_type . '_active', 0) ? true : false; |
|
| 238 | 238 | |
| 239 | - return apply_filters( 'wpinv_email_is_enabled', $enabled, $email_type ); |
|
| 239 | + return apply_filters('wpinv_email_is_enabled', $enabled, $email_type); |
|
| 240 | 240 | } |
| 241 | 241 | |
| 242 | -function wpinv_email_get_recipient( $email_type = '', $invoice_id = 0, $invoice = array() ) { |
|
| 243 | - switch ( $email_type ) { |
|
| 242 | +function wpinv_email_get_recipient($email_type = '', $invoice_id = 0, $invoice = array()) { |
|
| 243 | + switch ($email_type) { |
|
| 244 | 244 | case 'new_invoice': |
| 245 | 245 | case 'cancelled_invoice': |
| 246 | 246 | case 'failed_invoice': |
| 247 | 247 | $recipient = wpinv_get_admin_email(); |
| 248 | 248 | break; |
| 249 | 249 | default: |
| 250 | - $invoice = ! empty( $invoice ) && is_object( $invoice ) ? $invoice : ( $invoice_id > 0 ? wpinv_get_invoice( $invoice_id ) : null ); |
|
| 251 | - $recipient = ! empty( $invoice ) ? $invoice->get_email() : ''; |
|
| 250 | + $invoice = !empty($invoice) && is_object($invoice) ? $invoice : ($invoice_id > 0 ? wpinv_get_invoice($invoice_id) : null); |
|
| 251 | + $recipient = !empty($invoice) ? $invoice->get_email() : ''; |
|
| 252 | 252 | break; |
| 253 | 253 | } |
| 254 | 254 | |
| 255 | - return apply_filters( 'wpinv_email_recipient', $recipient, $email_type, $invoice_id, $invoice ); |
|
| 255 | + return apply_filters('wpinv_email_recipient', $recipient, $email_type, $invoice_id, $invoice); |
|
| 256 | 256 | } |
| 257 | 257 | |
| 258 | 258 | /** |
| 259 | 259 | * Returns invoice CC recipients |
| 260 | 260 | */ |
| 261 | -function wpinv_email_get_cc_recipients( $email_type = '', $invoice_id = 0, $invoice = array() ) { |
|
| 262 | - switch ( $email_type ) { |
|
| 261 | +function wpinv_email_get_cc_recipients($email_type = '', $invoice_id = 0, $invoice = array()) { |
|
| 262 | + switch ($email_type) { |
|
| 263 | 263 | case 'new_invoice': |
| 264 | 264 | case 'cancelled_invoice': |
| 265 | 265 | case 'failed_invoice': |
| 266 | 266 | return array(); |
| 267 | 267 | break; |
| 268 | 268 | default: |
| 269 | - $invoice = ! empty( $invoice ) && is_object( $invoice ) ? $invoice : ( $invoice_id > 0 ? wpinv_get_invoice( $invoice_id ) : null ); |
|
| 270 | - $recipient = empty( $invoice ) ? '' : get_post_meta( $invoice->ID, 'wpinv_email_cc', true ); |
|
| 271 | - if ( empty( $recipient ) ) { |
|
| 269 | + $invoice = !empty($invoice) && is_object($invoice) ? $invoice : ($invoice_id > 0 ? wpinv_get_invoice($invoice_id) : null); |
|
| 270 | + $recipient = empty($invoice) ? '' : get_post_meta($invoice->ID, 'wpinv_email_cc', true); |
|
| 271 | + if (empty($recipient)) { |
|
| 272 | 272 | return array(); |
| 273 | 273 | } |
| 274 | - return array_filter( array_map( 'trim', explode( ',', $recipient ) ) ); |
|
| 274 | + return array_filter(array_map('trim', explode(',', $recipient))); |
|
| 275 | 275 | break; |
| 276 | 276 | } |
| 277 | 277 | |
| 278 | 278 | } |
| 279 | 279 | |
| 280 | -function wpinv_email_get_subject( $email_type = '', $invoice_id = 0, $invoice = array() ) { |
|
| 281 | - $subject = wpinv_get_option( 'email_' . $email_type . '_subject' ); |
|
| 282 | - $subject = __( $subject, 'invoicing' ); |
|
| 280 | +function wpinv_email_get_subject($email_type = '', $invoice_id = 0, $invoice = array()) { |
|
| 281 | + $subject = wpinv_get_option('email_' . $email_type . '_subject'); |
|
| 282 | + $subject = __($subject, 'invoicing'); |
|
| 283 | 283 | |
| 284 | - $subject = wpinv_email_format_text( $subject, $invoice ); |
|
| 284 | + $subject = wpinv_email_format_text($subject, $invoice); |
|
| 285 | 285 | |
| 286 | - return apply_filters( 'wpinv_email_subject', $subject, $email_type, $invoice_id, $invoice ); |
|
| 286 | + return apply_filters('wpinv_email_subject', $subject, $email_type, $invoice_id, $invoice); |
|
| 287 | 287 | } |
| 288 | 288 | |
| 289 | -function wpinv_email_get_heading( $email_type = '', $invoice_id = 0, $invoice = array() ) { |
|
| 290 | - $email_heading = wpinv_get_option( 'email_' . $email_type . '_heading' ); |
|
| 291 | - $email_heading = __( $email_heading, 'invoicing' ); |
|
| 289 | +function wpinv_email_get_heading($email_type = '', $invoice_id = 0, $invoice = array()) { |
|
| 290 | + $email_heading = wpinv_get_option('email_' . $email_type . '_heading'); |
|
| 291 | + $email_heading = __($email_heading, 'invoicing'); |
|
| 292 | 292 | |
| 293 | - $email_heading = wpinv_email_format_text( $email_heading, $invoice ); |
|
| 293 | + $email_heading = wpinv_email_format_text($email_heading, $invoice); |
|
| 294 | 294 | |
| 295 | - return apply_filters( 'wpinv_email_heading', $email_heading, $email_type, $invoice_id, $invoice ); |
|
| 295 | + return apply_filters('wpinv_email_heading', $email_heading, $email_type, $invoice_id, $invoice); |
|
| 296 | 296 | } |
| 297 | 297 | |
| 298 | -function wpinv_email_get_content( $email_type = '', $invoice_id = 0, $invoice = array() ) { |
|
| 299 | - $content = wpinv_get_option( 'email_' . $email_type . '_body' ); |
|
| 300 | - $content = __( $content, 'invoicing' ); |
|
| 298 | +function wpinv_email_get_content($email_type = '', $invoice_id = 0, $invoice = array()) { |
|
| 299 | + $content = wpinv_get_option('email_' . $email_type . '_body'); |
|
| 300 | + $content = __($content, 'invoicing'); |
|
| 301 | 301 | |
| 302 | - $content = wpinv_email_format_text( $content, $invoice ); |
|
| 302 | + $content = wpinv_email_format_text($content, $invoice); |
|
| 303 | 303 | |
| 304 | - return apply_filters( 'wpinv_email_content', $content, $email_type, $invoice_id, $invoice ); |
|
| 304 | + return apply_filters('wpinv_email_content', $content, $email_type, $invoice_id, $invoice); |
|
| 305 | 305 | } |
| 306 | 306 | |
| 307 | -function wpinv_email_get_headers( $email_type = '', $invoice_id = 0, $invoice = array() ) { |
|
| 307 | +function wpinv_email_get_headers($email_type = '', $invoice_id = 0, $invoice = array()) { |
|
| 308 | 308 | $from_name = wpinv_mail_get_from_address(); |
| 309 | 309 | $from_email = wpinv_mail_get_from_address(); |
| 310 | 310 | |
| 311 | - $invoice = ! empty( $invoice ) && is_object( $invoice ) ? $invoice : ( $invoice_id > 0 ? wpinv_get_invoice( $invoice_id ) : null ); |
|
| 311 | + $invoice = !empty($invoice) && is_object($invoice) ? $invoice : ($invoice_id > 0 ? wpinv_get_invoice($invoice_id) : null); |
|
| 312 | 312 | |
| 313 | - $headers = 'From: ' . stripslashes_deep( html_entity_decode( $from_name, ENT_COMPAT, 'UTF-8' ) ) . " <$from_email>\r\n"; |
|
| 313 | + $headers = 'From: ' . stripslashes_deep(html_entity_decode($from_name, ENT_COMPAT, 'UTF-8')) . " <$from_email>\r\n"; |
|
| 314 | 314 | $headers .= 'Reply-To: ' . $from_email . "\r\n"; |
| 315 | 315 | $headers .= 'Content-Type: ' . wpinv_mail_get_content_type() . "\r\n"; |
| 316 | 316 | |
| 317 | - return apply_filters( 'wpinv_email_headers', $headers, $email_type, $invoice_id, $invoice ); |
|
| 317 | + return apply_filters('wpinv_email_headers', $headers, $email_type, $invoice_id, $invoice); |
|
| 318 | 318 | } |
| 319 | 319 | |
| 320 | -function wpinv_email_get_attachments( $email_type = '', $invoice_id = 0, $invoice = array() ) { |
|
| 320 | +function wpinv_email_get_attachments($email_type = '', $invoice_id = 0, $invoice = array()) { |
|
| 321 | 321 | $attachments = array(); |
| 322 | 322 | |
| 323 | - return apply_filters( 'wpinv_email_attachments', $attachments, $email_type, $invoice_id, $invoice ); |
|
| 323 | + return apply_filters('wpinv_email_attachments', $attachments, $email_type, $invoice_id, $invoice); |
|
| 324 | 324 | } |
| 325 | 325 | |
| 326 | 326 | /** |
| 327 | 327 | * Searches for and replaces certain placeholders in an email. |
| 328 | 328 | */ |
| 329 | -function wpinv_email_format_text( $content, $invoice ) { |
|
| 329 | +function wpinv_email_format_text($content, $invoice) { |
|
| 330 | 330 | |
| 331 | 331 | $replace_array = array( |
| 332 | 332 | '{site_title}' => wpinv_get_blogname(), |
| 333 | - '{date}' => getpaid_format_date( current_time( 'mysql' ) ), |
|
| 333 | + '{date}' => getpaid_format_date(current_time('mysql')), |
|
| 334 | 334 | ); |
| 335 | 335 | |
| 336 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 336 | + $invoice = new WPInv_Invoice($invoice); |
|
| 337 | 337 | |
| 338 | - if ( $invoice->get_id() ) { |
|
| 338 | + if ($invoice->get_id()) { |
|
| 339 | 339 | |
| 340 | 340 | $replace_array = array_merge( |
| 341 | 341 | $replace_array, |
| 342 | 342 | array( |
| 343 | - '{name}' => sanitize_text_field( $invoice->get_user_full_name() ), |
|
| 344 | - '{full_name}' => sanitize_text_field( $invoice->get_user_full_name() ), |
|
| 345 | - '{first_name}' => sanitize_text_field( $invoice->get_first_name() ), |
|
| 346 | - '{last_name}' => sanitize_text_field( $invoice->get_last_name() ), |
|
| 347 | - '{email}' => sanitize_email( $invoice->get_email() ), |
|
| 348 | - '{invoice_number}' => sanitize_text_field( $invoice->get_number() ), |
|
| 349 | - '{invoice_total}' => sanitize_text_field( wpinv_price( $invoice->get_total( true ), $invoice->get_currency() ) ), |
|
| 350 | - '{invoice_link}' => esc_url( $invoice->get_view_url() ), |
|
| 351 | - '{invoice_pay_link}' => esc_url( $invoice->get_checkout_payment_url() ), |
|
| 352 | - '{invoice_date}' => date( get_option( 'date_format' ), strtotime( $invoice->get_date_created(), current_time( 'timestamp' ) ) ), |
|
| 353 | - '{invoice_due_date}' => date( get_option( 'date_format' ), strtotime( $invoice->get_due_date(), current_time( 'timestamp' ) ) ), |
|
| 354 | - '{invoice_quote}' => sanitize_text_field( $invoice->get_invoice_quote_type() ), |
|
| 355 | - '{invoice_label}' => sanitize_text_field( ucfirst( $invoice->get_invoice_quote_type() ) ), |
|
| 356 | - '{is_was}' => strtotime( $invoice->get_due_date() ) < current_time( 'timestamp' ) ? __( 'was', 'invoicing' ) : __( 'is', 'invoicing' ), |
|
| 343 | + '{name}' => sanitize_text_field($invoice->get_user_full_name()), |
|
| 344 | + '{full_name}' => sanitize_text_field($invoice->get_user_full_name()), |
|
| 345 | + '{first_name}' => sanitize_text_field($invoice->get_first_name()), |
|
| 346 | + '{last_name}' => sanitize_text_field($invoice->get_last_name()), |
|
| 347 | + '{email}' => sanitize_email($invoice->get_email()), |
|
| 348 | + '{invoice_number}' => sanitize_text_field($invoice->get_number()), |
|
| 349 | + '{invoice_total}' => sanitize_text_field(wpinv_price($invoice->get_total(true), $invoice->get_currency())), |
|
| 350 | + '{invoice_link}' => esc_url($invoice->get_view_url()), |
|
| 351 | + '{invoice_pay_link}' => esc_url($invoice->get_checkout_payment_url()), |
|
| 352 | + '{invoice_date}' => date(get_option('date_format'), strtotime($invoice->get_date_created(), current_time('timestamp'))), |
|
| 353 | + '{invoice_due_date}' => date(get_option('date_format'), strtotime($invoice->get_due_date(), current_time('timestamp'))), |
|
| 354 | + '{invoice_quote}' => sanitize_text_field($invoice->get_invoice_quote_type()), |
|
| 355 | + '{invoice_label}' => sanitize_text_field(ucfirst($invoice->get_invoice_quote_type())), |
|
| 356 | + '{is_was}' => strtotime($invoice->get_due_date()) < current_time('timestamp') ? __('was', 'invoicing') : __('is', 'invoicing'), |
|
| 357 | 357 | ) |
| 358 | 358 | ); |
| 359 | 359 | |
| 360 | 360 | } |
| 361 | 361 | |
| 362 | 362 | // Let third party plugins filter the arra. |
| 363 | - $replace_array = apply_filters( 'wpinv_email_format_text', $replace_array, $content, $invoice ); |
|
| 363 | + $replace_array = apply_filters('wpinv_email_format_text', $replace_array, $content, $invoice); |
|
| 364 | 364 | |
| 365 | - foreach ( $replace_array as $key => $value ) { |
|
| 366 | - $content = str_replace( $key, $value, $content ); |
|
| 365 | + foreach ($replace_array as $key => $value) { |
|
| 366 | + $content = str_replace($key, $value, $content); |
|
| 367 | 367 | } |
| 368 | 368 | |
| 369 | - return apply_filters( 'wpinv_email_content_replace', $content ); |
|
| 369 | + return apply_filters('wpinv_email_content_replace', $content); |
|
| 370 | 370 | } |
| 371 | 371 | |
| 372 | 372 | |
| 373 | -function wpinv_email_wrap_message( $message ) { |
|
| 373 | +function wpinv_email_wrap_message($message) { |
|
| 374 | 374 | // Buffer |
| 375 | 375 | ob_start(); |
| 376 | 376 | |
| 377 | - do_action( 'wpinv_email_header' ); |
|
| 377 | + do_action('wpinv_email_header'); |
|
| 378 | 378 | |
| 379 | - echo wp_kses_post( wpautop( wptexturize( $message ) ) ); |
|
| 379 | + echo wp_kses_post(wpautop(wptexturize($message))); |
|
| 380 | 380 | |
| 381 | - do_action( 'wpinv_email_footer' ); |
|
| 381 | + do_action('wpinv_email_footer'); |
|
| 382 | 382 | |
| 383 | 383 | // Get contents |
| 384 | 384 | $message = ob_get_clean(); |
@@ -386,21 +386,21 @@ discard block |
||
| 386 | 386 | return $message; |
| 387 | 387 | } |
| 388 | 388 | |
| 389 | -function wpinv_add_notes_to_invoice_email( $invoice, $email_type ) { |
|
| 390 | - if ( ! empty( $invoice ) && $email_type == 'user_invoice' && $invoice_notes = wpinv_get_invoice_notes( $invoice->get_id(), true ) ) { |
|
| 391 | - $date_format = get_option( 'date_format' ); |
|
| 392 | - $time_format = get_option( 'time_format' ); |
|
| 389 | +function wpinv_add_notes_to_invoice_email($invoice, $email_type) { |
|
| 390 | + if (!empty($invoice) && $email_type == 'user_invoice' && $invoice_notes = wpinv_get_invoice_notes($invoice->get_id(), true)) { |
|
| 391 | + $date_format = get_option('date_format'); |
|
| 392 | + $time_format = get_option('time_format'); |
|
| 393 | 393 | ?> |
| 394 | 394 | <div id="wpinv-email-notes"> |
| 395 | - <h3 class="wpinv-notes-t"><?php echo esc_html( apply_filters( 'wpinv_email_invoice_notes_title', __( 'Invoice Notes', 'invoicing' ) ) ); ?></h3> |
|
| 395 | + <h3 class="wpinv-notes-t"><?php echo esc_html(apply_filters('wpinv_email_invoice_notes_title', __('Invoice Notes', 'invoicing'))); ?></h3> |
|
| 396 | 396 | <ol class="wpinv-notes-lists"> |
| 397 | 397 | <?php |
| 398 | - foreach ( $invoice_notes as $note ) { |
|
| 399 | - $note_time = strtotime( $note->comment_date ); |
|
| 398 | + foreach ($invoice_notes as $note) { |
|
| 399 | + $note_time = strtotime($note->comment_date); |
|
| 400 | 400 | ?> |
| 401 | 401 | <li class="comment wpinv-note"> |
| 402 | - <p class="wpinv-note-date meta"><?php printf( esc_html__( '%2$s at %3$s', 'invoicing' ), esc_html( $note->comment_author ), esc_html( date_i18n( $date_format, $note_time ) ), esc_html( date_i18n( $time_format, $note_time ) ), esc_html( $note_time ) ); ?></p> |
|
| 403 | - <div class="wpinv-note-desc description"><?php echo wp_kses_post( wpautop( wptexturize( $note->comment_content ) ) ); ?></div> |
|
| 402 | + <p class="wpinv-note-date meta"><?php printf(esc_html__('%2$s at %3$s', 'invoicing'), esc_html($note->comment_author), esc_html(date_i18n($date_format, $note_time)), esc_html(date_i18n($time_format, $note_time)), esc_html($note_time)); ?></p> |
|
| 403 | + <div class="wpinv-note-desc description"><?php echo wp_kses_post(wpautop(wptexturize($note->comment_content))); ?></div> |
|
| 404 | 404 | </li> |
| 405 | 405 | <?php |
| 406 | 406 | } |
@@ -410,4 +410,4 @@ discard block |
||
| 410 | 410 | <?php |
| 411 | 411 | } |
| 412 | 412 | } |
| 413 | -add_action( 'wpinv_email_billing_details', 'wpinv_add_notes_to_invoice_email', 10, 3 ); |
|
| 413 | +add_action('wpinv_email_billing_details', 'wpinv_add_notes_to_invoice_email', 10, 3); |
|
@@ -1,38 +1,38 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | // MUST have WordPress. |
| 3 | -if ( ! defined( 'WPINC' ) ) { |
|
| 3 | +if (!defined('WPINC')) { |
|
| 4 | 4 | exit; |
| 5 | 5 | } |
| 6 | 6 | |
| 7 | 7 | class WPInv_Meta_Box_Notes { |
| 8 | - public static function output( $post ) { |
|
| 8 | + public static function output($post) { |
|
| 9 | 9 | global $post; |
| 10 | 10 | |
| 11 | - $notes = wpinv_get_invoice_notes( $post->ID ); |
|
| 11 | + $notes = wpinv_get_invoice_notes($post->ID); |
|
| 12 | 12 | |
| 13 | 13 | echo '<ul class="invoice_notes">'; |
| 14 | 14 | |
| 15 | - if ( $notes ) { |
|
| 16 | - foreach ( $notes as $note ) { |
|
| 17 | - wpinv_get_invoice_note_line_item( $note ); |
|
| 15 | + if ($notes) { |
|
| 16 | + foreach ($notes as $note) { |
|
| 17 | + wpinv_get_invoice_note_line_item($note); |
|
| 18 | 18 | } |
| 19 | 19 | } else { |
| 20 | - echo '<li>' . esc_html__( 'There are no notes yet.', 'invoicing' ) . '</li>'; |
|
| 20 | + echo '<li>' . esc_html__('There are no notes yet.', 'invoicing') . '</li>'; |
|
| 21 | 21 | } |
| 22 | 22 | |
| 23 | 23 | echo '</ul>'; |
| 24 | 24 | ?> |
| 25 | 25 | <div class="add_note"> |
| 26 | - <h4><?php esc_html_e( 'Add note', 'invoicing' ); ?></h4> |
|
| 26 | + <h4><?php esc_html_e('Add note', 'invoicing'); ?></h4> |
|
| 27 | 27 | <p> |
| 28 | 28 | <textarea type="text" name="invoice_note" id="add_invoice_note" class="input-text" cols="20" rows="5"></textarea> |
| 29 | 29 | </p> |
| 30 | 30 | <p> |
| 31 | 31 | <select name="invoice_note_type" id="invoice_note_type" class="regular-text"> |
| 32 | - <option value=""><?php esc_html_e( 'Private note', 'invoicing' ); ?></option> |
|
| 33 | - <option value="customer"><?php esc_html_e( 'Note to customer', 'invoicing' ); ?></option> |
|
| 32 | + <option value=""><?php esc_html_e('Private note', 'invoicing'); ?></option> |
|
| 33 | + <option value="customer"><?php esc_html_e('Note to customer', 'invoicing'); ?></option> |
|
| 34 | 34 | </select> |
| 35 | - <a href="#" class="add_note button"><?php esc_html_e( 'Add', 'invoicing' ); ?></a> <span class="description"><?php esc_html_e( 'Add a note for your reference, or add a customer note (the user will be notified).', 'invoicing' ); ?></span> |
|
| 35 | + <a href="#" class="add_note button"><?php esc_html_e('Add', 'invoicing'); ?></a> <span class="description"><?php esc_html_e('Add a note for your reference, or add a customer note (the user will be notified).', 'invoicing'); ?></span> |
|
| 36 | 36 | </p> |
| 37 | 37 | </div> |
| 38 | 38 | <?php |
@@ -5,7 +5,7 @@ discard block |
||
| 5 | 5 | * |
| 6 | 6 | */ |
| 7 | 7 | |
| 8 | -defined( 'ABSPATH' ) || exit; |
|
| 8 | +defined('ABSPATH') || exit; |
|
| 9 | 9 | |
| 10 | 10 | /** |
| 11 | 11 | * GetPaid_Reports Class. |
@@ -17,11 +17,11 @@ discard block |
||
| 17 | 17 | * |
| 18 | 18 | */ |
| 19 | 19 | public function __construct() { |
| 20 | - add_action( 'admin_menu', array( $this, 'register_reports_page' ), 20 ); |
|
| 21 | - add_action( 'wpinv_reports_tab_reports', array( $this, 'display_reports_tab' ) ); |
|
| 22 | - add_action( 'wpinv_reports_tab_export', array( $this, 'display_exports_tab' ) ); |
|
| 23 | - add_action( 'getpaid_authenticated_admin_action_download_graph', array( $this, 'download_graph' ) ); |
|
| 24 | - add_action( 'getpaid_authenticated_admin_action_export_invoices', array( $this, 'export_invoices' ) ); |
|
| 20 | + add_action('admin_menu', array($this, 'register_reports_page'), 20); |
|
| 21 | + add_action('wpinv_reports_tab_reports', array($this, 'display_reports_tab')); |
|
| 22 | + add_action('wpinv_reports_tab_export', array($this, 'display_exports_tab')); |
|
| 23 | + add_action('getpaid_authenticated_admin_action_download_graph', array($this, 'download_graph')); |
|
| 24 | + add_action('getpaid_authenticated_admin_action_export_invoices', array($this, 'export_invoices')); |
|
| 25 | 25 | |
| 26 | 26 | } |
| 27 | 27 | |
@@ -33,11 +33,11 @@ discard block |
||
| 33 | 33 | |
| 34 | 34 | add_submenu_page( |
| 35 | 35 | 'wpinv', |
| 36 | - __( 'Reports', 'invoicing' ), |
|
| 37 | - __( 'Reports', 'invoicing' ), |
|
| 36 | + __('Reports', 'invoicing'), |
|
| 37 | + __('Reports', 'invoicing'), |
|
| 38 | 38 | wpinv_get_capability(), |
| 39 | 39 | 'wpinv-reports', |
| 40 | - array( $this, 'display_reports_page' ) |
|
| 40 | + array($this, 'display_reports_page') |
|
| 41 | 41 | ); |
| 42 | 42 | |
| 43 | 43 | } |
@@ -50,46 +50,46 @@ discard block |
||
| 50 | 50 | |
| 51 | 51 | // Prepare variables. |
| 52 | 52 | $tabs = $this->get_tabs(); |
| 53 | - $current_tab = isset( $_GET['tab'] ) ? sanitize_text_field( $_GET['tab'] ) : 'reports'; |
|
| 54 | - $current_tab = array_key_exists( $current_tab, $tabs ) ? $current_tab : 'reports'; |
|
| 53 | + $current_tab = isset($_GET['tab']) ? sanitize_text_field($_GET['tab']) : 'reports'; |
|
| 54 | + $current_tab = array_key_exists($current_tab, $tabs) ? $current_tab : 'reports'; |
|
| 55 | 55 | |
| 56 | 56 | // Display the current tab. |
| 57 | 57 | ?> |
| 58 | 58 | |
| 59 | 59 | <div class="wrap"> |
| 60 | 60 | |
| 61 | - <h1><?php echo esc_html( $tabs[ $current_tab ] ); ?></h1> |
|
| 61 | + <h1><?php echo esc_html($tabs[$current_tab]); ?></h1> |
|
| 62 | 62 | |
| 63 | 63 | <nav class="nav-tab-wrapper"> |
| 64 | 64 | |
| 65 | 65 | <?php |
| 66 | - foreach ( $tabs as $key => $label ) { |
|
| 66 | + foreach ($tabs as $key => $label) { |
|
| 67 | 67 | |
| 68 | - $key = sanitize_key( $key ); |
|
| 69 | - $label = esc_html( $label ); |
|
| 68 | + $key = sanitize_key($key); |
|
| 69 | + $label = esc_html($label); |
|
| 70 | 70 | $class = $key == $current_tab ? 'nav-tab nav-tab-active' : 'nav-tab'; |
| 71 | 71 | $url = esc_url( |
| 72 | - add_query_arg( 'tab', $key, admin_url( 'admin.php?page=wpinv-reports' ) ) |
|
| 72 | + add_query_arg('tab', $key, admin_url('admin.php?page=wpinv-reports')) |
|
| 73 | 73 | ); |
| 74 | 74 | |
| 75 | - echo wp_kses_post( "\n\t\t\t<a href='$url' class='" . $class . "'>$label</a>" ); |
|
| 75 | + echo wp_kses_post("\n\t\t\t<a href='$url' class='" . $class . "'>$label</a>"); |
|
| 76 | 76 | |
| 77 | 77 | } |
| 78 | 78 | ?> |
| 79 | 79 | |
| 80 | 80 | </nav> |
| 81 | 81 | |
| 82 | - <div class="bsui <?php echo esc_attr( $current_tab ); ?>"> |
|
| 83 | - <?php do_action( "wpinv_reports_tab_{$current_tab}" ); ?> |
|
| 82 | + <div class="bsui <?php echo esc_attr($current_tab); ?>"> |
|
| 83 | + <?php do_action("wpinv_reports_tab_{$current_tab}"); ?> |
|
| 84 | 84 | </div> |
| 85 | 85 | |
| 86 | 86 | </div> |
| 87 | 87 | <?php |
| 88 | 88 | |
| 89 | 89 | // Wordfence loads an unsupported version of chart js on our page. |
| 90 | - wp_deregister_style( 'chart-js' ); |
|
| 91 | - wp_deregister_script( 'chart-js' ); |
|
| 92 | - wp_enqueue_script( 'chart-js', WPINV_PLUGIN_URL . 'assets/js/chart.min.js', array( 'jquery' ), '3.7.1', true ); |
|
| 90 | + wp_deregister_style('chart-js'); |
|
| 91 | + wp_deregister_script('chart-js'); |
|
| 92 | + wp_enqueue_script('chart-js', WPINV_PLUGIN_URL . 'assets/js/chart.min.js', array('jquery'), '3.7.1', true); |
|
| 93 | 93 | |
| 94 | 94 | } |
| 95 | 95 | |
@@ -101,11 +101,11 @@ discard block |
||
| 101 | 101 | public function get_tabs() { |
| 102 | 102 | |
| 103 | 103 | $tabs = array( |
| 104 | - 'reports' => __( 'Reports', 'invoicing' ), |
|
| 105 | - 'export' => __( 'Export', 'invoicing' ), |
|
| 104 | + 'reports' => __('Reports', 'invoicing'), |
|
| 105 | + 'export' => __('Export', 'invoicing'), |
|
| 106 | 106 | ); |
| 107 | 107 | |
| 108 | - return apply_filters( 'getpaid_report_tabs', $tabs ); |
|
| 108 | + return apply_filters('getpaid_report_tabs', $tabs); |
|
| 109 | 109 | } |
| 110 | 110 | |
| 111 | 111 | /** |
@@ -135,11 +135,11 @@ discard block |
||
| 135 | 135 | * |
| 136 | 136 | * @param array $args |
| 137 | 137 | */ |
| 138 | - public function download_graph( $args ) { |
|
| 138 | + public function download_graph($args) { |
|
| 139 | 139 | |
| 140 | - if ( ! empty( $args['graph'] ) ) { |
|
| 140 | + if (!empty($args['graph'])) { |
|
| 141 | 141 | $downloader = new GetPaid_Graph_Downloader(); |
| 142 | - $downloader->download( $args['graph'] ); |
|
| 142 | + $downloader->download($args['graph']); |
|
| 143 | 143 | } |
| 144 | 144 | |
| 145 | 145 | } |
@@ -149,17 +149,17 @@ discard block |
||
| 149 | 149 | * |
| 150 | 150 | * @param array $args |
| 151 | 151 | */ |
| 152 | - public function export_invoices( $args ) { |
|
| 152 | + public function export_invoices($args) { |
|
| 153 | 153 | |
| 154 | - if ( ! empty( $args['post_type'] ) ) { |
|
| 154 | + if (!empty($args['post_type'])) { |
|
| 155 | 155 | |
| 156 | - if ( 'subscriptions' === $args['post_type'] ) { |
|
| 156 | + if ('subscriptions' === $args['post_type']) { |
|
| 157 | 157 | $downloader = new GetPaid_Subscription_Exporter(); |
| 158 | 158 | } else { |
| 159 | 159 | $downloader = new GetPaid_Invoice_Exporter(); |
| 160 | 160 | } |
| 161 | 161 | |
| 162 | - $downloader->export( $args['post_type'], $args ); |
|
| 162 | + $downloader->export($args['post_type'], $args); |
|
| 163 | 163 | } |
| 164 | 164 | |
| 165 | 165 | } |
@@ -5,7 +5,7 @@ discard block |
||
| 5 | 5 | * |
| 6 | 6 | */ |
| 7 | 7 | |
| 8 | -defined( 'ABSPATH' ) || exit; |
|
| 8 | +defined('ABSPATH') || exit; |
|
| 9 | 9 | |
| 10 | 10 | /** |
| 11 | 11 | * GetPaid_Graph_Downloader Class. |
@@ -30,13 +30,13 @@ discard block |
||
| 30 | 30 | * |
| 31 | 31 | * @return GetPaid_Reports_Report_Items|GetPaid_Reports_Report_Gateways|GetPaid_Reports_Report_Discounts |
| 32 | 32 | */ |
| 33 | - public function prepare_handler( $graph ) { |
|
| 33 | + public function prepare_handler($graph) { |
|
| 34 | 34 | |
| 35 | - if ( empty( $this->handler->views[ $graph ] ) ) { |
|
| 36 | - wp_die( esc_html__( 'Invalid Graph', 'invoicing' ), 400 ); |
|
| 35 | + if (empty($this->handler->views[$graph])) { |
|
| 36 | + wp_die(esc_html__('Invalid Graph', 'invoicing'), 400); |
|
| 37 | 37 | } |
| 38 | 38 | |
| 39 | - return new $this->handler->views[ $graph ]['class'](); |
|
| 39 | + return new $this->handler->views[$graph]['class'](); |
|
| 40 | 40 | |
| 41 | 41 | } |
| 42 | 42 | |
@@ -47,10 +47,10 @@ discard block |
||
| 47 | 47 | */ |
| 48 | 48 | public function prepare_output() { |
| 49 | 49 | |
| 50 | - $output = fopen( 'php://output', 'w' ); |
|
| 50 | + $output = fopen('php://output', 'w'); |
|
| 51 | 51 | |
| 52 | - if ( false === $output ) { |
|
| 53 | - wp_die( esc_html__( 'Unsupported server', 'invoicing' ), 500 ); |
|
| 52 | + if (false === $output) { |
|
| 53 | + wp_die(esc_html__('Unsupported server', 'invoicing'), 500); |
|
| 54 | 54 | } |
| 55 | 55 | |
| 56 | 56 | return $output; |
@@ -61,13 +61,13 @@ discard block |
||
| 61 | 61 | * |
| 62 | 62 | * @return string |
| 63 | 63 | */ |
| 64 | - public function prepare_file_type( $graph ) { |
|
| 64 | + public function prepare_file_type($graph) { |
|
| 65 | 65 | |
| 66 | - $file_type = empty( $_REQUEST['file_type'] ) ? 'csv' : sanitize_text_field( $_REQUEST['file_type'] ); |
|
| 67 | - $file_name = wpinv_sanitize_key( "getpaid-$graph-" . current_time( 'Y-m-d' ) ); |
|
| 66 | + $file_type = empty($_REQUEST['file_type']) ? 'csv' : sanitize_text_field($_REQUEST['file_type']); |
|
| 67 | + $file_name = wpinv_sanitize_key("getpaid-$graph-" . current_time('Y-m-d')); |
|
| 68 | 68 | |
| 69 | - header( "Content-Type:application/$file_type" ); |
|
| 70 | - header( "Content-Disposition:attachment;filename=$file_name.$file_type" ); |
|
| 69 | + header("Content-Type:application/$file_type"); |
|
| 70 | + header("Content-Disposition:attachment;filename=$file_name.$file_type"); |
|
| 71 | 71 | |
| 72 | 72 | return $file_type; |
| 73 | 73 | } |
@@ -76,24 +76,24 @@ discard block |
||
| 76 | 76 | * Handles the actual download. |
| 77 | 77 | * |
| 78 | 78 | */ |
| 79 | - public function download( $graph ) { |
|
| 79 | + public function download($graph) { |
|
| 80 | 80 | global $wpdb; |
| 81 | 81 | |
| 82 | - $handler = $this->prepare_handler( $graph ); |
|
| 82 | + $handler = $this->prepare_handler($graph); |
|
| 83 | 83 | $stream = $this->prepare_output(); |
| 84 | - $stats = $wpdb->get_results( $handler->get_sql( $handler->get_range() ) ); |
|
| 85 | - $headers = array( $handler->field, 'total', 'total_raw' ); |
|
| 86 | - $file_type = $this->prepare_file_type( $graph ); |
|
| 87 | - |
|
| 88 | - if ( 'csv' == $file_type ) { |
|
| 89 | - $this->download_csv( $stats, $stream, $headers ); |
|
| 90 | - } elseif ( 'xml' == $file_type ) { |
|
| 91 | - $this->download_xml( $stats, $stream, $headers ); |
|
| 84 | + $stats = $wpdb->get_results($handler->get_sql($handler->get_range())); |
|
| 85 | + $headers = array($handler->field, 'total', 'total_raw'); |
|
| 86 | + $file_type = $this->prepare_file_type($graph); |
|
| 87 | + |
|
| 88 | + if ('csv' == $file_type) { |
|
| 89 | + $this->download_csv($stats, $stream, $headers); |
|
| 90 | + } elseif ('xml' == $file_type) { |
|
| 91 | + $this->download_xml($stats, $stream, $headers); |
|
| 92 | 92 | } else { |
| 93 | - $this->download_json( $stats, $stream, $headers ); |
|
| 93 | + $this->download_json($stats, $stream, $headers); |
|
| 94 | 94 | } |
| 95 | 95 | |
| 96 | - fclose( $stream ); |
|
| 96 | + fclose($stream); |
|
| 97 | 97 | exit; |
| 98 | 98 | } |
| 99 | 99 | |
@@ -105,16 +105,16 @@ discard block |
||
| 105 | 105 | * @param array $headers The fields to stream. |
| 106 | 106 | * @since 1.0.19 |
| 107 | 107 | */ |
| 108 | - public function download_csv( $stats, $stream, $headers ) { |
|
| 108 | + public function download_csv($stats, $stream, $headers) { |
|
| 109 | 109 | |
| 110 | 110 | // Output the csv column headers. |
| 111 | - fputcsv( $stream, $headers ); |
|
| 111 | + fputcsv($stream, $headers); |
|
| 112 | 112 | |
| 113 | 113 | // Loop through |
| 114 | - foreach ( $stats as $stat ) { |
|
| 115 | - $row = array_values( $this->prepare_row( $stat, $headers ) ); |
|
| 116 | - $row = array_map( 'maybe_serialize', $row ); |
|
| 117 | - fputcsv( $stream, $row ); |
|
| 114 | + foreach ($stats as $stat) { |
|
| 115 | + $row = array_values($this->prepare_row($stat, $headers)); |
|
| 116 | + $row = array_map('maybe_serialize', $row); |
|
| 117 | + fputcsv($stream, $row); |
|
| 118 | 118 | } |
| 119 | 119 | |
| 120 | 120 | } |
@@ -127,16 +127,16 @@ discard block |
||
| 127 | 127 | * @param array $headers The fields to stream. |
| 128 | 128 | * @since 1.0.19 |
| 129 | 129 | */ |
| 130 | - public function download_json( $stats, $stream, $headers ) { |
|
| 130 | + public function download_json($stats, $stream, $headers) { |
|
| 131 | 131 | |
| 132 | 132 | $prepared = array(); |
| 133 | 133 | |
| 134 | 134 | // Loop through |
| 135 | - foreach ( $stats as $stat ) { |
|
| 136 | - $prepared[] = $this->prepare_row( $stat, $headers ); |
|
| 135 | + foreach ($stats as $stat) { |
|
| 136 | + $prepared[] = $this->prepare_row($stat, $headers); |
|
| 137 | 137 | } |
| 138 | 138 | |
| 139 | - fwrite( $stream, wp_json_encode( $prepared ) ); |
|
| 139 | + fwrite($stream, wp_json_encode($prepared)); |
|
| 140 | 140 | |
| 141 | 141 | } |
| 142 | 142 | |
@@ -148,19 +148,19 @@ discard block |
||
| 148 | 148 | * @param array $headers The fields to stream. |
| 149 | 149 | * @since 1.0.19 |
| 150 | 150 | */ |
| 151 | - public function download_xml( $stats, $stream, $headers ) { |
|
| 151 | + public function download_xml($stats, $stream, $headers) { |
|
| 152 | 152 | |
| 153 | 153 | $prepared = array(); |
| 154 | 154 | |
| 155 | 155 | // Loop through |
| 156 | - foreach ( $stats as $stat ) { |
|
| 157 | - $prepared[] = $this->prepare_row( $stat, $headers ); |
|
| 156 | + foreach ($stats as $stat) { |
|
| 157 | + $prepared[] = $this->prepare_row($stat, $headers); |
|
| 158 | 158 | } |
| 159 | 159 | |
| 160 | - $xml = new SimpleXMLElement( '<?xml version="1.0"?><data></data>' ); |
|
| 161 | - $this->convert_array_xml( $prepared, $xml ); |
|
| 160 | + $xml = new SimpleXMLElement('<?xml version="1.0"?><data></data>'); |
|
| 161 | + $this->convert_array_xml($prepared, $xml); |
|
| 162 | 162 | |
| 163 | - fwrite( $stream, $xml->asXML() ); |
|
| 163 | + fwrite($stream, $xml->asXML()); |
|
| 164 | 164 | |
| 165 | 165 | } |
| 166 | 166 | |
@@ -170,24 +170,24 @@ discard block |
||
| 170 | 170 | * @access public |
| 171 | 171 | * @since 1.0.19 |
| 172 | 172 | */ |
| 173 | - public function convert_array_xml( $data, $xml ) { |
|
| 173 | + public function convert_array_xml($data, $xml) { |
|
| 174 | 174 | |
| 175 | 175 | // Loop through |
| 176 | - foreach ( $data as $key => $value ) { |
|
| 176 | + foreach ($data as $key => $value) { |
|
| 177 | 177 | |
| 178 | - $key = preg_replace( '/[^A-Za-z0-9_\-]/', '', $key ); |
|
| 178 | + $key = preg_replace('/[^A-Za-z0-9_\-]/', '', $key); |
|
| 179 | 179 | |
| 180 | - if ( is_array( $value ) ) { |
|
| 180 | + if (is_array($value)) { |
|
| 181 | 181 | |
| 182 | - if ( is_numeric( $key ) ) { |
|
| 182 | + if (is_numeric($key)) { |
|
| 183 | 183 | $key = 'item' . $key; //dealing with <0/>..<n/> issues |
| 184 | 184 | } |
| 185 | 185 | |
| 186 | - $subnode = $xml->addChild( $key ); |
|
| 187 | - $this->convert_array_xml( $value, $subnode ); |
|
| 186 | + $subnode = $xml->addChild($key); |
|
| 187 | + $this->convert_array_xml($value, $subnode); |
|
| 188 | 188 | |
| 189 | 189 | } else { |
| 190 | - $xml->addChild( $key, htmlspecialchars( $value ) ); |
|
| 190 | + $xml->addChild($key, htmlspecialchars($value)); |
|
| 191 | 191 | } |
| 192 | 192 | } |
| 193 | 193 | |
@@ -201,24 +201,24 @@ discard block |
||
| 201 | 201 | * @since 1.0.19 |
| 202 | 202 | * @return array |
| 203 | 203 | */ |
| 204 | - public function prepare_row( $row, $fields ) { |
|
| 204 | + public function prepare_row($row, $fields) { |
|
| 205 | 205 | |
| 206 | 206 | $prepared = array(); |
| 207 | 207 | $row = (array) $row; |
| 208 | 208 | |
| 209 | - foreach ( $fields as $field ) { |
|
| 209 | + foreach ($fields as $field) { |
|
| 210 | 210 | |
| 211 | - if ( $field === 'total' ) { |
|
| 212 | - $prepared[ $field ] = html_entity_decode( strip_tags( wpinv_price( $row['total'] ) ), ENT_QUOTES ); |
|
| 211 | + if ($field === 'total') { |
|
| 212 | + $prepared[$field] = html_entity_decode(strip_tags(wpinv_price($row['total'])), ENT_QUOTES); |
|
| 213 | 213 | continue; |
| 214 | 214 | } |
| 215 | 215 | |
| 216 | - if ( $field === 'total_raw' ) { |
|
| 217 | - $prepared[ $field ] = wpinv_round_amount( wpinv_sanitize_amount( $row['total'] ) ); |
|
| 216 | + if ($field === 'total_raw') { |
|
| 217 | + $prepared[$field] = wpinv_round_amount(wpinv_sanitize_amount($row['total'])); |
|
| 218 | 218 | continue; |
| 219 | 219 | } |
| 220 | 220 | |
| 221 | - $prepared[ $field ] = strip_tags( $row[ $field ] ); |
|
| 221 | + $prepared[$field] = strip_tags($row[$field]); |
|
| 222 | 222 | |
| 223 | 223 | } |
| 224 | 224 | |
@@ -4,7 +4,7 @@ discard block |
||
| 4 | 4 | * |
| 5 | 5 | */ |
| 6 | 6 | |
| 7 | -defined( 'ABSPATH' ) || exit; |
|
| 7 | +defined('ABSPATH') || exit; |
|
| 8 | 8 | |
| 9 | 9 | /** |
| 10 | 10 | * Payment form submission itemss class |
@@ -23,37 +23,37 @@ discard block |
||
| 23 | 23 | * |
| 24 | 24 | * @param GetPaid_Payment_Form_Submission $submission |
| 25 | 25 | */ |
| 26 | - public function __construct( $submission ) { |
|
| 26 | + public function __construct($submission) { |
|
| 27 | 27 | |
| 28 | 28 | $data = $submission->get_data(); |
| 29 | 29 | $payment_form = $submission->get_payment_form(); |
| 30 | 30 | |
| 31 | 31 | // Prepare the selected items. |
| 32 | 32 | $selected_items = array(); |
| 33 | - if ( ! empty( $data['getpaid-items'] ) ) { |
|
| 34 | - $selected_items = wpinv_clean( $data['getpaid-items'] ); |
|
| 33 | + if (!empty($data['getpaid-items'])) { |
|
| 34 | + $selected_items = wpinv_clean($data['getpaid-items']); |
|
| 35 | 35 | } |
| 36 | 36 | |
| 37 | 37 | // (Maybe) set form items. |
| 38 | - if ( isset( $data['getpaid-form-items'] ) ) { |
|
| 38 | + if (isset($data['getpaid-form-items'])) { |
|
| 39 | 39 | |
| 40 | 40 | // Confirm items key. |
| 41 | - $form_items = wpinv_clean( $data['getpaid-form-items'] ); |
|
| 42 | - if ( ! isset( $data['getpaid-form-items-key'] ) || $data['getpaid-form-items-key'] !== md5( NONCE_KEY . AUTH_KEY . $form_items ) ) { |
|
| 43 | - throw new Exception( __( 'We could not validate the form items. Please reload the page and try again.', 'invoicing' ) ); |
|
| 41 | + $form_items = wpinv_clean($data['getpaid-form-items']); |
|
| 42 | + if (!isset($data['getpaid-form-items-key']) || $data['getpaid-form-items-key'] !== md5(NONCE_KEY . AUTH_KEY . $form_items)) { |
|
| 43 | + throw new Exception(__('We could not validate the form items. Please reload the page and try again.', 'invoicing')); |
|
| 44 | 44 | } |
| 45 | 45 | |
| 46 | - $items = array(); |
|
| 46 | + $items = array(); |
|
| 47 | 47 | $item_ids = array(); |
| 48 | 48 | |
| 49 | - foreach ( getpaid_convert_items_to_array( $form_items ) as $item_id => $qty ) { |
|
| 50 | - if ( ! in_array( $item_id, $item_ids ) ) { |
|
| 51 | - $item = new GetPaid_Form_Item( $item_id ); |
|
| 52 | - $item->set_quantity( $qty ); |
|
| 49 | + foreach (getpaid_convert_items_to_array($form_items) as $item_id => $qty) { |
|
| 50 | + if (!in_array($item_id, $item_ids)) { |
|
| 51 | + $item = new GetPaid_Form_Item($item_id); |
|
| 52 | + $item->set_quantity($qty); |
|
| 53 | 53 | |
| 54 | - if ( 0 == $qty ) { |
|
| 55 | - $item->set_allow_quantities( true ); |
|
| 56 | - $item->set_is_required( false ); |
|
| 54 | + if (0 == $qty) { |
|
| 55 | + $item->set_allow_quantities(true); |
|
| 56 | + $item->set_is_required(false); |
|
| 57 | 57 | } |
| 58 | 58 | |
| 59 | 59 | $item_ids[] = $item->get_id(); |
@@ -61,23 +61,23 @@ discard block |
||
| 61 | 61 | } |
| 62 | 62 | } |
| 63 | 63 | |
| 64 | - if ( ! $payment_form->is_default() ) { |
|
| 64 | + if (!$payment_form->is_default()) { |
|
| 65 | 65 | |
| 66 | - foreach ( $payment_form->get_items() as $item ) { |
|
| 67 | - if ( ! in_array( $item->get_id(), $item_ids ) ) { |
|
| 66 | + foreach ($payment_form->get_items() as $item) { |
|
| 67 | + if (!in_array($item->get_id(), $item_ids)) { |
|
| 68 | 68 | $item_ids[] = $item->get_id(); |
| 69 | 69 | $items[] = $item; |
| 70 | 70 | } |
| 71 | 71 | } |
| 72 | 72 | } |
| 73 | 73 | |
| 74 | - $payment_form->set_items( $items ); |
|
| 74 | + $payment_form->set_items($items); |
|
| 75 | 75 | |
| 76 | 76 | } |
| 77 | 77 | |
| 78 | 78 | // Process each individual item. |
| 79 | - foreach ( $payment_form->get_items() as $item ) { |
|
| 80 | - $this->process_item( $item, $selected_items, $submission ); |
|
| 79 | + foreach ($payment_form->get_items() as $item) { |
|
| 80 | + $this->process_item($item, $selected_items, $submission); |
|
| 81 | 81 | } |
| 82 | 82 | |
| 83 | 83 | } |
@@ -89,40 +89,40 @@ discard block |
||
| 89 | 89 | * @param array $selected_items |
| 90 | 90 | * @param GetPaid_Payment_Form_Submission $submission |
| 91 | 91 | */ |
| 92 | - public function process_item( $item, $selected_items, $submission ) { |
|
| 92 | + public function process_item($item, $selected_items, $submission) { |
|
| 93 | 93 | |
| 94 | 94 | // Abort if this is an optional item and it has not been selected. |
| 95 | - if ( ! $item->is_required() && ! isset( $selected_items[ $item->get_id() ] ) ) { |
|
| 95 | + if (!$item->is_required() && !isset($selected_items[$item->get_id()])) { |
|
| 96 | 96 | return; |
| 97 | 97 | } |
| 98 | 98 | |
| 99 | 99 | // (maybe) let customers change the quantities and prices. |
| 100 | - if ( isset( $selected_items[ $item->get_id() ] ) ) { |
|
| 100 | + if (isset($selected_items[$item->get_id()])) { |
|
| 101 | 101 | |
| 102 | 102 | // Maybe change the quantities. |
| 103 | - if ( $item->allows_quantities() ) { |
|
| 104 | - $item->set_quantity( (float) $selected_items[ $item->get_id() ]['quantity'] ); |
|
| 103 | + if ($item->allows_quantities()) { |
|
| 104 | + $item->set_quantity((float) $selected_items[$item->get_id()]['quantity']); |
|
| 105 | 105 | } |
| 106 | 106 | |
| 107 | 107 | // Maybe change the price. |
| 108 | - if ( $item->user_can_set_their_price() ) { |
|
| 109 | - $price = (float) wpinv_sanitize_amount( $selected_items[ $item->get_id() ]['price'] ); |
|
| 108 | + if ($item->user_can_set_their_price()) { |
|
| 109 | + $price = (float) wpinv_sanitize_amount($selected_items[$item->get_id()]['price']); |
|
| 110 | 110 | |
| 111 | - if ( $item->get_minimum_price() > $price ) { |
|
| 112 | - throw new Exception( sprintf( __( 'The minimum allowed amount is %s', 'invoicing' ), getpaid_unstandardize_amount( $item->get_minimum_price() ) ) ); |
|
| 111 | + if ($item->get_minimum_price() > $price) { |
|
| 112 | + throw new Exception(sprintf(__('The minimum allowed amount is %s', 'invoicing'), getpaid_unstandardize_amount($item->get_minimum_price()))); |
|
| 113 | 113 | } |
| 114 | 114 | |
| 115 | - $item->set_price( $price ); |
|
| 115 | + $item->set_price($price); |
|
| 116 | 116 | |
| 117 | 117 | } |
| 118 | 118 | } |
| 119 | 119 | |
| 120 | - if ( 0 == $item->get_quantity() ) { |
|
| 120 | + if (0 == $item->get_quantity()) { |
|
| 121 | 121 | return; |
| 122 | 122 | } |
| 123 | 123 | |
| 124 | 124 | // Save the item. |
| 125 | - $this->items[] = apply_filters( 'getpaid_payment_form_submission_processed_item', $item, $submission ); |
|
| 125 | + $this->items[] = apply_filters('getpaid_payment_form_submission_processed_item', $item, $submission); |
|
| 126 | 126 | |
| 127 | 127 | } |
| 128 | 128 | |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 2 | +if (!defined('ABSPATH')) { |
|
| 3 | 3 | exit; |
| 4 | 4 | } |
| 5 | 5 | |
@@ -72,28 +72,28 @@ discard block |
||
| 72 | 72 | * |
| 73 | 73 | * @param int|object|GetPaid_Payment_Form|WP_Post $form Form to read. |
| 74 | 74 | */ |
| 75 | - public function __construct( $form = 0 ) { |
|
| 76 | - parent::__construct( $form ); |
|
| 75 | + public function __construct($form = 0) { |
|
| 76 | + parent::__construct($form); |
|
| 77 | 77 | |
| 78 | - if ( is_numeric( $form ) && $form > 0 ) { |
|
| 79 | - $this->set_id( $form ); |
|
| 80 | - } elseif ( $form instanceof self ) { |
|
| 78 | + if (is_numeric($form) && $form > 0) { |
|
| 79 | + $this->set_id($form); |
|
| 80 | + } elseif ($form instanceof self) { |
|
| 81 | 81 | |
| 82 | - $this->set_id( $form->get_id() ); |
|
| 82 | + $this->set_id($form->get_id()); |
|
| 83 | 83 | $this->invoice = $form->invoice; |
| 84 | 84 | |
| 85 | - } elseif ( ! empty( $form->ID ) ) { |
|
| 86 | - $this->set_id( $form->ID ); |
|
| 85 | + } elseif (!empty($form->ID)) { |
|
| 86 | + $this->set_id($form->ID); |
|
| 87 | 87 | } else { |
| 88 | - $this->set_object_read( true ); |
|
| 88 | + $this->set_object_read(true); |
|
| 89 | 89 | } |
| 90 | 90 | |
| 91 | 91 | // Load the datastore. |
| 92 | - $this->data_store = GetPaid_Data_Store::load( $this->data_store_name ); |
|
| 92 | + $this->data_store = GetPaid_Data_Store::load($this->data_store_name); |
|
| 93 | 93 | |
| 94 | - if ( $this->get_id() > 0 ) { |
|
| 95 | - $this->post = get_post( $this->get_id() ); |
|
| 96 | - $this->data_store->read( $this ); |
|
| 94 | + if ($this->get_id() > 0) { |
|
| 95 | + $this->post = get_post($this->get_id()); |
|
| 96 | + $this->data_store->read($this); |
|
| 97 | 97 | } |
| 98 | 98 | |
| 99 | 99 | } |
@@ -120,8 +120,8 @@ discard block |
||
| 120 | 120 | * @param string $context View or edit context. |
| 121 | 121 | * @return string |
| 122 | 122 | */ |
| 123 | - public function get_version( $context = 'view' ) { |
|
| 124 | - return $this->get_prop( 'version', $context ); |
|
| 123 | + public function get_version($context = 'view') { |
|
| 124 | + return $this->get_prop('version', $context); |
|
| 125 | 125 | } |
| 126 | 126 | |
| 127 | 127 | /** |
@@ -131,8 +131,8 @@ discard block |
||
| 131 | 131 | * @param string $context View or edit context. |
| 132 | 132 | * @return string |
| 133 | 133 | */ |
| 134 | - public function get_date_created( $context = 'view' ) { |
|
| 135 | - return $this->get_prop( 'date_created', $context ); |
|
| 134 | + public function get_date_created($context = 'view') { |
|
| 135 | + return $this->get_prop('date_created', $context); |
|
| 136 | 136 | } |
| 137 | 137 | |
| 138 | 138 | /** |
@@ -142,11 +142,11 @@ discard block |
||
| 142 | 142 | * @param string $context View or edit context. |
| 143 | 143 | * @return string |
| 144 | 144 | */ |
| 145 | - public function get_date_created_gmt( $context = 'view' ) { |
|
| 146 | - $date = $this->get_date_created( $context ); |
|
| 145 | + public function get_date_created_gmt($context = 'view') { |
|
| 146 | + $date = $this->get_date_created($context); |
|
| 147 | 147 | |
| 148 | - if ( $date ) { |
|
| 149 | - $date = get_gmt_from_date( $date ); |
|
| 148 | + if ($date) { |
|
| 149 | + $date = get_gmt_from_date($date); |
|
| 150 | 150 | } |
| 151 | 151 | return $date; |
| 152 | 152 | } |
@@ -158,8 +158,8 @@ discard block |
||
| 158 | 158 | * @param string $context View or edit context. |
| 159 | 159 | * @return string |
| 160 | 160 | */ |
| 161 | - public function get_date_modified( $context = 'view' ) { |
|
| 162 | - return $this->get_prop( 'date_modified', $context ); |
|
| 161 | + public function get_date_modified($context = 'view') { |
|
| 162 | + return $this->get_prop('date_modified', $context); |
|
| 163 | 163 | } |
| 164 | 164 | |
| 165 | 165 | /** |
@@ -169,11 +169,11 @@ discard block |
||
| 169 | 169 | * @param string $context View or edit context. |
| 170 | 170 | * @return string |
| 171 | 171 | */ |
| 172 | - public function get_date_modified_gmt( $context = 'view' ) { |
|
| 173 | - $date = $this->get_date_modified( $context ); |
|
| 172 | + public function get_date_modified_gmt($context = 'view') { |
|
| 173 | + $date = $this->get_date_modified($context); |
|
| 174 | 174 | |
| 175 | - if ( $date ) { |
|
| 176 | - $date = get_gmt_from_date( $date ); |
|
| 175 | + if ($date) { |
|
| 176 | + $date = get_gmt_from_date($date); |
|
| 177 | 177 | } |
| 178 | 178 | return $date; |
| 179 | 179 | } |
@@ -185,8 +185,8 @@ discard block |
||
| 185 | 185 | * @param string $context View or edit context. |
| 186 | 186 | * @return string |
| 187 | 187 | */ |
| 188 | - public function get_name( $context = 'view' ) { |
|
| 189 | - return $this->get_prop( 'name', $context ); |
|
| 188 | + public function get_name($context = 'view') { |
|
| 189 | + return $this->get_prop('name', $context); |
|
| 190 | 190 | } |
| 191 | 191 | |
| 192 | 192 | /** |
@@ -196,8 +196,8 @@ discard block |
||
| 196 | 196 | * @param string $context View or edit context. |
| 197 | 197 | * @return string |
| 198 | 198 | */ |
| 199 | - public function get_title( $context = 'view' ) { |
|
| 200 | - return $this->get_name( $context ); |
|
| 199 | + public function get_title($context = 'view') { |
|
| 200 | + return $this->get_name($context); |
|
| 201 | 201 | } |
| 202 | 202 | |
| 203 | 203 | /** |
@@ -207,8 +207,8 @@ discard block |
||
| 207 | 207 | * @param string $context View or edit context. |
| 208 | 208 | * @return int |
| 209 | 209 | */ |
| 210 | - public function get_author( $context = 'view' ) { |
|
| 211 | - return (int) $this->get_prop( 'author', $context ); |
|
| 210 | + public function get_author($context = 'view') { |
|
| 211 | + return (int) $this->get_prop('author', $context); |
|
| 212 | 212 | } |
| 213 | 213 | |
| 214 | 214 | /** |
@@ -218,21 +218,21 @@ discard block |
||
| 218 | 218 | * @param string $context View or edit context. |
| 219 | 219 | * @return array |
| 220 | 220 | */ |
| 221 | - public function get_elements( $context = 'view' ) { |
|
| 222 | - $elements = $this->get_prop( 'elements', $context ); |
|
| 221 | + public function get_elements($context = 'view') { |
|
| 222 | + $elements = $this->get_prop('elements', $context); |
|
| 223 | 223 | |
| 224 | - if ( empty( $elements ) || ! is_array( $elements ) ) { |
|
| 225 | - return wpinv_get_data( 'sample-payment-form' ); |
|
| 224 | + if (empty($elements) || !is_array($elements)) { |
|
| 225 | + return wpinv_get_data('sample-payment-form'); |
|
| 226 | 226 | } |
| 227 | 227 | |
| 228 | 228 | // Ensure that all required elements exist. |
| 229 | 229 | $_elements = array(); |
| 230 | - foreach ( $elements as $element ) { |
|
| 230 | + foreach ($elements as $element) { |
|
| 231 | 231 | |
| 232 | - if ( $element['type'] == 'pay_button' && ! $this->has_element_type( 'gateway_select' ) ) { |
|
| 232 | + if ($element['type'] == 'pay_button' && !$this->has_element_type('gateway_select')) { |
|
| 233 | 233 | |
| 234 | 234 | $_elements[] = array( |
| 235 | - 'text' => __( 'Select Payment Method', 'invoicing' ), |
|
| 235 | + 'text' => __('Select Payment Method', 'invoicing'), |
|
| 236 | 236 | 'id' => 'gtscicd', |
| 237 | 237 | 'name' => 'gtscicd', |
| 238 | 238 | 'type' => 'gateway_select', |
@@ -257,22 +257,22 @@ discard block |
||
| 257 | 257 | * @param string $return objects or arrays. |
| 258 | 258 | * @return GetPaid_Form_Item[] |
| 259 | 259 | */ |
| 260 | - public function get_items( $context = 'view', $return = 'objects' ) { |
|
| 261 | - $items = $this->get_prop( 'items', $context ); |
|
| 260 | + public function get_items($context = 'view', $return = 'objects') { |
|
| 261 | + $items = $this->get_prop('items', $context); |
|
| 262 | 262 | |
| 263 | - if ( empty( $items ) || ! is_array( $items ) ) { |
|
| 264 | - $items = wpinv_get_data( 'sample-payment-form-items' ); |
|
| 263 | + if (empty($items) || !is_array($items)) { |
|
| 264 | + $items = wpinv_get_data('sample-payment-form-items'); |
|
| 265 | 265 | } |
| 266 | 266 | |
| 267 | 267 | // Convert the items. |
| 268 | 268 | $prepared = array(); |
| 269 | 269 | |
| 270 | - foreach ( $items as $key => $value ) { |
|
| 270 | + foreach ($items as $key => $value) { |
|
| 271 | 271 | |
| 272 | 272 | // Form items. |
| 273 | - if ( $value instanceof GetPaid_Form_Item ) { |
|
| 273 | + if ($value instanceof GetPaid_Form_Item) { |
|
| 274 | 274 | |
| 275 | - if ( $value->can_purchase() ) { |
|
| 275 | + if ($value->can_purchase()) { |
|
| 276 | 276 | $prepared[] = $value; |
| 277 | 277 | } |
| 278 | 278 | |
@@ -281,16 +281,16 @@ discard block |
||
| 281 | 281 | } |
| 282 | 282 | |
| 283 | 283 | // $item_id => $quantity (buy buttons) |
| 284 | - if ( is_numeric( $key ) && is_numeric( $value ) ) { |
|
| 285 | - $item = new GetPaid_Form_Item( $key ); |
|
| 284 | + if (is_numeric($key) && is_numeric($value)) { |
|
| 285 | + $item = new GetPaid_Form_Item($key); |
|
| 286 | 286 | |
| 287 | - if ( $item->can_purchase() ) { |
|
| 287 | + if ($item->can_purchase()) { |
|
| 288 | 288 | |
| 289 | 289 | $value = (float) $value; |
| 290 | - $item->set_quantity( $value ); |
|
| 291 | - if ( 0 == $value ) { |
|
| 292 | - $item->set_quantity( 1 ); |
|
| 293 | - $item->set_allow_quantities( true ); |
|
| 290 | + $item->set_quantity($value); |
|
| 291 | + if (0 == $value) { |
|
| 292 | + $item->set_quantity(1); |
|
| 293 | + $item->set_allow_quantities(true); |
|
| 294 | 294 | } |
| 295 | 295 | |
| 296 | 296 | $prepared[] = $item; |
@@ -300,33 +300,33 @@ discard block |
||
| 300 | 300 | } |
| 301 | 301 | |
| 302 | 302 | // Items saved via payment forms editor. |
| 303 | - if ( is_array( $value ) && isset( $value['id'] ) ) { |
|
| 303 | + if (is_array($value) && isset($value['id'])) { |
|
| 304 | 304 | |
| 305 | - $item = new GetPaid_Form_Item( $value['id'] ); |
|
| 305 | + $item = new GetPaid_Form_Item($value['id']); |
|
| 306 | 306 | |
| 307 | - if ( ! $item->can_purchase() ) { |
|
| 307 | + if (!$item->can_purchase()) { |
|
| 308 | 308 | continue; |
| 309 | 309 | } |
| 310 | 310 | |
| 311 | 311 | // Sub-total (Cart items). |
| 312 | - if ( isset( $value['subtotal'] ) ) { |
|
| 313 | - $item->set_price( $value['subtotal'] ); |
|
| 312 | + if (isset($value['subtotal'])) { |
|
| 313 | + $item->set_price($value['subtotal']); |
|
| 314 | 314 | } |
| 315 | 315 | |
| 316 | - if ( isset( $value['quantity'] ) ) { |
|
| 317 | - $item->set_quantity( $value['quantity'] ); |
|
| 316 | + if (isset($value['quantity'])) { |
|
| 317 | + $item->set_quantity($value['quantity']); |
|
| 318 | 318 | } |
| 319 | 319 | |
| 320 | - if ( isset( $value['allow_quantities'] ) ) { |
|
| 321 | - $item->set_allow_quantities( $value['allow_quantities'] ); |
|
| 320 | + if (isset($value['allow_quantities'])) { |
|
| 321 | + $item->set_allow_quantities($value['allow_quantities']); |
|
| 322 | 322 | } |
| 323 | 323 | |
| 324 | - if ( isset( $value['required'] ) ) { |
|
| 325 | - $item->set_is_required( $value['required'] ); |
|
| 324 | + if (isset($value['required'])) { |
|
| 325 | + $item->set_is_required($value['required']); |
|
| 326 | 326 | } |
| 327 | 327 | |
| 328 | - if ( isset( $value['description'] ) ) { |
|
| 329 | - $item->set_custom_description( $value['description'] ); |
|
| 328 | + if (isset($value['description'])) { |
|
| 329 | + $item->set_custom_description($value['description']); |
|
| 330 | 330 | } |
| 331 | 331 | |
| 332 | 332 | $prepared[] = $item; |
@@ -335,14 +335,14 @@ discard block |
||
| 335 | 335 | } |
| 336 | 336 | |
| 337 | 337 | // $item_id => array( 'price' => 10 ) (item variations) |
| 338 | - if ( is_numeric( $key ) && is_array( $value ) ) { |
|
| 339 | - $item = new GetPaid_Form_Item( $key ); |
|
| 338 | + if (is_numeric($key) && is_array($value)) { |
|
| 339 | + $item = new GetPaid_Form_Item($key); |
|
| 340 | 340 | |
| 341 | - if ( isset( $value['price'] ) && $item->user_can_set_their_price() ) { |
|
| 342 | - $item->set_price( $value['price'] ); |
|
| 341 | + if (isset($value['price']) && $item->user_can_set_their_price()) { |
|
| 342 | + $item->set_price($value['price']); |
|
| 343 | 343 | } |
| 344 | 344 | |
| 345 | - if ( $item->can_purchase() ) { |
|
| 345 | + if ($item->can_purchase()) { |
|
| 346 | 346 | $prepared[] = $item; |
| 347 | 347 | } |
| 348 | 348 | |
@@ -350,12 +350,12 @@ discard block |
||
| 350 | 350 | } |
| 351 | 351 | } |
| 352 | 352 | |
| 353 | - if ( 'objects' == $return && 'view' == $context ) { |
|
| 353 | + if ('objects' == $return && 'view' == $context) { |
|
| 354 | 354 | return $prepared; |
| 355 | 355 | } |
| 356 | 356 | |
| 357 | 357 | $items = array(); |
| 358 | - foreach ( $prepared as $item ) { |
|
| 358 | + foreach ($prepared as $item) { |
|
| 359 | 359 | $items[] = $item->prepare_data_for_use(); |
| 360 | 360 | } |
| 361 | 361 | |
@@ -369,14 +369,14 @@ discard block |
||
| 369 | 369 | * @param int $item_id The item id to return. |
| 370 | 370 | * @return GetPaid_Form_Item|bool |
| 371 | 371 | */ |
| 372 | - public function get_item( $item_id ) { |
|
| 372 | + public function get_item($item_id) { |
|
| 373 | 373 | |
| 374 | - if ( empty( $item_id ) || ! is_numeric( $item_id ) ) { |
|
| 374 | + if (empty($item_id) || !is_numeric($item_id)) { |
|
| 375 | 375 | return false; |
| 376 | 376 | } |
| 377 | 377 | |
| 378 | - foreach ( $this->get_items() as $item ) { |
|
| 379 | - if ( $item->get_id() == (int) $item_id ) { |
|
| 378 | + foreach ($this->get_items() as $item) { |
|
| 379 | + if ($item->get_id() == (int) $item_id) { |
|
| 380 | 380 | return $item; |
| 381 | 381 | } |
| 382 | 382 | } |
@@ -392,15 +392,15 @@ discard block |
||
| 392 | 392 | * @param string $element_type The element type to return. |
| 393 | 393 | * @return array|bool |
| 394 | 394 | */ |
| 395 | - public function get_element_type( $element_type ) { |
|
| 395 | + public function get_element_type($element_type) { |
|
| 396 | 396 | |
| 397 | - if ( empty( $element_type ) || ! is_scalar( $element_type ) ) { |
|
| 397 | + if (empty($element_type) || !is_scalar($element_type)) { |
|
| 398 | 398 | return false; |
| 399 | 399 | } |
| 400 | 400 | |
| 401 | - foreach ( $this->get_prop( 'elements' ) as $element ) { |
|
| 401 | + foreach ($this->get_prop('elements') as $element) { |
|
| 402 | 402 | |
| 403 | - if ( $element['type'] == $element_type ) { |
|
| 403 | + if ($element['type'] == $element_type) { |
|
| 404 | 404 | return $element; |
| 405 | 405 | } |
| 406 | 406 | } |
@@ -416,8 +416,8 @@ discard block |
||
| 416 | 416 | * @param string $context View or edit context. |
| 417 | 417 | * @return float |
| 418 | 418 | */ |
| 419 | - public function get_earned( $context = 'view' ) { |
|
| 420 | - return $this->get_prop( 'earned', $context ); |
|
| 419 | + public function get_earned($context = 'view') { |
|
| 420 | + return $this->get_prop('earned', $context); |
|
| 421 | 421 | } |
| 422 | 422 | |
| 423 | 423 | /** |
@@ -427,8 +427,8 @@ discard block |
||
| 427 | 427 | * @param string $context View or edit context. |
| 428 | 428 | * @return float |
| 429 | 429 | */ |
| 430 | - public function get_refunded( $context = 'view' ) { |
|
| 431 | - return $this->get_prop( 'refunded', $context ); |
|
| 430 | + public function get_refunded($context = 'view') { |
|
| 431 | + return $this->get_prop('refunded', $context); |
|
| 432 | 432 | } |
| 433 | 433 | |
| 434 | 434 | /** |
@@ -438,8 +438,8 @@ discard block |
||
| 438 | 438 | * @param string $context View or edit context. |
| 439 | 439 | * @return float |
| 440 | 440 | */ |
| 441 | - public function get_cancelled( $context = 'view' ) { |
|
| 442 | - return $this->get_prop( 'cancelled', $context ); |
|
| 441 | + public function get_cancelled($context = 'view') { |
|
| 442 | + return $this->get_prop('cancelled', $context); |
|
| 443 | 443 | } |
| 444 | 444 | |
| 445 | 445 | /** |
@@ -449,8 +449,8 @@ discard block |
||
| 449 | 449 | * @param string $context View or edit context. |
| 450 | 450 | * @return float |
| 451 | 451 | */ |
| 452 | - public function get_failed( $context = 'view' ) { |
|
| 453 | - return $this->get_prop( 'failed', $context ); |
|
| 452 | + public function get_failed($context = 'view') { |
|
| 453 | + return $this->get_prop('failed', $context); |
|
| 454 | 454 | } |
| 455 | 455 | |
| 456 | 456 | /** |
@@ -461,8 +461,8 @@ discard block |
||
| 461 | 461 | * @return string |
| 462 | 462 | */ |
| 463 | 463 | public function get_currency() { |
| 464 | - $currency = empty( $this->invoice ) ? wpinv_get_currency() : $this->invoice->get_currency(); |
|
| 465 | - return apply_filters( 'getpaid-payment-form-currency', $currency, $this ); |
|
| 464 | + $currency = empty($this->invoice) ? wpinv_get_currency() : $this->invoice->get_currency(); |
|
| 465 | + return apply_filters('getpaid-payment-form-currency', $currency, $this); |
|
| 466 | 466 | } |
| 467 | 467 | |
| 468 | 468 | /* |
@@ -480,8 +480,8 @@ discard block |
||
| 480 | 480 | * |
| 481 | 481 | * @since 1.0.19 |
| 482 | 482 | */ |
| 483 | - public function set_version( $value ) { |
|
| 484 | - $this->set_prop( 'version', $value ); |
|
| 483 | + public function set_version($value) { |
|
| 484 | + $this->set_prop('version', $value); |
|
| 485 | 485 | } |
| 486 | 486 | |
| 487 | 487 | /** |
@@ -491,11 +491,11 @@ discard block |
||
| 491 | 491 | * @param string $value Value to set. |
| 492 | 492 | * @return bool Whether or not the date was set. |
| 493 | 493 | */ |
| 494 | - public function set_date_created( $value ) { |
|
| 495 | - $date = strtotime( $value ); |
|
| 494 | + public function set_date_created($value) { |
|
| 495 | + $date = strtotime($value); |
|
| 496 | 496 | |
| 497 | - if ( $date ) { |
|
| 498 | - $this->set_prop( 'date_created', date( 'Y-m-d H:i:s', $date ) ); |
|
| 497 | + if ($date) { |
|
| 498 | + $this->set_prop('date_created', date('Y-m-d H:i:s', $date)); |
|
| 499 | 499 | return true; |
| 500 | 500 | } |
| 501 | 501 | |
@@ -510,11 +510,11 @@ discard block |
||
| 510 | 510 | * @param string $value Value to set. |
| 511 | 511 | * @return bool Whether or not the date was set. |
| 512 | 512 | */ |
| 513 | - public function set_date_modified( $value ) { |
|
| 514 | - $date = strtotime( $value ); |
|
| 513 | + public function set_date_modified($value) { |
|
| 514 | + $date = strtotime($value); |
|
| 515 | 515 | |
| 516 | - if ( $date ) { |
|
| 517 | - $this->set_prop( 'date_modified', date( 'Y-m-d H:i:s', $date ) ); |
|
| 516 | + if ($date) { |
|
| 517 | + $this->set_prop('date_modified', date('Y-m-d H:i:s', $date)); |
|
| 518 | 518 | return true; |
| 519 | 519 | } |
| 520 | 520 | |
@@ -528,8 +528,8 @@ discard block |
||
| 528 | 528 | * @since 1.0.19 |
| 529 | 529 | * @param string $value New name. |
| 530 | 530 | */ |
| 531 | - public function set_name( $value ) { |
|
| 532 | - $this->set_prop( 'name', sanitize_text_field( $value ) ); |
|
| 531 | + public function set_name($value) { |
|
| 532 | + $this->set_prop('name', sanitize_text_field($value)); |
|
| 533 | 533 | } |
| 534 | 534 | |
| 535 | 535 | /** |
@@ -538,8 +538,8 @@ discard block |
||
| 538 | 538 | * @since 1.0.19 |
| 539 | 539 | * @param string $value New name. |
| 540 | 540 | */ |
| 541 | - public function set_title( $value ) { |
|
| 542 | - $this->set_name( $value ); |
|
| 541 | + public function set_title($value) { |
|
| 542 | + $this->set_name($value); |
|
| 543 | 543 | } |
| 544 | 544 | |
| 545 | 545 | /** |
@@ -548,8 +548,8 @@ discard block |
||
| 548 | 548 | * @since 1.0.19 |
| 549 | 549 | * @param int $value New author. |
| 550 | 550 | */ |
| 551 | - public function set_author( $value ) { |
|
| 552 | - $this->set_prop( 'author', (int) $value ); |
|
| 551 | + public function set_author($value) { |
|
| 552 | + $this->set_prop('author', (int) $value); |
|
| 553 | 553 | } |
| 554 | 554 | |
| 555 | 555 | /** |
@@ -559,9 +559,9 @@ discard block |
||
| 559 | 559 | * @sinve 2.3.4 Array values sanitized. |
| 560 | 560 | * @param array $value Form elements. |
| 561 | 561 | */ |
| 562 | - public function set_elements( $value ) { |
|
| 563 | - if ( is_array( $value ) ) { |
|
| 564 | - $this->set_prop( 'elements', wp_kses_post_deep( $value ) ); |
|
| 562 | + public function set_elements($value) { |
|
| 563 | + if (is_array($value)) { |
|
| 564 | + $this->set_prop('elements', wp_kses_post_deep($value)); |
|
| 565 | 565 | } |
| 566 | 566 | } |
| 567 | 567 | |
@@ -572,36 +572,36 @@ discard block |
||
| 572 | 572 | * |
| 573 | 573 | * @return mixed |
| 574 | 574 | */ |
| 575 | - public function sanitize_array_values( $value ) { |
|
| 575 | + public function sanitize_array_values($value) { |
|
| 576 | 576 | |
| 577 | 577 | // sanitize |
| 578 | - if ( ! empty( $value ) ) { |
|
| 578 | + if (!empty($value)) { |
|
| 579 | 579 | |
| 580 | - foreach ( $value as $key => $val_arr ) { |
|
| 580 | + foreach ($value as $key => $val_arr) { |
|
| 581 | 581 | |
| 582 | - if ( is_array( $val_arr ) ) { |
|
| 582 | + if (is_array($val_arr)) { |
|
| 583 | 583 | // check if we have sub array items. |
| 584 | 584 | $sub_arr = array(); |
| 585 | - foreach ( $val_arr as $key2 => $val2 ) { |
|
| 586 | - if ( is_array( $val2 ) ) { |
|
| 587 | - $sub_arr[ $key2 ] = $this->sanitize_array_values( $val2 ); |
|
| 588 | - unset( $val_arr[ $key ][ $key2 ] ); |
|
| 585 | + foreach ($val_arr as $key2 => $val2) { |
|
| 586 | + if (is_array($val2)) { |
|
| 587 | + $sub_arr[$key2] = $this->sanitize_array_values($val2); |
|
| 588 | + unset($val_arr[$key][$key2]); |
|
| 589 | 589 | } |
| 590 | 590 | } |
| 591 | 591 | |
| 592 | 592 | // we allow some html in description so we sanitize it separately. |
| 593 | - $help_text = ! empty( $val_arr['description'] ) ? wp_kses_post( $val_arr['description'] ) : ''; |
|
| 593 | + $help_text = !empty($val_arr['description']) ? wp_kses_post($val_arr['description']) : ''; |
|
| 594 | 594 | |
| 595 | 595 | // sanitize array elements |
| 596 | - $value[ $key ] = array_map( 'sanitize_text_field', $val_arr ); |
|
| 596 | + $value[$key] = array_map('sanitize_text_field', $val_arr); |
|
| 597 | 597 | |
| 598 | 598 | // add back the description if set |
| 599 | - if ( isset( $val_arr['description'] ) ) { |
|
| 600 | -$value[ $key ]['description'] = $help_text;} |
|
| 599 | + if (isset($val_arr['description'])) { |
|
| 600 | +$value[$key]['description'] = $help_text; } |
|
| 601 | 601 | |
| 602 | 602 | // add back sub array items after its been sanitized. |
| 603 | - if ( ! empty( $sub_arr ) ) { |
|
| 604 | - $value[ $key ] = array_merge( $value[ $key ], $sub_arr ); |
|
| 603 | + if (!empty($sub_arr)) { |
|
| 604 | + $value[$key] = array_merge($value[$key], $sub_arr); |
|
| 605 | 605 | } |
| 606 | 606 | } |
| 607 | 607 | } |
@@ -616,9 +616,9 @@ discard block |
||
| 616 | 616 | * @since 1.0.19 |
| 617 | 617 | * @param array $value Form elements. |
| 618 | 618 | */ |
| 619 | - public function set_items( $value ) { |
|
| 620 | - if ( is_array( $value ) ) { |
|
| 621 | - $this->set_prop( 'items', $value ); |
|
| 619 | + public function set_items($value) { |
|
| 620 | + if (is_array($value)) { |
|
| 621 | + $this->set_prop('items', $value); |
|
| 622 | 622 | } |
| 623 | 623 | } |
| 624 | 624 | |
@@ -628,9 +628,9 @@ discard block |
||
| 628 | 628 | * @since 1.0.19 |
| 629 | 629 | * @param float $value Amount earned. |
| 630 | 630 | */ |
| 631 | - public function set_earned( $value ) { |
|
| 632 | - $value = max( (float) $value, 0 ); |
|
| 633 | - $this->set_prop( 'earned', $value ); |
|
| 631 | + public function set_earned($value) { |
|
| 632 | + $value = max((float) $value, 0); |
|
| 633 | + $this->set_prop('earned', $value); |
|
| 634 | 634 | } |
| 635 | 635 | |
| 636 | 636 | /** |
@@ -639,9 +639,9 @@ discard block |
||
| 639 | 639 | * @since 1.0.19 |
| 640 | 640 | * @param float $value Amount refunded. |
| 641 | 641 | */ |
| 642 | - public function set_refunded( $value ) { |
|
| 643 | - $value = max( (float) $value, 0 ); |
|
| 644 | - $this->set_prop( 'refunded', $value ); |
|
| 642 | + public function set_refunded($value) { |
|
| 643 | + $value = max((float) $value, 0); |
|
| 644 | + $this->set_prop('refunded', $value); |
|
| 645 | 645 | } |
| 646 | 646 | |
| 647 | 647 | /** |
@@ -650,9 +650,9 @@ discard block |
||
| 650 | 650 | * @since 1.0.19 |
| 651 | 651 | * @param float $value Amount cancelled. |
| 652 | 652 | */ |
| 653 | - public function set_cancelled( $value ) { |
|
| 654 | - $value = max( (float) $value, 0 ); |
|
| 655 | - $this->set_prop( 'cancelled', $value ); |
|
| 653 | + public function set_cancelled($value) { |
|
| 654 | + $value = max((float) $value, 0); |
|
| 655 | + $this->set_prop('cancelled', $value); |
|
| 656 | 656 | } |
| 657 | 657 | |
| 658 | 658 | /** |
@@ -661,9 +661,9 @@ discard block |
||
| 661 | 661 | * @since 1.0.19 |
| 662 | 662 | * @param float $value Amount cancelled. |
| 663 | 663 | */ |
| 664 | - public function set_failed( $value ) { |
|
| 665 | - $value = max( (float) $value, 0 ); |
|
| 666 | - $this->set_prop( 'failed', $value ); |
|
| 664 | + public function set_failed($value) { |
|
| 665 | + $value = max((float) $value, 0); |
|
| 666 | + $this->set_prop('failed', $value); |
|
| 667 | 667 | } |
| 668 | 668 | |
| 669 | 669 | /** |
@@ -672,11 +672,11 @@ discard block |
||
| 672 | 672 | * @deprecated |
| 673 | 673 | * @return int item id |
| 674 | 674 | */ |
| 675 | - public function create( $data = array() ) { |
|
| 675 | + public function create($data = array()) { |
|
| 676 | 676 | |
| 677 | 677 | // Set the properties. |
| 678 | - if ( is_array( $data ) ) { |
|
| 679 | - $this->set_props( $data ); |
|
| 678 | + if (is_array($data)) { |
|
| 679 | + $this->set_props($data); |
|
| 680 | 680 | } |
| 681 | 681 | |
| 682 | 682 | // Save the item. |
@@ -690,8 +690,8 @@ discard block |
||
| 690 | 690 | * @deprecated |
| 691 | 691 | * @return int item id |
| 692 | 692 | */ |
| 693 | - public function update( $data = array() ) { |
|
| 694 | - return $this->create( $data ); |
|
| 693 | + public function update($data = array()) { |
|
| 694 | + return $this->create($data); |
|
| 695 | 695 | } |
| 696 | 696 | |
| 697 | 697 | /* |
@@ -711,7 +711,7 @@ discard block |
||
| 711 | 711 | */ |
| 712 | 712 | public function is_default() { |
| 713 | 713 | $is_default = $this->get_id() == wpinv_get_default_payment_form(); |
| 714 | - return (bool) apply_filters( 'wpinv_is_default_payment_form', $is_default, $this->get_id(), $this ); |
|
| 714 | + return (bool) apply_filters('wpinv_is_default_payment_form', $is_default, $this->get_id(), $this); |
|
| 715 | 715 | } |
| 716 | 716 | |
| 717 | 717 | /** |
@@ -723,11 +723,11 @@ discard block |
||
| 723 | 723 | public function is_active() { |
| 724 | 724 | $is_active = 0 !== (int) $this->get_id(); |
| 725 | 725 | |
| 726 | - if ( $is_active && ! current_user_can( 'edit_post', $this->get_id() ) && $this->get_status() != 'publish' ) { |
|
| 726 | + if ($is_active && !current_user_can('edit_post', $this->get_id()) && $this->get_status() != 'publish') { |
|
| 727 | 727 | $is_active = false; |
| 728 | 728 | } |
| 729 | 729 | |
| 730 | - return (bool) apply_filters( 'wpinv_is_payment_form_active', $is_active, $this ); |
|
| 730 | + return (bool) apply_filters('wpinv_is_payment_form_active', $is_active, $this); |
|
| 731 | 731 | } |
| 732 | 732 | |
| 733 | 733 | /** |
@@ -736,8 +736,8 @@ discard block |
||
| 736 | 736 | * @since 1.0.19 |
| 737 | 737 | * @return bool |
| 738 | 738 | */ |
| 739 | - public function has_item( $item_id ) { |
|
| 740 | - return false !== $this->get_item( $item_id ); |
|
| 739 | + public function has_item($item_id) { |
|
| 740 | + return false !== $this->get_item($item_id); |
|
| 741 | 741 | } |
| 742 | 742 | |
| 743 | 743 | /** |
@@ -746,8 +746,8 @@ discard block |
||
| 746 | 746 | * @since 1.0.19 |
| 747 | 747 | * @return bool |
| 748 | 748 | */ |
| 749 | - public function has_element_type( $element_type ) { |
|
| 750 | - return false !== $this->get_element_type( $element_type ); |
|
| 749 | + public function has_element_type($element_type) { |
|
| 750 | + return false !== $this->get_element_type($element_type); |
|
| 751 | 751 | } |
| 752 | 752 | |
| 753 | 753 | /** |
@@ -758,13 +758,13 @@ discard block |
||
| 758 | 758 | */ |
| 759 | 759 | public function is_recurring() { |
| 760 | 760 | |
| 761 | - if ( ! empty( $this->invoice ) ) { |
|
| 761 | + if (!empty($this->invoice)) { |
|
| 762 | 762 | return $this->invoice->is_recurring(); |
| 763 | 763 | } |
| 764 | 764 | |
| 765 | - foreach ( $this->get_items() as $item ) { |
|
| 765 | + foreach ($this->get_items() as $item) { |
|
| 766 | 766 | |
| 767 | - if ( $item->is_recurring() ) { |
|
| 767 | + if ($item->is_recurring()) { |
|
| 768 | 768 | return true; |
| 769 | 769 | } |
| 770 | 770 | } |
@@ -777,7 +777,7 @@ discard block |
||
| 777 | 777 | * |
| 778 | 778 | * @since 1.0.19 |
| 779 | 779 | */ |
| 780 | - public function get_html( $extra_markup = '' ) { |
|
| 780 | + public function get_html($extra_markup = '') { |
|
| 781 | 781 | |
| 782 | 782 | // Return the HTML. |
| 783 | 783 | return wpinv_get_template_html( |
@@ -795,7 +795,7 @@ discard block |
||
| 795 | 795 | * |
| 796 | 796 | * @since 1.0.19 |
| 797 | 797 | */ |
| 798 | - public function display( $extra_markup = '' ) { |
|
| 798 | + public function display($extra_markup = '') { |
|
| 799 | 799 | wpinv_get_template( |
| 800 | 800 | 'payment-forms/form.php', |
| 801 | 801 | array( |
@@ -8,18 +8,18 @@ discard block |
||
| 8 | 8 | * @var WPInv_Invoice $invoice |
| 9 | 9 | */ |
| 10 | 10 | |
| 11 | -defined( 'ABSPATH' ) || exit; |
|
| 11 | +defined('ABSPATH') || exit; |
|
| 12 | 12 | |
| 13 | -$column_count = count( $columns ); |
|
| 13 | +$column_count = count($columns); |
|
| 14 | 14 | ?> |
| 15 | 15 | |
| 16 | -<?php do_action( 'wpinv_before_email_items', $invoice ); ?> |
|
| 16 | +<?php do_action('wpinv_before_email_items', $invoice); ?> |
|
| 17 | 17 | |
| 18 | 18 | |
| 19 | 19 | <div id="wpinv-email-items"> |
| 20 | 20 | |
| 21 | 21 | <h3 class="invoice-items-title"> |
| 22 | - <?php echo sprintf( esc_html__( '%s Items', 'invoicing' ), esc_html( ucfirst( $invoice->get_invoice_quote_type() ) ) ); ?> |
|
| 22 | + <?php echo sprintf(esc_html__('%s Items', 'invoicing'), esc_html(ucfirst($invoice->get_invoice_quote_type()))); ?> |
|
| 23 | 23 | </h3> |
| 24 | 24 | |
| 25 | 25 | <table class="table table-bordered table-hover"> |
@@ -28,9 +28,9 @@ discard block |
||
| 28 | 28 | |
| 29 | 29 | <tr class="wpinv_cart_header_row"> |
| 30 | 30 | |
| 31 | - <?php foreach ( $columns as $key => $label ) : ?> |
|
| 32 | - <th class="<?php echo 'name' == $key ? 'text-left' : 'text-right'; ?> wpinv_cart_item_<?php echo esc_attr( $key ); ?>"> |
|
| 33 | - <?php echo esc_html( $label ); ?> |
|
| 31 | + <?php foreach ($columns as $key => $label) : ?> |
|
| 32 | + <th class="<?php echo 'name' == $key ? 'text-left' : 'text-right'; ?> wpinv_cart_item_<?php echo esc_attr($key); ?>"> |
|
| 33 | + <?php echo esc_html($label); ?> |
|
| 34 | 34 | </th> |
| 35 | 35 | <?php endforeach; ?> |
| 36 | 36 | |
@@ -43,13 +43,13 @@ discard block |
||
| 43 | 43 | <?php |
| 44 | 44 | |
| 45 | 45 | // Display the item totals. |
| 46 | - foreach ( $invoice->get_items() as $item ) { |
|
| 47 | - wpinv_get_template( 'emails/invoice-item.php', compact( 'invoice', 'item', 'columns' ) ); |
|
| 46 | + foreach ($invoice->get_items() as $item) { |
|
| 47 | + wpinv_get_template('emails/invoice-item.php', compact('invoice', 'item', 'columns')); |
|
| 48 | 48 | } |
| 49 | 49 | |
| 50 | 50 | // Display the fee totals. |
| 51 | - foreach ( $invoice->get_fees() as $fee ) { |
|
| 52 | - wpinv_get_template( 'emails/fee-item.php', compact( 'invoice', 'fee', 'columns' ) ); |
|
| 51 | + foreach ($invoice->get_fees() as $fee) { |
|
| 52 | + wpinv_get_template('emails/fee-item.php', compact('invoice', 'fee', 'columns')); |
|
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | ?> |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | </tbody> |
| 58 | 58 | |
| 59 | 59 | <tfoot> |
| 60 | - <?php wpinv_get_template( 'emails/invoice-totals.php', compact( 'invoice', 'column_count' ) ); ?> |
|
| 60 | + <?php wpinv_get_template('emails/invoice-totals.php', compact('invoice', 'column_count')); ?> |
|
| 61 | 61 | </tfoot> |
| 62 | 62 | |
| 63 | 63 | </table> |
@@ -10,64 +10,64 @@ discard block |
||
| 10 | 10 | * @var array $columns |
| 11 | 11 | */ |
| 12 | 12 | |
| 13 | -defined( 'ABSPATH' ) || exit; |
|
| 13 | +defined('ABSPATH') || exit; |
|
| 14 | 14 | |
| 15 | 15 | ?> |
| 16 | 16 | |
| 17 | -<?php do_action( 'getpaid_before_email_line_item', $invoice, $item ); ?> |
|
| 17 | +<?php do_action('getpaid_before_email_line_item', $invoice, $item); ?> |
|
| 18 | 18 | |
| 19 | -<tr class="wpinv_cart_item item-type-<?php echo esc_attr( $item->get_type() ); ?>"> |
|
| 19 | +<tr class="wpinv_cart_item item-type-<?php echo esc_attr($item->get_type()); ?>"> |
|
| 20 | 20 | |
| 21 | - <?php foreach ( array_keys( $columns ) as $column ) : ?> |
|
| 21 | + <?php foreach (array_keys($columns) as $column) : ?> |
|
| 22 | 22 | |
| 23 | - <td class="<?php echo 'name' == $column ? 'text-left' : 'text-right'; ?> wpinv_cart_item_<?php echo esc_attr( $column ); ?>"> |
|
| 23 | + <td class="<?php echo 'name' == $column ? 'text-left' : 'text-right'; ?> wpinv_cart_item_<?php echo esc_attr($column); ?>"> |
|
| 24 | 24 | |
| 25 | 25 | <?php |
| 26 | 26 | |
| 27 | 27 | // Fires before printing a line item column. |
| 28 | - do_action( "getpaid_email_line_item_before_$column", $item, $invoice ); |
|
| 28 | + do_action("getpaid_email_line_item_before_$column", $item, $invoice); |
|
| 29 | 29 | |
| 30 | 30 | // Item name. |
| 31 | - if ( 'name' == $column ) { |
|
| 31 | + if ('name' == $column) { |
|
| 32 | 32 | |
| 33 | 33 | // Display the name. |
| 34 | - echo '<div class="wpinv_email_cart_item_title">' . esc_html( $item->get_name() ) . '</div>'; |
|
| 34 | + echo '<div class="wpinv_email_cart_item_title">' . esc_html($item->get_name()) . '</div>'; |
|
| 35 | 35 | |
| 36 | 36 | // And an optional description. |
| 37 | 37 | $description = $item->get_description(); |
| 38 | 38 | |
| 39 | - if ( ! empty( $description ) ) { |
|
| 40 | - echo "<p class='small'>" . wp_kses_post( $description ) . "</p>"; |
|
| 39 | + if (!empty($description)) { |
|
| 40 | + echo "<p class='small'>" . wp_kses_post($description) . "</p>"; |
|
| 41 | 41 | } |
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | // Item price. |
| 45 | - if ( 'price' == $column ) { |
|
| 45 | + if ('price' == $column) { |
|
| 46 | 46 | |
| 47 | 47 | // Display the item price (or recurring price if this is a renewal invoice) |
| 48 | 48 | $price = $invoice->is_renewal() ? $item->get_price() : $item->get_initial_price(); |
| 49 | - wpinv_the_price( $price, $invoice->get_currency() ); |
|
| 49 | + wpinv_the_price($price, $invoice->get_currency()); |
|
| 50 | 50 | |
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | // Item quantity. |
| 54 | - if ( 'quantity' == $column ) { |
|
| 54 | + if ('quantity' == $column) { |
|
| 55 | 55 | echo (float) $item->get_quantity(); |
| 56 | 56 | } |
| 57 | 57 | |
| 58 | 58 | // Tax rate. |
| 59 | - if ( 'tax_rate' == $column ) { |
|
| 60 | - echo floatval( round( getpaid_get_invoice_tax_rate( $invoice, $item ), 2 ) ) . '%'; |
|
| 59 | + if ('tax_rate' == $column) { |
|
| 60 | + echo floatval(round(getpaid_get_invoice_tax_rate($invoice, $item), 2)) . '%'; |
|
| 61 | 61 | } |
| 62 | 62 | |
| 63 | 63 | // Item sub total. |
| 64 | - if ( 'subtotal' == $column ) { |
|
| 64 | + if ('subtotal' == $column) { |
|
| 65 | 65 | $subtotal = $invoice->is_renewal() ? $item->get_recurring_sub_total() : $item->get_sub_total(); |
| 66 | - wpinv_the_price( $subtotal, $invoice->get_currency() ); |
|
| 66 | + wpinv_the_price($subtotal, $invoice->get_currency()); |
|
| 67 | 67 | } |
| 68 | 68 | |
| 69 | 69 | // Fires when printing a line item column. |
| 70 | - do_action( "getpaid_email_line_item_$column", $item, $invoice ); |
|
| 70 | + do_action("getpaid_email_line_item_$column", $item, $invoice); |
|
| 71 | 71 | |
| 72 | 72 | ?> |
| 73 | 73 | |
@@ -77,4 +77,4 @@ discard block |
||
| 77 | 77 | |
| 78 | 78 | </tr> |
| 79 | 79 | |
| 80 | -<?php do_action( 'getpaid_after_email_line_item', $invoice, $item ); ?> |
|
| 80 | +<?php do_action('getpaid_after_email_line_item', $invoice, $item); ?> |
|
@@ -8,45 +8,45 @@ discard block |
||
| 8 | 8 | * @var WPInv_Invoice $invoice |
| 9 | 9 | * @var array $columns |
| 10 | 10 | */ |
| 11 | -defined( 'ABSPATH' ) || exit; |
|
| 11 | +defined('ABSPATH') || exit; |
|
| 12 | 12 | |
| 13 | -$meta_data = getpaid_get_invoice_meta( $invoice ); |
|
| 13 | +$meta_data = getpaid_get_invoice_meta($invoice); |
|
| 14 | 14 | |
| 15 | -if ( isset( $meta_data['status'] ) ) { |
|
| 15 | +if (isset($meta_data['status'])) { |
|
| 16 | 16 | $meta_data['status']['value'] = $invoice->get_status_nicename(); |
| 17 | 17 | } |
| 18 | 18 | |
| 19 | -do_action( 'wpinv_email_before_invoice_details', $invoice, $sent_to_admin ); |
|
| 19 | +do_action('wpinv_email_before_invoice_details', $invoice, $sent_to_admin); |
|
| 20 | 20 | |
| 21 | 21 | ?> |
| 22 | 22 | |
| 23 | 23 | <div id="wpinv-email-details"> |
| 24 | 24 | |
| 25 | 25 | <h3 class="invoice-details-title"> |
| 26 | - <?php echo sprintf( esc_html__( '%s Details', 'invoicing' ), esc_html( ucfirst( $invoice->get_invoice_quote_type() ) ) ); ?> |
|
| 26 | + <?php echo sprintf(esc_html__('%s Details', 'invoicing'), esc_html(ucfirst($invoice->get_invoice_quote_type()))); ?> |
|
| 27 | 27 | </h3> |
| 28 | 28 | |
| 29 | 29 | <table class="table table-bordered table-sm"> |
| 30 | 30 | |
| 31 | - <?php foreach ( $meta_data as $key => $data ) : ?> |
|
| 31 | + <?php foreach ($meta_data as $key => $data) : ?> |
|
| 32 | 32 | |
| 33 | - <?php if ( ! empty( $data['value'] ) ) : ?> |
|
| 33 | + <?php if (!empty($data['value'])) : ?> |
|
| 34 | 34 | |
| 35 | - <?php do_action( "getpaid_before_email_details_$key", $invoice, $data ); ?> |
|
| 35 | + <?php do_action("getpaid_before_email_details_$key", $invoice, $data); ?> |
|
| 36 | 36 | |
| 37 | - <tr class="getpaid-email-details-<?php echo esc_attr( $key ); ?>"> |
|
| 37 | + <tr class="getpaid-email-details-<?php echo esc_attr($key); ?>"> |
|
| 38 | 38 | |
| 39 | 39 | <td class="getpaid-lable-td"> |
| 40 | - <?php echo esc_html( $data['label'] ); ?> |
|
| 40 | + <?php echo esc_html($data['label']); ?> |
|
| 41 | 41 | </td> |
| 42 | 42 | |
| 43 | 43 | <td class="getpaid-value-td"> |
| 44 | - <span class="getpaid-invoice-meta-<?php echo esc_attr( $key ); ?>-value"><?php echo wp_kses_post( $data['value'] ); ?></span> |
|
| 44 | + <span class="getpaid-invoice-meta-<?php echo esc_attr($key); ?>-value"><?php echo wp_kses_post($data['value']); ?></span> |
|
| 45 | 45 | </td> |
| 46 | 46 | |
| 47 | 47 | </tr> |
| 48 | 48 | |
| 49 | - <?php do_action( "getpaid_after_email_details_$key", $invoice, $data ); ?> |
|
| 49 | + <?php do_action("getpaid_after_email_details_$key", $invoice, $data); ?> |
|
| 50 | 50 | |
| 51 | 51 | <?php endif; ?> |
| 52 | 52 | |
@@ -56,4 +56,4 @@ discard block |
||
| 56 | 56 | |
| 57 | 57 | </div> |
| 58 | 58 | |
| 59 | -<?php do_action( 'wpinv_email_after_invoice_details', $invoice, $sent_to_admin ); ?> |
|
| 59 | +<?php do_action('wpinv_email_after_invoice_details', $invoice, $sent_to_admin); ?> |
|