@@ -19,16 +19,16 @@ discard block |
||
| 19 | 19 | |
| 20 | 20 | // Define constants. |
| 21 | 21 | if ( ! defined( 'WPINV_PLUGIN_FILE' ) ) { |
| 22 | - define( 'WPINV_PLUGIN_FILE', __FILE__ ); |
|
| 22 | + define( 'WPINV_PLUGIN_FILE', __FILE__ ); |
|
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | if ( ! defined( 'WPINV_VERSION' ) ) { |
| 26 | - define( 'WPINV_VERSION', '2.6.4' ); |
|
| 26 | + define( 'WPINV_VERSION', '2.6.4' ); |
|
| 27 | 27 | } |
| 28 | 28 | |
| 29 | 29 | // Include the main Invoicing class. |
| 30 | 30 | if ( ! class_exists( 'WPInv_Plugin', false ) ) { |
| 31 | - require_once plugin_dir_path( WPINV_PLUGIN_FILE ) . 'includes/class-wpinv.php'; |
|
| 31 | + require_once plugin_dir_path( WPINV_PLUGIN_FILE ) . 'includes/class-wpinv.php'; |
|
| 32 | 32 | } |
| 33 | 33 | |
| 34 | 34 | /** |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | $GLOBALS['invoicing'] = new WPInv_Plugin(); |
| 44 | 44 | } |
| 45 | 45 | |
| 46 | - return $GLOBALS['invoicing']; |
|
| 46 | + return $GLOBALS['invoicing']; |
|
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | /** |
@@ -1,32 +1,32 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | - // Is the request set up correctly? |
|
| 4 | - if ( empty( $_GET['form'] ) && empty( $_GET['item'] ) ) { |
|
| 5 | - return aui()->alert( |
|
| 6 | - array( |
|
| 7 | - 'type' => 'warning', |
|
| 8 | - 'content' => __( 'No payment form or item selected', 'invoicing' ), |
|
| 9 | - ) |
|
| 10 | - ); |
|
| 11 | - wp_die( __( 'No payment form or item selected', 'invoicing' ), 400 ); |
|
| 12 | - } |
|
| 13 | - |
|
| 14 | - // Payment form or button? |
|
| 15 | - if ( ! empty( $_GET['form'] ) ) { |
|
| 16 | - |
|
| 17 | - $shortcode = sprintf( |
|
| 18 | - '[getpaid form=%s]', |
|
| 19 | - (int) $_GET['form'] |
|
| 20 | - ); |
|
| 21 | - |
|
| 22 | - } else { |
|
| 23 | - |
|
| 24 | - $shortcode = sprintf( |
|
| 25 | - '[getpaid item=%s]', |
|
| 26 | - esc_attr( urldecode( $_GET['item'] ) ) |
|
| 27 | - ); |
|
| 28 | - |
|
| 29 | - } |
|
| 3 | + // Is the request set up correctly? |
|
| 4 | + if ( empty( $_GET['form'] ) && empty( $_GET['item'] ) ) { |
|
| 5 | + return aui()->alert( |
|
| 6 | + array( |
|
| 7 | + 'type' => 'warning', |
|
| 8 | + 'content' => __( 'No payment form or item selected', 'invoicing' ), |
|
| 9 | + ) |
|
| 10 | + ); |
|
| 11 | + wp_die( __( 'No payment form or item selected', 'invoicing' ), 400 ); |
|
| 12 | + } |
|
| 13 | + |
|
| 14 | + // Payment form or button? |
|
| 15 | + if ( ! empty( $_GET['form'] ) ) { |
|
| 16 | + |
|
| 17 | + $shortcode = sprintf( |
|
| 18 | + '[getpaid form=%s]', |
|
| 19 | + (int) $_GET['form'] |
|
| 20 | + ); |
|
| 21 | + |
|
| 22 | + } else { |
|
| 23 | + |
|
| 24 | + $shortcode = sprintf( |
|
| 25 | + '[getpaid item=%s]', |
|
| 26 | + esc_attr( urldecode( $_GET['item'] ) ) |
|
| 27 | + ); |
|
| 28 | + |
|
| 29 | + } |
|
| 30 | 30 | |
| 31 | 31 | ?> |
| 32 | 32 | |
@@ -44,12 +44,12 @@ discard block |
||
| 44 | 44 | |
| 45 | 45 | <title>GetPaid</title> |
| 46 | 46 | <?php |
| 47 | - wp_enqueue_scripts(); |
|
| 48 | - wp_print_styles(); |
|
| 49 | - wp_print_head_scripts(); |
|
| 50 | - wp_custom_css_cb(); |
|
| 51 | - wpinv_get_template( 'frontend-head.php' ); |
|
| 52 | - ?> |
|
| 47 | + wp_enqueue_scripts(); |
|
| 48 | + wp_print_styles(); |
|
| 49 | + wp_print_head_scripts(); |
|
| 50 | + wp_custom_css_cb(); |
|
| 51 | + wpinv_get_template( 'frontend-head.php' ); |
|
| 52 | + ?> |
|
| 53 | 53 | |
| 54 | 54 | <style type="text/css"> |
| 55 | 55 | .body{ |
@@ -83,11 +83,11 @@ discard block |
||
| 83 | 83 | <body class="body page-template-default page"> |
| 84 | 84 | <div id="getpaid-form-embed" class="container my-5 page type-page status-publish hentry post post-content"> |
| 85 | 85 | <?php |
| 86 | - do_action( 'getpaid_payment_form_embed_top' ); |
|
| 87 | - echo do_shortcode( $shortcode ); |
|
| 88 | - do_action( 'getpaid_payment_form_embed_bottom' ); |
|
| 89 | - wpinv_get_template( 'frontend-footer.php' ); |
|
| 90 | - ?> |
|
| 86 | + do_action( 'getpaid_payment_form_embed_top' ); |
|
| 87 | + echo do_shortcode( $shortcode ); |
|
| 88 | + do_action( 'getpaid_payment_form_embed_bottom' ); |
|
| 89 | + wpinv_get_template( 'frontend-footer.php' ); |
|
| 90 | + ?> |
|
| 91 | 91 | </div> |
| 92 | 92 | <?php wp_footer(); ?> |
| 93 | 93 | </body> |
@@ -14,144 +14,144 @@ discard block |
||
| 14 | 14 | */ |
| 15 | 15 | class WPInv_Subscriptions_Widget extends WP_Super_Duper { |
| 16 | 16 | |
| 17 | - /** |
|
| 18 | - * Register the widget with WordPress. |
|
| 19 | - * |
|
| 20 | - */ |
|
| 21 | - public function __construct() { |
|
| 22 | - |
|
| 23 | - $options = array( |
|
| 24 | - 'textdomain' => 'invoicing', |
|
| 25 | - 'block-icon' => 'controls-repeat', |
|
| 26 | - 'block-category'=> 'widgets', |
|
| 27 | - 'block-keywords'=> "['invoicing','subscriptions', 'getpaid']", |
|
| 28 | - 'class_name' => __CLASS__, |
|
| 29 | - 'base_id' => 'wpinv_subscriptions', |
|
| 30 | - 'name' => __( 'GetPaid > Subscriptions', 'invoicing' ), |
|
| 31 | - 'widget_ops' => array( |
|
| 32 | - 'classname' => 'getpaid-subscriptions bsui', |
|
| 33 | - 'description' => esc_html__( "Displays the current user's subscriptions.", 'invoicing' ), |
|
| 34 | - ), |
|
| 35 | - 'arguments' => array( |
|
| 36 | - 'title' => array( |
|
| 37 | - 'title' => __( 'Widget title', 'invoicing' ), |
|
| 38 | - 'desc' => __( 'Enter widget title.', 'invoicing' ), |
|
| 39 | - 'type' => 'text', |
|
| 40 | - 'desc_tip' => true, |
|
| 41 | - 'default' => '', |
|
| 42 | - 'advanced' => false |
|
| 43 | - ), |
|
| 44 | - ) |
|
| 45 | - |
|
| 46 | - ); |
|
| 47 | - |
|
| 48 | - |
|
| 49 | - parent::__construct( $options ); |
|
| 50 | - } |
|
| 51 | - |
|
| 52 | - /** |
|
| 53 | - * Retrieves current user's subscriptions. |
|
| 54 | - * |
|
| 55 | - * @return GetPaid_Subscriptions_Query |
|
| 56 | - */ |
|
| 57 | - public function get_subscriptions() { |
|
| 58 | - |
|
| 59 | - // Prepare license args. |
|
| 60 | - $args = array( |
|
| 61 | - 'customer_in' => get_current_user_id(), |
|
| 62 | - 'paged' => ( get_query_var( 'paged' ) ) ? absint( get_query_var( 'paged' ) ) : 1, |
|
| 63 | - ); |
|
| 64 | - |
|
| 65 | - return new GetPaid_Subscriptions_Query( $args ); |
|
| 66 | - |
|
| 67 | - } |
|
| 68 | - |
|
| 69 | - /** |
|
| 70 | - * The Super block output function. |
|
| 71 | - * |
|
| 72 | - * @param array $args |
|
| 73 | - * @param array $widget_args |
|
| 74 | - * @param string $content |
|
| 75 | - * |
|
| 76 | - * @return mixed|string|bool |
|
| 77 | - */ |
|
| 78 | - public function output( $args = array(), $widget_args = array(), $content = '' ) { |
|
| 79 | - |
|
| 80 | - // Ensure that the user is logged in. |
|
| 81 | - if ( ! is_user_logged_in() ) { |
|
| 82 | - |
|
| 83 | - return aui()->alert( |
|
| 84 | - array( |
|
| 85 | - 'content' => wp_kses_post( __( 'You need to log-in or create an account to view this section.', 'invoicing' ) ), |
|
| 86 | - 'type' => 'error', |
|
| 87 | - ) |
|
| 88 | - ); |
|
| 89 | - |
|
| 90 | - } |
|
| 91 | - |
|
| 92 | - // Are we displaying a single subscription? |
|
| 93 | - if ( isset( $_GET['subscription'] ) ) { |
|
| 94 | - return $this->display_single_subscription( intval( $_GET['subscription'] ) ); |
|
| 95 | - } |
|
| 96 | - |
|
| 97 | - // Retrieve the user's subscriptions. |
|
| 98 | - $subscriptions = $this->get_subscriptions(); |
|
| 99 | - |
|
| 100 | - // Start the output buffer. |
|
| 101 | - ob_start(); |
|
| 102 | - |
|
| 103 | - // Backwards compatibility. |
|
| 104 | - do_action( 'wpinv_before_user_subscriptions' ); |
|
| 105 | - |
|
| 106 | - // Display errors and notices. |
|
| 107 | - wpinv_print_errors(); |
|
| 108 | - |
|
| 109 | - do_action( 'getpaid_license_manager_before_subscriptions', $subscriptions ); |
|
| 110 | - |
|
| 111 | - // Print the table header. |
|
| 112 | - $this->print_table_header(); |
|
| 113 | - |
|
| 114 | - // Print table body. |
|
| 115 | - $this->print_table_body( $subscriptions->get_results() ); |
|
| 116 | - |
|
| 117 | - // Print table footer. |
|
| 118 | - $this->print_table_footer(); |
|
| 119 | - |
|
| 120 | - // Print the navigation. |
|
| 121 | - $this->print_navigation( $subscriptions->get_total() ); |
|
| 122 | - |
|
| 123 | - // Backwards compatibility. |
|
| 124 | - do_action( 'wpinv_after_user_subscriptions' ); |
|
| 125 | - |
|
| 126 | - // Return the output. |
|
| 127 | - return ob_get_clean(); |
|
| 128 | - |
|
| 129 | - } |
|
| 130 | - |
|
| 131 | - /** |
|
| 132 | - * Retrieves the subscription columns. |
|
| 133 | - * |
|
| 134 | - * @return array |
|
| 135 | - */ |
|
| 136 | - public function get_subscriptions_table_columns() { |
|
| 17 | + /** |
|
| 18 | + * Register the widget with WordPress. |
|
| 19 | + * |
|
| 20 | + */ |
|
| 21 | + public function __construct() { |
|
| 22 | + |
|
| 23 | + $options = array( |
|
| 24 | + 'textdomain' => 'invoicing', |
|
| 25 | + 'block-icon' => 'controls-repeat', |
|
| 26 | + 'block-category'=> 'widgets', |
|
| 27 | + 'block-keywords'=> "['invoicing','subscriptions', 'getpaid']", |
|
| 28 | + 'class_name' => __CLASS__, |
|
| 29 | + 'base_id' => 'wpinv_subscriptions', |
|
| 30 | + 'name' => __( 'GetPaid > Subscriptions', 'invoicing' ), |
|
| 31 | + 'widget_ops' => array( |
|
| 32 | + 'classname' => 'getpaid-subscriptions bsui', |
|
| 33 | + 'description' => esc_html__( "Displays the current user's subscriptions.", 'invoicing' ), |
|
| 34 | + ), |
|
| 35 | + 'arguments' => array( |
|
| 36 | + 'title' => array( |
|
| 37 | + 'title' => __( 'Widget title', 'invoicing' ), |
|
| 38 | + 'desc' => __( 'Enter widget title.', 'invoicing' ), |
|
| 39 | + 'type' => 'text', |
|
| 40 | + 'desc_tip' => true, |
|
| 41 | + 'default' => '', |
|
| 42 | + 'advanced' => false |
|
| 43 | + ), |
|
| 44 | + ) |
|
| 45 | + |
|
| 46 | + ); |
|
| 47 | + |
|
| 48 | + |
|
| 49 | + parent::__construct( $options ); |
|
| 50 | + } |
|
| 51 | + |
|
| 52 | + /** |
|
| 53 | + * Retrieves current user's subscriptions. |
|
| 54 | + * |
|
| 55 | + * @return GetPaid_Subscriptions_Query |
|
| 56 | + */ |
|
| 57 | + public function get_subscriptions() { |
|
| 58 | + |
|
| 59 | + // Prepare license args. |
|
| 60 | + $args = array( |
|
| 61 | + 'customer_in' => get_current_user_id(), |
|
| 62 | + 'paged' => ( get_query_var( 'paged' ) ) ? absint( get_query_var( 'paged' ) ) : 1, |
|
| 63 | + ); |
|
| 64 | + |
|
| 65 | + return new GetPaid_Subscriptions_Query( $args ); |
|
| 66 | + |
|
| 67 | + } |
|
| 68 | + |
|
| 69 | + /** |
|
| 70 | + * The Super block output function. |
|
| 71 | + * |
|
| 72 | + * @param array $args |
|
| 73 | + * @param array $widget_args |
|
| 74 | + * @param string $content |
|
| 75 | + * |
|
| 76 | + * @return mixed|string|bool |
|
| 77 | + */ |
|
| 78 | + public function output( $args = array(), $widget_args = array(), $content = '' ) { |
|
| 79 | + |
|
| 80 | + // Ensure that the user is logged in. |
|
| 81 | + if ( ! is_user_logged_in() ) { |
|
| 82 | + |
|
| 83 | + return aui()->alert( |
|
| 84 | + array( |
|
| 85 | + 'content' => wp_kses_post( __( 'You need to log-in or create an account to view this section.', 'invoicing' ) ), |
|
| 86 | + 'type' => 'error', |
|
| 87 | + ) |
|
| 88 | + ); |
|
| 89 | + |
|
| 90 | + } |
|
| 91 | + |
|
| 92 | + // Are we displaying a single subscription? |
|
| 93 | + if ( isset( $_GET['subscription'] ) ) { |
|
| 94 | + return $this->display_single_subscription( intval( $_GET['subscription'] ) ); |
|
| 95 | + } |
|
| 96 | + |
|
| 97 | + // Retrieve the user's subscriptions. |
|
| 98 | + $subscriptions = $this->get_subscriptions(); |
|
| 99 | + |
|
| 100 | + // Start the output buffer. |
|
| 101 | + ob_start(); |
|
| 102 | + |
|
| 103 | + // Backwards compatibility. |
|
| 104 | + do_action( 'wpinv_before_user_subscriptions' ); |
|
| 105 | + |
|
| 106 | + // Display errors and notices. |
|
| 107 | + wpinv_print_errors(); |
|
| 108 | + |
|
| 109 | + do_action( 'getpaid_license_manager_before_subscriptions', $subscriptions ); |
|
| 110 | + |
|
| 111 | + // Print the table header. |
|
| 112 | + $this->print_table_header(); |
|
| 113 | + |
|
| 114 | + // Print table body. |
|
| 115 | + $this->print_table_body( $subscriptions->get_results() ); |
|
| 116 | + |
|
| 117 | + // Print table footer. |
|
| 118 | + $this->print_table_footer(); |
|
| 119 | + |
|
| 120 | + // Print the navigation. |
|
| 121 | + $this->print_navigation( $subscriptions->get_total() ); |
|
| 122 | + |
|
| 123 | + // Backwards compatibility. |
|
| 124 | + do_action( 'wpinv_after_user_subscriptions' ); |
|
| 125 | + |
|
| 126 | + // Return the output. |
|
| 127 | + return ob_get_clean(); |
|
| 128 | + |
|
| 129 | + } |
|
| 130 | + |
|
| 131 | + /** |
|
| 132 | + * Retrieves the subscription columns. |
|
| 133 | + * |
|
| 134 | + * @return array |
|
| 135 | + */ |
|
| 136 | + public function get_subscriptions_table_columns() { |
|
| 137 | 137 | |
| 138 | - $columns = array( |
|
| 139 | - 'subscription' => __( 'Subscription', 'invoicing' ), |
|
| 140 | - 'amount' => __( 'Amount', 'invoicing' ), |
|
| 141 | - 'renewal-date' => __( 'Next payment', 'invoicing' ), |
|
| 142 | - 'status' => __( 'Status', 'invoicing' ), |
|
| 143 | - ); |
|
| 138 | + $columns = array( |
|
| 139 | + 'subscription' => __( 'Subscription', 'invoicing' ), |
|
| 140 | + 'amount' => __( 'Amount', 'invoicing' ), |
|
| 141 | + 'renewal-date' => __( 'Next payment', 'invoicing' ), |
|
| 142 | + 'status' => __( 'Status', 'invoicing' ), |
|
| 143 | + ); |
|
| 144 | 144 | |
| 145 | - return apply_filters( 'getpaid_frontend_subscriptions_table_columns', $columns ); |
|
| 146 | - } |
|
| 145 | + return apply_filters( 'getpaid_frontend_subscriptions_table_columns', $columns ); |
|
| 146 | + } |
|
| 147 | 147 | |
| 148 | - /** |
|
| 149 | - * Displays the table header. |
|
| 150 | - * |
|
| 151 | - */ |
|
| 152 | - public function print_table_header() { |
|
| 148 | + /** |
|
| 149 | + * Displays the table header. |
|
| 150 | + * |
|
| 151 | + */ |
|
| 152 | + public function print_table_header() { |
|
| 153 | 153 | |
| 154 | - ?> |
|
| 154 | + ?> |
|
| 155 | 155 | |
| 156 | 156 | <table class="table table-bordered table-striped"> |
| 157 | 157 | |
@@ -167,121 +167,121 @@ discard block |
||
| 167 | 167 | |
| 168 | 168 | <?php |
| 169 | 169 | |
| 170 | - } |
|
| 170 | + } |
|
| 171 | 171 | |
| 172 | - /** |
|
| 173 | - * Displays the table body. |
|
| 174 | - * |
|
| 175 | - * @param WPInv_Subscription[] $subscriptions |
|
| 176 | - */ |
|
| 177 | - public function print_table_body( $subscriptions ) { |
|
| 172 | + /** |
|
| 173 | + * Displays the table body. |
|
| 174 | + * |
|
| 175 | + * @param WPInv_Subscription[] $subscriptions |
|
| 176 | + */ |
|
| 177 | + public function print_table_body( $subscriptions ) { |
|
| 178 | 178 | |
| 179 | - if ( empty( $subscriptions ) ) { |
|
| 180 | - $this->print_table_body_no_subscriptions(); |
|
| 181 | - } else { |
|
| 182 | - $this->print_table_body_subscriptions( $subscriptions ); |
|
| 183 | - } |
|
| 179 | + if ( empty( $subscriptions ) ) { |
|
| 180 | + $this->print_table_body_no_subscriptions(); |
|
| 181 | + } else { |
|
| 182 | + $this->print_table_body_subscriptions( $subscriptions ); |
|
| 183 | + } |
|
| 184 | 184 | |
| 185 | - } |
|
| 185 | + } |
|
| 186 | 186 | |
| 187 | - /** |
|
| 188 | - * Displays the table body if no subscriptions were found. |
|
| 189 | - * |
|
| 190 | - */ |
|
| 191 | - public function print_table_body_no_subscriptions() { |
|
| 187 | + /** |
|
| 188 | + * Displays the table body if no subscriptions were found. |
|
| 189 | + * |
|
| 190 | + */ |
|
| 191 | + public function print_table_body_no_subscriptions() { |
|
| 192 | 192 | |
| 193 | - ?> |
|
| 193 | + ?> |
|
| 194 | 194 | <tbody> |
| 195 | 195 | |
| 196 | 196 | <tr> |
| 197 | 197 | <td colspan="<?php echo count( $this->get_subscriptions_table_columns() ); ?>"> |
| 198 | 198 | |
| 199 | 199 | <?php |
| 200 | - echo aui()->alert( |
|
| 201 | - array( |
|
| 202 | - 'content' => wp_kses_post( __( 'No subscriptions found.', 'invoicing' ) ), |
|
| 203 | - 'type' => 'warning', |
|
| 204 | - ) |
|
| 205 | - ); |
|
| 206 | - ?> |
|
| 200 | + echo aui()->alert( |
|
| 201 | + array( |
|
| 202 | + 'content' => wp_kses_post( __( 'No subscriptions found.', 'invoicing' ) ), |
|
| 203 | + 'type' => 'warning', |
|
| 204 | + ) |
|
| 205 | + ); |
|
| 206 | + ?> |
|
| 207 | 207 | |
| 208 | 208 | </td> |
| 209 | 209 | </tr> |
| 210 | 210 | |
| 211 | 211 | </tbody> |
| 212 | 212 | <?php |
| 213 | - } |
|
| 213 | + } |
|
| 214 | 214 | |
| 215 | - /** |
|
| 216 | - * Displays the table body if subscriptions were found. |
|
| 217 | - * |
|
| 218 | - * @param WPInv_Subscription[] $subscriptions |
|
| 219 | - */ |
|
| 220 | - public function print_table_body_subscriptions( $subscriptions ) { |
|
| 215 | + /** |
|
| 216 | + * Displays the table body if subscriptions were found. |
|
| 217 | + * |
|
| 218 | + * @param WPInv_Subscription[] $subscriptions |
|
| 219 | + */ |
|
| 220 | + public function print_table_body_subscriptions( $subscriptions ) { |
|
| 221 | 221 | |
| 222 | - ?> |
|
| 222 | + ?> |
|
| 223 | 223 | <tbody> |
| 224 | 224 | |
| 225 | 225 | <?php foreach ( $subscriptions as $subscription ) : ?> |
| 226 | 226 | <tr class="getpaid-subscriptions-table-row subscription-<?php echo (int) $subscription->get_id(); ?>"> |
| 227 | 227 | <?php |
| 228 | - wpinv_get_template( |
|
| 229 | - 'subscriptions/subscriptions-table-row.php', |
|
| 230 | - array( |
|
| 231 | - 'subscription' => $subscription, |
|
| 232 | - 'widget' => $this |
|
| 233 | - ) |
|
| 234 | - ); |
|
| 235 | - ?> |
|
| 228 | + wpinv_get_template( |
|
| 229 | + 'subscriptions/subscriptions-table-row.php', |
|
| 230 | + array( |
|
| 231 | + 'subscription' => $subscription, |
|
| 232 | + 'widget' => $this |
|
| 233 | + ) |
|
| 234 | + ); |
|
| 235 | + ?> |
|
| 236 | 236 | </tr> |
| 237 | 237 | <?php endforeach; ?> |
| 238 | 238 | |
| 239 | 239 | </tbody> |
| 240 | 240 | <?php |
| 241 | - } |
|
| 242 | - |
|
| 243 | - /** |
|
| 244 | - * Adds row actions to a column |
|
| 245 | - * |
|
| 246 | - * @param string $content column content |
|
| 247 | - * @param WPInv_Subscription $subscription |
|
| 248 | - * @since 1.0.0 |
|
| 249 | - * @return string |
|
| 250 | - */ |
|
| 251 | - public function add_row_actions( $content, $subscription ) { |
|
| 252 | - |
|
| 253 | - // Prepare row actions. |
|
| 254 | - $actions = array(); |
|
| 255 | - |
|
| 256 | - // View subscription action. |
|
| 257 | - $view_url = getpaid_get_tab_url( 'gp-subscriptions', get_permalink( (int) wpinv_get_option( 'invoice_subscription_page' ) ) ); |
|
| 258 | - $view_url = esc_url( add_query_arg( 'subscription', (int) $subscription->get_id(), $view_url ) ); |
|
| 259 | - $actions['view'] = "<a href='$view_url' class='text-decoration-none'>" . __( 'Manage Subscription', 'invoicing' ) . '</a>'; |
|
| 260 | - |
|
| 261 | - // Filter the actions. |
|
| 262 | - $actions = apply_filters( 'getpaid_subscriptions_table_subscription_actions', $actions, $subscription ); |
|
| 263 | - |
|
| 264 | - $sanitized = array(); |
|
| 265 | - foreach ( $actions as $key => $action ) { |
|
| 266 | - $key = sanitize_html_class( $key ); |
|
| 267 | - $action = wp_kses_post( $action ); |
|
| 268 | - $sanitized[] = "<span class='$key'>$action</span>"; |
|
| 269 | - } |
|
| 270 | - |
|
| 271 | - $row_actions = "<small class='form-text getpaid-subscription-item-actions'>"; |
|
| 272 | - $row_actions .= implode( ' | ', $sanitized ); |
|
| 273 | - $row_actions .= '</small>'; |
|
| 274 | - |
|
| 275 | - return $content . $row_actions; |
|
| 276 | - } |
|
| 277 | - |
|
| 278 | - /** |
|
| 279 | - * Displays the table footer. |
|
| 280 | - * |
|
| 281 | - */ |
|
| 282 | - public function print_table_footer() { |
|
| 283 | - |
|
| 284 | - ?> |
|
| 241 | + } |
|
| 242 | + |
|
| 243 | + /** |
|
| 244 | + * Adds row actions to a column |
|
| 245 | + * |
|
| 246 | + * @param string $content column content |
|
| 247 | + * @param WPInv_Subscription $subscription |
|
| 248 | + * @since 1.0.0 |
|
| 249 | + * @return string |
|
| 250 | + */ |
|
| 251 | + public function add_row_actions( $content, $subscription ) { |
|
| 252 | + |
|
| 253 | + // Prepare row actions. |
|
| 254 | + $actions = array(); |
|
| 255 | + |
|
| 256 | + // View subscription action. |
|
| 257 | + $view_url = getpaid_get_tab_url( 'gp-subscriptions', get_permalink( (int) wpinv_get_option( 'invoice_subscription_page' ) ) ); |
|
| 258 | + $view_url = esc_url( add_query_arg( 'subscription', (int) $subscription->get_id(), $view_url ) ); |
|
| 259 | + $actions['view'] = "<a href='$view_url' class='text-decoration-none'>" . __( 'Manage Subscription', 'invoicing' ) . '</a>'; |
|
| 260 | + |
|
| 261 | + // Filter the actions. |
|
| 262 | + $actions = apply_filters( 'getpaid_subscriptions_table_subscription_actions', $actions, $subscription ); |
|
| 263 | + |
|
| 264 | + $sanitized = array(); |
|
| 265 | + foreach ( $actions as $key => $action ) { |
|
| 266 | + $key = sanitize_html_class( $key ); |
|
| 267 | + $action = wp_kses_post( $action ); |
|
| 268 | + $sanitized[] = "<span class='$key'>$action</span>"; |
|
| 269 | + } |
|
| 270 | + |
|
| 271 | + $row_actions = "<small class='form-text getpaid-subscription-item-actions'>"; |
|
| 272 | + $row_actions .= implode( ' | ', $sanitized ); |
|
| 273 | + $row_actions .= '</small>'; |
|
| 274 | + |
|
| 275 | + return $content . $row_actions; |
|
| 276 | + } |
|
| 277 | + |
|
| 278 | + /** |
|
| 279 | + * Displays the table footer. |
|
| 280 | + * |
|
| 281 | + */ |
|
| 282 | + public function print_table_footer() { |
|
| 283 | + |
|
| 284 | + ?> |
|
| 285 | 285 | |
| 286 | 286 | <tfoot> |
| 287 | 287 | <tr> |
@@ -296,143 +296,143 @@ discard block |
||
| 296 | 296 | </table> |
| 297 | 297 | <?php |
| 298 | 298 | |
| 299 | - } |
|
| 299 | + } |
|
| 300 | 300 | |
| 301 | - /** |
|
| 302 | - * Displays the navigation. |
|
| 303 | - * |
|
| 304 | - * @param int $total |
|
| 305 | - */ |
|
| 306 | - public function print_navigation( $total ) { |
|
| 301 | + /** |
|
| 302 | + * Displays the navigation. |
|
| 303 | + * |
|
| 304 | + * @param int $total |
|
| 305 | + */ |
|
| 306 | + public function print_navigation( $total ) { |
|
| 307 | 307 | |
| 308 | - if ( $total < 1 ) { |
|
| 308 | + if ( $total < 1 ) { |
|
| 309 | 309 | |
| 310 | - // Out-of-bounds, run the query again without LIMIT for total count. |
|
| 311 | - $args = array( |
|
| 312 | - 'customer_in' => get_current_user_id(), |
|
| 313 | - 'fields' => 'id', |
|
| 314 | - ); |
|
| 310 | + // Out-of-bounds, run the query again without LIMIT for total count. |
|
| 311 | + $args = array( |
|
| 312 | + 'customer_in' => get_current_user_id(), |
|
| 313 | + 'fields' => 'id', |
|
| 314 | + ); |
|
| 315 | 315 | |
| 316 | - $count_query = new GetPaid_Subscriptions_Query( $args ); |
|
| 317 | - $total = $count_query->get_total(); |
|
| 318 | - } |
|
| 316 | + $count_query = new GetPaid_Subscriptions_Query( $args ); |
|
| 317 | + $total = $count_query->get_total(); |
|
| 318 | + } |
|
| 319 | 319 | |
| 320 | - // Abort if we do not have pages. |
|
| 321 | - if ( 2 > $total ) { |
|
| 322 | - return; |
|
| 323 | - } |
|
| 320 | + // Abort if we do not have pages. |
|
| 321 | + if ( 2 > $total ) { |
|
| 322 | + return; |
|
| 323 | + } |
|
| 324 | 324 | |
| 325 | - ?> |
|
| 325 | + ?> |
|
| 326 | 326 | |
| 327 | 327 | <div class="getpaid-subscriptions-pagination"> |
| 328 | 328 | <?php |
| 329 | - $big = 999999; |
|
| 330 | - |
|
| 331 | - echo getpaid_paginate_links( |
|
| 332 | - array( |
|
| 333 | - 'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ), |
|
| 334 | - 'format' => '?paged=%#%', |
|
| 335 | - 'total' => (int) ceil( $total / 10 ), |
|
| 336 | - ) |
|
| 337 | - ); |
|
| 338 | - ?> |
|
| 329 | + $big = 999999; |
|
| 330 | + |
|
| 331 | + echo getpaid_paginate_links( |
|
| 332 | + array( |
|
| 333 | + 'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ), |
|
| 334 | + 'format' => '?paged=%#%', |
|
| 335 | + 'total' => (int) ceil( $total / 10 ), |
|
| 336 | + ) |
|
| 337 | + ); |
|
| 338 | + ?> |
|
| 339 | 339 | </div> |
| 340 | 340 | |
| 341 | 341 | <?php |
| 342 | - } |
|
| 343 | - |
|
| 344 | - /** |
|
| 345 | - * Returns a single subscription's columns. |
|
| 346 | - * |
|
| 347 | - * @param WPInv_Subscription $subscription |
|
| 348 | - * |
|
| 349 | - * @return array |
|
| 350 | - */ |
|
| 351 | - public function get_single_subscription_columns( $subscription ) { |
|
| 352 | - |
|
| 353 | - // Prepare subscription detail columns. |
|
| 354 | - $subscription_group = getpaid_get_invoice_subscription_group( $subscription->get_parent_invoice_id(), $subscription->get_id() ); |
|
| 355 | - $items_count = empty( $subscription_group ) ? 1 : count( $subscription_group['items'] ); |
|
| 356 | - $fields = apply_filters( |
|
| 357 | - 'getpaid_single_subscription_details_fields', |
|
| 358 | - array( |
|
| 359 | - 'status' => __( 'Status', 'invoicing' ), |
|
| 360 | - 'initial_amount' => __( 'Initial amount', 'invoicing' ), |
|
| 361 | - 'recurring_amount' => __( 'Recurring amount', 'invoicing' ), |
|
| 362 | - 'start_date' => __( 'Start date', 'invoicing' ), |
|
| 363 | - 'expiry_date' => __( 'Next payment', 'invoicing' ), |
|
| 364 | - 'payments' => __( 'Payments', 'invoicing' ), |
|
| 365 | - 'item' => _n( 'Item', 'Items', $items_count, 'invoicing' ), |
|
| 366 | - ), |
|
| 367 | - $subscription |
|
| 368 | - ); |
|
| 369 | - |
|
| 370 | - if ( isset( $fields['expiry_date'] ) ) { |
|
| 371 | - |
|
| 372 | - if ( ! $subscription->is_active() || $subscription->is_last_renewal() ) { |
|
| 373 | - $fields['expiry_date'] = __( 'End date', 'invoicing' ); |
|
| 374 | - } |
|
| 375 | - |
|
| 376 | - if ( 'pending' == $subscription->get_status() ) { |
|
| 377 | - unset( $fields['expiry_date'] ); |
|
| 378 | - } |
|
| 379 | - |
|
| 380 | - } |
|
| 381 | - |
|
| 382 | - if ( isset( $fields['start_date'] ) && 'pending' == $subscription->get_status() ) { |
|
| 383 | - unset( $fields['start_date'] ); |
|
| 384 | - } |
|
| 385 | - |
|
| 386 | - if ( $subscription->get_initial_amount() == $subscription->get_recurring_amount() ) { |
|
| 387 | - unset( $fields['initial_amount'] ); |
|
| 388 | - } |
|
| 389 | - |
|
| 390 | - return $fields; |
|
| 391 | - } |
|
| 392 | - |
|
| 393 | - /** |
|
| 394 | - * Displays a single subscription. |
|
| 395 | - * |
|
| 396 | - * @param string $subscription |
|
| 397 | - * |
|
| 398 | - * @return string |
|
| 399 | - */ |
|
| 400 | - public function display_single_subscription( $subscription ) { |
|
| 401 | - |
|
| 402 | - // Fetch the subscription. |
|
| 403 | - $subscription = new WPInv_Subscription( (int) $subscription ); |
|
| 404 | - |
|
| 405 | - if ( ! $subscription->exists() ) { |
|
| 406 | - |
|
| 407 | - return aui()->alert( |
|
| 408 | - array( |
|
| 409 | - 'content' => wp_kses_post( __( 'Subscription not found.', 'invoicing' ) ), |
|
| 410 | - 'type' => 'error', |
|
| 411 | - ) |
|
| 412 | - ); |
|
| 413 | - |
|
| 414 | - } |
|
| 415 | - |
|
| 416 | - // Ensure that the user owns this subscription key. |
|
| 417 | - if ( get_current_user_id() != $subscription->get_customer_id() && ! wpinv_current_user_can_manage_invoicing() ) { |
|
| 418 | - |
|
| 419 | - return aui()->alert( |
|
| 420 | - array( |
|
| 421 | - 'content' => wp_kses_post( __( 'You do not have permission to view this subscription. Ensure that you are logged in to the account that owns the subscription.', 'invoicing' ) ), |
|
| 422 | - 'type' => 'error', |
|
| 423 | - ) |
|
| 424 | - ); |
|
| 425 | - |
|
| 426 | - } |
|
| 427 | - |
|
| 428 | - return wpinv_get_template_html( |
|
| 429 | - 'subscriptions/subscription-details.php', |
|
| 430 | - array( |
|
| 431 | - 'subscription' => $subscription, |
|
| 432 | - 'widget' => $this |
|
| 433 | - ) |
|
| 434 | - ); |
|
| 435 | - |
|
| 436 | - } |
|
| 342 | + } |
|
| 343 | + |
|
| 344 | + /** |
|
| 345 | + * Returns a single subscription's columns. |
|
| 346 | + * |
|
| 347 | + * @param WPInv_Subscription $subscription |
|
| 348 | + * |
|
| 349 | + * @return array |
|
| 350 | + */ |
|
| 351 | + public function get_single_subscription_columns( $subscription ) { |
|
| 352 | + |
|
| 353 | + // Prepare subscription detail columns. |
|
| 354 | + $subscription_group = getpaid_get_invoice_subscription_group( $subscription->get_parent_invoice_id(), $subscription->get_id() ); |
|
| 355 | + $items_count = empty( $subscription_group ) ? 1 : count( $subscription_group['items'] ); |
|
| 356 | + $fields = apply_filters( |
|
| 357 | + 'getpaid_single_subscription_details_fields', |
|
| 358 | + array( |
|
| 359 | + 'status' => __( 'Status', 'invoicing' ), |
|
| 360 | + 'initial_amount' => __( 'Initial amount', 'invoicing' ), |
|
| 361 | + 'recurring_amount' => __( 'Recurring amount', 'invoicing' ), |
|
| 362 | + 'start_date' => __( 'Start date', 'invoicing' ), |
|
| 363 | + 'expiry_date' => __( 'Next payment', 'invoicing' ), |
|
| 364 | + 'payments' => __( 'Payments', 'invoicing' ), |
|
| 365 | + 'item' => _n( 'Item', 'Items', $items_count, 'invoicing' ), |
|
| 366 | + ), |
|
| 367 | + $subscription |
|
| 368 | + ); |
|
| 369 | + |
|
| 370 | + if ( isset( $fields['expiry_date'] ) ) { |
|
| 371 | + |
|
| 372 | + if ( ! $subscription->is_active() || $subscription->is_last_renewal() ) { |
|
| 373 | + $fields['expiry_date'] = __( 'End date', 'invoicing' ); |
|
| 374 | + } |
|
| 375 | + |
|
| 376 | + if ( 'pending' == $subscription->get_status() ) { |
|
| 377 | + unset( $fields['expiry_date'] ); |
|
| 378 | + } |
|
| 379 | + |
|
| 380 | + } |
|
| 381 | + |
|
| 382 | + if ( isset( $fields['start_date'] ) && 'pending' == $subscription->get_status() ) { |
|
| 383 | + unset( $fields['start_date'] ); |
|
| 384 | + } |
|
| 385 | + |
|
| 386 | + if ( $subscription->get_initial_amount() == $subscription->get_recurring_amount() ) { |
|
| 387 | + unset( $fields['initial_amount'] ); |
|
| 388 | + } |
|
| 389 | + |
|
| 390 | + return $fields; |
|
| 391 | + } |
|
| 392 | + |
|
| 393 | + /** |
|
| 394 | + * Displays a single subscription. |
|
| 395 | + * |
|
| 396 | + * @param string $subscription |
|
| 397 | + * |
|
| 398 | + * @return string |
|
| 399 | + */ |
|
| 400 | + public function display_single_subscription( $subscription ) { |
|
| 401 | + |
|
| 402 | + // Fetch the subscription. |
|
| 403 | + $subscription = new WPInv_Subscription( (int) $subscription ); |
|
| 404 | + |
|
| 405 | + if ( ! $subscription->exists() ) { |
|
| 406 | + |
|
| 407 | + return aui()->alert( |
|
| 408 | + array( |
|
| 409 | + 'content' => wp_kses_post( __( 'Subscription not found.', 'invoicing' ) ), |
|
| 410 | + 'type' => 'error', |
|
| 411 | + ) |
|
| 412 | + ); |
|
| 413 | + |
|
| 414 | + } |
|
| 415 | + |
|
| 416 | + // Ensure that the user owns this subscription key. |
|
| 417 | + if ( get_current_user_id() != $subscription->get_customer_id() && ! wpinv_current_user_can_manage_invoicing() ) { |
|
| 418 | + |
|
| 419 | + return aui()->alert( |
|
| 420 | + array( |
|
| 421 | + 'content' => wp_kses_post( __( 'You do not have permission to view this subscription. Ensure that you are logged in to the account that owns the subscription.', 'invoicing' ) ), |
|
| 422 | + 'type' => 'error', |
|
| 423 | + ) |
|
| 424 | + ); |
|
| 425 | + |
|
| 426 | + } |
|
| 427 | + |
|
| 428 | + return wpinv_get_template_html( |
|
| 429 | + 'subscriptions/subscription-details.php', |
|
| 430 | + array( |
|
| 431 | + 'subscription' => $subscription, |
|
| 432 | + 'widget' => $this |
|
| 433 | + ) |
|
| 434 | + ); |
|
| 435 | + |
|
| 436 | + } |
|
| 437 | 437 | |
| 438 | 438 | } |
@@ -12,88 +12,88 @@ discard block |
||
| 12 | 12 | */ |
| 13 | 13 | class GetPaid_Reports_Report { |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * @var array |
|
| 17 | - */ |
|
| 18 | - public $views; |
|
| 15 | + /** |
|
| 16 | + * @var array |
|
| 17 | + */ |
|
| 18 | + public $views; |
|
| 19 | 19 | |
| 20 | - /** |
|
| 21 | - * Class constructor. |
|
| 22 | - * |
|
| 23 | - */ |
|
| 24 | - public function __construct() { |
|
| 20 | + /** |
|
| 21 | + * Class constructor. |
|
| 22 | + * |
|
| 23 | + */ |
|
| 24 | + public function __construct() { |
|
| 25 | 25 | |
| 26 | - $this->views = array( |
|
| 26 | + $this->views = array( |
|
| 27 | 27 | |
| 28 | 28 | 'items' => array( |
| 29 | - 'label' => __( 'Items', 'invoicing' ), |
|
| 30 | - 'class' => 'GetPaid_Reports_Report_Items', |
|
| 31 | - ), |
|
| 29 | + 'label' => __( 'Items', 'invoicing' ), |
|
| 30 | + 'class' => 'GetPaid_Reports_Report_Items', |
|
| 31 | + ), |
|
| 32 | 32 | |
| 33 | - 'gateways' => array( |
|
| 34 | - 'label' => __( 'Payment Methods', 'invoicing' ), |
|
| 35 | - 'class' => 'GetPaid_Reports_Report_Gateways', |
|
| 36 | - ), |
|
| 33 | + 'gateways' => array( |
|
| 34 | + 'label' => __( 'Payment Methods', 'invoicing' ), |
|
| 35 | + 'class' => 'GetPaid_Reports_Report_Gateways', |
|
| 36 | + ), |
|
| 37 | 37 | |
| 38 | - 'discounts' => array( |
|
| 39 | - 'label' => __( 'Discount Codes', 'invoicing' ), |
|
| 40 | - 'class' => 'GetPaid_Reports_Report_Discounts', |
|
| 41 | - ), |
|
| 38 | + 'discounts' => array( |
|
| 39 | + 'label' => __( 'Discount Codes', 'invoicing' ), |
|
| 40 | + 'class' => 'GetPaid_Reports_Report_Discounts', |
|
| 41 | + ), |
|
| 42 | 42 | |
| 43 | 43 | ); |
| 44 | 44 | |
| 45 | - $this->views = apply_filters( 'wpinv_report_views', $this->views ); |
|
| 46 | - |
|
| 47 | - } |
|
| 48 | - |
|
| 49 | - /** |
|
| 50 | - * Retrieves the current range. |
|
| 51 | - * |
|
| 52 | - */ |
|
| 53 | - public function get_range() { |
|
| 54 | - $valid_ranges = $this->get_periods(); |
|
| 55 | - |
|
| 56 | - if ( isset( $_GET['date_range'] ) && array_key_exists( $_GET['date_range'], $valid_ranges ) ) { |
|
| 57 | - return sanitize_key( $_GET['date_range'] ); |
|
| 58 | - } |
|
| 59 | - |
|
| 60 | - return '7_days'; |
|
| 61 | - } |
|
| 62 | - |
|
| 63 | - /** |
|
| 64 | - * Returns an array of date ranges. |
|
| 65 | - * |
|
| 66 | - * @return array |
|
| 67 | - */ |
|
| 68 | - public function get_periods() { |
|
| 69 | - |
|
| 70 | - $periods = array( |
|
| 71 | - 'today' => __( 'Today', 'invoicing' ), |
|
| 72 | - 'yesterday' => __( 'Yesterday', 'invoicing' ), |
|
| 73 | - 'week' => __( 'This week', 'invoicing' ), |
|
| 74 | - 'last_week' => __( 'Last week', 'invoicing' ), |
|
| 75 | - '7_days' => __( 'Last 7 days', 'invoicing' ), |
|
| 76 | - 'month' => __( 'This month', 'invoicing' ), |
|
| 77 | - 'last_month' => __( 'Last month', 'invoicing' ), |
|
| 78 | - '30_days' => __( 'Last 30 days', 'invoicing' ), |
|
| 79 | - 'quarter' => __( 'This Quarter', 'invoicing' ), |
|
| 80 | - 'last_quarter' => __( 'Last Quarter', 'invoicing' ), |
|
| 81 | - 'year' => __( 'This year', 'invoicing' ), |
|
| 82 | - 'last_year' => __( 'Last Year', 'invoicing' ), |
|
| 83 | - 'custom' => __( 'Custom Date Range', 'invoicing' ), |
|
| 84 | - ); |
|
| 85 | - |
|
| 86 | - return apply_filters( 'getpaid_earning_periods', $periods ); |
|
| 87 | - } |
|
| 88 | - |
|
| 89 | - /** |
|
| 90 | - * Displays the range selector. |
|
| 91 | - * |
|
| 92 | - */ |
|
| 93 | - public function display_range_selector() { |
|
| 94 | - |
|
| 95 | - $range = $this->get_range(); |
|
| 96 | - ?> |
|
| 45 | + $this->views = apply_filters( 'wpinv_report_views', $this->views ); |
|
| 46 | + |
|
| 47 | + } |
|
| 48 | + |
|
| 49 | + /** |
|
| 50 | + * Retrieves the current range. |
|
| 51 | + * |
|
| 52 | + */ |
|
| 53 | + public function get_range() { |
|
| 54 | + $valid_ranges = $this->get_periods(); |
|
| 55 | + |
|
| 56 | + if ( isset( $_GET['date_range'] ) && array_key_exists( $_GET['date_range'], $valid_ranges ) ) { |
|
| 57 | + return sanitize_key( $_GET['date_range'] ); |
|
| 58 | + } |
|
| 59 | + |
|
| 60 | + return '7_days'; |
|
| 61 | + } |
|
| 62 | + |
|
| 63 | + /** |
|
| 64 | + * Returns an array of date ranges. |
|
| 65 | + * |
|
| 66 | + * @return array |
|
| 67 | + */ |
|
| 68 | + public function get_periods() { |
|
| 69 | + |
|
| 70 | + $periods = array( |
|
| 71 | + 'today' => __( 'Today', 'invoicing' ), |
|
| 72 | + 'yesterday' => __( 'Yesterday', 'invoicing' ), |
|
| 73 | + 'week' => __( 'This week', 'invoicing' ), |
|
| 74 | + 'last_week' => __( 'Last week', 'invoicing' ), |
|
| 75 | + '7_days' => __( 'Last 7 days', 'invoicing' ), |
|
| 76 | + 'month' => __( 'This month', 'invoicing' ), |
|
| 77 | + 'last_month' => __( 'Last month', 'invoicing' ), |
|
| 78 | + '30_days' => __( 'Last 30 days', 'invoicing' ), |
|
| 79 | + 'quarter' => __( 'This Quarter', 'invoicing' ), |
|
| 80 | + 'last_quarter' => __( 'Last Quarter', 'invoicing' ), |
|
| 81 | + 'year' => __( 'This year', 'invoicing' ), |
|
| 82 | + 'last_year' => __( 'Last Year', 'invoicing' ), |
|
| 83 | + 'custom' => __( 'Custom Date Range', 'invoicing' ), |
|
| 84 | + ); |
|
| 85 | + |
|
| 86 | + return apply_filters( 'getpaid_earning_periods', $periods ); |
|
| 87 | + } |
|
| 88 | + |
|
| 89 | + /** |
|
| 90 | + * Displays the range selector. |
|
| 91 | + * |
|
| 92 | + */ |
|
| 93 | + public function display_range_selector() { |
|
| 94 | + |
|
| 95 | + $range = $this->get_range(); |
|
| 96 | + ?> |
|
| 97 | 97 | |
| 98 | 98 | <form method="get" class="getpaid-filter-earnings float-right"> |
| 99 | 99 | <?php getpaid_hidden_field( 'page', isset( $_GET['page'] ) ? sanitize_text_field( $_GET['page'] ) : 'wpinv-reports' ); ?> |
@@ -115,14 +115,14 @@ discard block |
||
| 115 | 115 | </form> |
| 116 | 116 | |
| 117 | 117 | <?php |
| 118 | - } |
|
| 118 | + } |
|
| 119 | 119 | |
| 120 | - /** |
|
| 121 | - * Displays the reports tab. |
|
| 122 | - * |
|
| 123 | - */ |
|
| 124 | - public function display() { |
|
| 125 | - ?> |
|
| 120 | + /** |
|
| 121 | + * Displays the reports tab. |
|
| 122 | + * |
|
| 123 | + */ |
|
| 124 | + public function display() { |
|
| 125 | + ?> |
|
| 126 | 126 | |
| 127 | 127 | <div class="mt-4"> |
| 128 | 128 | |
@@ -202,16 +202,16 @@ discard block |
||
| 202 | 202 | |
| 203 | 203 | <?php |
| 204 | 204 | |
| 205 | - } |
|
| 205 | + } |
|
| 206 | 206 | |
| 207 | - /** |
|
| 208 | - * Displays the left side. |
|
| 209 | - * |
|
| 210 | - */ |
|
| 211 | - public function display_left() { |
|
| 212 | - $graphs = wpinv_get_report_graphs(); |
|
| 207 | + /** |
|
| 208 | + * Displays the left side. |
|
| 209 | + * |
|
| 210 | + */ |
|
| 211 | + public function display_left() { |
|
| 212 | + $graphs = wpinv_get_report_graphs(); |
|
| 213 | 213 | |
| 214 | - ?> |
|
| 214 | + ?> |
|
| 215 | 215 | |
| 216 | 216 | <?php foreach ( $graphs as $key => $graph ) : ?> |
| 217 | 217 | <div class="row mb-4"> |
@@ -230,35 +230,35 @@ discard block |
||
| 230 | 230 | |
| 231 | 231 | <?php |
| 232 | 232 | |
| 233 | - } |
|
| 234 | - |
|
| 235 | - /** |
|
| 236 | - * Retrieves the download url. |
|
| 237 | - * |
|
| 238 | - */ |
|
| 239 | - public function get_download_url( $graph, $file_type ) { |
|
| 240 | - |
|
| 241 | - return wp_nonce_url( |
|
| 242 | - add_query_arg( |
|
| 243 | - array( |
|
| 244 | - 'getpaid-admin-action' => 'download_graph', |
|
| 245 | - 'file_type' => urlencode( $file_type ), |
|
| 246 | - 'graph' => urlencode( $graph ), |
|
| 247 | - ) |
|
| 248 | - ), |
|
| 249 | - 'getpaid-nonce', |
|
| 250 | - 'getpaid-nonce' |
|
| 251 | - ); |
|
| 233 | + } |
|
| 234 | + |
|
| 235 | + /** |
|
| 236 | + * Retrieves the download url. |
|
| 237 | + * |
|
| 238 | + */ |
|
| 239 | + public function get_download_url( $graph, $file_type ) { |
|
| 240 | + |
|
| 241 | + return wp_nonce_url( |
|
| 242 | + add_query_arg( |
|
| 243 | + array( |
|
| 244 | + 'getpaid-admin-action' => 'download_graph', |
|
| 245 | + 'file_type' => urlencode( $file_type ), |
|
| 246 | + 'graph' => urlencode( $graph ), |
|
| 247 | + ) |
|
| 248 | + ), |
|
| 249 | + 'getpaid-nonce', |
|
| 250 | + 'getpaid-nonce' |
|
| 251 | + ); |
|
| 252 | 252 | |
| 253 | - } |
|
| 253 | + } |
|
| 254 | 254 | |
| 255 | - /** |
|
| 256 | - * Displays the right side. |
|
| 257 | - * |
|
| 258 | - */ |
|
| 259 | - public function display_right() { |
|
| 255 | + /** |
|
| 256 | + * Displays the right side. |
|
| 257 | + * |
|
| 258 | + */ |
|
| 259 | + public function display_right() { |
|
| 260 | 260 | |
| 261 | - ?> |
|
| 261 | + ?> |
|
| 262 | 262 | |
| 263 | 263 | <?php foreach ( $this->views as $key => $view ) : ?> |
| 264 | 264 | <div class="row mb-4"> |
@@ -287,10 +287,10 @@ discard block |
||
| 287 | 287 | </div> |
| 288 | 288 | <div class="card-body"> |
| 289 | 289 | <?php |
| 290 | - $class = $view['class']; |
|
| 291 | - $class = new $class(); |
|
| 292 | - $class->display_stats(); |
|
| 293 | - ?> |
|
| 290 | + $class = $view['class']; |
|
| 291 | + $class = new $class(); |
|
| 292 | + $class->display_stats(); |
|
| 293 | + ?> |
|
| 294 | 294 | </div> |
| 295 | 295 | </div> |
| 296 | 296 | </div> |
@@ -299,68 +299,68 @@ discard block |
||
| 299 | 299 | |
| 300 | 300 | <?php |
| 301 | 301 | |
| 302 | - do_action( 'getpaid_reports_display_right', $this ); |
|
| 303 | - } |
|
| 304 | - |
|
| 305 | - /** |
|
| 306 | - * Returns a list of report cards. |
|
| 307 | - * |
|
| 308 | - */ |
|
| 309 | - public function get_cards() { |
|
| 310 | - |
|
| 311 | - $cards = array( |
|
| 312 | - 'total_sales' => array( |
|
| 313 | - 'description' => __( 'Gross sales in the period.', 'invoicing' ), |
|
| 314 | - 'label' => __( 'Gross Revenue', 'invoicing' ), |
|
| 315 | - ), |
|
| 316 | - 'net_sales' => array( |
|
| 317 | - 'description' => __( 'Net sales in the period.', 'invoicing' ), |
|
| 318 | - 'label' => __( 'Net Revenue', 'invoicing' ), |
|
| 319 | - ), |
|
| 320 | - 'average_sales' => array( |
|
| 321 | - 'description' => __( 'Average net daily/monthly sales.', 'invoicing' ), |
|
| 322 | - 'label' => __( 'Avg. Net Sales', 'invoicing' ), |
|
| 323 | - ), |
|
| 324 | - 'average_total_sales' => array( |
|
| 325 | - 'description' => __( 'Average gross daily/monthly sales.', 'invoicing' ), |
|
| 326 | - 'label' => __( 'Avg. Gross Sales', 'invoicing' ), |
|
| 327 | - ), |
|
| 328 | - 'total_invoices' => array( |
|
| 329 | - 'description' => __( 'Number of paid invoices.', 'invoicing' ), |
|
| 330 | - 'label' => __( 'Paid Invoices', 'invoicing' ), |
|
| 331 | - ), |
|
| 332 | - 'total_items' => array( |
|
| 333 | - 'description' => __( 'Number of items purchased.', 'invoicing' ), |
|
| 334 | - 'label' => __( 'Purchased Items', 'invoicing' ), |
|
| 335 | - ), |
|
| 336 | - 'refunded_items' => array( |
|
| 337 | - 'description' => __( 'Number of items refunded.', 'invoicing' ), |
|
| 338 | - 'label' => __( 'Refunded Items', 'invoicing' ), |
|
| 339 | - ), |
|
| 340 | - 'total_tax' => array( |
|
| 341 | - 'description' => __( 'Total charged for taxes.', 'invoicing' ), |
|
| 342 | - 'label' => __( 'Tax', 'invoicing' ), |
|
| 343 | - ), |
|
| 344 | - 'total_refunded_tax' => array( |
|
| 345 | - 'description' => __( 'Total refunded for taxes.', 'invoicing' ), |
|
| 346 | - 'label' => __( 'Refunded Tax', 'invoicing' ), |
|
| 347 | - ), |
|
| 348 | - 'total_fees' => array( |
|
| 349 | - 'description' => __( 'Total fees charged.', 'invoicing' ), |
|
| 350 | - 'label' => __( 'Fees', 'invoicing' ), |
|
| 351 | - ), |
|
| 352 | - 'total_refunds' => array( |
|
| 353 | - 'description' => __( 'Total of refunded invoices.', 'invoicing' ), |
|
| 354 | - 'label' => __( 'Refunded', 'invoicing' ), |
|
| 355 | - ), |
|
| 356 | - 'total_discount' => array( |
|
| 357 | - 'description' => __( 'Total of discounts used.', 'invoicing' ), |
|
| 358 | - 'label' => __( 'Discounted', 'invoicing' ), |
|
| 359 | - ), |
|
| 360 | - ); |
|
| 361 | - |
|
| 362 | - return apply_filters( 'wpinv_report_cards', $cards ); |
|
| 363 | - } |
|
| 302 | + do_action( 'getpaid_reports_display_right', $this ); |
|
| 303 | + } |
|
| 304 | + |
|
| 305 | + /** |
|
| 306 | + * Returns a list of report cards. |
|
| 307 | + * |
|
| 308 | + */ |
|
| 309 | + public function get_cards() { |
|
| 310 | + |
|
| 311 | + $cards = array( |
|
| 312 | + 'total_sales' => array( |
|
| 313 | + 'description' => __( 'Gross sales in the period.', 'invoicing' ), |
|
| 314 | + 'label' => __( 'Gross Revenue', 'invoicing' ), |
|
| 315 | + ), |
|
| 316 | + 'net_sales' => array( |
|
| 317 | + 'description' => __( 'Net sales in the period.', 'invoicing' ), |
|
| 318 | + 'label' => __( 'Net Revenue', 'invoicing' ), |
|
| 319 | + ), |
|
| 320 | + 'average_sales' => array( |
|
| 321 | + 'description' => __( 'Average net daily/monthly sales.', 'invoicing' ), |
|
| 322 | + 'label' => __( 'Avg. Net Sales', 'invoicing' ), |
|
| 323 | + ), |
|
| 324 | + 'average_total_sales' => array( |
|
| 325 | + 'description' => __( 'Average gross daily/monthly sales.', 'invoicing' ), |
|
| 326 | + 'label' => __( 'Avg. Gross Sales', 'invoicing' ), |
|
| 327 | + ), |
|
| 328 | + 'total_invoices' => array( |
|
| 329 | + 'description' => __( 'Number of paid invoices.', 'invoicing' ), |
|
| 330 | + 'label' => __( 'Paid Invoices', 'invoicing' ), |
|
| 331 | + ), |
|
| 332 | + 'total_items' => array( |
|
| 333 | + 'description' => __( 'Number of items purchased.', 'invoicing' ), |
|
| 334 | + 'label' => __( 'Purchased Items', 'invoicing' ), |
|
| 335 | + ), |
|
| 336 | + 'refunded_items' => array( |
|
| 337 | + 'description' => __( 'Number of items refunded.', 'invoicing' ), |
|
| 338 | + 'label' => __( 'Refunded Items', 'invoicing' ), |
|
| 339 | + ), |
|
| 340 | + 'total_tax' => array( |
|
| 341 | + 'description' => __( 'Total charged for taxes.', 'invoicing' ), |
|
| 342 | + 'label' => __( 'Tax', 'invoicing' ), |
|
| 343 | + ), |
|
| 344 | + 'total_refunded_tax' => array( |
|
| 345 | + 'description' => __( 'Total refunded for taxes.', 'invoicing' ), |
|
| 346 | + 'label' => __( 'Refunded Tax', 'invoicing' ), |
|
| 347 | + ), |
|
| 348 | + 'total_fees' => array( |
|
| 349 | + 'description' => __( 'Total fees charged.', 'invoicing' ), |
|
| 350 | + 'label' => __( 'Fees', 'invoicing' ), |
|
| 351 | + ), |
|
| 352 | + 'total_refunds' => array( |
|
| 353 | + 'description' => __( 'Total of refunded invoices.', 'invoicing' ), |
|
| 354 | + 'label' => __( 'Refunded', 'invoicing' ), |
|
| 355 | + ), |
|
| 356 | + 'total_discount' => array( |
|
| 357 | + 'description' => __( 'Total of discounts used.', 'invoicing' ), |
|
| 358 | + 'label' => __( 'Discounted', 'invoicing' ), |
|
| 359 | + ), |
|
| 360 | + ); |
|
| 361 | + |
|
| 362 | + return apply_filters( 'wpinv_report_cards', $cards ); |
|
| 363 | + } |
|
| 364 | 364 | |
| 365 | 365 | |
| 366 | 366 | |
@@ -13,9 +13,9 @@ discard block |
||
| 13 | 13 | |
| 14 | 14 | |
| 15 | 15 | function wpinv_get_default_country() { |
| 16 | - $country = wpinv_get_option( 'default_country', 'UK' ); |
|
| 16 | + $country = wpinv_get_option( 'default_country', 'UK' ); |
|
| 17 | 17 | |
| 18 | - return apply_filters( 'wpinv_default_country', $country ); |
|
| 18 | + return apply_filters( 'wpinv_default_country', $country ); |
|
| 19 | 19 | } |
| 20 | 20 | |
| 21 | 21 | /** |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | */ |
| 37 | 37 | function wpinv_sanitize_country( $country ) { |
| 38 | 38 | |
| 39 | - // Enure the country is specified |
|
| 39 | + // Enure the country is specified |
|
| 40 | 40 | if ( empty( $country ) ) { |
| 41 | 41 | $country = wpinv_get_default_country(); |
| 42 | 42 | } |
@@ -66,9 +66,9 @@ discard block |
||
| 66 | 66 | } |
| 67 | 67 | |
| 68 | 68 | function wpinv_get_default_state() { |
| 69 | - $state = wpinv_get_option( 'default_state', '' ); |
|
| 69 | + $state = wpinv_get_option( 'default_state', '' ); |
|
| 70 | 70 | |
| 71 | - return apply_filters( 'wpinv_default_state', $state ); |
|
| 71 | + return apply_filters( 'wpinv_default_state', $state ); |
|
| 72 | 72 | } |
| 73 | 73 | |
| 74 | 74 | function wpinv_state_name( $state_code = '', $country_code = '' ) { |
@@ -308,11 +308,11 @@ discard block |
||
| 308 | 308 | |
| 309 | 309 | $country = wpinv_sanitize_country( $country ); |
| 310 | 310 | |
| 311 | - foreach ( wpinv_get_continents( 'countries' ) as $continent_code => $countries ) { |
|
| 312 | - if ( false !== array_search( $country, $countries, true ) ) { |
|
| 313 | - return $continent_code; |
|
| 314 | - } |
|
| 315 | - } |
|
| 311 | + foreach ( wpinv_get_continents( 'countries' ) as $continent_code => $countries ) { |
|
| 312 | + if ( false !== array_search( $country, $countries, true ) ) { |
|
| 313 | + return $continent_code; |
|
| 314 | + } |
|
| 315 | + } |
|
| 316 | 316 | |
| 317 | 317 | return ''; |
| 318 | 318 | |
@@ -604,33 +604,33 @@ discard block |
||
| 604 | 604 | } |
| 605 | 605 | |
| 606 | 606 | function wpinv_get_states_field() { |
| 607 | - if( empty( $_POST['country'] ) ) { |
|
| 608 | - $_POST['country'] = wpinv_get_default_country(); |
|
| 609 | - } |
|
| 610 | - $states = wpinv_get_country_states( sanitize_text_field( $_POST['country'] ) ); |
|
| 607 | + if( empty( $_POST['country'] ) ) { |
|
| 608 | + $_POST['country'] = wpinv_get_default_country(); |
|
| 609 | + } |
|
| 610 | + $states = wpinv_get_country_states( sanitize_text_field( $_POST['country'] ) ); |
|
| 611 | 611 | |
| 612 | - if( !empty( $states ) ) { |
|
| 613 | - $sanitized_field_name = sanitize_text_field( $_POST['field_name'] ); |
|
| 612 | + if( !empty( $states ) ) { |
|
| 613 | + $sanitized_field_name = sanitize_text_field( $_POST['field_name'] ); |
|
| 614 | 614 | |
| 615 | 615 | $class = isset( $_POST['class'] ) ? esc_attr( sanitize_text_field( $_POST['class'] ) ) : ''; |
| 616 | 616 | $class .= " $sanitized_field_name getpaid_js_field-state custom-select wpinv-select wpi_select2"; |
| 617 | 617 | |
| 618 | 618 | $args = array( |
| 619 | - 'name' => $sanitized_field_name, |
|
| 620 | - 'id' => $sanitized_field_name, |
|
| 621 | - 'class' => implode( ' ', array_unique( explode( ' ', $class ) ) ), |
|
| 622 | - 'options' => array_merge( array( '' => '' ), $states ), |
|
| 623 | - 'show_option_all' => false, |
|
| 624 | - 'show_option_none' => false |
|
| 625 | - ); |
|
| 626 | - |
|
| 627 | - $response = wpinv_html_select( $args ); |
|
| 628 | - |
|
| 629 | - } else { |
|
| 630 | - $response = 'nostates'; |
|
| 631 | - } |
|
| 619 | + 'name' => $sanitized_field_name, |
|
| 620 | + 'id' => $sanitized_field_name, |
|
| 621 | + 'class' => implode( ' ', array_unique( explode( ' ', $class ) ) ), |
|
| 622 | + 'options' => array_merge( array( '' => '' ), $states ), |
|
| 623 | + 'show_option_all' => false, |
|
| 624 | + 'show_option_none' => false |
|
| 625 | + ); |
|
| 626 | + |
|
| 627 | + $response = wpinv_html_select( $args ); |
|
| 628 | + |
|
| 629 | + } else { |
|
| 630 | + $response = 'nostates'; |
|
| 631 | + } |
|
| 632 | 632 | |
| 633 | - return $response; |
|
| 633 | + return $response; |
|
| 634 | 634 | } |
| 635 | 635 | |
| 636 | 636 | function wpinv_default_billing_country( $country = '', $user_id = 0 ) { |
@@ -648,46 +648,46 @@ discard block |
||
| 648 | 648 | */ |
| 649 | 649 | function wpinv_get_address_formats() { |
| 650 | 650 | |
| 651 | - return apply_filters( 'wpinv_localisation_address_formats', |
|
| 652 | - array( |
|
| 653 | - 'default' => "{{name}}\n{{company}}\n{{address}}\n{{city}}\n{{state}}\n{{zip}}\n{{country}}", |
|
| 654 | - 'AU' => "{{name}}\n{{company}}\n{{address}}\n{{city}}\n{{state}} {{zip}}\n{{country}}", |
|
| 655 | - 'AT' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 656 | - 'BE' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 657 | - 'CA' => "{{company}}\n{{name}}\n{{address}}\n{{city}} {{state_code}} {{zip}}\n{{country}}", |
|
| 658 | - 'CH' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 659 | - 'CL' => "{{company}}\n{{name}}\n{{address}}\n{{state}}\n{{zip}} {{city}}\n{{country}}", |
|
| 660 | - 'CN' => "{{country}} {{zip}}\n{{state}}, {{city}}, {{address}}\n{{company}}\n{{name}}", |
|
| 661 | - 'CZ' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 662 | - 'DE' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 663 | - 'EE' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 664 | - 'FI' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 665 | - 'DK' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 666 | - 'FR' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city_upper}}\n{{country}}", |
|
| 667 | - 'HK' => "{{company}}\n{{first_name}} {{last_name_upper}}\n{{address}}\n{{city_upper}}\n{{state_upper}}\n{{country}}", |
|
| 668 | - 'HU' => "{{name}}\n{{company}}\n{{city}}\n{{address}}\n{{zip}}\n{{country}}", |
|
| 669 | - 'IN' => "{{company}}\n{{name}}\n{{address}}\n{{city}} {{zip}}\n{{state}}, {{country}}", |
|
| 670 | - 'IS' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 671 | - 'IT' => "{{company}}\n{{name}}\n{{address}}\n{{zip}}\n{{city}}\n{{state_upper}}\n{{country}}", |
|
| 672 | - 'JP' => "{{zip}}\n{{state}} {{city}} {{address}}\n{{company}}\n{{last_name}} {{first_name}}\n{{country}}", |
|
| 673 | - 'TW' => "{{company}}\n{{last_name}} {{first_name}}\n{{address}}\n{{state}}, {{city}} {{zip}}\n{{country}}", |
|
| 674 | - 'LI' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 675 | - 'NL' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 676 | - 'NZ' => "{{name}}\n{{company}}\n{{address}}\n{{city}} {{zip}}\n{{country}}", |
|
| 677 | - 'NO' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 678 | - 'PL' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 679 | - 'PT' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 680 | - 'SK' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 681 | - 'RS' => "{{name}}\n{{company}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 682 | - 'SI' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 683 | - 'ES' => "{{name}}\n{{company}}\n{{address}}\n{{zip}} {{city}}\n{{state}}\n{{country}}", |
|
| 684 | - 'SE' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 685 | - 'TR' => "{{name}}\n{{company}}\n{{address}}\n{{zip}} {{city}} {{state}}\n{{country}}", |
|
| 686 | - 'UG' => "{{name}}\n{{company}}\n{{address}}\n{{city}}\n{{state}}, {{country}}", |
|
| 687 | - 'US' => "{{name}}\n{{company}}\n{{address}}\n{{city}}, {{state_code}} {{zip}}\n{{country}}", |
|
| 688 | - 'VN' => "{{name}}\n{{company}}\n{{address}}\n{{city}}\n{{country}}", |
|
| 689 | - ) |
|
| 690 | - ); |
|
| 651 | + return apply_filters( 'wpinv_localisation_address_formats', |
|
| 652 | + array( |
|
| 653 | + 'default' => "{{name}}\n{{company}}\n{{address}}\n{{city}}\n{{state}}\n{{zip}}\n{{country}}", |
|
| 654 | + 'AU' => "{{name}}\n{{company}}\n{{address}}\n{{city}}\n{{state}} {{zip}}\n{{country}}", |
|
| 655 | + 'AT' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 656 | + 'BE' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 657 | + 'CA' => "{{company}}\n{{name}}\n{{address}}\n{{city}} {{state_code}} {{zip}}\n{{country}}", |
|
| 658 | + 'CH' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 659 | + 'CL' => "{{company}}\n{{name}}\n{{address}}\n{{state}}\n{{zip}} {{city}}\n{{country}}", |
|
| 660 | + 'CN' => "{{country}} {{zip}}\n{{state}}, {{city}}, {{address}}\n{{company}}\n{{name}}", |
|
| 661 | + 'CZ' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 662 | + 'DE' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 663 | + 'EE' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 664 | + 'FI' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 665 | + 'DK' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 666 | + 'FR' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city_upper}}\n{{country}}", |
|
| 667 | + 'HK' => "{{company}}\n{{first_name}} {{last_name_upper}}\n{{address}}\n{{city_upper}}\n{{state_upper}}\n{{country}}", |
|
| 668 | + 'HU' => "{{name}}\n{{company}}\n{{city}}\n{{address}}\n{{zip}}\n{{country}}", |
|
| 669 | + 'IN' => "{{company}}\n{{name}}\n{{address}}\n{{city}} {{zip}}\n{{state}}, {{country}}", |
|
| 670 | + 'IS' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 671 | + 'IT' => "{{company}}\n{{name}}\n{{address}}\n{{zip}}\n{{city}}\n{{state_upper}}\n{{country}}", |
|
| 672 | + 'JP' => "{{zip}}\n{{state}} {{city}} {{address}}\n{{company}}\n{{last_name}} {{first_name}}\n{{country}}", |
|
| 673 | + 'TW' => "{{company}}\n{{last_name}} {{first_name}}\n{{address}}\n{{state}}, {{city}} {{zip}}\n{{country}}", |
|
| 674 | + 'LI' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 675 | + 'NL' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 676 | + 'NZ' => "{{name}}\n{{company}}\n{{address}}\n{{city}} {{zip}}\n{{country}}", |
|
| 677 | + 'NO' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 678 | + 'PL' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 679 | + 'PT' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 680 | + 'SK' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 681 | + 'RS' => "{{name}}\n{{company}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 682 | + 'SI' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 683 | + 'ES' => "{{name}}\n{{company}}\n{{address}}\n{{zip}} {{city}}\n{{state}}\n{{country}}", |
|
| 684 | + 'SE' => "{{company}}\n{{name}}\n{{address}}\n{{zip}} {{city}}\n{{country}}", |
|
| 685 | + 'TR' => "{{name}}\n{{company}}\n{{address}}\n{{zip}} {{city}} {{state}}\n{{country}}", |
|
| 686 | + 'UG' => "{{name}}\n{{company}}\n{{address}}\n{{city}}\n{{state}}, {{country}}", |
|
| 687 | + 'US' => "{{name}}\n{{company}}\n{{address}}\n{{city}}, {{state_code}} {{zip}}\n{{country}}", |
|
| 688 | + 'VN' => "{{name}}\n{{company}}\n{{address}}\n{{city}}\n{{country}}", |
|
| 689 | + ) |
|
| 690 | + ); |
|
| 691 | 691 | } |
| 692 | 692 | |
| 693 | 693 | /** |
@@ -704,21 +704,21 @@ discard block |
||
| 704 | 704 | } |
| 705 | 705 | |
| 706 | 706 | // Get all formats. |
| 707 | - $formats = wpinv_get_address_formats(); |
|
| 707 | + $formats = wpinv_get_address_formats(); |
|
| 708 | 708 | |
| 709 | - // Get format for the specified country. |
|
| 710 | - $format = ( $country && isset( $formats[ $country ] ) ) ? $formats[ $country ] : $formats['default']; |
|
| 709 | + // Get format for the specified country. |
|
| 710 | + $format = ( $country && isset( $formats[ $country ] ) ) ? $formats[ $country ] : $formats['default']; |
|
| 711 | 711 | |
| 712 | 712 | /** |
| 713 | - * Filters the address format to use on Invoices. |
|
| 713 | + * Filters the address format to use on Invoices. |
|
| 714 | 714 | * |
| 715 | 715 | * New lines will be replaced by a `br` element. Double new lines will be replaced by a paragraph. HTML tags are allowed. |
| 716 | - * |
|
| 717 | - * @since 1.0.13 |
|
| 718 | - * |
|
| 719 | - * @param string $format The address format to use. |
|
| 716 | + * |
|
| 717 | + * @since 1.0.13 |
|
| 718 | + * |
|
| 719 | + * @param string $format The address format to use. |
|
| 720 | 720 | * @param string $country The country who's address format is being retrieved. |
| 721 | - */ |
|
| 721 | + */ |
|
| 722 | 722 | return apply_filters( 'wpinv_get_full_address_format', $format, $country ); |
| 723 | 723 | } |
| 724 | 724 | |
@@ -739,8 +739,8 @@ discard block |
||
| 739 | 739 | 'country' => '', |
| 740 | 740 | 'zip' => '', |
| 741 | 741 | 'first_name' => '', |
| 742 | - 'last_name' => '', |
|
| 743 | - 'company' => '', |
|
| 742 | + 'last_name' => '', |
|
| 743 | + 'company' => '', |
|
| 744 | 744 | ); |
| 745 | 745 | |
| 746 | 746 | $args = map_deep( wp_parse_args( $billing_details, $default_args ), 'trim' ); |
@@ -761,14 +761,14 @@ discard block |
||
| 761 | 761 | $args['country_code']= $country; |
| 762 | 762 | |
| 763 | 763 | /** |
| 764 | - * Filters the address format replacements to use on Invoices. |
|
| 764 | + * Filters the address format replacements to use on Invoices. |
|
| 765 | 765 | * |
| 766 | - * |
|
| 767 | - * @since 1.0.13 |
|
| 768 | - * |
|
| 769 | - * @param array $replacements The address replacements to use. |
|
| 766 | + * |
|
| 767 | + * @since 1.0.13 |
|
| 768 | + * |
|
| 769 | + * @param array $replacements The address replacements to use. |
|
| 770 | 770 | * @param array $billing_details The billing details to use. |
| 771 | - */ |
|
| 771 | + */ |
|
| 772 | 772 | $replacements = apply_filters( 'wpinv_get_invoice_address_replacements', $args, $billing_details ); |
| 773 | 773 | |
| 774 | 774 | $return = array(); |
@@ -791,5 +791,5 @@ discard block |
||
| 791 | 791 | * @return string |
| 792 | 792 | */ |
| 793 | 793 | function wpinv_trim_formatted_address_line( $line ) { |
| 794 | - return trim( $line, ', ' ); |
|
| 794 | + return trim( $line, ', ' ); |
|
| 795 | 795 | } |
| 796 | 796 | \ No newline at end of file |
@@ -12,491 +12,491 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | class GetPaid_Invoice_Notification_Emails { |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * The array of invoice email actions. |
|
| 17 | - * |
|
| 18 | - * @param array |
|
| 19 | - */ |
|
| 20 | - public $invoice_actions; |
|
| 21 | - |
|
| 22 | - /** |
|
| 23 | - * Class constructor |
|
| 24 | - * |
|
| 25 | - */ |
|
| 26 | - public function __construct() { |
|
| 27 | - |
|
| 28 | - $this->invoice_actions = apply_filters( |
|
| 29 | - 'getpaid_notification_email_invoice_triggers', |
|
| 30 | - array( |
|
| 31 | - 'getpaid_new_invoice' => array( 'new_invoice', 'user_invoice' ), |
|
| 32 | - 'getpaid_invoice_status_wpi-cancelled' => 'cancelled_invoice', |
|
| 33 | - 'getpaid_invoice_status_wpi-failed' => 'failed_invoice', |
|
| 34 | - 'getpaid_invoice_status_wpi-onhold' => 'onhold_invoice', |
|
| 35 | - 'getpaid_invoice_status_wpi-processing' => 'processing_invoice', |
|
| 36 | - 'getpaid_invoice_status_publish' => 'completed_invoice', |
|
| 37 | - 'getpaid_invoice_status_wpi-renewal' => 'completed_invoice', |
|
| 38 | - 'getpaid_invoice_status_wpi-refunded' => 'refunded_invoice', |
|
| 39 | - 'getpaid_new_customer_note' => 'user_note', |
|
| 40 | - 'getpaid_daily_maintenance' => 'overdue', |
|
| 41 | - ) |
|
| 42 | - ); |
|
| 43 | - |
|
| 44 | - $this->init_hooks(); |
|
| 45 | - |
|
| 46 | - } |
|
| 47 | - |
|
| 48 | - /** |
|
| 49 | - * Registers email hooks. |
|
| 50 | - */ |
|
| 51 | - public function init_hooks() { |
|
| 52 | - |
|
| 53 | - add_filter( 'getpaid_get_email_merge_tags', array( $this, 'invoice_merge_tags' ), 10, 2 ); |
|
| 54 | - add_filter( 'getpaid_invoice_email_recipients', array( $this, 'filter_email_recipients' ), 10, 2 ); |
|
| 55 | - |
|
| 56 | - foreach ( $this->invoice_actions as $hook => $email_type ) { |
|
| 57 | - $this->init_email_type_hook( $hook, $email_type ); |
|
| 58 | - } |
|
| 59 | - } |
|
| 60 | - |
|
| 61 | - /** |
|
| 62 | - * Registers an email hook for an invoice action. |
|
| 63 | - * |
|
| 64 | - * @param string $hook |
|
| 65 | - * @param string|array $email_type |
|
| 66 | - */ |
|
| 67 | - public function init_email_type_hook( $hook, $email_type ) { |
|
| 68 | - |
|
| 69 | - $email_type = wpinv_parse_list( $email_type ); |
|
| 70 | - |
|
| 71 | - foreach ( $email_type as $type ) { |
|
| 72 | - |
|
| 73 | - $email = new GetPaid_Notification_Email( $type ); |
|
| 74 | - |
|
| 75 | - // Abort if it is not active. |
|
| 76 | - if ( ! $email->is_active() ) { |
|
| 77 | - continue; |
|
| 78 | - } |
|
| 79 | - |
|
| 80 | - if ( method_exists( $this, $type ) ) { |
|
| 81 | - add_action( $hook, array( $this, $type ), 100, 2 ); |
|
| 82 | - continue; |
|
| 83 | - } |
|
| 84 | - |
|
| 85 | - do_action( 'getpaid_invoice_init_email_type_hook', $type, $hook ); |
|
| 86 | - } |
|
| 87 | - |
|
| 88 | - } |
|
| 89 | - |
|
| 90 | - /** |
|
| 91 | - * Filters invoice merge tags. |
|
| 92 | - * |
|
| 93 | - * @param array $merge_tags |
|
| 94 | - * @param mixed|WPInv_Invoice|WPInv_Subscription $object |
|
| 95 | - */ |
|
| 96 | - public function invoice_merge_tags( $merge_tags, $object ) { |
|
| 97 | - |
|
| 98 | - if ( is_a( $object, 'WPInv_Invoice' ) ) { |
|
| 99 | - return array_merge( |
|
| 100 | - $merge_tags, |
|
| 101 | - $this->get_invoice_merge_tags( $object ) |
|
| 102 | - ); |
|
| 103 | - } |
|
| 104 | - |
|
| 105 | - if ( is_a( $object, 'WPInv_Subscription' ) ) { |
|
| 106 | - return array_merge( |
|
| 107 | - $merge_tags, |
|
| 108 | - $this->get_invoice_merge_tags( $object->get_parent_payment() ) |
|
| 109 | - ); |
|
| 110 | - } |
|
| 111 | - |
|
| 112 | - return $merge_tags; |
|
| 113 | - |
|
| 114 | - } |
|
| 115 | - |
|
| 116 | - /** |
|
| 117 | - * Generates invoice merge tags. |
|
| 118 | - * |
|
| 119 | - * @param WPInv_Invoice $invoice |
|
| 120 | - * @return array |
|
| 121 | - */ |
|
| 122 | - public function get_invoice_merge_tags( $invoice ) { |
|
| 123 | - |
|
| 124 | - // Abort if it does not exist. |
|
| 125 | - if ( ! $invoice->get_id() ) { |
|
| 126 | - return array(); |
|
| 127 | - } |
|
| 128 | - |
|
| 129 | - $merge_tags = array( |
|
| 130 | - '{name}' => sanitize_text_field( $invoice->get_user_full_name() ), |
|
| 131 | - '{full_name}' => sanitize_text_field( $invoice->get_user_full_name() ), |
|
| 132 | - '{first_name}' => sanitize_text_field( $invoice->get_first_name() ), |
|
| 133 | - '{last_name}' => sanitize_text_field( $invoice->get_last_name() ), |
|
| 134 | - '{email}' => sanitize_email( $invoice->get_email() ), |
|
| 135 | - '{invoice_number}' => sanitize_text_field( $invoice->get_number() ), |
|
| 136 | - '{invoice_currency}' => sanitize_text_field( $invoice->get_currency() ), |
|
| 137 | - '{invoice_total}' => sanitize_text_field( wpinv_price( $invoice->get_total(), $invoice->get_currency() ) ), |
|
| 138 | - '{invoice_link}' => esc_url( $invoice->get_view_url() ), |
|
| 139 | - '{invoice_pay_link}' => esc_url( $invoice->get_checkout_payment_url() ), |
|
| 140 | - '{invoice_receipt_link}'=> esc_url( $invoice->get_receipt_url() ), |
|
| 141 | - '{invoice_date}' => getpaid_format_date_value( $invoice->get_date_created() ), |
|
| 142 | - '{invoice_due_date}' => getpaid_format_date_value( $invoice->get_due_date(), __( 'on receipt', 'invoicing' ) ), |
|
| 143 | - '{invoice_quote}' => sanitize_text_field( strtolower( $invoice->get_label() ) ), |
|
| 144 | - '{invoice_label}' => sanitize_text_field( ucfirst( $invoice->get_label() ) ), |
|
| 145 | - '{invoice_description}' => wp_kses_post( $invoice->get_description() ), |
|
| 146 | - '{subscription_name}' => wp_kses_post( $invoice->get_subscription_name() ), |
|
| 147 | - '{is_was}' => strtotime( $invoice->get_due_date() ) < current_time( 'timestamp' ) ? __( 'was', 'invoicing' ) : __( 'is', 'invoicing' ), |
|
| 148 | - ); |
|
| 149 | - |
|
| 150 | - $payment_form_data = $invoice->get_meta( 'payment_form_data', true ); |
|
| 151 | - |
|
| 152 | - if ( is_array( $payment_form_data ) ) { |
|
| 153 | - |
|
| 154 | - foreach ( $payment_form_data as $label => $value ) { |
|
| 155 | - |
|
| 156 | - $label = preg_replace( '/[^a-z0-9]+/', '_', strtolower( $label ) ); |
|
| 157 | - $value = is_array( $value ) ? implode( ', ', $value ) : $value; |
|
| 158 | - |
|
| 159 | - if ( is_scalar ( $value ) ) { |
|
| 160 | - $merge_tags[ "{{$label}}" ] = wp_kses_post( $value ); |
|
| 161 | - } |
|
| 162 | - |
|
| 163 | - } |
|
| 164 | - |
|
| 165 | - } |
|
| 166 | - |
|
| 167 | - return apply_filters( 'getpaid_invoice_email_merge_tags', $merge_tags, $invoice ); |
|
| 168 | - } |
|
| 169 | - |
|
| 170 | - /** |
|
| 171 | - * Helper function to send an email. |
|
| 172 | - * |
|
| 173 | - * @param WPInv_Invoice $invoice |
|
| 174 | - * @param GetPaid_Notification_Email $email |
|
| 175 | - * @param string $type |
|
| 176 | - * @param string|array $recipients |
|
| 177 | - * @param array $extra_args Extra template args. |
|
| 178 | - */ |
|
| 179 | - public function send_email( $invoice, $email, $type, $recipients, $extra_args = array() ) { |
|
| 180 | - |
|
| 181 | - do_action( 'getpaid_before_send_invoice_notification', $type, $invoice, $email ); |
|
| 182 | - |
|
| 183 | - $skip = $invoice->is_free() && wpinv_get_option( 'skip_email_free_invoice' ); |
|
| 184 | - if ( apply_filters( 'getpaid_skip_invoice_email', $skip, $type, $invoice ) ) { |
|
| 185 | - return; |
|
| 186 | - } |
|
| 187 | - |
|
| 188 | - $mailer = new GetPaid_Notification_Email_Sender(); |
|
| 189 | - $merge_tags = $email->get_merge_tags(); |
|
| 190 | - |
|
| 191 | - $result = $mailer->send( |
|
| 192 | - apply_filters( 'getpaid_invoice_email_recipients', wpinv_parse_list( $recipients ), $email ), |
|
| 193 | - $email->add_merge_tags( $email->get_subject(), $merge_tags ), |
|
| 194 | - $email->get_content( $merge_tags, $extra_args ), |
|
| 195 | - $email->get_attachments() |
|
| 196 | - ); |
|
| 197 | - |
|
| 198 | - // Maybe send a copy to the admin. |
|
| 199 | - if ( $email->include_admin_bcc() ) { |
|
| 200 | - $mailer->send( |
|
| 201 | - wpinv_get_admin_email(), |
|
| 202 | - $email->add_merge_tags( $email->get_subject() . __( ' - ADMIN BCC COPY', 'invoicing' ), $merge_tags ), |
|
| 203 | - $email->get_content( $merge_tags ), |
|
| 204 | - $email->get_attachments() |
|
| 205 | - ); |
|
| 206 | - } |
|
| 207 | - |
|
| 208 | - if ( $result ) { |
|
| 209 | - $invoice->add_system_note( |
|
| 210 | - sprintf( |
|
| 211 | - __( 'Successfully sent %s notification email to %s.', 'invoicing' ), |
|
| 212 | - sanitize_key( $type ), |
|
| 213 | - $email->is_admin_email() ? __( 'admin' ) : __( 'the customer' ) |
|
| 214 | - ) |
|
| 215 | - ); |
|
| 216 | - } else { |
|
| 217 | - $invoice->add_system_note( |
|
| 218 | - sprintf( |
|
| 219 | - __( 'Failed sending %s notification email to %s.', 'invoicing' ), |
|
| 220 | - sanitize_key( $type ), |
|
| 221 | - $email->is_admin_email() ? __( 'admin' ) : __( 'the customer' ) |
|
| 222 | - ) |
|
| 223 | - ); |
|
| 224 | - } |
|
| 225 | - |
|
| 226 | - do_action( 'getpaid_after_send_invoice_notification', $type, $invoice, $email ); |
|
| 227 | - |
|
| 228 | - return $result; |
|
| 229 | - } |
|
| 230 | - |
|
| 231 | - /** |
|
| 232 | - * Also send emails to any cc users. |
|
| 233 | - * |
|
| 234 | - * @param array $recipients |
|
| 235 | - * @param GetPaid_Notification_Email $email |
|
| 236 | - */ |
|
| 237 | - public function filter_email_recipients( $recipients, $email ) { |
|
| 238 | - |
|
| 239 | - if ( ! $email->is_admin_email() ) { |
|
| 240 | - $cc = $email->object->get_email_cc(); |
|
| 241 | - $cc_2 = get_user_meta( $email->object->get_user_id(), '_wpinv_email_cc', true ); |
|
| 242 | - |
|
| 243 | - if ( ! empty( $cc ) ) { |
|
| 244 | - $cc = array_map( 'sanitize_email', wpinv_parse_list( $cc ) ); |
|
| 245 | - $recipients = array_filter( array_unique( array_merge( $recipients, $cc ) ) ); |
|
| 246 | - } |
|
| 247 | - |
|
| 248 | - if ( ! empty( $cc_2 ) ) { |
|
| 249 | - $cc_2 = array_map( 'sanitize_email', wpinv_parse_list( $cc_2 ) ); |
|
| 250 | - $recipients = array_filter( array_unique( array_merge( $recipients, $cc_2 ) ) ); |
|
| 251 | - } |
|
| 252 | - |
|
| 253 | - } |
|
| 254 | - |
|
| 255 | - return $recipients; |
|
| 256 | - |
|
| 257 | - } |
|
| 258 | - |
|
| 259 | - /** |
|
| 260 | - * Sends a new invoice notification. |
|
| 261 | - * |
|
| 262 | - * @param WPInv_Invoice $invoice |
|
| 263 | - */ |
|
| 264 | - public function new_invoice( $invoice ) { |
|
| 265 | - |
|
| 266 | - // Only send this email for invoices created via the admin page. |
|
| 267 | - if ( ! $invoice->is_type( 'invoice' ) || $invoice->is_paid() || $this->is_payment_form_invoice( $invoice->get_id() ) ) { |
|
| 268 | - return; |
|
| 269 | - } |
|
| 270 | - |
|
| 271 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 272 | - $recipient = wpinv_get_admin_email(); |
|
| 273 | - |
|
| 274 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 275 | - |
|
| 276 | - } |
|
| 277 | - |
|
| 278 | - /** |
|
| 279 | - * Sends a cancelled invoice notification. |
|
| 280 | - * |
|
| 281 | - * @param WPInv_Invoice $invoice |
|
| 282 | - */ |
|
| 283 | - public function cancelled_invoice( $invoice ) { |
|
| 284 | - |
|
| 285 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 286 | - $recipient = $invoice->get_email(); |
|
| 287 | - |
|
| 288 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 289 | - } |
|
| 290 | - |
|
| 291 | - /** |
|
| 292 | - * Sends a failed invoice notification. |
|
| 293 | - * |
|
| 294 | - * @param WPInv_Invoice $invoice |
|
| 295 | - */ |
|
| 296 | - public function failed_invoice( $invoice ) { |
|
| 297 | - |
|
| 298 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 299 | - $recipient = wpinv_get_admin_email(); |
|
| 300 | - |
|
| 301 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 302 | - |
|
| 303 | - } |
|
| 304 | - |
|
| 305 | - /** |
|
| 306 | - * Sends a notification whenever an invoice is put on hold. |
|
| 307 | - * |
|
| 308 | - * @param WPInv_Invoice $invoice |
|
| 309 | - */ |
|
| 310 | - public function onhold_invoice( $invoice ) { |
|
| 311 | - |
|
| 312 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 313 | - $recipient = $invoice->get_email(); |
|
| 314 | - |
|
| 315 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 15 | + /** |
|
| 16 | + * The array of invoice email actions. |
|
| 17 | + * |
|
| 18 | + * @param array |
|
| 19 | + */ |
|
| 20 | + public $invoice_actions; |
|
| 21 | + |
|
| 22 | + /** |
|
| 23 | + * Class constructor |
|
| 24 | + * |
|
| 25 | + */ |
|
| 26 | + public function __construct() { |
|
| 27 | + |
|
| 28 | + $this->invoice_actions = apply_filters( |
|
| 29 | + 'getpaid_notification_email_invoice_triggers', |
|
| 30 | + array( |
|
| 31 | + 'getpaid_new_invoice' => array( 'new_invoice', 'user_invoice' ), |
|
| 32 | + 'getpaid_invoice_status_wpi-cancelled' => 'cancelled_invoice', |
|
| 33 | + 'getpaid_invoice_status_wpi-failed' => 'failed_invoice', |
|
| 34 | + 'getpaid_invoice_status_wpi-onhold' => 'onhold_invoice', |
|
| 35 | + 'getpaid_invoice_status_wpi-processing' => 'processing_invoice', |
|
| 36 | + 'getpaid_invoice_status_publish' => 'completed_invoice', |
|
| 37 | + 'getpaid_invoice_status_wpi-renewal' => 'completed_invoice', |
|
| 38 | + 'getpaid_invoice_status_wpi-refunded' => 'refunded_invoice', |
|
| 39 | + 'getpaid_new_customer_note' => 'user_note', |
|
| 40 | + 'getpaid_daily_maintenance' => 'overdue', |
|
| 41 | + ) |
|
| 42 | + ); |
|
| 43 | + |
|
| 44 | + $this->init_hooks(); |
|
| 45 | + |
|
| 46 | + } |
|
| 47 | + |
|
| 48 | + /** |
|
| 49 | + * Registers email hooks. |
|
| 50 | + */ |
|
| 51 | + public function init_hooks() { |
|
| 52 | + |
|
| 53 | + add_filter( 'getpaid_get_email_merge_tags', array( $this, 'invoice_merge_tags' ), 10, 2 ); |
|
| 54 | + add_filter( 'getpaid_invoice_email_recipients', array( $this, 'filter_email_recipients' ), 10, 2 ); |
|
| 55 | + |
|
| 56 | + foreach ( $this->invoice_actions as $hook => $email_type ) { |
|
| 57 | + $this->init_email_type_hook( $hook, $email_type ); |
|
| 58 | + } |
|
| 59 | + } |
|
| 60 | + |
|
| 61 | + /** |
|
| 62 | + * Registers an email hook for an invoice action. |
|
| 63 | + * |
|
| 64 | + * @param string $hook |
|
| 65 | + * @param string|array $email_type |
|
| 66 | + */ |
|
| 67 | + public function init_email_type_hook( $hook, $email_type ) { |
|
| 68 | + |
|
| 69 | + $email_type = wpinv_parse_list( $email_type ); |
|
| 70 | + |
|
| 71 | + foreach ( $email_type as $type ) { |
|
| 72 | + |
|
| 73 | + $email = new GetPaid_Notification_Email( $type ); |
|
| 74 | + |
|
| 75 | + // Abort if it is not active. |
|
| 76 | + if ( ! $email->is_active() ) { |
|
| 77 | + continue; |
|
| 78 | + } |
|
| 79 | + |
|
| 80 | + if ( method_exists( $this, $type ) ) { |
|
| 81 | + add_action( $hook, array( $this, $type ), 100, 2 ); |
|
| 82 | + continue; |
|
| 83 | + } |
|
| 84 | + |
|
| 85 | + do_action( 'getpaid_invoice_init_email_type_hook', $type, $hook ); |
|
| 86 | + } |
|
| 87 | + |
|
| 88 | + } |
|
| 89 | + |
|
| 90 | + /** |
|
| 91 | + * Filters invoice merge tags. |
|
| 92 | + * |
|
| 93 | + * @param array $merge_tags |
|
| 94 | + * @param mixed|WPInv_Invoice|WPInv_Subscription $object |
|
| 95 | + */ |
|
| 96 | + public function invoice_merge_tags( $merge_tags, $object ) { |
|
| 97 | + |
|
| 98 | + if ( is_a( $object, 'WPInv_Invoice' ) ) { |
|
| 99 | + return array_merge( |
|
| 100 | + $merge_tags, |
|
| 101 | + $this->get_invoice_merge_tags( $object ) |
|
| 102 | + ); |
|
| 103 | + } |
|
| 104 | + |
|
| 105 | + if ( is_a( $object, 'WPInv_Subscription' ) ) { |
|
| 106 | + return array_merge( |
|
| 107 | + $merge_tags, |
|
| 108 | + $this->get_invoice_merge_tags( $object->get_parent_payment() ) |
|
| 109 | + ); |
|
| 110 | + } |
|
| 111 | + |
|
| 112 | + return $merge_tags; |
|
| 113 | + |
|
| 114 | + } |
|
| 115 | + |
|
| 116 | + /** |
|
| 117 | + * Generates invoice merge tags. |
|
| 118 | + * |
|
| 119 | + * @param WPInv_Invoice $invoice |
|
| 120 | + * @return array |
|
| 121 | + */ |
|
| 122 | + public function get_invoice_merge_tags( $invoice ) { |
|
| 123 | + |
|
| 124 | + // Abort if it does not exist. |
|
| 125 | + if ( ! $invoice->get_id() ) { |
|
| 126 | + return array(); |
|
| 127 | + } |
|
| 128 | + |
|
| 129 | + $merge_tags = array( |
|
| 130 | + '{name}' => sanitize_text_field( $invoice->get_user_full_name() ), |
|
| 131 | + '{full_name}' => sanitize_text_field( $invoice->get_user_full_name() ), |
|
| 132 | + '{first_name}' => sanitize_text_field( $invoice->get_first_name() ), |
|
| 133 | + '{last_name}' => sanitize_text_field( $invoice->get_last_name() ), |
|
| 134 | + '{email}' => sanitize_email( $invoice->get_email() ), |
|
| 135 | + '{invoice_number}' => sanitize_text_field( $invoice->get_number() ), |
|
| 136 | + '{invoice_currency}' => sanitize_text_field( $invoice->get_currency() ), |
|
| 137 | + '{invoice_total}' => sanitize_text_field( wpinv_price( $invoice->get_total(), $invoice->get_currency() ) ), |
|
| 138 | + '{invoice_link}' => esc_url( $invoice->get_view_url() ), |
|
| 139 | + '{invoice_pay_link}' => esc_url( $invoice->get_checkout_payment_url() ), |
|
| 140 | + '{invoice_receipt_link}'=> esc_url( $invoice->get_receipt_url() ), |
|
| 141 | + '{invoice_date}' => getpaid_format_date_value( $invoice->get_date_created() ), |
|
| 142 | + '{invoice_due_date}' => getpaid_format_date_value( $invoice->get_due_date(), __( 'on receipt', 'invoicing' ) ), |
|
| 143 | + '{invoice_quote}' => sanitize_text_field( strtolower( $invoice->get_label() ) ), |
|
| 144 | + '{invoice_label}' => sanitize_text_field( ucfirst( $invoice->get_label() ) ), |
|
| 145 | + '{invoice_description}' => wp_kses_post( $invoice->get_description() ), |
|
| 146 | + '{subscription_name}' => wp_kses_post( $invoice->get_subscription_name() ), |
|
| 147 | + '{is_was}' => strtotime( $invoice->get_due_date() ) < current_time( 'timestamp' ) ? __( 'was', 'invoicing' ) : __( 'is', 'invoicing' ), |
|
| 148 | + ); |
|
| 149 | + |
|
| 150 | + $payment_form_data = $invoice->get_meta( 'payment_form_data', true ); |
|
| 151 | + |
|
| 152 | + if ( is_array( $payment_form_data ) ) { |
|
| 153 | + |
|
| 154 | + foreach ( $payment_form_data as $label => $value ) { |
|
| 155 | + |
|
| 156 | + $label = preg_replace( '/[^a-z0-9]+/', '_', strtolower( $label ) ); |
|
| 157 | + $value = is_array( $value ) ? implode( ', ', $value ) : $value; |
|
| 158 | + |
|
| 159 | + if ( is_scalar ( $value ) ) { |
|
| 160 | + $merge_tags[ "{{$label}}" ] = wp_kses_post( $value ); |
|
| 161 | + } |
|
| 162 | + |
|
| 163 | + } |
|
| 164 | + |
|
| 165 | + } |
|
| 166 | + |
|
| 167 | + return apply_filters( 'getpaid_invoice_email_merge_tags', $merge_tags, $invoice ); |
|
| 168 | + } |
|
| 169 | + |
|
| 170 | + /** |
|
| 171 | + * Helper function to send an email. |
|
| 172 | + * |
|
| 173 | + * @param WPInv_Invoice $invoice |
|
| 174 | + * @param GetPaid_Notification_Email $email |
|
| 175 | + * @param string $type |
|
| 176 | + * @param string|array $recipients |
|
| 177 | + * @param array $extra_args Extra template args. |
|
| 178 | + */ |
|
| 179 | + public function send_email( $invoice, $email, $type, $recipients, $extra_args = array() ) { |
|
| 180 | + |
|
| 181 | + do_action( 'getpaid_before_send_invoice_notification', $type, $invoice, $email ); |
|
| 182 | + |
|
| 183 | + $skip = $invoice->is_free() && wpinv_get_option( 'skip_email_free_invoice' ); |
|
| 184 | + if ( apply_filters( 'getpaid_skip_invoice_email', $skip, $type, $invoice ) ) { |
|
| 185 | + return; |
|
| 186 | + } |
|
| 187 | + |
|
| 188 | + $mailer = new GetPaid_Notification_Email_Sender(); |
|
| 189 | + $merge_tags = $email->get_merge_tags(); |
|
| 190 | + |
|
| 191 | + $result = $mailer->send( |
|
| 192 | + apply_filters( 'getpaid_invoice_email_recipients', wpinv_parse_list( $recipients ), $email ), |
|
| 193 | + $email->add_merge_tags( $email->get_subject(), $merge_tags ), |
|
| 194 | + $email->get_content( $merge_tags, $extra_args ), |
|
| 195 | + $email->get_attachments() |
|
| 196 | + ); |
|
| 197 | + |
|
| 198 | + // Maybe send a copy to the admin. |
|
| 199 | + if ( $email->include_admin_bcc() ) { |
|
| 200 | + $mailer->send( |
|
| 201 | + wpinv_get_admin_email(), |
|
| 202 | + $email->add_merge_tags( $email->get_subject() . __( ' - ADMIN BCC COPY', 'invoicing' ), $merge_tags ), |
|
| 203 | + $email->get_content( $merge_tags ), |
|
| 204 | + $email->get_attachments() |
|
| 205 | + ); |
|
| 206 | + } |
|
| 207 | + |
|
| 208 | + if ( $result ) { |
|
| 209 | + $invoice->add_system_note( |
|
| 210 | + sprintf( |
|
| 211 | + __( 'Successfully sent %s notification email to %s.', 'invoicing' ), |
|
| 212 | + sanitize_key( $type ), |
|
| 213 | + $email->is_admin_email() ? __( 'admin' ) : __( 'the customer' ) |
|
| 214 | + ) |
|
| 215 | + ); |
|
| 216 | + } else { |
|
| 217 | + $invoice->add_system_note( |
|
| 218 | + sprintf( |
|
| 219 | + __( 'Failed sending %s notification email to %s.', 'invoicing' ), |
|
| 220 | + sanitize_key( $type ), |
|
| 221 | + $email->is_admin_email() ? __( 'admin' ) : __( 'the customer' ) |
|
| 222 | + ) |
|
| 223 | + ); |
|
| 224 | + } |
|
| 225 | + |
|
| 226 | + do_action( 'getpaid_after_send_invoice_notification', $type, $invoice, $email ); |
|
| 227 | + |
|
| 228 | + return $result; |
|
| 229 | + } |
|
| 230 | + |
|
| 231 | + /** |
|
| 232 | + * Also send emails to any cc users. |
|
| 233 | + * |
|
| 234 | + * @param array $recipients |
|
| 235 | + * @param GetPaid_Notification_Email $email |
|
| 236 | + */ |
|
| 237 | + public function filter_email_recipients( $recipients, $email ) { |
|
| 238 | + |
|
| 239 | + if ( ! $email->is_admin_email() ) { |
|
| 240 | + $cc = $email->object->get_email_cc(); |
|
| 241 | + $cc_2 = get_user_meta( $email->object->get_user_id(), '_wpinv_email_cc', true ); |
|
| 242 | + |
|
| 243 | + if ( ! empty( $cc ) ) { |
|
| 244 | + $cc = array_map( 'sanitize_email', wpinv_parse_list( $cc ) ); |
|
| 245 | + $recipients = array_filter( array_unique( array_merge( $recipients, $cc ) ) ); |
|
| 246 | + } |
|
| 247 | + |
|
| 248 | + if ( ! empty( $cc_2 ) ) { |
|
| 249 | + $cc_2 = array_map( 'sanitize_email', wpinv_parse_list( $cc_2 ) ); |
|
| 250 | + $recipients = array_filter( array_unique( array_merge( $recipients, $cc_2 ) ) ); |
|
| 251 | + } |
|
| 252 | + |
|
| 253 | + } |
|
| 254 | + |
|
| 255 | + return $recipients; |
|
| 256 | + |
|
| 257 | + } |
|
| 258 | + |
|
| 259 | + /** |
|
| 260 | + * Sends a new invoice notification. |
|
| 261 | + * |
|
| 262 | + * @param WPInv_Invoice $invoice |
|
| 263 | + */ |
|
| 264 | + public function new_invoice( $invoice ) { |
|
| 265 | + |
|
| 266 | + // Only send this email for invoices created via the admin page. |
|
| 267 | + if ( ! $invoice->is_type( 'invoice' ) || $invoice->is_paid() || $this->is_payment_form_invoice( $invoice->get_id() ) ) { |
|
| 268 | + return; |
|
| 269 | + } |
|
| 270 | + |
|
| 271 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 272 | + $recipient = wpinv_get_admin_email(); |
|
| 273 | + |
|
| 274 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 275 | + |
|
| 276 | + } |
|
| 277 | + |
|
| 278 | + /** |
|
| 279 | + * Sends a cancelled invoice notification. |
|
| 280 | + * |
|
| 281 | + * @param WPInv_Invoice $invoice |
|
| 282 | + */ |
|
| 283 | + public function cancelled_invoice( $invoice ) { |
|
| 284 | + |
|
| 285 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 286 | + $recipient = $invoice->get_email(); |
|
| 287 | + |
|
| 288 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 289 | + } |
|
| 290 | + |
|
| 291 | + /** |
|
| 292 | + * Sends a failed invoice notification. |
|
| 293 | + * |
|
| 294 | + * @param WPInv_Invoice $invoice |
|
| 295 | + */ |
|
| 296 | + public function failed_invoice( $invoice ) { |
|
| 297 | + |
|
| 298 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 299 | + $recipient = wpinv_get_admin_email(); |
|
| 300 | + |
|
| 301 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 302 | + |
|
| 303 | + } |
|
| 304 | + |
|
| 305 | + /** |
|
| 306 | + * Sends a notification whenever an invoice is put on hold. |
|
| 307 | + * |
|
| 308 | + * @param WPInv_Invoice $invoice |
|
| 309 | + */ |
|
| 310 | + public function onhold_invoice( $invoice ) { |
|
| 311 | + |
|
| 312 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 313 | + $recipient = $invoice->get_email(); |
|
| 314 | + |
|
| 315 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 316 | 316 | |
| 317 | - } |
|
| 317 | + } |
|
| 318 | 318 | |
| 319 | - /** |
|
| 320 | - * Sends a notification whenever an invoice is marked as processing payment. |
|
| 321 | - * |
|
| 322 | - * @param WPInv_Invoice $invoice |
|
| 323 | - */ |
|
| 324 | - public function processing_invoice( $invoice ) { |
|
| 319 | + /** |
|
| 320 | + * Sends a notification whenever an invoice is marked as processing payment. |
|
| 321 | + * |
|
| 322 | + * @param WPInv_Invoice $invoice |
|
| 323 | + */ |
|
| 324 | + public function processing_invoice( $invoice ) { |
|
| 325 | 325 | |
| 326 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 327 | - $recipient = $invoice->get_email(); |
|
| 328 | - |
|
| 329 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 330 | - |
|
| 331 | - } |
|
| 332 | - |
|
| 333 | - /** |
|
| 334 | - * Sends a notification whenever an invoice is paid. |
|
| 335 | - * |
|
| 336 | - * @param WPInv_Invoice $invoice |
|
| 337 | - */ |
|
| 338 | - public function completed_invoice( $invoice ) { |
|
| 326 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 327 | + $recipient = $invoice->get_email(); |
|
| 328 | + |
|
| 329 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 330 | + |
|
| 331 | + } |
|
| 332 | + |
|
| 333 | + /** |
|
| 334 | + * Sends a notification whenever an invoice is paid. |
|
| 335 | + * |
|
| 336 | + * @param WPInv_Invoice $invoice |
|
| 337 | + */ |
|
| 338 | + public function completed_invoice( $invoice ) { |
|
| 339 | 339 | |
| 340 | - // (Maybe) abort if it is a renewal invoice. |
|
| 341 | - if ( $invoice->is_renewal() && ! wpinv_get_option( 'email_completed_invoice_renewal_active', false ) ) { |
|
| 342 | - return; |
|
| 343 | - } |
|
| 340 | + // (Maybe) abort if it is a renewal invoice. |
|
| 341 | + if ( $invoice->is_renewal() && ! wpinv_get_option( 'email_completed_invoice_renewal_active', false ) ) { |
|
| 342 | + return; |
|
| 343 | + } |
|
| 344 | 344 | |
| 345 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 346 | - $recipient = $invoice->get_email(); |
|
| 345 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 346 | + $recipient = $invoice->get_email(); |
|
| 347 | 347 | |
| 348 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 348 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 349 | 349 | |
| 350 | - } |
|
| 350 | + } |
|
| 351 | 351 | |
| 352 | - /** |
|
| 353 | - * Sends a notification whenever an invoice is refunded. |
|
| 354 | - * |
|
| 355 | - * @param WPInv_Invoice $invoice |
|
| 356 | - */ |
|
| 357 | - public function refunded_invoice( $invoice ) { |
|
| 352 | + /** |
|
| 353 | + * Sends a notification whenever an invoice is refunded. |
|
| 354 | + * |
|
| 355 | + * @param WPInv_Invoice $invoice |
|
| 356 | + */ |
|
| 357 | + public function refunded_invoice( $invoice ) { |
|
| 358 | 358 | |
| 359 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 360 | - $recipient = $invoice->get_email(); |
|
| 361 | - |
|
| 362 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 359 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 360 | + $recipient = $invoice->get_email(); |
|
| 361 | + |
|
| 362 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 363 | 363 | |
| 364 | - } |
|
| 364 | + } |
|
| 365 | 365 | |
| 366 | - /** |
|
| 367 | - * Notifies a user about new invoices |
|
| 368 | - * |
|
| 369 | - * @param WPInv_Invoice $invoice |
|
| 370 | - * @param bool $force |
|
| 371 | - */ |
|
| 372 | - public function user_invoice( $invoice, $force = false ) { |
|
| 366 | + /** |
|
| 367 | + * Notifies a user about new invoices |
|
| 368 | + * |
|
| 369 | + * @param WPInv_Invoice $invoice |
|
| 370 | + * @param bool $force |
|
| 371 | + */ |
|
| 372 | + public function user_invoice( $invoice, $force = false ) { |
|
| 373 | 373 | |
| 374 | - if ( ! $force && ! empty( $GLOBALS['wpinv_skip_invoice_notification'] ) ) { |
|
| 375 | - return; |
|
| 376 | - } |
|
| 377 | - |
|
| 378 | - // Only send this email for invoices created via the admin page. |
|
| 379 | - if ( ! $invoice->is_type( 'invoice' ) || ( empty( $force ) && $invoice->is_paid() ) || ( empty( $force ) && $this->is_payment_form_invoice( $invoice->get_id() ) ) ) { |
|
| 380 | - return; |
|
| 381 | - } |
|
| 374 | + if ( ! $force && ! empty( $GLOBALS['wpinv_skip_invoice_notification'] ) ) { |
|
| 375 | + return; |
|
| 376 | + } |
|
| 377 | + |
|
| 378 | + // Only send this email for invoices created via the admin page. |
|
| 379 | + if ( ! $invoice->is_type( 'invoice' ) || ( empty( $force ) && $invoice->is_paid() ) || ( empty( $force ) && $this->is_payment_form_invoice( $invoice->get_id() ) ) ) { |
|
| 380 | + return; |
|
| 381 | + } |
|
| 382 | 382 | |
| 383 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 384 | - $recipient = $invoice->get_email(); |
|
| 385 | - |
|
| 386 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 383 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 384 | + $recipient = $invoice->get_email(); |
|
| 385 | + |
|
| 386 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 387 | 387 | |
| 388 | - } |
|
| 389 | - |
|
| 390 | - /** |
|
| 391 | - * Checks if an invoice is a payment form invoice. |
|
| 392 | - * |
|
| 393 | - * @param int $invoice |
|
| 394 | - * @return bool |
|
| 395 | - */ |
|
| 396 | - public function is_payment_form_invoice( $invoice ) { |
|
| 397 | - $is_payment_form_invoice = empty( $_GET['getpaid-admin-action'] ) && ( 'payment_form' === get_post_meta( $invoice, 'wpinv_created_via', true ) || 'geodirectory' === get_post_meta( $invoice, 'wpinv_created_via', true ) ); |
|
| 398 | - return apply_filters( 'getpaid_invoice_notifications_is_payment_form_invoice', $is_payment_form_invoice, $invoice ); |
|
| 399 | - } |
|
| 388 | + } |
|
| 389 | + |
|
| 390 | + /** |
|
| 391 | + * Checks if an invoice is a payment form invoice. |
|
| 392 | + * |
|
| 393 | + * @param int $invoice |
|
| 394 | + * @return bool |
|
| 395 | + */ |
|
| 396 | + public function is_payment_form_invoice( $invoice ) { |
|
| 397 | + $is_payment_form_invoice = empty( $_GET['getpaid-admin-action'] ) && ( 'payment_form' === get_post_meta( $invoice, 'wpinv_created_via', true ) || 'geodirectory' === get_post_meta( $invoice, 'wpinv_created_via', true ) ); |
|
| 398 | + return apply_filters( 'getpaid_invoice_notifications_is_payment_form_invoice', $is_payment_form_invoice, $invoice ); |
|
| 399 | + } |
|
| 400 | 400 | |
| 401 | - /** |
|
| 402 | - * Notifies admin about new invoice notes |
|
| 403 | - * |
|
| 404 | - * @param WPInv_Invoice $invoice |
|
| 405 | - * @param string $note |
|
| 406 | - */ |
|
| 407 | - public function user_note( $invoice, $note ) { |
|
| 408 | - |
|
| 409 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 410 | - $recipient = $invoice->get_email(); |
|
| 401 | + /** |
|
| 402 | + * Notifies admin about new invoice notes |
|
| 403 | + * |
|
| 404 | + * @param WPInv_Invoice $invoice |
|
| 405 | + * @param string $note |
|
| 406 | + */ |
|
| 407 | + public function user_note( $invoice, $note ) { |
|
| 408 | + |
|
| 409 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 410 | + $recipient = $invoice->get_email(); |
|
| 411 | 411 | |
| 412 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient, array( 'customer_note' => $note ) ); |
|
| 413 | - |
|
| 414 | - } |
|
| 415 | - |
|
| 416 | - /** |
|
| 417 | - * (Force) Sends overdue notices. |
|
| 418 | - * |
|
| 419 | - * @param WPInv_Invoice $invoice |
|
| 420 | - */ |
|
| 421 | - public function force_send_overdue_notice( $invoice ) { |
|
| 422 | - $email = new GetPaid_Notification_Email( 'overdue', $invoice ); |
|
| 423 | - return $this->send_email( $invoice, $email, 'overdue', $invoice->get_email() ); |
|
| 424 | - } |
|
| 425 | - |
|
| 426 | - /** |
|
| 427 | - * Sends overdue notices. |
|
| 428 | - * |
|
| 429 | - * @TODO: Create an invoices query class. |
|
| 430 | - */ |
|
| 431 | - public function overdue() { |
|
| 432 | - global $wpdb; |
|
| 433 | - |
|
| 434 | - $email = new GetPaid_Notification_Email( __FUNCTION__ ); |
|
| 435 | - |
|
| 436 | - // Fetch reminder days. |
|
| 437 | - $reminder_days = array_unique( wp_parse_id_list( $email->get_option( 'days' ) ) ); |
|
| 438 | - |
|
| 439 | - // Abort if non is set. |
|
| 440 | - if ( empty( $reminder_days ) ) { |
|
| 441 | - return; |
|
| 442 | - } |
|
| 443 | - |
|
| 444 | - // Retrieve date query. |
|
| 445 | - $date_query = $this->get_date_query( $reminder_days ); |
|
| 446 | - |
|
| 447 | - // Invoices table. |
|
| 448 | - $table = $wpdb->prefix . 'getpaid_invoices'; |
|
| 449 | - |
|
| 450 | - // Fetch invoices. |
|
| 451 | - $invoices = $wpdb->get_col( |
|
| 452 | - "SELECT posts.ID FROM $wpdb->posts as posts |
|
| 412 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient, array( 'customer_note' => $note ) ); |
|
| 413 | + |
|
| 414 | + } |
|
| 415 | + |
|
| 416 | + /** |
|
| 417 | + * (Force) Sends overdue notices. |
|
| 418 | + * |
|
| 419 | + * @param WPInv_Invoice $invoice |
|
| 420 | + */ |
|
| 421 | + public function force_send_overdue_notice( $invoice ) { |
|
| 422 | + $email = new GetPaid_Notification_Email( 'overdue', $invoice ); |
|
| 423 | + return $this->send_email( $invoice, $email, 'overdue', $invoice->get_email() ); |
|
| 424 | + } |
|
| 425 | + |
|
| 426 | + /** |
|
| 427 | + * Sends overdue notices. |
|
| 428 | + * |
|
| 429 | + * @TODO: Create an invoices query class. |
|
| 430 | + */ |
|
| 431 | + public function overdue() { |
|
| 432 | + global $wpdb; |
|
| 433 | + |
|
| 434 | + $email = new GetPaid_Notification_Email( __FUNCTION__ ); |
|
| 435 | + |
|
| 436 | + // Fetch reminder days. |
|
| 437 | + $reminder_days = array_unique( wp_parse_id_list( $email->get_option( 'days' ) ) ); |
|
| 438 | + |
|
| 439 | + // Abort if non is set. |
|
| 440 | + if ( empty( $reminder_days ) ) { |
|
| 441 | + return; |
|
| 442 | + } |
|
| 443 | + |
|
| 444 | + // Retrieve date query. |
|
| 445 | + $date_query = $this->get_date_query( $reminder_days ); |
|
| 446 | + |
|
| 447 | + // Invoices table. |
|
| 448 | + $table = $wpdb->prefix . 'getpaid_invoices'; |
|
| 449 | + |
|
| 450 | + // Fetch invoices. |
|
| 451 | + $invoices = $wpdb->get_col( |
|
| 452 | + "SELECT posts.ID FROM $wpdb->posts as posts |
|
| 453 | 453 | LEFT JOIN $table as invoices ON invoices.post_id = posts.ID |
| 454 | 454 | WHERE posts.post_type = 'wpi_invoice' AND posts.post_status = 'wpi-pending' $date_query"); |
| 455 | 455 | |
| 456 | - foreach ( $invoices as $invoice ) { |
|
| 456 | + foreach ( $invoices as $invoice ) { |
|
| 457 | 457 | |
| 458 | - // Only send this email for invoices created via the admin page. |
|
| 459 | - if ( ! $this->is_payment_form_invoice( $invoice ) ) { |
|
| 460 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 461 | - $email->object = $invoice; |
|
| 458 | + // Only send this email for invoices created via the admin page. |
|
| 459 | + if ( ! $this->is_payment_form_invoice( $invoice ) ) { |
|
| 460 | + $invoice = new WPInv_Invoice( $invoice ); |
|
| 461 | + $email->object = $invoice; |
|
| 462 | 462 | |
| 463 | - if ( $invoice->needs_payment() ) { |
|
| 464 | - $this->send_email( $invoice, $email, __FUNCTION__, $invoice->get_email() ); |
|
| 465 | - } |
|
| 463 | + if ( $invoice->needs_payment() ) { |
|
| 464 | + $this->send_email( $invoice, $email, __FUNCTION__, $invoice->get_email() ); |
|
| 465 | + } |
|
| 466 | 466 | |
| 467 | - } |
|
| 467 | + } |
|
| 468 | 468 | |
| 469 | - } |
|
| 469 | + } |
|
| 470 | 470 | |
| 471 | - } |
|
| 471 | + } |
|
| 472 | 472 | |
| 473 | - /** |
|
| 474 | - * Calculates the date query for an invoices query |
|
| 475 | - * |
|
| 476 | - * @param array $reminder_days |
|
| 477 | - * @return string |
|
| 478 | - */ |
|
| 479 | - public function get_date_query( $reminder_days ) { |
|
| 473 | + /** |
|
| 474 | + * Calculates the date query for an invoices query |
|
| 475 | + * |
|
| 476 | + * @param array $reminder_days |
|
| 477 | + * @return string |
|
| 478 | + */ |
|
| 479 | + public function get_date_query( $reminder_days ) { |
|
| 480 | 480 | |
| 481 | - $date_query = array( |
|
| 482 | - 'relation' => 'OR' |
|
| 483 | - ); |
|
| 481 | + $date_query = array( |
|
| 482 | + 'relation' => 'OR' |
|
| 483 | + ); |
|
| 484 | 484 | |
| 485 | - foreach ( $reminder_days as $days ) { |
|
| 486 | - $date = date_parse( date( 'Y-m-d', strtotime( "-$days days", current_time( 'timestamp' ) ) ) ); |
|
| 485 | + foreach ( $reminder_days as $days ) { |
|
| 486 | + $date = date_parse( date( 'Y-m-d', strtotime( "-$days days", current_time( 'timestamp' ) ) ) ); |
|
| 487 | 487 | |
| 488 | - $date_query[] = array( |
|
| 489 | - 'year' => $date['year'], |
|
| 490 | - 'month' => $date['month'], |
|
| 491 | - 'day' => $date['day'], |
|
| 492 | - ); |
|
| 488 | + $date_query[] = array( |
|
| 489 | + 'year' => $date['year'], |
|
| 490 | + 'month' => $date['month'], |
|
| 491 | + 'day' => $date['day'], |
|
| 492 | + ); |
|
| 493 | 493 | |
| 494 | - } |
|
| 494 | + } |
|
| 495 | 495 | |
| 496 | - $date_query = new WP_Date_Query( $date_query, 'invoices.due_date' ); |
|
| 496 | + $date_query = new WP_Date_Query( $date_query, 'invoices.due_date' ); |
|
| 497 | 497 | |
| 498 | - return $date_query->get_sql(); |
|
| 498 | + return $date_query->get_sql(); |
|
| 499 | 499 | |
| 500 | - } |
|
| 500 | + } |
|
| 501 | 501 | |
| 502 | 502 | } |
@@ -6,7 +6,7 @@ discard block |
||
| 6 | 6 | if ( ! defined( 'ABSPATH' ) ) exit; |
| 7 | 7 | |
| 8 | 8 | if ( ! class_exists( 'WP_List_Table' ) ) { |
| 9 | - include_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
|
| 9 | + include_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
|
| 10 | 10 | } |
| 11 | 11 | |
| 12 | 12 | /** |
@@ -14,467 +14,467 @@ discard block |
||
| 14 | 14 | */ |
| 15 | 15 | class WPInv_Subscriptions_List_Table extends WP_List_Table { |
| 16 | 16 | |
| 17 | - /** |
|
| 18 | - * URL of this page |
|
| 19 | - * |
|
| 20 | - * @var string |
|
| 21 | - * @since 1.0.19 |
|
| 22 | - */ |
|
| 23 | - public $base_url; |
|
| 24 | - |
|
| 25 | - /** |
|
| 26 | - * Query |
|
| 27 | - * |
|
| 28 | - * @var GetPaid_Subscriptions_Query |
|
| 29 | - * @since 1.0.19 |
|
| 30 | - */ |
|
| 31 | - public $query; |
|
| 32 | - |
|
| 33 | - /** |
|
| 34 | - * Total subscriptions |
|
| 35 | - * |
|
| 36 | - * @var string |
|
| 37 | - * @since 1.0.0 |
|
| 38 | - */ |
|
| 39 | - public $total_count; |
|
| 40 | - |
|
| 41 | - /** |
|
| 42 | - * Current status subscriptions |
|
| 43 | - * |
|
| 44 | - * @var string |
|
| 45 | - * @since 1.0.0 |
|
| 46 | - */ |
|
| 47 | - public $current_total_count; |
|
| 48 | - |
|
| 49 | - /** |
|
| 50 | - * Status counts |
|
| 51 | - * |
|
| 52 | - * @var array |
|
| 53 | - * @since 1.0.19 |
|
| 54 | - */ |
|
| 55 | - public $status_counts; |
|
| 56 | - |
|
| 57 | - /** |
|
| 58 | - * Number of results to show per page |
|
| 59 | - * |
|
| 60 | - * @var int |
|
| 61 | - * @since 1.0.0 |
|
| 62 | - */ |
|
| 63 | - public $per_page = 10; |
|
| 64 | - |
|
| 65 | - /** |
|
| 66 | - * Constructor function. |
|
| 67 | - */ |
|
| 68 | - public function __construct() { |
|
| 69 | - |
|
| 70 | - parent::__construct( |
|
| 71 | - array( |
|
| 72 | - 'singular' => 'subscription', |
|
| 73 | - 'plural' => 'subscriptions', |
|
| 74 | - ) |
|
| 75 | - ); |
|
| 76 | - |
|
| 77 | - $this->process_bulk_action(); |
|
| 78 | - |
|
| 79 | - $this->prepare_query(); |
|
| 80 | - |
|
| 81 | - $this->base_url = remove_query_arg( 'status' ); |
|
| 82 | - |
|
| 83 | - } |
|
| 84 | - |
|
| 85 | - /** |
|
| 86 | - * Prepares the display query |
|
| 87 | - */ |
|
| 88 | - public function prepare_query() { |
|
| 89 | - |
|
| 90 | - // Prepare query args. |
|
| 91 | - $query = array( |
|
| 92 | - 'number' => $this->per_page, |
|
| 93 | - 'paged' => $this->get_paged(), |
|
| 94 | - 'status' => ( isset( $_GET['status'] ) && array_key_exists( $_GET['status'], getpaid_get_subscription_statuses() ) ) ? sanitize_text_field( $_GET['status'] ) : 'all', |
|
| 95 | - 'orderby' => ( isset( $_GET['orderby'] ) ) ? sanitize_text_field( $_GET['orderby'] ) : 'id', |
|
| 96 | - 'order' => ( isset( $_GET['order'] ) ) ? sanitize_text_field( $_GET['order'] ) : 'DESC', |
|
| 97 | - 'customer_in' => $this->get_user_in(), |
|
| 98 | - ); |
|
| 99 | - |
|
| 100 | - if ( is_array( $query['customer_in'] ) && empty( $query['customer_in'] ) ) { |
|
| 101 | - $this->total_count = 0; |
|
| 102 | - $this->current_total_count = 0; |
|
| 103 | - $this->items = array(); |
|
| 104 | - $this->status_counts = array(); |
|
| 105 | - return; |
|
| 106 | - } |
|
| 107 | - |
|
| 108 | - // Prepare class properties. |
|
| 109 | - $this->query = new GetPaid_Subscriptions_Query( $query ); |
|
| 110 | - $this->total_count = $this->query->get_total(); |
|
| 111 | - $this->current_total_count = $this->query->get_total(); |
|
| 112 | - $this->items = $this->query->get_results(); |
|
| 113 | - $this->status_counts = getpaid_get_subscription_status_counts( $query ); |
|
| 114 | - |
|
| 115 | - if ( 'all' != $query['status'] ) { |
|
| 116 | - unset( $query['status'] ); |
|
| 117 | - $this->total_count = getpaid_get_subscriptions( $query, 'count' ); |
|
| 118 | - } |
|
| 119 | - |
|
| 120 | - } |
|
| 121 | - |
|
| 122 | - /** |
|
| 123 | - * Get user in. |
|
| 124 | - * |
|
| 125 | - */ |
|
| 126 | - public function get_user_in() { |
|
| 127 | - |
|
| 128 | - // Abort if no user. |
|
| 129 | - if ( empty( $_GET['s'] ) ) { |
|
| 130 | - return null; |
|
| 131 | - } |
|
| 132 | - |
|
| 133 | - // Or invalid user. |
|
| 134 | - $user = wp_unslash( sanitize_text_field( $_REQUEST['s'] ) ); |
|
| 135 | - |
|
| 136 | - if ( empty( $user ) ) { |
|
| 137 | - return null; |
|
| 138 | - } |
|
| 139 | - |
|
| 140 | - // Search matching users. |
|
| 141 | - $user = '*' . $user . '*'; |
|
| 142 | - $users = new WP_User_Query( |
|
| 143 | - array( |
|
| 144 | - 'fields' => 'ID', |
|
| 145 | - 'search' => $user, |
|
| 146 | - 'count_total' => false, |
|
| 147 | - ) |
|
| 148 | - ); |
|
| 149 | - |
|
| 150 | - return $users->get_results(); |
|
| 151 | - } |
|
| 152 | - |
|
| 153 | - /** |
|
| 154 | - * Gets the list of views available on this table. |
|
| 155 | - * |
|
| 156 | - * The format is an associative array: |
|
| 157 | - * - `'id' => 'link'` |
|
| 158 | - * |
|
| 159 | - * @since 1.0.0 |
|
| 160 | - * |
|
| 161 | - * @return array |
|
| 162 | - */ |
|
| 163 | - public function get_views() { |
|
| 164 | - |
|
| 165 | - $current = isset( $_GET['status'] ) ? sanitize_text_field( $_GET['status'] ) : 'all'; |
|
| 166 | - $views = array( |
|
| 167 | - |
|
| 168 | - 'all' => sprintf( |
|
| 169 | - '<a href="%s" %s>%s <span class="count">(%d)</span></a>', |
|
| 170 | - esc_url( add_query_arg( 'status', false, $this->base_url ) ), |
|
| 171 | - $current === 'all' ? ' class="current"' : '', |
|
| 172 | - __('All','invoicing' ), |
|
| 173 | - $this->total_count |
|
| 174 | - ) |
|
| 175 | - |
|
| 176 | - ); |
|
| 177 | - |
|
| 178 | - foreach ( array_filter( $this->status_counts ) as $status => $count ) { |
|
| 179 | - |
|
| 180 | - $views[ $status ] = sprintf( |
|
| 181 | - '<a href="%s" %s>%s <span class="count">(%d)</span></a>', |
|
| 182 | - esc_url( add_query_arg( 'status', urlencode( $status ), $this->base_url ) ), |
|
| 183 | - $current === $status ? ' class="current"' : '', |
|
| 184 | - esc_html( getpaid_get_subscription_status_label( $status ) ), |
|
| 185 | - $count |
|
| 186 | - ); |
|
| 187 | - |
|
| 188 | - } |
|
| 189 | - |
|
| 190 | - return $views; |
|
| 191 | - |
|
| 192 | - } |
|
| 193 | - |
|
| 194 | - /** |
|
| 195 | - * Render most columns |
|
| 196 | - * |
|
| 197 | - * @access private |
|
| 198 | - * @since 1.0.0 |
|
| 199 | - * @return string |
|
| 200 | - */ |
|
| 201 | - public function column_default( $item, $column_name ) { |
|
| 202 | - return apply_filters( "getpaid_subscriptions_table_column_$column_name", $item->$column_name ); |
|
| 203 | - } |
|
| 204 | - |
|
| 205 | - /** |
|
| 206 | - * This is how checkbox column renders. |
|
| 207 | - * |
|
| 208 | - * @param WPInv_Subscription $item |
|
| 209 | - * @return string |
|
| 210 | - */ |
|
| 211 | - public function column_cb( $item ) { |
|
| 212 | - return sprintf( '<input type="checkbox" name="id[]" value="%s" />', esc_html( $item->get_id() ) ); |
|
| 213 | - } |
|
| 214 | - |
|
| 215 | - /** |
|
| 216 | - * Status column |
|
| 217 | - * |
|
| 218 | - * @param WPInv_Subscription $item |
|
| 219 | - * @since 1.0.0 |
|
| 220 | - * @return string |
|
| 221 | - */ |
|
| 222 | - public function column_status( $item ) { |
|
| 223 | - return $item->get_status_label_html(); |
|
| 224 | - } |
|
| 225 | - |
|
| 226 | - /** |
|
| 227 | - * Subscription column |
|
| 228 | - * |
|
| 229 | - * @param WPInv_Subscription $item |
|
| 230 | - * @since 1.0.0 |
|
| 231 | - * @return string |
|
| 232 | - */ |
|
| 233 | - public function column_subscription( $item ) { |
|
| 234 | - |
|
| 235 | - $username = __( '(Missing User)', 'invoicing' ); |
|
| 236 | - |
|
| 237 | - $user = get_userdata( $item->get_customer_id() ); |
|
| 238 | - if ( $user ) { |
|
| 239 | - |
|
| 240 | - $username = sprintf( |
|
| 241 | - '<a href="user-edit.php?user_id=%s">%s</a>', |
|
| 242 | - absint( $user->ID ), |
|
| 243 | - ! empty( $user->display_name ) ? esc_html( $user->display_name ) : sanitize_email( $user->user_email ) |
|
| 244 | - ); |
|
| 245 | - |
|
| 246 | - } |
|
| 247 | - |
|
| 248 | - // translators: $1: is opening link, $2: is subscription id number, $3: is closing link tag, $4: is user's name |
|
| 249 | - $column_content = sprintf( |
|
| 250 | - _x( '%1$s#%2$s%3$s for %4$s', 'Subscription title on admin table. (e.g.: #211 for John Doe)', 'invoicing' ), |
|
| 251 | - '<a href="' . esc_url( admin_url( 'admin.php?page=wpinv-subscriptions&id=' . absint( $item->get_id() ) ) ) . '">', |
|
| 252 | - '<strong>' . esc_attr( $item->get_id() ) . '</strong>', '</a>', |
|
| 253 | - $username |
|
| 254 | - ); |
|
| 255 | - |
|
| 256 | - $row_actions = array(); |
|
| 257 | - |
|
| 258 | - // View subscription. |
|
| 259 | - $view_url = esc_url( add_query_arg( 'id', $item->get_id(), admin_url( 'admin.php?page=wpinv-subscriptions' ) )); |
|
| 260 | - $row_actions['view'] = '<a href="' . $view_url . '">' . __( 'View Subscription', 'invoicing' ) . '</a>'; |
|
| 261 | - |
|
| 262 | - // View invoice. |
|
| 263 | - $invoice = get_post( $item->get_parent_invoice_id() ); |
|
| 264 | - |
|
| 265 | - if ( ! empty( $invoice ) ) { |
|
| 266 | - $invoice_url = get_edit_post_link( $invoice ); |
|
| 267 | - $row_actions['invoice'] = '<a href="' . $invoice_url . '">' . __( 'View Invoice', 'invoicing' ) . '</a>'; |
|
| 268 | - } |
|
| 269 | - |
|
| 270 | - $delete_url = esc_url( |
|
| 271 | - wp_nonce_url( |
|
| 272 | - add_query_arg( |
|
| 273 | - array( |
|
| 274 | - 'getpaid-admin-action' => 'subscription_manual_delete', |
|
| 275 | - 'id' => $item->get_id(), |
|
| 276 | - ) |
|
| 277 | - ), |
|
| 278 | - 'getpaid-nonce', |
|
| 279 | - 'getpaid-nonce' |
|
| 280 | - ) |
|
| 281 | - ); |
|
| 282 | - $row_actions['delete'] = '<a class="text-danger" href="' . $delete_url . '">' . __( 'Delete Subscription', 'invoicing' ) . '</a>'; |
|
| 283 | - |
|
| 284 | - $row_actions = $this->row_actions( apply_filters( 'getpaid_subscription_table_row_actions', $row_actions, $item ) ); |
|
| 285 | - |
|
| 286 | - return "<strong>$column_content</strong>" . $this->column_amount( $item ) . $row_actions; |
|
| 287 | - } |
|
| 288 | - |
|
| 289 | - /** |
|
| 290 | - * Renewal date column |
|
| 291 | - * |
|
| 292 | - * @param WPInv_Subscription $item |
|
| 293 | - * @since 1.0.0 |
|
| 294 | - * @return string |
|
| 295 | - */ |
|
| 296 | - public function column_renewal_date( $item ) { |
|
| 297 | - return getpaid_format_date_value( $item->get_expiration() ); |
|
| 298 | - } |
|
| 299 | - |
|
| 300 | - /** |
|
| 301 | - * Start date column |
|
| 302 | - * |
|
| 303 | - * @param WPInv_Subscription $item |
|
| 304 | - * @since 1.0.0 |
|
| 305 | - * @return string |
|
| 306 | - */ |
|
| 307 | - public function column_start_date( $item ) { |
|
| 308 | - |
|
| 309 | - $gateway = $item->get_parent_invoice()->get_gateway_title(); |
|
| 310 | - |
|
| 311 | - if ( empty( $gateway ) ) { |
|
| 312 | - return getpaid_format_date_value( $item->get_date_created() ); |
|
| 313 | - } |
|
| 314 | - |
|
| 315 | - $url = apply_filters( 'getpaid_remote_subscription_profile_url', '', $item ); |
|
| 316 | - if ( ! empty( $url ) ) { |
|
| 317 | - |
|
| 318 | - return getpaid_format_date_value( $item->get_date_created() ) . '<br>' . sprintf( |
|
| 319 | - __( 'Via %s', 'invoicing' ), |
|
| 320 | - '<strong><a href="' . esc_url( $url ) . '" target="_blank">' . esc_html( $item->get_parent_invoice()->get_gateway_title() ) . '</a></strong>' |
|
| 321 | - ); |
|
| 322 | - |
|
| 323 | - } |
|
| 324 | - |
|
| 325 | - return getpaid_format_date_value( $item->get_date_created() ) . '<br>' . sprintf( |
|
| 326 | - __( 'Via %s', 'invoicing' ), |
|
| 327 | - '<strong>' . esc_html( $item->get_parent_invoice()->get_gateway_title() ) . '</strong>' |
|
| 328 | - ); |
|
| 329 | - |
|
| 330 | - } |
|
| 331 | - |
|
| 332 | - /** |
|
| 333 | - * Amount column |
|
| 334 | - * |
|
| 335 | - * @param WPInv_Subscription $item |
|
| 336 | - * @since 1.0.19 |
|
| 337 | - * @return string |
|
| 338 | - */ |
|
| 339 | - public static function column_amount( $item ) { |
|
| 340 | - $amount = getpaid_get_formatted_subscription_amount( $item ); |
|
| 341 | - return "<span class='text-muted form-text mt-2 mb-2'>$amount</span>"; |
|
| 342 | - } |
|
| 343 | - |
|
| 344 | - /** |
|
| 345 | - * Billing Times column |
|
| 346 | - * |
|
| 347 | - * @param WPInv_Subscription $item |
|
| 348 | - * @since 1.0.0 |
|
| 349 | - * @return string |
|
| 350 | - */ |
|
| 351 | - public function column_renewals( $item ) { |
|
| 352 | - $max_bills = $item->get_bill_times(); |
|
| 353 | - return $item->get_times_billed() . ' / ' . ( empty( $max_bills ) ? "∞" : $max_bills ); |
|
| 354 | - } |
|
| 355 | - |
|
| 356 | - /** |
|
| 357 | - * Product ID column |
|
| 358 | - * |
|
| 359 | - * @param WPInv_Subscription $item |
|
| 360 | - * @since 1.0.0 |
|
| 361 | - * @return string |
|
| 362 | - */ |
|
| 363 | - public function column_item( $item ) { |
|
| 364 | - $subscription_group = getpaid_get_invoice_subscription_group( $item->get_parent_invoice_id(), $item->get_id() ); |
|
| 365 | - |
|
| 366 | - if ( empty( $subscription_group ) ) { |
|
| 367 | - return $this->generate_item_markup( $item->get_product_id() ); |
|
| 368 | - } |
|
| 369 | - |
|
| 370 | - $markup = array_map( array( $this, 'generate_item_markup' ), array_keys( $subscription_group['items'] ) ); |
|
| 371 | - return implode( ' | ', $markup ); |
|
| 372 | - |
|
| 373 | - } |
|
| 374 | - |
|
| 375 | - /** |
|
| 376 | - * Generates the items markup. |
|
| 377 | - * |
|
| 378 | - * @param int $item_id |
|
| 379 | - * @since 1.0.0 |
|
| 380 | - * @return string |
|
| 381 | - */ |
|
| 382 | - public static function generate_item_markup( $item_id ) { |
|
| 383 | - $item = get_post( $item_id ); |
|
| 384 | - |
|
| 385 | - if ( ! empty( $item ) ) { |
|
| 386 | - $link = get_edit_post_link( $item ); |
|
| 387 | - $link = esc_url( $link ); |
|
| 388 | - $name = esc_html( get_the_title( $item ) ); |
|
| 389 | - return wpinv_current_user_can_manage_invoicing() ? "<a href='$link'>$name</a>" : $name; |
|
| 390 | - } else { |
|
| 391 | - return sprintf( __( 'Item #%s', 'invoicing' ), $item_id ); |
|
| 392 | - } |
|
| 393 | - |
|
| 394 | - } |
|
| 395 | - |
|
| 396 | - /** |
|
| 397 | - * Retrieve the current page number |
|
| 398 | - * |
|
| 399 | - * @return int |
|
| 400 | - */ |
|
| 401 | - public function get_paged() { |
|
| 402 | - return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1; |
|
| 403 | - } |
|
| 404 | - |
|
| 405 | - /** |
|
| 406 | - * Setup the final data for the table |
|
| 407 | - * |
|
| 408 | - */ |
|
| 409 | - public function prepare_items() { |
|
| 410 | - |
|
| 411 | - $columns = $this->get_columns(); |
|
| 412 | - $hidden = array(); |
|
| 413 | - $sortable = $this->get_sortable_columns(); |
|
| 414 | - |
|
| 415 | - $this->_column_headers = array( $columns, $hidden, $sortable ); |
|
| 416 | - |
|
| 417 | - $this->set_pagination_args( |
|
| 418 | - array( |
|
| 419 | - 'total_items' => $this->current_total_count, |
|
| 420 | - 'per_page' => $this->per_page, |
|
| 421 | - 'total_pages' => ceil( $this->current_total_count / $this->per_page ) |
|
| 422 | - ) |
|
| 423 | - ); |
|
| 424 | - } |
|
| 425 | - |
|
| 426 | - /** |
|
| 427 | - * Table columns |
|
| 428 | - * |
|
| 429 | - * @return array |
|
| 430 | - */ |
|
| 431 | - public function get_columns(){ |
|
| 432 | - $columns = array( |
|
| 433 | - 'cb' => '<input type="checkbox" />', |
|
| 434 | - 'subscription' => __( 'Subscription', 'invoicing' ), |
|
| 435 | - 'start_date' => __( 'Start Date', 'invoicing' ), |
|
| 436 | - 'renewal_date' => __( 'Next Payment', 'invoicing' ), |
|
| 437 | - 'renewals' => __( 'Payments', 'invoicing' ), |
|
| 438 | - 'item' => __( 'Items', 'invoicing' ), |
|
| 439 | - 'status' => __( 'Status', 'invoicing' ), |
|
| 440 | - ); |
|
| 441 | - |
|
| 442 | - return apply_filters( 'manage_getpaid_subscriptions_table_columns', $columns ); |
|
| 443 | - } |
|
| 444 | - |
|
| 445 | - /** |
|
| 446 | - * Sortable table columns. |
|
| 447 | - * |
|
| 448 | - * @return array |
|
| 449 | - */ |
|
| 450 | - public function get_sortable_columns() { |
|
| 451 | - $sortable = array( |
|
| 452 | - 'subscription' => array( 'id', true ), |
|
| 453 | - 'start_date' => array( 'created', true ), |
|
| 454 | - 'renewal_date' => array( 'expiration', true ), |
|
| 455 | - 'renewals' => array( 'bill_times', true ), |
|
| 456 | - 'item' => array( 'product_id', true ), |
|
| 457 | - 'status' => array( 'status', true ), |
|
| 458 | - ); |
|
| 459 | - |
|
| 460 | - return apply_filters( 'manage_getpaid_subscriptions_sortable_table_columns', $sortable ); |
|
| 461 | - } |
|
| 462 | - |
|
| 463 | - /** |
|
| 464 | - * Whether the table has items to display or not |
|
| 465 | - * |
|
| 466 | - * @return bool |
|
| 467 | - */ |
|
| 468 | - public function has_items() { |
|
| 469 | - return ! empty( $this->current_total_count ); |
|
| 470 | - } |
|
| 471 | - |
|
| 472 | - /** |
|
| 473 | - * Processes bulk actions. |
|
| 474 | - * |
|
| 475 | - */ |
|
| 476 | - public function process_bulk_action() { |
|
| 477 | - |
|
| 478 | - } |
|
| 17 | + /** |
|
| 18 | + * URL of this page |
|
| 19 | + * |
|
| 20 | + * @var string |
|
| 21 | + * @since 1.0.19 |
|
| 22 | + */ |
|
| 23 | + public $base_url; |
|
| 24 | + |
|
| 25 | + /** |
|
| 26 | + * Query |
|
| 27 | + * |
|
| 28 | + * @var GetPaid_Subscriptions_Query |
|
| 29 | + * @since 1.0.19 |
|
| 30 | + */ |
|
| 31 | + public $query; |
|
| 32 | + |
|
| 33 | + /** |
|
| 34 | + * Total subscriptions |
|
| 35 | + * |
|
| 36 | + * @var string |
|
| 37 | + * @since 1.0.0 |
|
| 38 | + */ |
|
| 39 | + public $total_count; |
|
| 40 | + |
|
| 41 | + /** |
|
| 42 | + * Current status subscriptions |
|
| 43 | + * |
|
| 44 | + * @var string |
|
| 45 | + * @since 1.0.0 |
|
| 46 | + */ |
|
| 47 | + public $current_total_count; |
|
| 48 | + |
|
| 49 | + /** |
|
| 50 | + * Status counts |
|
| 51 | + * |
|
| 52 | + * @var array |
|
| 53 | + * @since 1.0.19 |
|
| 54 | + */ |
|
| 55 | + public $status_counts; |
|
| 56 | + |
|
| 57 | + /** |
|
| 58 | + * Number of results to show per page |
|
| 59 | + * |
|
| 60 | + * @var int |
|
| 61 | + * @since 1.0.0 |
|
| 62 | + */ |
|
| 63 | + public $per_page = 10; |
|
| 64 | + |
|
| 65 | + /** |
|
| 66 | + * Constructor function. |
|
| 67 | + */ |
|
| 68 | + public function __construct() { |
|
| 69 | + |
|
| 70 | + parent::__construct( |
|
| 71 | + array( |
|
| 72 | + 'singular' => 'subscription', |
|
| 73 | + 'plural' => 'subscriptions', |
|
| 74 | + ) |
|
| 75 | + ); |
|
| 76 | + |
|
| 77 | + $this->process_bulk_action(); |
|
| 78 | + |
|
| 79 | + $this->prepare_query(); |
|
| 80 | + |
|
| 81 | + $this->base_url = remove_query_arg( 'status' ); |
|
| 82 | + |
|
| 83 | + } |
|
| 84 | + |
|
| 85 | + /** |
|
| 86 | + * Prepares the display query |
|
| 87 | + */ |
|
| 88 | + public function prepare_query() { |
|
| 89 | + |
|
| 90 | + // Prepare query args. |
|
| 91 | + $query = array( |
|
| 92 | + 'number' => $this->per_page, |
|
| 93 | + 'paged' => $this->get_paged(), |
|
| 94 | + 'status' => ( isset( $_GET['status'] ) && array_key_exists( $_GET['status'], getpaid_get_subscription_statuses() ) ) ? sanitize_text_field( $_GET['status'] ) : 'all', |
|
| 95 | + 'orderby' => ( isset( $_GET['orderby'] ) ) ? sanitize_text_field( $_GET['orderby'] ) : 'id', |
|
| 96 | + 'order' => ( isset( $_GET['order'] ) ) ? sanitize_text_field( $_GET['order'] ) : 'DESC', |
|
| 97 | + 'customer_in' => $this->get_user_in(), |
|
| 98 | + ); |
|
| 99 | + |
|
| 100 | + if ( is_array( $query['customer_in'] ) && empty( $query['customer_in'] ) ) { |
|
| 101 | + $this->total_count = 0; |
|
| 102 | + $this->current_total_count = 0; |
|
| 103 | + $this->items = array(); |
|
| 104 | + $this->status_counts = array(); |
|
| 105 | + return; |
|
| 106 | + } |
|
| 107 | + |
|
| 108 | + // Prepare class properties. |
|
| 109 | + $this->query = new GetPaid_Subscriptions_Query( $query ); |
|
| 110 | + $this->total_count = $this->query->get_total(); |
|
| 111 | + $this->current_total_count = $this->query->get_total(); |
|
| 112 | + $this->items = $this->query->get_results(); |
|
| 113 | + $this->status_counts = getpaid_get_subscription_status_counts( $query ); |
|
| 114 | + |
|
| 115 | + if ( 'all' != $query['status'] ) { |
|
| 116 | + unset( $query['status'] ); |
|
| 117 | + $this->total_count = getpaid_get_subscriptions( $query, 'count' ); |
|
| 118 | + } |
|
| 119 | + |
|
| 120 | + } |
|
| 121 | + |
|
| 122 | + /** |
|
| 123 | + * Get user in. |
|
| 124 | + * |
|
| 125 | + */ |
|
| 126 | + public function get_user_in() { |
|
| 127 | + |
|
| 128 | + // Abort if no user. |
|
| 129 | + if ( empty( $_GET['s'] ) ) { |
|
| 130 | + return null; |
|
| 131 | + } |
|
| 132 | + |
|
| 133 | + // Or invalid user. |
|
| 134 | + $user = wp_unslash( sanitize_text_field( $_REQUEST['s'] ) ); |
|
| 135 | + |
|
| 136 | + if ( empty( $user ) ) { |
|
| 137 | + return null; |
|
| 138 | + } |
|
| 139 | + |
|
| 140 | + // Search matching users. |
|
| 141 | + $user = '*' . $user . '*'; |
|
| 142 | + $users = new WP_User_Query( |
|
| 143 | + array( |
|
| 144 | + 'fields' => 'ID', |
|
| 145 | + 'search' => $user, |
|
| 146 | + 'count_total' => false, |
|
| 147 | + ) |
|
| 148 | + ); |
|
| 149 | + |
|
| 150 | + return $users->get_results(); |
|
| 151 | + } |
|
| 152 | + |
|
| 153 | + /** |
|
| 154 | + * Gets the list of views available on this table. |
|
| 155 | + * |
|
| 156 | + * The format is an associative array: |
|
| 157 | + * - `'id' => 'link'` |
|
| 158 | + * |
|
| 159 | + * @since 1.0.0 |
|
| 160 | + * |
|
| 161 | + * @return array |
|
| 162 | + */ |
|
| 163 | + public function get_views() { |
|
| 164 | + |
|
| 165 | + $current = isset( $_GET['status'] ) ? sanitize_text_field( $_GET['status'] ) : 'all'; |
|
| 166 | + $views = array( |
|
| 167 | + |
|
| 168 | + 'all' => sprintf( |
|
| 169 | + '<a href="%s" %s>%s <span class="count">(%d)</span></a>', |
|
| 170 | + esc_url( add_query_arg( 'status', false, $this->base_url ) ), |
|
| 171 | + $current === 'all' ? ' class="current"' : '', |
|
| 172 | + __('All','invoicing' ), |
|
| 173 | + $this->total_count |
|
| 174 | + ) |
|
| 175 | + |
|
| 176 | + ); |
|
| 177 | + |
|
| 178 | + foreach ( array_filter( $this->status_counts ) as $status => $count ) { |
|
| 179 | + |
|
| 180 | + $views[ $status ] = sprintf( |
|
| 181 | + '<a href="%s" %s>%s <span class="count">(%d)</span></a>', |
|
| 182 | + esc_url( add_query_arg( 'status', urlencode( $status ), $this->base_url ) ), |
|
| 183 | + $current === $status ? ' class="current"' : '', |
|
| 184 | + esc_html( getpaid_get_subscription_status_label( $status ) ), |
|
| 185 | + $count |
|
| 186 | + ); |
|
| 187 | + |
|
| 188 | + } |
|
| 189 | + |
|
| 190 | + return $views; |
|
| 191 | + |
|
| 192 | + } |
|
| 193 | + |
|
| 194 | + /** |
|
| 195 | + * Render most columns |
|
| 196 | + * |
|
| 197 | + * @access private |
|
| 198 | + * @since 1.0.0 |
|
| 199 | + * @return string |
|
| 200 | + */ |
|
| 201 | + public function column_default( $item, $column_name ) { |
|
| 202 | + return apply_filters( "getpaid_subscriptions_table_column_$column_name", $item->$column_name ); |
|
| 203 | + } |
|
| 204 | + |
|
| 205 | + /** |
|
| 206 | + * This is how checkbox column renders. |
|
| 207 | + * |
|
| 208 | + * @param WPInv_Subscription $item |
|
| 209 | + * @return string |
|
| 210 | + */ |
|
| 211 | + public function column_cb( $item ) { |
|
| 212 | + return sprintf( '<input type="checkbox" name="id[]" value="%s" />', esc_html( $item->get_id() ) ); |
|
| 213 | + } |
|
| 214 | + |
|
| 215 | + /** |
|
| 216 | + * Status column |
|
| 217 | + * |
|
| 218 | + * @param WPInv_Subscription $item |
|
| 219 | + * @since 1.0.0 |
|
| 220 | + * @return string |
|
| 221 | + */ |
|
| 222 | + public function column_status( $item ) { |
|
| 223 | + return $item->get_status_label_html(); |
|
| 224 | + } |
|
| 225 | + |
|
| 226 | + /** |
|
| 227 | + * Subscription column |
|
| 228 | + * |
|
| 229 | + * @param WPInv_Subscription $item |
|
| 230 | + * @since 1.0.0 |
|
| 231 | + * @return string |
|
| 232 | + */ |
|
| 233 | + public function column_subscription( $item ) { |
|
| 234 | + |
|
| 235 | + $username = __( '(Missing User)', 'invoicing' ); |
|
| 236 | + |
|
| 237 | + $user = get_userdata( $item->get_customer_id() ); |
|
| 238 | + if ( $user ) { |
|
| 239 | + |
|
| 240 | + $username = sprintf( |
|
| 241 | + '<a href="user-edit.php?user_id=%s">%s</a>', |
|
| 242 | + absint( $user->ID ), |
|
| 243 | + ! empty( $user->display_name ) ? esc_html( $user->display_name ) : sanitize_email( $user->user_email ) |
|
| 244 | + ); |
|
| 245 | + |
|
| 246 | + } |
|
| 247 | + |
|
| 248 | + // translators: $1: is opening link, $2: is subscription id number, $3: is closing link tag, $4: is user's name |
|
| 249 | + $column_content = sprintf( |
|
| 250 | + _x( '%1$s#%2$s%3$s for %4$s', 'Subscription title on admin table. (e.g.: #211 for John Doe)', 'invoicing' ), |
|
| 251 | + '<a href="' . esc_url( admin_url( 'admin.php?page=wpinv-subscriptions&id=' . absint( $item->get_id() ) ) ) . '">', |
|
| 252 | + '<strong>' . esc_attr( $item->get_id() ) . '</strong>', '</a>', |
|
| 253 | + $username |
|
| 254 | + ); |
|
| 255 | + |
|
| 256 | + $row_actions = array(); |
|
| 257 | + |
|
| 258 | + // View subscription. |
|
| 259 | + $view_url = esc_url( add_query_arg( 'id', $item->get_id(), admin_url( 'admin.php?page=wpinv-subscriptions' ) )); |
|
| 260 | + $row_actions['view'] = '<a href="' . $view_url . '">' . __( 'View Subscription', 'invoicing' ) . '</a>'; |
|
| 261 | + |
|
| 262 | + // View invoice. |
|
| 263 | + $invoice = get_post( $item->get_parent_invoice_id() ); |
|
| 264 | + |
|
| 265 | + if ( ! empty( $invoice ) ) { |
|
| 266 | + $invoice_url = get_edit_post_link( $invoice ); |
|
| 267 | + $row_actions['invoice'] = '<a href="' . $invoice_url . '">' . __( 'View Invoice', 'invoicing' ) . '</a>'; |
|
| 268 | + } |
|
| 269 | + |
|
| 270 | + $delete_url = esc_url( |
|
| 271 | + wp_nonce_url( |
|
| 272 | + add_query_arg( |
|
| 273 | + array( |
|
| 274 | + 'getpaid-admin-action' => 'subscription_manual_delete', |
|
| 275 | + 'id' => $item->get_id(), |
|
| 276 | + ) |
|
| 277 | + ), |
|
| 278 | + 'getpaid-nonce', |
|
| 279 | + 'getpaid-nonce' |
|
| 280 | + ) |
|
| 281 | + ); |
|
| 282 | + $row_actions['delete'] = '<a class="text-danger" href="' . $delete_url . '">' . __( 'Delete Subscription', 'invoicing' ) . '</a>'; |
|
| 283 | + |
|
| 284 | + $row_actions = $this->row_actions( apply_filters( 'getpaid_subscription_table_row_actions', $row_actions, $item ) ); |
|
| 285 | + |
|
| 286 | + return "<strong>$column_content</strong>" . $this->column_amount( $item ) . $row_actions; |
|
| 287 | + } |
|
| 288 | + |
|
| 289 | + /** |
|
| 290 | + * Renewal date column |
|
| 291 | + * |
|
| 292 | + * @param WPInv_Subscription $item |
|
| 293 | + * @since 1.0.0 |
|
| 294 | + * @return string |
|
| 295 | + */ |
|
| 296 | + public function column_renewal_date( $item ) { |
|
| 297 | + return getpaid_format_date_value( $item->get_expiration() ); |
|
| 298 | + } |
|
| 299 | + |
|
| 300 | + /** |
|
| 301 | + * Start date column |
|
| 302 | + * |
|
| 303 | + * @param WPInv_Subscription $item |
|
| 304 | + * @since 1.0.0 |
|
| 305 | + * @return string |
|
| 306 | + */ |
|
| 307 | + public function column_start_date( $item ) { |
|
| 308 | + |
|
| 309 | + $gateway = $item->get_parent_invoice()->get_gateway_title(); |
|
| 310 | + |
|
| 311 | + if ( empty( $gateway ) ) { |
|
| 312 | + return getpaid_format_date_value( $item->get_date_created() ); |
|
| 313 | + } |
|
| 314 | + |
|
| 315 | + $url = apply_filters( 'getpaid_remote_subscription_profile_url', '', $item ); |
|
| 316 | + if ( ! empty( $url ) ) { |
|
| 317 | + |
|
| 318 | + return getpaid_format_date_value( $item->get_date_created() ) . '<br>' . sprintf( |
|
| 319 | + __( 'Via %s', 'invoicing' ), |
|
| 320 | + '<strong><a href="' . esc_url( $url ) . '" target="_blank">' . esc_html( $item->get_parent_invoice()->get_gateway_title() ) . '</a></strong>' |
|
| 321 | + ); |
|
| 322 | + |
|
| 323 | + } |
|
| 324 | + |
|
| 325 | + return getpaid_format_date_value( $item->get_date_created() ) . '<br>' . sprintf( |
|
| 326 | + __( 'Via %s', 'invoicing' ), |
|
| 327 | + '<strong>' . esc_html( $item->get_parent_invoice()->get_gateway_title() ) . '</strong>' |
|
| 328 | + ); |
|
| 329 | + |
|
| 330 | + } |
|
| 331 | + |
|
| 332 | + /** |
|
| 333 | + * Amount column |
|
| 334 | + * |
|
| 335 | + * @param WPInv_Subscription $item |
|
| 336 | + * @since 1.0.19 |
|
| 337 | + * @return string |
|
| 338 | + */ |
|
| 339 | + public static function column_amount( $item ) { |
|
| 340 | + $amount = getpaid_get_formatted_subscription_amount( $item ); |
|
| 341 | + return "<span class='text-muted form-text mt-2 mb-2'>$amount</span>"; |
|
| 342 | + } |
|
| 343 | + |
|
| 344 | + /** |
|
| 345 | + * Billing Times column |
|
| 346 | + * |
|
| 347 | + * @param WPInv_Subscription $item |
|
| 348 | + * @since 1.0.0 |
|
| 349 | + * @return string |
|
| 350 | + */ |
|
| 351 | + public function column_renewals( $item ) { |
|
| 352 | + $max_bills = $item->get_bill_times(); |
|
| 353 | + return $item->get_times_billed() . ' / ' . ( empty( $max_bills ) ? "∞" : $max_bills ); |
|
| 354 | + } |
|
| 355 | + |
|
| 356 | + /** |
|
| 357 | + * Product ID column |
|
| 358 | + * |
|
| 359 | + * @param WPInv_Subscription $item |
|
| 360 | + * @since 1.0.0 |
|
| 361 | + * @return string |
|
| 362 | + */ |
|
| 363 | + public function column_item( $item ) { |
|
| 364 | + $subscription_group = getpaid_get_invoice_subscription_group( $item->get_parent_invoice_id(), $item->get_id() ); |
|
| 365 | + |
|
| 366 | + if ( empty( $subscription_group ) ) { |
|
| 367 | + return $this->generate_item_markup( $item->get_product_id() ); |
|
| 368 | + } |
|
| 369 | + |
|
| 370 | + $markup = array_map( array( $this, 'generate_item_markup' ), array_keys( $subscription_group['items'] ) ); |
|
| 371 | + return implode( ' | ', $markup ); |
|
| 372 | + |
|
| 373 | + } |
|
| 374 | + |
|
| 375 | + /** |
|
| 376 | + * Generates the items markup. |
|
| 377 | + * |
|
| 378 | + * @param int $item_id |
|
| 379 | + * @since 1.0.0 |
|
| 380 | + * @return string |
|
| 381 | + */ |
|
| 382 | + public static function generate_item_markup( $item_id ) { |
|
| 383 | + $item = get_post( $item_id ); |
|
| 384 | + |
|
| 385 | + if ( ! empty( $item ) ) { |
|
| 386 | + $link = get_edit_post_link( $item ); |
|
| 387 | + $link = esc_url( $link ); |
|
| 388 | + $name = esc_html( get_the_title( $item ) ); |
|
| 389 | + return wpinv_current_user_can_manage_invoicing() ? "<a href='$link'>$name</a>" : $name; |
|
| 390 | + } else { |
|
| 391 | + return sprintf( __( 'Item #%s', 'invoicing' ), $item_id ); |
|
| 392 | + } |
|
| 393 | + |
|
| 394 | + } |
|
| 395 | + |
|
| 396 | + /** |
|
| 397 | + * Retrieve the current page number |
|
| 398 | + * |
|
| 399 | + * @return int |
|
| 400 | + */ |
|
| 401 | + public function get_paged() { |
|
| 402 | + return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1; |
|
| 403 | + } |
|
| 404 | + |
|
| 405 | + /** |
|
| 406 | + * Setup the final data for the table |
|
| 407 | + * |
|
| 408 | + */ |
|
| 409 | + public function prepare_items() { |
|
| 410 | + |
|
| 411 | + $columns = $this->get_columns(); |
|
| 412 | + $hidden = array(); |
|
| 413 | + $sortable = $this->get_sortable_columns(); |
|
| 414 | + |
|
| 415 | + $this->_column_headers = array( $columns, $hidden, $sortable ); |
|
| 416 | + |
|
| 417 | + $this->set_pagination_args( |
|
| 418 | + array( |
|
| 419 | + 'total_items' => $this->current_total_count, |
|
| 420 | + 'per_page' => $this->per_page, |
|
| 421 | + 'total_pages' => ceil( $this->current_total_count / $this->per_page ) |
|
| 422 | + ) |
|
| 423 | + ); |
|
| 424 | + } |
|
| 425 | + |
|
| 426 | + /** |
|
| 427 | + * Table columns |
|
| 428 | + * |
|
| 429 | + * @return array |
|
| 430 | + */ |
|
| 431 | + public function get_columns(){ |
|
| 432 | + $columns = array( |
|
| 433 | + 'cb' => '<input type="checkbox" />', |
|
| 434 | + 'subscription' => __( 'Subscription', 'invoicing' ), |
|
| 435 | + 'start_date' => __( 'Start Date', 'invoicing' ), |
|
| 436 | + 'renewal_date' => __( 'Next Payment', 'invoicing' ), |
|
| 437 | + 'renewals' => __( 'Payments', 'invoicing' ), |
|
| 438 | + 'item' => __( 'Items', 'invoicing' ), |
|
| 439 | + 'status' => __( 'Status', 'invoicing' ), |
|
| 440 | + ); |
|
| 441 | + |
|
| 442 | + return apply_filters( 'manage_getpaid_subscriptions_table_columns', $columns ); |
|
| 443 | + } |
|
| 444 | + |
|
| 445 | + /** |
|
| 446 | + * Sortable table columns. |
|
| 447 | + * |
|
| 448 | + * @return array |
|
| 449 | + */ |
|
| 450 | + public function get_sortable_columns() { |
|
| 451 | + $sortable = array( |
|
| 452 | + 'subscription' => array( 'id', true ), |
|
| 453 | + 'start_date' => array( 'created', true ), |
|
| 454 | + 'renewal_date' => array( 'expiration', true ), |
|
| 455 | + 'renewals' => array( 'bill_times', true ), |
|
| 456 | + 'item' => array( 'product_id', true ), |
|
| 457 | + 'status' => array( 'status', true ), |
|
| 458 | + ); |
|
| 459 | + |
|
| 460 | + return apply_filters( 'manage_getpaid_subscriptions_sortable_table_columns', $sortable ); |
|
| 461 | + } |
|
| 462 | + |
|
| 463 | + /** |
|
| 464 | + * Whether the table has items to display or not |
|
| 465 | + * |
|
| 466 | + * @return bool |
|
| 467 | + */ |
|
| 468 | + public function has_items() { |
|
| 469 | + return ! empty( $this->current_total_count ); |
|
| 470 | + } |
|
| 471 | + |
|
| 472 | + /** |
|
| 473 | + * Processes bulk actions. |
|
| 474 | + * |
|
| 475 | + */ |
|
| 476 | + public function process_bulk_action() { |
|
| 477 | + |
|
| 478 | + } |
|
| 479 | 479 | |
| 480 | 480 | } |
@@ -5,110 +5,110 @@ discard block |
||
| 5 | 5 | */ |
| 6 | 6 | |
| 7 | 7 | if ( ! defined( 'ABSPATH' ) ) { |
| 8 | - exit; // Exit if accessed directly |
|
| 8 | + exit; // Exit if accessed directly |
|
| 9 | 9 | } |
| 10 | 10 | |
| 11 | 11 | if ( ! class_exists( 'GetPaid_Admin_Profile', false ) ) : |
| 12 | 12 | |
| 13 | - /** |
|
| 14 | - * GetPaid_Admin_Profile Class. |
|
| 15 | - */ |
|
| 16 | - class GetPaid_Admin_Profile { |
|
| 17 | - |
|
| 18 | - /** |
|
| 19 | - * Hook in tabs. |
|
| 20 | - */ |
|
| 21 | - public function __construct() { |
|
| 22 | - add_action( 'show_user_profile', array( $this, 'add_customer_meta_fields' ), 100 ); |
|
| 23 | - add_action( 'edit_user_profile', array( $this, 'add_customer_meta_fields' ), 100 ); |
|
| 24 | - |
|
| 25 | - add_action( 'personal_options_update', array( $this, 'save_customer_meta_fields' ) ); |
|
| 26 | - add_action( 'edit_user_profile_update', array( $this, 'save_customer_meta_fields' ) ); |
|
| 27 | - } |
|
| 28 | - |
|
| 29 | - /** |
|
| 30 | - * Get Address Fields for the edit user pages. |
|
| 31 | - * |
|
| 32 | - * @return array Fields to display which are filtered through invoicing_customer_meta_fields before being returned |
|
| 33 | - */ |
|
| 34 | - public function get_customer_meta_fields() { |
|
| 35 | - |
|
| 36 | - $show_fields = apply_filters( |
|
| 37 | - 'getpaid_customer_meta_fields', |
|
| 38 | - array( |
|
| 39 | - 'billing' => array( |
|
| 40 | - 'title' => __( 'Billing Details (GetPaid)', 'invoicing' ), |
|
| 41 | - 'fields' => array( |
|
| 42 | - '_wpinv_first_name' => array( |
|
| 43 | - 'label' => __( 'First name', 'invoicing' ), |
|
| 44 | - 'description' => '', |
|
| 45 | - ), |
|
| 46 | - '_wpinv_last_name' => array( |
|
| 47 | - 'label' => __( 'Last name', 'invoicing' ), |
|
| 48 | - 'description' => '', |
|
| 49 | - ), |
|
| 50 | - '_wpinv_company' => array( |
|
| 51 | - 'label' => __( 'Company', 'invoicing' ), |
|
| 52 | - 'description' => '', |
|
| 53 | - ), |
|
| 54 | - '_wpinv_company_id' => array( |
|
| 55 | - 'label' => __( 'Company ID', 'invoicing' ), |
|
| 56 | - 'description' => '', |
|
| 57 | - ), |
|
| 58 | - '_wpinv_address' => array( |
|
| 59 | - 'label' => __( 'Address', 'invoicing' ), |
|
| 60 | - 'description' => '', |
|
| 61 | - ), |
|
| 62 | - '_wpinv_city' => array( |
|
| 63 | - 'label' => __( 'City', 'invoicing' ), |
|
| 64 | - 'description' => '', |
|
| 65 | - ), |
|
| 66 | - '_wpinv_zip' => array( |
|
| 67 | - 'label' => __( 'Postcode / ZIP', 'invoicing' ), |
|
| 68 | - 'description' => '', |
|
| 69 | - ), |
|
| 70 | - '_wpinv_country' => array( |
|
| 71 | - 'label' => __( 'Country / Region', 'invoicing' ), |
|
| 72 | - 'description' => '', |
|
| 73 | - 'class' => 'getpaid_js_field-country', |
|
| 74 | - 'type' => 'select', |
|
| 75 | - 'options' => array( '' => __( 'Select a country / region…', 'invoicing' ) ) + wpinv_get_country_list(), |
|
| 76 | - ), |
|
| 77 | - '_wpinv_state' => array( |
|
| 78 | - 'label' => __( 'State / County', 'invoicing' ), |
|
| 79 | - 'description' => __( 'State / County or state code', 'invoicing' ), |
|
| 80 | - 'class' => 'getpaid_js_field-state regular-text', |
|
| 81 | - ), |
|
| 82 | - '_wpinv_phone' => array( |
|
| 83 | - 'label' => __( 'Phone', 'invoicing' ), |
|
| 84 | - 'description' => '', |
|
| 85 | - ), |
|
| 86 | - '_wpinv_vat_number' => array( |
|
| 87 | - 'label' => __( 'VAT Number', 'invoicing' ), |
|
| 88 | - 'description' => '', |
|
| 89 | - ), |
|
| 90 | - ), |
|
| 91 | - ), |
|
| 92 | - ) |
|
| 93 | - ); |
|
| 94 | - return $show_fields; |
|
| 95 | - } |
|
| 96 | - |
|
| 97 | - /** |
|
| 98 | - * Show Address Fields on edit user pages. |
|
| 99 | - * |
|
| 100 | - * @param WP_User $user |
|
| 101 | - */ |
|
| 102 | - public function add_customer_meta_fields( $user ) { |
|
| 103 | - |
|
| 104 | - if ( ! apply_filters( 'getpaid_current_user_can_edit_customer_meta_fields', current_user_can( 'manage_options' ), $user->ID ) ) { |
|
| 105 | - return; |
|
| 106 | - } |
|
| 107 | - |
|
| 108 | - $show_fields = $this->get_customer_meta_fields(); |
|
| 109 | - |
|
| 110 | - foreach ( $show_fields as $fieldset_key => $fieldset ) : |
|
| 111 | - ?> |
|
| 13 | + /** |
|
| 14 | + * GetPaid_Admin_Profile Class. |
|
| 15 | + */ |
|
| 16 | + class GetPaid_Admin_Profile { |
|
| 17 | + |
|
| 18 | + /** |
|
| 19 | + * Hook in tabs. |
|
| 20 | + */ |
|
| 21 | + public function __construct() { |
|
| 22 | + add_action( 'show_user_profile', array( $this, 'add_customer_meta_fields' ), 100 ); |
|
| 23 | + add_action( 'edit_user_profile', array( $this, 'add_customer_meta_fields' ), 100 ); |
|
| 24 | + |
|
| 25 | + add_action( 'personal_options_update', array( $this, 'save_customer_meta_fields' ) ); |
|
| 26 | + add_action( 'edit_user_profile_update', array( $this, 'save_customer_meta_fields' ) ); |
|
| 27 | + } |
|
| 28 | + |
|
| 29 | + /** |
|
| 30 | + * Get Address Fields for the edit user pages. |
|
| 31 | + * |
|
| 32 | + * @return array Fields to display which are filtered through invoicing_customer_meta_fields before being returned |
|
| 33 | + */ |
|
| 34 | + public function get_customer_meta_fields() { |
|
| 35 | + |
|
| 36 | + $show_fields = apply_filters( |
|
| 37 | + 'getpaid_customer_meta_fields', |
|
| 38 | + array( |
|
| 39 | + 'billing' => array( |
|
| 40 | + 'title' => __( 'Billing Details (GetPaid)', 'invoicing' ), |
|
| 41 | + 'fields' => array( |
|
| 42 | + '_wpinv_first_name' => array( |
|
| 43 | + 'label' => __( 'First name', 'invoicing' ), |
|
| 44 | + 'description' => '', |
|
| 45 | + ), |
|
| 46 | + '_wpinv_last_name' => array( |
|
| 47 | + 'label' => __( 'Last name', 'invoicing' ), |
|
| 48 | + 'description' => '', |
|
| 49 | + ), |
|
| 50 | + '_wpinv_company' => array( |
|
| 51 | + 'label' => __( 'Company', 'invoicing' ), |
|
| 52 | + 'description' => '', |
|
| 53 | + ), |
|
| 54 | + '_wpinv_company_id' => array( |
|
| 55 | + 'label' => __( 'Company ID', 'invoicing' ), |
|
| 56 | + 'description' => '', |
|
| 57 | + ), |
|
| 58 | + '_wpinv_address' => array( |
|
| 59 | + 'label' => __( 'Address', 'invoicing' ), |
|
| 60 | + 'description' => '', |
|
| 61 | + ), |
|
| 62 | + '_wpinv_city' => array( |
|
| 63 | + 'label' => __( 'City', 'invoicing' ), |
|
| 64 | + 'description' => '', |
|
| 65 | + ), |
|
| 66 | + '_wpinv_zip' => array( |
|
| 67 | + 'label' => __( 'Postcode / ZIP', 'invoicing' ), |
|
| 68 | + 'description' => '', |
|
| 69 | + ), |
|
| 70 | + '_wpinv_country' => array( |
|
| 71 | + 'label' => __( 'Country / Region', 'invoicing' ), |
|
| 72 | + 'description' => '', |
|
| 73 | + 'class' => 'getpaid_js_field-country', |
|
| 74 | + 'type' => 'select', |
|
| 75 | + 'options' => array( '' => __( 'Select a country / region…', 'invoicing' ) ) + wpinv_get_country_list(), |
|
| 76 | + ), |
|
| 77 | + '_wpinv_state' => array( |
|
| 78 | + 'label' => __( 'State / County', 'invoicing' ), |
|
| 79 | + 'description' => __( 'State / County or state code', 'invoicing' ), |
|
| 80 | + 'class' => 'getpaid_js_field-state regular-text', |
|
| 81 | + ), |
|
| 82 | + '_wpinv_phone' => array( |
|
| 83 | + 'label' => __( 'Phone', 'invoicing' ), |
|
| 84 | + 'description' => '', |
|
| 85 | + ), |
|
| 86 | + '_wpinv_vat_number' => array( |
|
| 87 | + 'label' => __( 'VAT Number', 'invoicing' ), |
|
| 88 | + 'description' => '', |
|
| 89 | + ), |
|
| 90 | + ), |
|
| 91 | + ), |
|
| 92 | + ) |
|
| 93 | + ); |
|
| 94 | + return $show_fields; |
|
| 95 | + } |
|
| 96 | + |
|
| 97 | + /** |
|
| 98 | + * Show Address Fields on edit user pages. |
|
| 99 | + * |
|
| 100 | + * @param WP_User $user |
|
| 101 | + */ |
|
| 102 | + public function add_customer_meta_fields( $user ) { |
|
| 103 | + |
|
| 104 | + if ( ! apply_filters( 'getpaid_current_user_can_edit_customer_meta_fields', current_user_can( 'manage_options' ), $user->ID ) ) { |
|
| 105 | + return; |
|
| 106 | + } |
|
| 107 | + |
|
| 108 | + $show_fields = $this->get_customer_meta_fields(); |
|
| 109 | + |
|
| 110 | + foreach ( $show_fields as $fieldset_key => $fieldset ) : |
|
| 111 | + ?> |
|
| 112 | 112 | <h2><?php echo esc_html( $fieldset['title'] ); ?></h2> |
| 113 | 113 | <table class="form-table" id="<?php echo esc_attr( 'getpaid-fieldset-' . $fieldset_key ); ?>"> |
| 114 | 114 | <?php foreach ( $fieldset['fields'] as $key => $field ) : ?> |
@@ -120,9 +120,9 @@ discard block |
||
| 120 | 120 | <?php if ( ! empty( $field['type'] ) && 'select' === $field['type'] ) : ?> |
| 121 | 121 | <select name="<?php echo esc_attr( $key ); ?>" id="<?php echo esc_attr( $key ); ?>" class="<?php echo esc_attr( $field['class'] ); ?> wpi_select2" style="width: 25em;"> |
| 122 | 122 | <?php |
| 123 | - $selected = esc_attr( get_user_meta( $user->ID, $key, true ) ); |
|
| 124 | - foreach ( $field['options'] as $option_key => $option_value ) : |
|
| 125 | - ?> |
|
| 123 | + $selected = esc_attr( get_user_meta( $user->ID, $key, true ) ); |
|
| 124 | + foreach ( $field['options'] as $option_key => $option_value ) : |
|
| 125 | + ?> |
|
| 126 | 126 | <option value="<?php echo esc_attr( $option_key ); ?>" <?php selected( $selected, $option_key, true ); ?>><?php echo esc_html( $option_value ); ?></option> |
| 127 | 127 | <?php endforeach; ?> |
| 128 | 128 | </select> |
@@ -137,52 +137,52 @@ discard block |
||
| 137 | 137 | <?php endforeach; ?> |
| 138 | 138 | </table> |
| 139 | 139 | <?php |
| 140 | - endforeach; |
|
| 141 | - } |
|
| 142 | - |
|
| 143 | - /** |
|
| 144 | - * Save Address Fields on edit user pages. |
|
| 145 | - * |
|
| 146 | - * @param int $user_id User ID of the user being saved |
|
| 147 | - */ |
|
| 148 | - public function save_customer_meta_fields( $user_id ) { |
|
| 149 | - if ( ! apply_filters( 'getpaid_current_user_can_edit_customer_meta_fields', current_user_can( 'manage_options' ), $user_id ) ) { |
|
| 150 | - return; |
|
| 151 | - } |
|
| 152 | - |
|
| 153 | - $save_fields = $this->get_customer_meta_fields(); |
|
| 154 | - |
|
| 155 | - foreach ( $save_fields as $fieldset ) { |
|
| 156 | - |
|
| 157 | - foreach ( $fieldset['fields'] as $key => $field ) { |
|
| 158 | - |
|
| 159 | - if ( isset( $field['type'] ) && 'checkbox' === $field['type'] ) { |
|
| 160 | - update_user_meta( $user_id, $key, ! empty( $_POST[ $key ] ) ); |
|
| 161 | - } elseif ( isset( $_POST[ $key ] ) ) { |
|
| 162 | - update_user_meta( $user_id, $key, wpinv_clean( $_POST[ $key ] ) ); |
|
| 163 | - } |
|
| 164 | - } |
|
| 165 | - } |
|
| 166 | - } |
|
| 167 | - |
|
| 168 | - /** |
|
| 169 | - * Get user meta for a given key, with fallbacks to core user info for pre-existing fields. |
|
| 170 | - * |
|
| 171 | - * @since 3.1.0 |
|
| 172 | - * @param int $user_id User ID of the user being edited |
|
| 173 | - * @param string $key Key for user meta field |
|
| 174 | - * @return string |
|
| 175 | - */ |
|
| 176 | - protected function get_user_meta( $user_id, $key ) { |
|
| 177 | - $value = get_user_meta( $user_id, $key, true ); |
|
| 178 | - $existing_fields = array( '_wpinv_first_name', '_wpinv_last_name' ); |
|
| 179 | - if ( ! $value && in_array( $key, $existing_fields ) ) { |
|
| 180 | - $value = get_user_meta( $user_id, str_replace( '_wpinv_', '', $key ), true ); |
|
| 181 | - } |
|
| 182 | - |
|
| 183 | - return $value; |
|
| 184 | - } |
|
| 185 | - } |
|
| 140 | + endforeach; |
|
| 141 | + } |
|
| 142 | + |
|
| 143 | + /** |
|
| 144 | + * Save Address Fields on edit user pages. |
|
| 145 | + * |
|
| 146 | + * @param int $user_id User ID of the user being saved |
|
| 147 | + */ |
|
| 148 | + public function save_customer_meta_fields( $user_id ) { |
|
| 149 | + if ( ! apply_filters( 'getpaid_current_user_can_edit_customer_meta_fields', current_user_can( 'manage_options' ), $user_id ) ) { |
|
| 150 | + return; |
|
| 151 | + } |
|
| 152 | + |
|
| 153 | + $save_fields = $this->get_customer_meta_fields(); |
|
| 154 | + |
|
| 155 | + foreach ( $save_fields as $fieldset ) { |
|
| 156 | + |
|
| 157 | + foreach ( $fieldset['fields'] as $key => $field ) { |
|
| 158 | + |
|
| 159 | + if ( isset( $field['type'] ) && 'checkbox' === $field['type'] ) { |
|
| 160 | + update_user_meta( $user_id, $key, ! empty( $_POST[ $key ] ) ); |
|
| 161 | + } elseif ( isset( $_POST[ $key ] ) ) { |
|
| 162 | + update_user_meta( $user_id, $key, wpinv_clean( $_POST[ $key ] ) ); |
|
| 163 | + } |
|
| 164 | + } |
|
| 165 | + } |
|
| 166 | + } |
|
| 167 | + |
|
| 168 | + /** |
|
| 169 | + * Get user meta for a given key, with fallbacks to core user info for pre-existing fields. |
|
| 170 | + * |
|
| 171 | + * @since 3.1.0 |
|
| 172 | + * @param int $user_id User ID of the user being edited |
|
| 173 | + * @param string $key Key for user meta field |
|
| 174 | + * @return string |
|
| 175 | + */ |
|
| 176 | + protected function get_user_meta( $user_id, $key ) { |
|
| 177 | + $value = get_user_meta( $user_id, $key, true ); |
|
| 178 | + $existing_fields = array( '_wpinv_first_name', '_wpinv_last_name' ); |
|
| 179 | + if ( ! $value && in_array( $key, $existing_fields ) ) { |
|
| 180 | + $value = get_user_meta( $user_id, str_replace( '_wpinv_', '', $key ), true ); |
|
| 181 | + } |
|
| 182 | + |
|
| 183 | + return $value; |
|
| 184 | + } |
|
| 185 | + } |
|
| 186 | 186 | |
| 187 | 187 | endif; |
| 188 | 188 | |
@@ -12,276 +12,276 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | class GetPaid_Metaboxes { |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * Only save metaboxes once. |
|
| 17 | - * |
|
| 18 | - * @var boolean |
|
| 19 | - */ |
|
| 20 | - private static $saved_meta_boxes = false; |
|
| 21 | - |
|
| 22 | 15 | /** |
| 23 | - * Hook in methods. |
|
| 24 | - */ |
|
| 25 | - public static function init() { |
|
| 26 | - |
|
| 27 | - // Register metaboxes. |
|
| 28 | - add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::add_meta_boxes', 5, 2 ); |
|
| 29 | - |
|
| 30 | - // Remove metaboxes. |
|
| 31 | - add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::remove_meta_boxes', 30 ); |
|
| 32 | - |
|
| 33 | - // Rename metaboxes. |
|
| 34 | - add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::rename_meta_boxes', 45 ); |
|
| 35 | - |
|
| 36 | - // Save metaboxes. |
|
| 37 | - add_action( 'save_post', 'GetPaid_Metaboxes::save_meta_boxes', 1, 2 ); |
|
| 38 | - } |
|
| 39 | - |
|
| 40 | - /** |
|
| 41 | - * Register core metaboxes. |
|
| 42 | - */ |
|
| 43 | - public static function add_meta_boxes( $post_type, $post ) { |
|
| 44 | - |
|
| 45 | - // For invoices... |
|
| 46 | - self::add_invoice_meta_boxes( $post_type, $post ); |
|
| 47 | - |
|
| 48 | - // For payment forms. |
|
| 49 | - self::add_payment_form_meta_boxes( $post_type, $post ); |
|
| 50 | - |
|
| 51 | - // For invoice items. |
|
| 52 | - self::add_item_meta_boxes( $post_type ); |
|
| 53 | - |
|
| 54 | - // For invoice discounts. |
|
| 55 | - if ( $post_type == 'wpi_discount' ) { |
|
| 56 | - add_meta_box( 'wpinv_discount_details', __( 'Discount Details', 'invoicing' ), 'GetPaid_Meta_Box_Discount_Details::output', 'wpi_discount', 'normal', 'high' ); |
|
| 57 | - } |
|
| 58 | - |
|
| 59 | - } |
|
| 16 | + * Only save metaboxes once. |
|
| 17 | + * |
|
| 18 | + * @var boolean |
|
| 19 | + */ |
|
| 20 | + private static $saved_meta_boxes = false; |
|
| 60 | 21 | |
| 61 | - /** |
|
| 62 | - * Register core metaboxes. |
|
| 63 | - */ |
|
| 64 | - protected static function add_payment_form_meta_boxes( $post_type, $post ) { |
|
| 22 | + /** |
|
| 23 | + * Hook in methods. |
|
| 24 | + */ |
|
| 25 | + public static function init() { |
|
| 65 | 26 | |
| 66 | - // For payment forms. |
|
| 67 | - if ( $post_type == 'wpi_payment_form' ) { |
|
| 27 | + // Register metaboxes. |
|
| 28 | + add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::add_meta_boxes', 5, 2 ); |
|
| 68 | 29 | |
| 69 | - // Design payment form. |
|
| 70 | - add_meta_box( 'wpinv-payment-form-design', __( 'Payment Form', 'invoicing' ), 'GetPaid_Meta_Box_Payment_Form::output', 'wpi_payment_form', 'normal' ); |
|
| 30 | + // Remove metaboxes. |
|
| 31 | + add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::remove_meta_boxes', 30 ); |
|
| 71 | 32 | |
| 72 | - // Payment form information. |
|
| 73 | - if ( $post->ID != wpinv_get_default_payment_form() ) { |
|
| 74 | - add_meta_box( 'wpinv-payment-form-info', __( 'Details', 'invoicing' ), 'GetPaid_Meta_Box_Payment_Form_Info::output', 'wpi_payment_form', 'side' ); |
|
| 75 | - } |
|
| 33 | + // Rename metaboxes. |
|
| 34 | + add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::rename_meta_boxes', 45 ); |
|
| 76 | 35 | |
| 77 | - } |
|
| 36 | + // Save metaboxes. |
|
| 37 | + add_action( 'save_post', 'GetPaid_Metaboxes::save_meta_boxes', 1, 2 ); |
|
| 38 | + } |
|
| 78 | 39 | |
| 79 | - } |
|
| 40 | + /** |
|
| 41 | + * Register core metaboxes. |
|
| 42 | + */ |
|
| 43 | + public static function add_meta_boxes( $post_type, $post ) { |
|
| 80 | 44 | |
| 81 | - /** |
|
| 82 | - * Register core metaboxes. |
|
| 83 | - */ |
|
| 84 | - protected static function add_item_meta_boxes( $post_type ) { |
|
| 45 | + // For invoices... |
|
| 46 | + self::add_invoice_meta_boxes( $post_type, $post ); |
|
| 85 | 47 | |
| 86 | - if ( $post_type == 'wpi_item' ) { |
|
| 48 | + // For payment forms. |
|
| 49 | + self::add_payment_form_meta_boxes( $post_type, $post ); |
|
| 87 | 50 | |
| 88 | - // Item details. |
|
| 89 | - add_meta_box( 'wpinv_item_details', __( 'Item Details', 'invoicing' ), 'GetPaid_Meta_Box_Item_Details::output', 'wpi_item', 'normal', 'high' ); |
|
| 51 | + // For invoice items. |
|
| 52 | + self::add_item_meta_boxes( $post_type ); |
|
| 90 | 53 | |
| 91 | - // If taxes are enabled, register the tax metabox. |
|
| 92 | - if ( wpinv_use_taxes() ) { |
|
| 93 | - add_meta_box( 'wpinv_item_vat', __( 'Tax', 'invoicing' ), 'GetPaid_Meta_Box_Item_VAT::output', 'wpi_item', 'normal', 'high' ); |
|
| 94 | - } |
|
| 54 | + // For invoice discounts. |
|
| 55 | + if ( $post_type == 'wpi_discount' ) { |
|
| 56 | + add_meta_box( 'wpinv_discount_details', __( 'Discount Details', 'invoicing' ), 'GetPaid_Meta_Box_Discount_Details::output', 'wpi_discount', 'normal', 'high' ); |
|
| 57 | + } |
|
| 95 | 58 | |
| 96 | - // Item info. |
|
| 97 | - add_meta_box( 'wpinv_field_item_info', __( 'Item info', 'invoicing' ), 'GetPaid_Meta_Box_Item_Info::output', 'wpi_item', 'side', 'core' ); |
|
| 59 | + } |
|
| 98 | 60 | |
| 99 | - } |
|
| 61 | + /** |
|
| 62 | + * Register core metaboxes. |
|
| 63 | + */ |
|
| 64 | + protected static function add_payment_form_meta_boxes( $post_type, $post ) { |
|
| 100 | 65 | |
| 101 | - } |
|
| 66 | + // For payment forms. |
|
| 67 | + if ( $post_type == 'wpi_payment_form' ) { |
|
| 102 | 68 | |
| 103 | - /** |
|
| 104 | - * Register invoice metaboxes. |
|
| 105 | - */ |
|
| 106 | - protected static function add_invoice_meta_boxes( $post_type, $post ) { |
|
| 69 | + // Design payment form. |
|
| 70 | + add_meta_box( 'wpinv-payment-form-design', __( 'Payment Form', 'invoicing' ), 'GetPaid_Meta_Box_Payment_Form::output', 'wpi_payment_form', 'normal' ); |
|
| 107 | 71 | |
| 108 | - // For invoices... |
|
| 109 | - if ( getpaid_is_invoice_post_type( $post_type ) ) { |
|
| 110 | - $invoice = new WPInv_Invoice( $post ); |
|
| 72 | + // Payment form information. |
|
| 73 | + if ( $post->ID != wpinv_get_default_payment_form() ) { |
|
| 74 | + add_meta_box( 'wpinv-payment-form-info', __( 'Details', 'invoicing' ), 'GetPaid_Meta_Box_Payment_Form_Info::output', 'wpi_payment_form', 'side' ); |
|
| 75 | + } |
|
| 111 | 76 | |
| 112 | - // Resend invoice. |
|
| 113 | - if ( ! $invoice->is_draft() ) { |
|
| 77 | + } |
|
| 114 | 78 | |
| 115 | - add_meta_box( |
|
| 116 | - 'wpinv-mb-resend-invoice', |
|
| 117 | - sprintf( |
|
| 118 | - __( 'Resend %s', 'invoicing' ), |
|
| 119 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 120 | - ), |
|
| 121 | - 'GetPaid_Meta_Box_Resend_Invoice::output', |
|
| 122 | - $post_type, |
|
| 123 | - 'side', |
|
| 124 | - 'low' |
|
| 125 | - ); |
|
| 79 | + } |
|
| 126 | 80 | |
| 127 | - } |
|
| 81 | + /** |
|
| 82 | + * Register core metaboxes. |
|
| 83 | + */ |
|
| 84 | + protected static function add_item_meta_boxes( $post_type ) { |
|
| 128 | 85 | |
| 129 | - // Subscriptions. |
|
| 130 | - $subscriptions = getpaid_get_invoice_subscriptions( $invoice ); |
|
| 131 | - if ( ! empty( $subscriptions ) ) { |
|
| 86 | + if ( $post_type == 'wpi_item' ) { |
|
| 132 | 87 | |
| 133 | - if ( is_array( $subscriptions ) ) { |
|
| 134 | - add_meta_box( 'wpinv-mb-subscriptions', __( 'Related Subscriptions', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output_related', $post_type, 'advanced' ); |
|
| 135 | - } else { |
|
| 136 | - add_meta_box( 'wpinv-mb-subscriptions', __( 'Subscription Details', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output', $post_type, 'advanced' ); |
|
| 137 | - } |
|
| 88 | + // Item details. |
|
| 89 | + add_meta_box( 'wpinv_item_details', __( 'Item Details', 'invoicing' ), 'GetPaid_Meta_Box_Item_Details::output', 'wpi_item', 'normal', 'high' ); |
|
| 138 | 90 | |
| 139 | - if ( getpaid_count_subscription_invoices( $invoice->is_renewal() ? $invoice->get_parent_id() : $invoice->get_id() ) > 1 ) { |
|
| 140 | - add_meta_box( 'wpinv-mb-subscription-invoices', __( 'Related Payments', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output_invoices', $post_type, 'advanced' ); |
|
| 141 | - } |
|
| 91 | + // If taxes are enabled, register the tax metabox. |
|
| 92 | + if ( wpinv_use_taxes() ) { |
|
| 93 | + add_meta_box( 'wpinv_item_vat', __( 'Tax', 'invoicing' ), 'GetPaid_Meta_Box_Item_VAT::output', 'wpi_item', 'normal', 'high' ); |
|
| 94 | + } |
|
| 142 | 95 | |
| 143 | - } |
|
| 96 | + // Item info. |
|
| 97 | + add_meta_box( 'wpinv_field_item_info', __( 'Item info', 'invoicing' ), 'GetPaid_Meta_Box_Item_Info::output', 'wpi_item', 'side', 'core' ); |
|
| 144 | 98 | |
| 145 | - // Invoice details. |
|
| 146 | - add_meta_box( |
|
| 147 | - 'wpinv-details', |
|
| 148 | - sprintf( |
|
| 149 | - __( '%s Details', 'invoicing' ), |
|
| 150 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 151 | - ), |
|
| 152 | - 'GetPaid_Meta_Box_Invoice_Details::output', |
|
| 153 | - $post_type, |
|
| 154 | - 'side' |
|
| 155 | - ); |
|
| 99 | + } |
|
| 156 | 100 | |
| 157 | - // Payment details. |
|
| 158 | - add_meta_box( 'wpinv-payment-meta', __( 'Payment Meta', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Payment_Meta::output', $post_type, 'side', 'default' ); |
|
| 101 | + } |
|
| 159 | 102 | |
| 160 | - // Billing details. |
|
| 161 | - add_meta_box( 'wpinv-address', __( 'Billing Details', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Address::output', $post_type, 'normal', 'high' ); |
|
| 103 | + /** |
|
| 104 | + * Register invoice metaboxes. |
|
| 105 | + */ |
|
| 106 | + protected static function add_invoice_meta_boxes( $post_type, $post ) { |
|
| 107 | + |
|
| 108 | + // For invoices... |
|
| 109 | + if ( getpaid_is_invoice_post_type( $post_type ) ) { |
|
| 110 | + $invoice = new WPInv_Invoice( $post ); |
|
| 111 | + |
|
| 112 | + // Resend invoice. |
|
| 113 | + if ( ! $invoice->is_draft() ) { |
|
| 114 | + |
|
| 115 | + add_meta_box( |
|
| 116 | + 'wpinv-mb-resend-invoice', |
|
| 117 | + sprintf( |
|
| 118 | + __( 'Resend %s', 'invoicing' ), |
|
| 119 | + ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 120 | + ), |
|
| 121 | + 'GetPaid_Meta_Box_Resend_Invoice::output', |
|
| 122 | + $post_type, |
|
| 123 | + 'side', |
|
| 124 | + 'low' |
|
| 125 | + ); |
|
| 126 | + |
|
| 127 | + } |
|
| 128 | + |
|
| 129 | + // Subscriptions. |
|
| 130 | + $subscriptions = getpaid_get_invoice_subscriptions( $invoice ); |
|
| 131 | + if ( ! empty( $subscriptions ) ) { |
|
| 132 | + |
|
| 133 | + if ( is_array( $subscriptions ) ) { |
|
| 134 | + add_meta_box( 'wpinv-mb-subscriptions', __( 'Related Subscriptions', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output_related', $post_type, 'advanced' ); |
|
| 135 | + } else { |
|
| 136 | + add_meta_box( 'wpinv-mb-subscriptions', __( 'Subscription Details', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output', $post_type, 'advanced' ); |
|
| 137 | + } |
|
| 138 | + |
|
| 139 | + if ( getpaid_count_subscription_invoices( $invoice->is_renewal() ? $invoice->get_parent_id() : $invoice->get_id() ) > 1 ) { |
|
| 140 | + add_meta_box( 'wpinv-mb-subscription-invoices', __( 'Related Payments', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output_invoices', $post_type, 'advanced' ); |
|
| 141 | + } |
|
| 142 | + |
|
| 143 | + } |
|
| 144 | + |
|
| 145 | + // Invoice details. |
|
| 146 | + add_meta_box( |
|
| 147 | + 'wpinv-details', |
|
| 148 | + sprintf( |
|
| 149 | + __( '%s Details', 'invoicing' ), |
|
| 150 | + ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 151 | + ), |
|
| 152 | + 'GetPaid_Meta_Box_Invoice_Details::output', |
|
| 153 | + $post_type, |
|
| 154 | + 'side' |
|
| 155 | + ); |
|
| 156 | + |
|
| 157 | + // Payment details. |
|
| 158 | + add_meta_box( 'wpinv-payment-meta', __( 'Payment Meta', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Payment_Meta::output', $post_type, 'side', 'default' ); |
|
| 159 | + |
|
| 160 | + // Billing details. |
|
| 161 | + add_meta_box( 'wpinv-address', __( 'Billing Details', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Address::output', $post_type, 'normal', 'high' ); |
|
| 162 | 162 | |
| 163 | - // Invoice items. |
|
| 164 | - add_meta_box( |
|
| 165 | - 'wpinv-items', |
|
| 166 | - sprintf( |
|
| 167 | - __( '%s Items', 'invoicing' ), |
|
| 168 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 169 | - ), |
|
| 170 | - 'GetPaid_Meta_Box_Invoice_Items::output', |
|
| 171 | - $post_type, |
|
| 172 | - 'normal', |
|
| 173 | - 'high' |
|
| 174 | - ); |
|
| 163 | + // Invoice items. |
|
| 164 | + add_meta_box( |
|
| 165 | + 'wpinv-items', |
|
| 166 | + sprintf( |
|
| 167 | + __( '%s Items', 'invoicing' ), |
|
| 168 | + ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 169 | + ), |
|
| 170 | + 'GetPaid_Meta_Box_Invoice_Items::output', |
|
| 171 | + $post_type, |
|
| 172 | + 'normal', |
|
| 173 | + 'high' |
|
| 174 | + ); |
|
| 175 | 175 | |
| 176 | - // Invoice notes. |
|
| 177 | - add_meta_box( |
|
| 178 | - 'wpinv-notes', |
|
| 179 | - sprintf( |
|
| 180 | - __( '%s Notes', 'invoicing' ), |
|
| 181 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 182 | - ), |
|
| 183 | - 'WPInv_Meta_Box_Notes::output', |
|
| 184 | - $post_type, |
|
| 185 | - 'side', |
|
| 186 | - 'low' |
|
| 187 | - ); |
|
| 188 | - |
|
| 189 | - // Shipping Address. |
|
| 190 | - if ( get_post_meta( $invoice->get_id(), 'shipping_address', true ) ) { |
|
| 191 | - add_meta_box( 'wpinv-invoice-shipping-details', __( 'Shipping Address', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Shipping_Address::output', $post_type, 'side', 'high' ); |
|
| 192 | - } |
|
| 193 | - |
|
| 194 | - // Payment form information. |
|
| 195 | - if ( get_post_meta( $invoice->get_id(), 'payment_form_data', true ) ) { |
|
| 196 | - add_meta_box( 'wpinv-invoice-payment-form-details', __( 'Payment Form Details', 'invoicing' ), 'WPInv_Meta_Box_Payment_Form::output_details', $post_type, 'side', 'high' ); |
|
| 197 | - } |
|
| 198 | - |
|
| 199 | - } |
|
| 200 | - |
|
| 201 | - } |
|
| 202 | - |
|
| 203 | - /** |
|
| 204 | - * Remove some metaboxes. |
|
| 205 | - */ |
|
| 206 | - public static function remove_meta_boxes() { |
|
| 207 | - remove_meta_box( 'wpseo_meta', 'wpi_invoice', 'normal' ); |
|
| 208 | - } |
|
| 209 | - |
|
| 210 | - /** |
|
| 211 | - * Rename other metaboxes. |
|
| 212 | - */ |
|
| 213 | - public static function rename_meta_boxes() { |
|
| 176 | + // Invoice notes. |
|
| 177 | + add_meta_box( |
|
| 178 | + 'wpinv-notes', |
|
| 179 | + sprintf( |
|
| 180 | + __( '%s Notes', 'invoicing' ), |
|
| 181 | + ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 182 | + ), |
|
| 183 | + 'WPInv_Meta_Box_Notes::output', |
|
| 184 | + $post_type, |
|
| 185 | + 'side', |
|
| 186 | + 'low' |
|
| 187 | + ); |
|
| 188 | + |
|
| 189 | + // Shipping Address. |
|
| 190 | + if ( get_post_meta( $invoice->get_id(), 'shipping_address', true ) ) { |
|
| 191 | + add_meta_box( 'wpinv-invoice-shipping-details', __( 'Shipping Address', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Shipping_Address::output', $post_type, 'side', 'high' ); |
|
| 192 | + } |
|
| 193 | + |
|
| 194 | + // Payment form information. |
|
| 195 | + if ( get_post_meta( $invoice->get_id(), 'payment_form_data', true ) ) { |
|
| 196 | + add_meta_box( 'wpinv-invoice-payment-form-details', __( 'Payment Form Details', 'invoicing' ), 'WPInv_Meta_Box_Payment_Form::output_details', $post_type, 'side', 'high' ); |
|
| 197 | + } |
|
| 198 | + |
|
| 199 | + } |
|
| 200 | + |
|
| 201 | + } |
|
| 202 | + |
|
| 203 | + /** |
|
| 204 | + * Remove some metaboxes. |
|
| 205 | + */ |
|
| 206 | + public static function remove_meta_boxes() { |
|
| 207 | + remove_meta_box( 'wpseo_meta', 'wpi_invoice', 'normal' ); |
|
| 208 | + } |
|
| 209 | + |
|
| 210 | + /** |
|
| 211 | + * Rename other metaboxes. |
|
| 212 | + */ |
|
| 213 | + public static function rename_meta_boxes() { |
|
| 214 | 214 | |
| 215 | - } |
|
| 216 | - |
|
| 217 | - /** |
|
| 218 | - * Check if we're saving, then trigger an action based on the post type. |
|
| 219 | - * |
|
| 220 | - * @param int $post_id Post ID. |
|
| 221 | - * @param object $post Post object. |
|
| 222 | - */ |
|
| 223 | - public static function save_meta_boxes( $post_id, $post ) { |
|
| 224 | - $post_id = absint( $post_id ); |
|
| 225 | - $data = wp_kses_post_deep( wp_unslash( $_POST ) ); |
|
| 226 | - |
|
| 227 | - // Do not save for ajax requests. |
|
| 228 | - if ( ( defined( 'DOING_AJAX') && DOING_AJAX ) || isset( $_REQUEST['bulk_edit'] ) ) { |
|
| 229 | - return; |
|
| 230 | - } |
|
| 231 | - |
|
| 232 | - // $post_id and $post are required |
|
| 233 | - if ( empty( $post_id ) || empty( $post ) || self::$saved_meta_boxes ) { |
|
| 234 | - return; |
|
| 235 | - } |
|
| 236 | - |
|
| 237 | - // Dont' save meta boxes for revisions or autosaves. |
|
| 238 | - if ( ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) || is_int( wp_is_post_revision( $post ) ) || is_int( wp_is_post_autosave( $post ) ) ) { |
|
| 239 | - return; |
|
| 240 | - } |
|
| 241 | - |
|
| 242 | - // Check the nonce. |
|
| 243 | - if ( empty( $data['getpaid_meta_nonce'] ) || ! wp_verify_nonce( $data['getpaid_meta_nonce'], 'getpaid_meta_nonce' ) ) { |
|
| 244 | - return; |
|
| 245 | - } |
|
| 246 | - |
|
| 247 | - // Check the post being saved == the $post_id to prevent triggering this call for other save_post events. |
|
| 248 | - if ( empty( $data['post_ID'] ) || absint( $data['post_ID'] ) !== $post_id ) { |
|
| 249 | - return; |
|
| 250 | - } |
|
| 251 | - |
|
| 252 | - // Check user has permission to edit. |
|
| 253 | - if ( ! current_user_can( 'edit_post', $post_id ) ) { |
|
| 254 | - return; |
|
| 255 | - } |
|
| 256 | - |
|
| 257 | - if ( getpaid_is_invoice_post_type( $post->post_type ) ) { |
|
| 258 | - |
|
| 259 | - // We need this save event to run once to avoid potential endless loops. |
|
| 260 | - self::$saved_meta_boxes = true; |
|
| 261 | - |
|
| 262 | - return GetPaid_Meta_Box_Invoice_Address::save( $post_id ); |
|
| 263 | - |
|
| 264 | - } |
|
| 265 | - |
|
| 266 | - // Ensure this is our post type. |
|
| 267 | - $post_types_map = array( |
|
| 268 | - 'wpi_item' => 'GetPaid_Meta_Box_Item_Details', |
|
| 269 | - 'wpi_payment_form' => 'GetPaid_Meta_Box_Payment_Form', |
|
| 270 | - 'wpi_discount' => 'GetPaid_Meta_Box_Discount_Details', |
|
| 271 | - ); |
|
| 272 | - |
|
| 273 | - // Is this our post type? |
|
| 274 | - if ( ! isset( $post_types_map[ $post->post_type ] ) ) { |
|
| 275 | - return; |
|
| 276 | - } |
|
| 277 | - |
|
| 278 | - // We need this save event to run once to avoid potential endless loops. |
|
| 279 | - self::$saved_meta_boxes = true; |
|
| 215 | + } |
|
| 216 | + |
|
| 217 | + /** |
|
| 218 | + * Check if we're saving, then trigger an action based on the post type. |
|
| 219 | + * |
|
| 220 | + * @param int $post_id Post ID. |
|
| 221 | + * @param object $post Post object. |
|
| 222 | + */ |
|
| 223 | + public static function save_meta_boxes( $post_id, $post ) { |
|
| 224 | + $post_id = absint( $post_id ); |
|
| 225 | + $data = wp_kses_post_deep( wp_unslash( $_POST ) ); |
|
| 226 | + |
|
| 227 | + // Do not save for ajax requests. |
|
| 228 | + if ( ( defined( 'DOING_AJAX') && DOING_AJAX ) || isset( $_REQUEST['bulk_edit'] ) ) { |
|
| 229 | + return; |
|
| 230 | + } |
|
| 231 | + |
|
| 232 | + // $post_id and $post are required |
|
| 233 | + if ( empty( $post_id ) || empty( $post ) || self::$saved_meta_boxes ) { |
|
| 234 | + return; |
|
| 235 | + } |
|
| 236 | + |
|
| 237 | + // Dont' save meta boxes for revisions or autosaves. |
|
| 238 | + if ( ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) || is_int( wp_is_post_revision( $post ) ) || is_int( wp_is_post_autosave( $post ) ) ) { |
|
| 239 | + return; |
|
| 240 | + } |
|
| 241 | + |
|
| 242 | + // Check the nonce. |
|
| 243 | + if ( empty( $data['getpaid_meta_nonce'] ) || ! wp_verify_nonce( $data['getpaid_meta_nonce'], 'getpaid_meta_nonce' ) ) { |
|
| 244 | + return; |
|
| 245 | + } |
|
| 246 | + |
|
| 247 | + // Check the post being saved == the $post_id to prevent triggering this call for other save_post events. |
|
| 248 | + if ( empty( $data['post_ID'] ) || absint( $data['post_ID'] ) !== $post_id ) { |
|
| 249 | + return; |
|
| 250 | + } |
|
| 251 | + |
|
| 252 | + // Check user has permission to edit. |
|
| 253 | + if ( ! current_user_can( 'edit_post', $post_id ) ) { |
|
| 254 | + return; |
|
| 255 | + } |
|
| 256 | + |
|
| 257 | + if ( getpaid_is_invoice_post_type( $post->post_type ) ) { |
|
| 258 | + |
|
| 259 | + // We need this save event to run once to avoid potential endless loops. |
|
| 260 | + self::$saved_meta_boxes = true; |
|
| 261 | + |
|
| 262 | + return GetPaid_Meta_Box_Invoice_Address::save( $post_id ); |
|
| 263 | + |
|
| 264 | + } |
|
| 265 | + |
|
| 266 | + // Ensure this is our post type. |
|
| 267 | + $post_types_map = array( |
|
| 268 | + 'wpi_item' => 'GetPaid_Meta_Box_Item_Details', |
|
| 269 | + 'wpi_payment_form' => 'GetPaid_Meta_Box_Payment_Form', |
|
| 270 | + 'wpi_discount' => 'GetPaid_Meta_Box_Discount_Details', |
|
| 271 | + ); |
|
| 272 | + |
|
| 273 | + // Is this our post type? |
|
| 274 | + if ( ! isset( $post_types_map[ $post->post_type ] ) ) { |
|
| 275 | + return; |
|
| 276 | + } |
|
| 277 | + |
|
| 278 | + // We need this save event to run once to avoid potential endless loops. |
|
| 279 | + self::$saved_meta_boxes = true; |
|
| 280 | 280 | |
| 281 | - // Save the post. |
|
| 282 | - $class = $post_types_map[ $post->post_type ]; |
|
| 283 | - $class::save( $post_id, wp_kses_post_deep( $_POST ), $post ); |
|
| 281 | + // Save the post. |
|
| 282 | + $class = $post_types_map[ $post->post_type ]; |
|
| 283 | + $class::save( $post_id, wp_kses_post_deep( $_POST ), $post ); |
|
| 284 | 284 | |
| 285 | - } |
|
| 285 | + } |
|
| 286 | 286 | |
| 287 | 287 | } |