@@ -14,92 +14,92 @@ discard block |
||
| 14 | 14 | class GetPaid_Admin { |
| 15 | 15 | |
| 16 | 16 | /** |
| 17 | - * Local path to this plugins admin directory |
|
| 18 | - * |
|
| 19 | - * @var string |
|
| 20 | - */ |
|
| 21 | - public $admin_path; |
|
| 22 | - |
|
| 23 | - /** |
|
| 24 | - * Web path to this plugins admin directory |
|
| 25 | - * |
|
| 26 | - * @var string |
|
| 27 | - */ |
|
| 28 | - public $admin_url; |
|
| 29 | - |
|
| 30 | - /** |
|
| 31 | - * Reports components. |
|
| 32 | - * |
|
| 33 | - * @var GetPaid_Reports |
|
| 34 | - */ |
|
| 17 | + * Local path to this plugins admin directory |
|
| 18 | + * |
|
| 19 | + * @var string |
|
| 20 | + */ |
|
| 21 | + public $admin_path; |
|
| 22 | + |
|
| 23 | + /** |
|
| 24 | + * Web path to this plugins admin directory |
|
| 25 | + * |
|
| 26 | + * @var string |
|
| 27 | + */ |
|
| 28 | + public $admin_url; |
|
| 29 | + |
|
| 30 | + /** |
|
| 31 | + * Reports components. |
|
| 32 | + * |
|
| 33 | + * @var GetPaid_Reports |
|
| 34 | + */ |
|
| 35 | 35 | public $reports; |
| 36 | 36 | |
| 37 | 37 | /** |
| 38 | - * Class constructor. |
|
| 39 | - */ |
|
| 40 | - public function __construct() { |
|
| 38 | + * Class constructor. |
|
| 39 | + */ |
|
| 40 | + public function __construct() { |
|
| 41 | 41 | |
| 42 | 42 | $this->admin_path = plugin_dir_path( __FILE__ ); |
| 43 | - $this->admin_url = plugins_url( '/', __FILE__ ); |
|
| 44 | - $this->reports = new GetPaid_Reports(); |
|
| 43 | + $this->admin_url = plugins_url( '/', __FILE__ ); |
|
| 44 | + $this->reports = new GetPaid_Reports(); |
|
| 45 | 45 | |
| 46 | 46 | if ( is_admin() ) { |
| 47 | - $this->init_admin_hooks(); |
|
| 47 | + $this->init_admin_hooks(); |
|
| 48 | 48 | } |
| 49 | 49 | |
| 50 | 50 | } |
| 51 | 51 | |
| 52 | 52 | /** |
| 53 | - * Init action and filter hooks |
|
| 54 | - * |
|
| 55 | - */ |
|
| 56 | - private function init_admin_hooks() { |
|
| 53 | + * Init action and filter hooks |
|
| 54 | + * |
|
| 55 | + */ |
|
| 56 | + private function init_admin_hooks() { |
|
| 57 | 57 | add_action( 'admin_enqueue_scripts', array( $this, 'enqeue_scripts' ), 9 ); |
| 58 | 58 | add_filter( 'admin_body_class', array( $this, 'admin_body_class' ) ); |
| 59 | 59 | add_action( 'admin_init', array( $this, 'init_ayecode_connect_helper' ) ); |
| 60 | 60 | add_action( 'admin_init', array( $this, 'activation_redirect' ) ); |
| 61 | 61 | add_action( 'admin_init', array( $this, 'maybe_do_admin_action' ) ); |
| 62 | - add_action( 'admin_notices', array( $this, 'show_notices' ) ); |
|
| 63 | - add_action( 'getpaid_authenticated_admin_action_rate_plugin', array( $this, 'redirect_to_wordpress_rating_page' ) ); |
|
| 64 | - add_action( 'getpaid_authenticated_admin_action_duplicate_form', array( $this, 'duplicate_payment_form' ) ); |
|
| 65 | - add_action( 'getpaid_authenticated_admin_action_duplicate_invoice', array( $this, 'duplicate_invoice' ) ); |
|
| 66 | - add_action( 'getpaid_authenticated_admin_action_send_invoice', array( $this, 'send_customer_invoice' ) ); |
|
| 67 | - add_action( 'getpaid_authenticated_admin_action_send_invoice_reminder', array( $this, 'send_customer_payment_reminder' ) ); |
|
| 62 | + add_action( 'admin_notices', array( $this, 'show_notices' ) ); |
|
| 63 | + add_action( 'getpaid_authenticated_admin_action_rate_plugin', array( $this, 'redirect_to_wordpress_rating_page' ) ); |
|
| 64 | + add_action( 'getpaid_authenticated_admin_action_duplicate_form', array( $this, 'duplicate_payment_form' ) ); |
|
| 65 | + add_action( 'getpaid_authenticated_admin_action_duplicate_invoice', array( $this, 'duplicate_invoice' ) ); |
|
| 66 | + add_action( 'getpaid_authenticated_admin_action_send_invoice', array( $this, 'send_customer_invoice' ) ); |
|
| 67 | + add_action( 'getpaid_authenticated_admin_action_send_invoice_reminder', array( $this, 'send_customer_payment_reminder' ) ); |
|
| 68 | 68 | add_action( 'getpaid_authenticated_admin_action_reset_tax_rates', array( $this, 'admin_reset_tax_rates' ) ); |
| 69 | - add_action( 'getpaid_authenticated_admin_action_create_missing_pages', array( $this, 'admin_create_missing_pages' ) ); |
|
| 70 | - add_action( 'getpaid_authenticated_admin_action_refresh_permalinks', array( $this, 'admin_refresh_permalinks' ) ); |
|
| 71 | - add_action( 'getpaid_authenticated_admin_action_create_missing_tables', array( $this, 'admin_create_missing_tables' ) ); |
|
| 72 | - add_action( 'getpaid_authenticated_admin_action_migrate_old_invoices', array( $this, 'admin_migrate_old_invoices' ) ); |
|
| 73 | - add_action( 'getpaid_authenticated_admin_action_download_customers', array( $this, 'admin_download_customers' ) ); |
|
| 74 | - add_action( 'getpaid_authenticated_admin_action_recalculate_discounts', array( $this, 'admin_recalculate_discounts' ) ); |
|
| 75 | - add_action( 'getpaid_authenticated_admin_action_install_plugin', array( $this, 'admin_install_plugin' ) ); |
|
| 76 | - add_action( 'getpaid_authenticated_admin_action_connect_gateway', array( $this, 'admin_connect_gateway' ) ); |
|
| 77 | - add_filter( 'admin_footer_text', array( $this, 'admin_footer_text' ) ); |
|
| 78 | - do_action( 'getpaid_init_admin_hooks', $this ); |
|
| 79 | - |
|
| 80 | - // Setup/welcome |
|
| 81 | - if ( ! empty( $_GET['page'] ) ) { |
|
| 82 | - switch ( sanitize_text_field( $_GET['page'] ) ) { |
|
| 83 | - case 'gp-setup': |
|
| 84 | - include_once dirname( __FILE__ ) . '/class-getpaid-admin-setup-wizard.php'; |
|
| 85 | - break; |
|
| 86 | - } |
|
| 87 | - } |
|
| 88 | - |
|
| 89 | - } |
|
| 90 | - |
|
| 91 | - /** |
|
| 92 | - * Register admin scripts |
|
| 93 | - * |
|
| 94 | - */ |
|
| 95 | - public function enqeue_scripts() { |
|
| 69 | + add_action( 'getpaid_authenticated_admin_action_create_missing_pages', array( $this, 'admin_create_missing_pages' ) ); |
|
| 70 | + add_action( 'getpaid_authenticated_admin_action_refresh_permalinks', array( $this, 'admin_refresh_permalinks' ) ); |
|
| 71 | + add_action( 'getpaid_authenticated_admin_action_create_missing_tables', array( $this, 'admin_create_missing_tables' ) ); |
|
| 72 | + add_action( 'getpaid_authenticated_admin_action_migrate_old_invoices', array( $this, 'admin_migrate_old_invoices' ) ); |
|
| 73 | + add_action( 'getpaid_authenticated_admin_action_download_customers', array( $this, 'admin_download_customers' ) ); |
|
| 74 | + add_action( 'getpaid_authenticated_admin_action_recalculate_discounts', array( $this, 'admin_recalculate_discounts' ) ); |
|
| 75 | + add_action( 'getpaid_authenticated_admin_action_install_plugin', array( $this, 'admin_install_plugin' ) ); |
|
| 76 | + add_action( 'getpaid_authenticated_admin_action_connect_gateway', array( $this, 'admin_connect_gateway' ) ); |
|
| 77 | + add_filter( 'admin_footer_text', array( $this, 'admin_footer_text' ) ); |
|
| 78 | + do_action( 'getpaid_init_admin_hooks', $this ); |
|
| 79 | + |
|
| 80 | + // Setup/welcome |
|
| 81 | + if ( ! empty( $_GET['page'] ) ) { |
|
| 82 | + switch ( sanitize_text_field( $_GET['page'] ) ) { |
|
| 83 | + case 'gp-setup': |
|
| 84 | + include_once dirname( __FILE__ ) . '/class-getpaid-admin-setup-wizard.php'; |
|
| 85 | + break; |
|
| 86 | + } |
|
| 87 | + } |
|
| 88 | + |
|
| 89 | + } |
|
| 90 | + |
|
| 91 | + /** |
|
| 92 | + * Register admin scripts |
|
| 93 | + * |
|
| 94 | + */ |
|
| 95 | + public function enqeue_scripts() { |
|
| 96 | 96 | global $current_screen, $pagenow; |
| 97 | 97 | |
| 98 | - $page = isset( $_GET['page'] ) ? sanitize_text_field( $_GET['page'] ) : ''; |
|
| 99 | - $editing = $pagenow == 'post.php' || $pagenow == 'post-new.php'; |
|
| 98 | + $page = isset( $_GET['page'] ) ? sanitize_text_field( $_GET['page'] ) : ''; |
|
| 99 | + $editing = $pagenow == 'post.php' || $pagenow == 'post-new.php'; |
|
| 100 | 100 | |
| 101 | 101 | if ( ! empty( $current_screen->post_type ) ) { |
| 102 | - $page = $current_screen->post_type; |
|
| 102 | + $page = $current_screen->post_type; |
|
| 103 | 103 | } |
| 104 | 104 | |
| 105 | 105 | // General styles. |
@@ -120,53 +120,53 @@ discard block |
||
| 120 | 120 | } |
| 121 | 121 | |
| 122 | 122 | // Payment form scripts. |
| 123 | - if ( 'wpi_payment_form' == $page && $editing ) { |
|
| 123 | + if ( 'wpi_payment_form' == $page && $editing ) { |
|
| 124 | 124 | $this->load_payment_form_scripts(); |
| 125 | 125 | } |
| 126 | 126 | |
| 127 | - if ( $page == 'wpinv-subscriptions' ) { |
|
| 128 | - wp_enqueue_script( 'postbox' ); |
|
| 129 | - } |
|
| 127 | + if ( $page == 'wpinv-subscriptions' ) { |
|
| 128 | + wp_enqueue_script( 'postbox' ); |
|
| 129 | + } |
|
| 130 | 130 | |
| 131 | 131 | } |
| 132 | 132 | |
| 133 | 133 | /** |
| 134 | - * Returns admin js translations. |
|
| 135 | - * |
|
| 136 | - */ |
|
| 137 | - protected function get_admin_i18() { |
|
| 134 | + * Returns admin js translations. |
|
| 135 | + * |
|
| 136 | + */ |
|
| 137 | + protected function get_admin_i18() { |
|
| 138 | 138 | global $post; |
| 139 | 139 | |
| 140 | - $date_range = array( |
|
| 141 | - 'period' => isset( $_GET['date_range'] ) ? sanitize_text_field( $_GET['date_range'] ) : '7_days', |
|
| 142 | - ); |
|
| 140 | + $date_range = array( |
|
| 141 | + 'period' => isset( $_GET['date_range'] ) ? sanitize_text_field( $_GET['date_range'] ) : '7_days', |
|
| 142 | + ); |
|
| 143 | 143 | |
| 144 | - if ( $date_range['period'] == 'custom' ) { |
|
| 144 | + if ( $date_range['period'] == 'custom' ) { |
|
| 145 | 145 | |
| 146 | - if ( isset( $_GET['from'] ) ) { |
|
| 147 | - $date_range['after'] = date( 'Y-m-d', strtotime( sanitize_text_field( $_GET['from'] ), current_time( 'timestamp' ) ) - DAY_IN_SECONDS ); |
|
| 148 | - } |
|
| 146 | + if ( isset( $_GET['from'] ) ) { |
|
| 147 | + $date_range['after'] = date( 'Y-m-d', strtotime( sanitize_text_field( $_GET['from'] ), current_time( 'timestamp' ) ) - DAY_IN_SECONDS ); |
|
| 148 | + } |
|
| 149 | 149 | |
| 150 | - if ( isset( $_GET['to'] ) ) { |
|
| 151 | - $date_range['before'] = date( 'Y-m-d', strtotime( sanitize_text_field( $_GET['to'] ), current_time( 'timestamp' ) ) + DAY_IN_SECONDS ); |
|
| 152 | - } |
|
| 150 | + if ( isset( $_GET['to'] ) ) { |
|
| 151 | + $date_range['before'] = date( 'Y-m-d', strtotime( sanitize_text_field( $_GET['to'] ), current_time( 'timestamp' ) ) + DAY_IN_SECONDS ); |
|
| 152 | + } |
|
| 153 | 153 | } |
| 154 | 154 | |
| 155 | 155 | $i18n = array( |
| 156 | 156 | 'ajax_url' => admin_url( 'admin-ajax.php' ), |
| 157 | 157 | 'post_ID' => isset( $post->ID ) ? $post->ID : '', |
| 158 | - 'wpinv_nonce' => wp_create_nonce( 'wpinv-nonce' ), |
|
| 159 | - 'rest_nonce' => wp_create_nonce( 'wp_rest' ), |
|
| 160 | - 'rest_root' => esc_url_raw( rest_url() ), |
|
| 161 | - 'date_range' => $date_range, |
|
| 158 | + 'wpinv_nonce' => wp_create_nonce( 'wpinv-nonce' ), |
|
| 159 | + 'rest_nonce' => wp_create_nonce( 'wp_rest' ), |
|
| 160 | + 'rest_root' => esc_url_raw( rest_url() ), |
|
| 161 | + 'date_range' => $date_range, |
|
| 162 | 162 | 'add_invoice_note_nonce' => wp_create_nonce( 'add-invoice-note' ), |
| 163 | 163 | 'delete_invoice_note_nonce' => wp_create_nonce( 'delete-invoice-note' ), |
| 164 | 164 | 'invoice_item_nonce' => wp_create_nonce( 'invoice-item' ), |
| 165 | 165 | 'billing_details_nonce' => wp_create_nonce( 'get-billing-details' ), |
| 166 | 166 | 'tax' => wpinv_tax_amount(), |
| 167 | 167 | 'discount' => 0, |
| 168 | - 'currency_symbol' => wpinv_currency_symbol(), |
|
| 169 | - 'currency' => wpinv_get_currency(), |
|
| 168 | + 'currency_symbol' => wpinv_currency_symbol(), |
|
| 169 | + 'currency' => wpinv_get_currency(), |
|
| 170 | 170 | 'currency_pos' => wpinv_currency_position(), |
| 171 | 171 | 'thousand_sep' => wpinv_thousands_separator(), |
| 172 | 172 | 'decimal_sep' => wpinv_decimal_separator(), |
@@ -186,118 +186,118 @@ discard block |
||
| 186 | 186 | 'item_description' => __( 'Item Description', 'invoicing' ), |
| 187 | 187 | 'invoice_description' => __( 'Invoice Description', 'invoicing' ), |
| 188 | 188 | 'discount_description' => __( 'Discount Description', 'invoicing' ), |
| 189 | - 'searching' => __( 'Searching', 'invoicing' ), |
|
| 190 | - 'loading' => __( 'Loading...', 'invoicing' ), |
|
| 191 | - 'search_customers' => __( 'Enter customer name or email', 'invoicing' ), |
|
| 192 | - 'search_items' => __( 'Enter item name', 'invoicing' ), |
|
| 193 | - 'graphs' => array_merge( array( 'refunded_fees', 'refunded_items', 'refunded_subtotal', 'refunded_tax' ), array_keys( wpinv_get_report_graphs() ) ), |
|
| 189 | + 'searching' => __( 'Searching', 'invoicing' ), |
|
| 190 | + 'loading' => __( 'Loading...', 'invoicing' ), |
|
| 191 | + 'search_customers' => __( 'Enter customer name or email', 'invoicing' ), |
|
| 192 | + 'search_items' => __( 'Enter item name', 'invoicing' ), |
|
| 193 | + 'graphs' => array_merge( array( 'refunded_fees', 'refunded_items', 'refunded_subtotal', 'refunded_tax' ), array_keys( wpinv_get_report_graphs() ) ), |
|
| 194 | 194 | ); |
| 195 | 195 | |
| 196 | - if ( ! empty( $post ) && getpaid_is_invoice_post_type( $post->post_type ) ) { |
|
| 196 | + if ( ! empty( $post ) && getpaid_is_invoice_post_type( $post->post_type ) ) { |
|
| 197 | 197 | |
| 198 | - $invoice = new WPInv_Invoice( $post ); |
|
| 199 | - $i18n['save_invoice'] = sprintf( |
|
| 200 | - __( 'Save %s', 'invoicing' ), |
|
| 201 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 202 | - ); |
|
| 198 | + $invoice = new WPInv_Invoice( $post ); |
|
| 199 | + $i18n['save_invoice'] = sprintf( |
|
| 200 | + __( 'Save %s', 'invoicing' ), |
|
| 201 | + ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 202 | + ); |
|
| 203 | 203 | |
| 204 | - $i18n['invoice_description'] = sprintf( |
|
| 205 | - __( '%s Description', 'invoicing' ), |
|
| 206 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 207 | - ); |
|
| 204 | + $i18n['invoice_description'] = sprintf( |
|
| 205 | + __( '%s Description', 'invoicing' ), |
|
| 206 | + ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 207 | + ); |
|
| 208 | 208 | |
| 209 | - } |
|
| 210 | - return $i18n; |
|
| 211 | - } |
|
| 209 | + } |
|
| 210 | + return $i18n; |
|
| 211 | + } |
|
| 212 | 212 | |
| 213 | - /** |
|
| 214 | - * Change the admin footer text on GetPaid admin pages. |
|
| 215 | - * |
|
| 216 | - * @since 2.0.0 |
|
| 217 | - * @param string $footer_text |
|
| 218 | - * @return string |
|
| 219 | - */ |
|
| 220 | - public function admin_footer_text( $footer_text ) { |
|
| 221 | - global $current_screen; |
|
| 213 | + /** |
|
| 214 | + * Change the admin footer text on GetPaid admin pages. |
|
| 215 | + * |
|
| 216 | + * @since 2.0.0 |
|
| 217 | + * @param string $footer_text |
|
| 218 | + * @return string |
|
| 219 | + */ |
|
| 220 | + public function admin_footer_text( $footer_text ) { |
|
| 221 | + global $current_screen; |
|
| 222 | 222 | |
| 223 | - $page = isset( $_GET['page'] ) ? sanitize_text_field( $_GET['page'] ) : ''; |
|
| 223 | + $page = isset( $_GET['page'] ) ? sanitize_text_field( $_GET['page'] ) : ''; |
|
| 224 | 224 | |
| 225 | 225 | if ( ! empty( $current_screen->post_type ) ) { |
| 226 | - $page = $current_screen->post_type; |
|
| 226 | + $page = $current_screen->post_type; |
|
| 227 | 227 | } |
| 228 | 228 | |
| 229 | 229 | // General styles. |
| 230 | 230 | if ( apply_filters( 'getpaid_display_admin_footer_text', wpinv_current_user_can_manage_invoicing() ) && false !== stripos( $page, 'wpi' ) ) { |
| 231 | 231 | |
| 232 | - // Change the footer text |
|
| 233 | - if ( ! get_user_meta( get_current_user_id(), 'getpaid_admin_footer_text_rated', true ) ) { |
|
| 232 | + // Change the footer text |
|
| 233 | + if ( ! get_user_meta( get_current_user_id(), 'getpaid_admin_footer_text_rated', true ) ) { |
|
| 234 | 234 | |
| 235 | - $rating_url = esc_url( |
|
| 236 | - wp_nonce_url( |
|
| 237 | - admin_url( 'admin.php?page=wpinv-reports&getpaid-admin-action=rate_plugin' ), |
|
| 238 | - 'getpaid-nonce', |
|
| 239 | - 'getpaid-nonce' |
|
| 235 | + $rating_url = esc_url( |
|
| 236 | + wp_nonce_url( |
|
| 237 | + admin_url( 'admin.php?page=wpinv-reports&getpaid-admin-action=rate_plugin' ), |
|
| 238 | + 'getpaid-nonce', |
|
| 239 | + 'getpaid-nonce' |
|
| 240 | 240 | ) |
| 241 | - ); |
|
| 241 | + ); |
|
| 242 | 242 | |
| 243 | - $footer_text = sprintf( |
|
| 244 | - /* translators: %s: five stars */ |
|
| 245 | - __( 'If you like <strong>GetPaid</strong>, please leave us a %s rating. A huge thanks in advance!', 'invoicing' ), |
|
| 246 | - "<a href='$rating_url'>★★★★★</a>" |
|
| 247 | - ); |
|
| 243 | + $footer_text = sprintf( |
|
| 244 | + /* translators: %s: five stars */ |
|
| 245 | + __( 'If you like <strong>GetPaid</strong>, please leave us a %s rating. A huge thanks in advance!', 'invoicing' ), |
|
| 246 | + "<a href='$rating_url'>★★★★★</a>" |
|
| 247 | + ); |
|
| 248 | 248 | |
| 249 | - } else { |
|
| 249 | + } else { |
|
| 250 | 250 | |
| 251 | - $footer_text = sprintf( |
|
| 252 | - /* translators: %s: GetPaid */ |
|
| 253 | - __( 'Thank you for using %s!', 'invoicing' ), |
|
| 254 | - "<a href='https://wpgetpaid.com/' target='_blank'><strong>GetPaid</strong></a>" |
|
| 255 | - ); |
|
| 251 | + $footer_text = sprintf( |
|
| 252 | + /* translators: %s: GetPaid */ |
|
| 253 | + __( 'Thank you for using %s!', 'invoicing' ), |
|
| 254 | + "<a href='https://wpgetpaid.com/' target='_blank'><strong>GetPaid</strong></a>" |
|
| 255 | + ); |
|
| 256 | 256 | |
| 257 | - } |
|
| 257 | + } |
|
| 258 | 258 | } |
| 259 | 259 | |
| 260 | - return $footer_text; |
|
| 261 | - } |
|
| 262 | - |
|
| 263 | - /** |
|
| 264 | - * Redirects to wp.org to rate the plugin. |
|
| 265 | - * |
|
| 266 | - * @since 2.0.0 |
|
| 267 | - */ |
|
| 268 | - public function redirect_to_wordpress_rating_page() { |
|
| 269 | - update_user_meta( get_current_user_id(), 'getpaid_admin_footer_text_rated', 1 ); |
|
| 270 | - wp_redirect( 'https://wordpress.org/support/plugin/invoicing/reviews?rate=5#new-post' ); |
|
| 271 | - exit; |
|
| 272 | - } |
|
| 273 | - |
|
| 274 | - /** |
|
| 275 | - * Loads payment form js. |
|
| 276 | - * |
|
| 277 | - */ |
|
| 278 | - protected function load_payment_form_scripts() { |
|
| 260 | + return $footer_text; |
|
| 261 | + } |
|
| 262 | + |
|
| 263 | + /** |
|
| 264 | + * Redirects to wp.org to rate the plugin. |
|
| 265 | + * |
|
| 266 | + * @since 2.0.0 |
|
| 267 | + */ |
|
| 268 | + public function redirect_to_wordpress_rating_page() { |
|
| 269 | + update_user_meta( get_current_user_id(), 'getpaid_admin_footer_text_rated', 1 ); |
|
| 270 | + wp_redirect( 'https://wordpress.org/support/plugin/invoicing/reviews?rate=5#new-post' ); |
|
| 271 | + exit; |
|
| 272 | + } |
|
| 273 | + |
|
| 274 | + /** |
|
| 275 | + * Loads payment form js. |
|
| 276 | + * |
|
| 277 | + */ |
|
| 278 | + protected function load_payment_form_scripts() { |
|
| 279 | 279 | global $post; |
| 280 | 280 | |
| 281 | 281 | wp_enqueue_script( 'vue', WPINV_PLUGIN_URL . 'assets/js/vue/vue.min.js', array(), WPINV_VERSION ); |
| 282 | - wp_enqueue_script( 'sortable', WPINV_PLUGIN_URL . 'assets/js/sortable.min.js', array(), WPINV_VERSION ); |
|
| 283 | - wp_enqueue_script( 'vue_draggable', WPINV_PLUGIN_URL . 'assets/js/vue/vuedraggable.min.js', array( 'sortable', 'vue' ), WPINV_VERSION ); |
|
| 282 | + wp_enqueue_script( 'sortable', WPINV_PLUGIN_URL . 'assets/js/sortable.min.js', array(), WPINV_VERSION ); |
|
| 283 | + wp_enqueue_script( 'vue_draggable', WPINV_PLUGIN_URL . 'assets/js/vue/vuedraggable.min.js', array( 'sortable', 'vue' ), WPINV_VERSION ); |
|
| 284 | 284 | |
| 285 | - $version = filemtime( WPINV_PLUGIN_DIR . 'assets/js/admin-payment-forms.js' ); |
|
| 286 | - wp_register_script( 'wpinv-admin-payment-form-script', WPINV_PLUGIN_URL . 'assets/js/admin-payment-forms.js', array( 'wpinv-admin-script', 'vue_draggable', 'wp-hooks' ), $version ); |
|
| 285 | + $version = filemtime( WPINV_PLUGIN_DIR . 'assets/js/admin-payment-forms.js' ); |
|
| 286 | + wp_register_script( 'wpinv-admin-payment-form-script', WPINV_PLUGIN_URL . 'assets/js/admin-payment-forms.js', array( 'wpinv-admin-script', 'vue_draggable', 'wp-hooks' ), $version ); |
|
| 287 | 287 | |
| 288 | - wp_localize_script( |
|
| 288 | + wp_localize_script( |
|
| 289 | 289 | 'wpinv-admin-payment-form-script', |
| 290 | 290 | 'wpinvPaymentFormAdmin', |
| 291 | 291 | array( |
| 292 | - 'elements' => wpinv_get_data( 'payment-form-elements' ), |
|
| 293 | - 'form_elements' => getpaid_get_payment_form_elements( $post->ID ), |
|
| 294 | - 'currency' => wpinv_currency_symbol(), |
|
| 295 | - 'position' => wpinv_currency_position(), |
|
| 296 | - 'decimals' => (int) wpinv_decimals(), |
|
| 297 | - 'thousands_sep' => wpinv_thousands_separator(), |
|
| 298 | - 'decimals_sep' => wpinv_decimal_separator(), |
|
| 299 | - 'form_items' => gepaid_get_form_items( $post->ID ), |
|
| 300 | - 'is_default' => $post->ID == wpinv_get_default_payment_form(), |
|
| 292 | + 'elements' => wpinv_get_data( 'payment-form-elements' ), |
|
| 293 | + 'form_elements' => getpaid_get_payment_form_elements( $post->ID ), |
|
| 294 | + 'currency' => wpinv_currency_symbol(), |
|
| 295 | + 'position' => wpinv_currency_position(), |
|
| 296 | + 'decimals' => (int) wpinv_decimals(), |
|
| 297 | + 'thousands_sep' => wpinv_thousands_separator(), |
|
| 298 | + 'decimals_sep' => wpinv_decimal_separator(), |
|
| 299 | + 'form_items' => gepaid_get_form_items( $post->ID ), |
|
| 300 | + 'is_default' => $post->ID == wpinv_get_default_payment_form(), |
|
| 301 | 301 | ) |
| 302 | 302 | ); |
| 303 | 303 | |
@@ -306,19 +306,19 @@ discard block |
||
| 306 | 306 | } |
| 307 | 307 | |
| 308 | 308 | /** |
| 309 | - * Add our classes to admin pages. |
|
| 309 | + * Add our classes to admin pages. |
|
| 310 | 310 | * |
| 311 | 311 | * @param string $classes |
| 312 | 312 | * @return string |
| 313 | - * |
|
| 314 | - */ |
|
| 313 | + * |
|
| 314 | + */ |
|
| 315 | 315 | public function admin_body_class( $classes ) { |
| 316 | - global $pagenow, $post, $current_screen; |
|
| 316 | + global $pagenow, $post, $current_screen; |
|
| 317 | 317 | |
| 318 | 318 | $page = isset( $_GET['page'] ) ? sanitize_text_field( $_GET['page'] ) : ''; |
| 319 | 319 | |
| 320 | 320 | if ( ! empty( $current_screen->post_type ) ) { |
| 321 | - $page = $current_screen->post_type; |
|
| 321 | + $page = $current_screen->post_type; |
|
| 322 | 322 | } |
| 323 | 323 | |
| 324 | 324 | if ( false !== stripos( $page, 'wpi' ) ) { |
@@ -327,70 +327,70 @@ discard block |
||
| 327 | 327 | |
| 328 | 328 | if ( in_array( $page, wpinv_parse_list( 'wpi_invoice wpi_payment_form wpi_quote' ) ) ) { |
| 329 | 329 | $classes .= ' wpinv-cpt wpinv'; |
| 330 | - } |
|
| 330 | + } |
|
| 331 | 331 | |
| 332 | - if ( getpaid_is_invoice_post_type( $page ) ) { |
|
| 332 | + if ( getpaid_is_invoice_post_type( $page ) ) { |
|
| 333 | 333 | $classes .= ' getpaid-is-invoice-cpt'; |
| 334 | 334 | } |
| 335 | 335 | |
| 336 | - return $classes; |
|
| 336 | + return $classes; |
|
| 337 | 337 | } |
| 338 | 338 | |
| 339 | 339 | /** |
| 340 | - * Maybe show the AyeCode Connect Notice. |
|
| 341 | - */ |
|
| 342 | - public function init_ayecode_connect_helper() { |
|
| 340 | + * Maybe show the AyeCode Connect Notice. |
|
| 341 | + */ |
|
| 342 | + public function init_ayecode_connect_helper() { |
|
| 343 | 343 | |
| 344 | - // Register with the deactivation survey class. |
|
| 345 | - AyeCode_Deactivation_Survey::instance( |
|
| 344 | + // Register with the deactivation survey class. |
|
| 345 | + AyeCode_Deactivation_Survey::instance( |
|
| 346 | 346 | array( |
| 347 | - 'slug' => 'invoicing', |
|
| 348 | - 'version' => WPINV_VERSION, |
|
| 349 | - 'support_url' => 'https://wpgetpaid.com/support/', |
|
| 350 | - 'documentation_url' => 'https://docs.wpgetpaid.com/', |
|
| 351 | - 'activated' => (int) get_option( 'gepaid_installed_on' ), |
|
| 347 | + 'slug' => 'invoicing', |
|
| 348 | + 'version' => WPINV_VERSION, |
|
| 349 | + 'support_url' => 'https://wpgetpaid.com/support/', |
|
| 350 | + 'documentation_url' => 'https://docs.wpgetpaid.com/', |
|
| 351 | + 'activated' => (int) get_option( 'gepaid_installed_on' ), |
|
| 352 | 352 | ) |
| 353 | 353 | ); |
| 354 | 354 | |
| 355 | 355 | new AyeCode_Connect_Helper( |
| 356 | 356 | array( |
| 357 | - 'connect_title' => __( 'WP Invoicing - an AyeCode product!', 'invoicing' ), |
|
| 358 | - 'connect_external' => __( 'Please confirm you wish to connect your site?', 'invoicing' ), |
|
| 359 | - 'connect' => sprintf( __( '<strong>Have a license?</strong> Forget about entering license keys or downloading zip files, connect your site for instant access. %1$slearn more%2$s', 'invoicing' ), "<a href='https://ayecode.io/introducing-ayecode-connect/' target='_blank'>", '</a>' ), |
|
| 360 | - 'connect_button' => __( 'Connect Site', 'invoicing' ), |
|
| 361 | - 'connecting_button' => __( 'Connecting...', 'invoicing' ), |
|
| 362 | - 'error_localhost' => __( 'This service will only work with a live domain, not a localhost.', 'invoicing' ), |
|
| 363 | - 'error' => __( 'Something went wrong, please refresh and try again.', 'invoicing' ), |
|
| 357 | + 'connect_title' => __( 'WP Invoicing - an AyeCode product!', 'invoicing' ), |
|
| 358 | + 'connect_external' => __( 'Please confirm you wish to connect your site?', 'invoicing' ), |
|
| 359 | + 'connect' => sprintf( __( '<strong>Have a license?</strong> Forget about entering license keys or downloading zip files, connect your site for instant access. %1$slearn more%2$s', 'invoicing' ), "<a href='https://ayecode.io/introducing-ayecode-connect/' target='_blank'>", '</a>' ), |
|
| 360 | + 'connect_button' => __( 'Connect Site', 'invoicing' ), |
|
| 361 | + 'connecting_button' => __( 'Connecting...', 'invoicing' ), |
|
| 362 | + 'error_localhost' => __( 'This service will only work with a live domain, not a localhost.', 'invoicing' ), |
|
| 363 | + 'error' => __( 'Something went wrong, please refresh and try again.', 'invoicing' ), |
|
| 364 | 364 | ), |
| 365 | 365 | array( 'wpi-addons' ) |
| 366 | 366 | ); |
| 367 | 367 | |
| 368 | 368 | } |
| 369 | 369 | |
| 370 | - /** |
|
| 371 | - * Redirect users to settings on activation. |
|
| 372 | - * |
|
| 373 | - * @return void |
|
| 374 | - */ |
|
| 375 | - public function activation_redirect() { |
|
| 370 | + /** |
|
| 371 | + * Redirect users to settings on activation. |
|
| 372 | + * |
|
| 373 | + * @return void |
|
| 374 | + */ |
|
| 375 | + public function activation_redirect() { |
|
| 376 | 376 | |
| 377 | - $redirected = get_option( 'wpinv_redirected_to_settings' ); |
|
| 377 | + $redirected = get_option( 'wpinv_redirected_to_settings' ); |
|
| 378 | 378 | |
| 379 | - if ( ! empty( $redirected ) || wp_doing_ajax() || ! current_user_can( 'manage_options' ) ) { |
|
| 380 | - return; |
|
| 381 | - } |
|
| 379 | + if ( ! empty( $redirected ) || wp_doing_ajax() || ! current_user_can( 'manage_options' ) ) { |
|
| 380 | + return; |
|
| 381 | + } |
|
| 382 | 382 | |
| 383 | - // Bail if activating from network, or bulk |
|
| 384 | - if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) { |
|
| 385 | - return; |
|
| 386 | - } |
|
| 383 | + // Bail if activating from network, or bulk |
|
| 384 | + if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) { |
|
| 385 | + return; |
|
| 386 | + } |
|
| 387 | 387 | |
| 388 | - update_option( 'wpinv_redirected_to_settings', 1 ); |
|
| 388 | + update_option( 'wpinv_redirected_to_settings', 1 ); |
|
| 389 | 389 | |
| 390 | 390 | wp_safe_redirect( admin_url( 'index.php?page=gp-setup' ) ); |
| 391 | 391 | exit; |
| 392 | 392 | |
| 393 | - } |
|
| 393 | + } |
|
| 394 | 394 | |
| 395 | 395 | /** |
| 396 | 396 | * Fires an admin action after verifying that a user can fire them. |
@@ -404,535 +404,535 @@ discard block |
||
| 404 | 404 | |
| 405 | 405 | } |
| 406 | 406 | |
| 407 | - /** |
|
| 407 | + /** |
|
| 408 | 408 | * Duplicate invoice. |
| 409 | - * |
|
| 410 | - * @param array $args |
|
| 409 | + * |
|
| 410 | + * @param array $args |
|
| 411 | 411 | */ |
| 412 | 412 | public function duplicate_invoice( $args ) { |
| 413 | 413 | |
| 414 | - if ( empty( $args['invoice_id'] ) ) { |
|
| 415 | - return; |
|
| 416 | - } |
|
| 414 | + if ( empty( $args['invoice_id'] ) ) { |
|
| 415 | + return; |
|
| 416 | + } |
|
| 417 | 417 | |
| 418 | - $invoice = new WPInv_Invoice( (int) $args['invoice_id'] ); |
|
| 418 | + $invoice = new WPInv_Invoice( (int) $args['invoice_id'] ); |
|
| 419 | 419 | |
| 420 | - if ( ! $invoice->exists() ) { |
|
| 421 | - return; |
|
| 422 | - } |
|
| 420 | + if ( ! $invoice->exists() ) { |
|
| 421 | + return; |
|
| 422 | + } |
|
| 423 | 423 | |
| 424 | - $new_invoice = getpaid_duplicate_invoice( $invoice ); |
|
| 425 | - $new_invoice->save(); |
|
| 424 | + $new_invoice = getpaid_duplicate_invoice( $invoice ); |
|
| 425 | + $new_invoice->save(); |
|
| 426 | 426 | |
| 427 | - if ( $new_invoice->exists() ) { |
|
| 427 | + if ( $new_invoice->exists() ) { |
|
| 428 | 428 | |
| 429 | - getpaid_admin()->show_success( __( 'Invoice duplicated successfully.', 'invoicing' ) ); |
|
| 429 | + getpaid_admin()->show_success( __( 'Invoice duplicated successfully.', 'invoicing' ) ); |
|
| 430 | 430 | |
| 431 | - wp_safe_redirect( |
|
| 432 | - add_query_arg( |
|
| 433 | - array( |
|
| 434 | - 'action' => 'edit', |
|
| 435 | - 'post' => $new_invoice->get_id(), |
|
| 436 | - ), |
|
| 437 | - admin_url( 'post.php' ) |
|
| 438 | - ) |
|
| 439 | - ); |
|
| 440 | - exit; |
|
| 431 | + wp_safe_redirect( |
|
| 432 | + add_query_arg( |
|
| 433 | + array( |
|
| 434 | + 'action' => 'edit', |
|
| 435 | + 'post' => $new_invoice->get_id(), |
|
| 436 | + ), |
|
| 437 | + admin_url( 'post.php' ) |
|
| 438 | + ) |
|
| 439 | + ); |
|
| 440 | + exit; |
|
| 441 | 441 | |
| 442 | - } |
|
| 442 | + } |
|
| 443 | 443 | |
| 444 | - getpaid_admin()->show_error( __( 'There was an error duplicating this invoice. Please try again.', 'invoicing' ) ); |
|
| 444 | + getpaid_admin()->show_error( __( 'There was an error duplicating this invoice. Please try again.', 'invoicing' ) ); |
|
| 445 | 445 | |
| 446 | - } |
|
| 446 | + } |
|
| 447 | 447 | |
| 448 | - /** |
|
| 448 | + /** |
|
| 449 | 449 | * Sends a payment reminder to a customer. |
| 450 | - * |
|
| 451 | - * @param array $args |
|
| 450 | + * |
|
| 451 | + * @param array $args |
|
| 452 | 452 | */ |
| 453 | 453 | public function duplicate_payment_form( $args ) { |
| 454 | 454 | |
| 455 | - if ( empty( $args['form_id'] ) ) { |
|
| 456 | - return; |
|
| 457 | - } |
|
| 458 | - |
|
| 459 | - $form = new GetPaid_Payment_Form( (int) $args['form_id'] ); |
|
| 455 | + if ( empty( $args['form_id'] ) ) { |
|
| 456 | + return; |
|
| 457 | + } |
|
| 460 | 458 | |
| 461 | - if ( ! $form->exists() ) { |
|
| 462 | - return; |
|
| 463 | - } |
|
| 459 | + $form = new GetPaid_Payment_Form( (int) $args['form_id'] ); |
|
| 464 | 460 | |
| 465 | - $new_form = new GetPaid_Payment_Form(); |
|
| 466 | - $new_form->set_author( $form->get_author( 'edit' ) ); |
|
| 467 | - $new_form->set_name( $form->get_name( 'edit' ) . __( '(copy)', 'invoicing' ) ); |
|
| 468 | - $new_form->set_elements( $form->get_elements( 'edit' ) ); |
|
| 469 | - $new_form->set_items( $form->get_items( 'edit' ) ); |
|
| 470 | - $new_form->save(); |
|
| 461 | + if ( ! $form->exists() ) { |
|
| 462 | + return; |
|
| 463 | + } |
|
| 471 | 464 | |
| 472 | - if ( $new_form->exists() ) { |
|
| 473 | - $this->show_success( __( 'Form duplicated successfully', 'invoicing' ) ); |
|
| 474 | - $url = get_edit_post_link( $new_form->get_id(), 'edit' ); |
|
| 475 | - } else { |
|
| 476 | - $this->show_error( __( 'Unable to duplicate form', 'invoicing' ) ); |
|
| 477 | - $url = remove_query_arg( array( 'getpaid-admin-action', 'form_id', 'getpaid-nonce' ) ); |
|
| 478 | - } |
|
| 465 | + $new_form = new GetPaid_Payment_Form(); |
|
| 466 | + $new_form->set_author( $form->get_author( 'edit' ) ); |
|
| 467 | + $new_form->set_name( $form->get_name( 'edit' ) . __( '(copy)', 'invoicing' ) ); |
|
| 468 | + $new_form->set_elements( $form->get_elements( 'edit' ) ); |
|
| 469 | + $new_form->set_items( $form->get_items( 'edit' ) ); |
|
| 470 | + $new_form->save(); |
|
| 471 | + |
|
| 472 | + if ( $new_form->exists() ) { |
|
| 473 | + $this->show_success( __( 'Form duplicated successfully', 'invoicing' ) ); |
|
| 474 | + $url = get_edit_post_link( $new_form->get_id(), 'edit' ); |
|
| 475 | + } else { |
|
| 476 | + $this->show_error( __( 'Unable to duplicate form', 'invoicing' ) ); |
|
| 477 | + $url = remove_query_arg( array( 'getpaid-admin-action', 'form_id', 'getpaid-nonce' ) ); |
|
| 478 | + } |
|
| 479 | 479 | |
| 480 | - wp_redirect( $url ); |
|
| 481 | - exit; |
|
| 482 | - } |
|
| 480 | + wp_redirect( $url ); |
|
| 481 | + exit; |
|
| 482 | + } |
|
| 483 | 483 | |
| 484 | - /** |
|
| 484 | + /** |
|
| 485 | 485 | * Sends a payment reminder to a customer. |
| 486 | - * |
|
| 487 | - * @param array $args |
|
| 486 | + * |
|
| 487 | + * @param array $args |
|
| 488 | 488 | */ |
| 489 | 489 | public function send_customer_invoice( $args ) { |
| 490 | - getpaid()->get( 'invoice_emails' )->user_invoice( new WPInv_Invoice( $args['invoice_id'] ), true ); |
|
| 491 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) ); |
|
| 492 | - exit; |
|
| 493 | - } |
|
| 490 | + getpaid()->get( 'invoice_emails' )->user_invoice( new WPInv_Invoice( $args['invoice_id'] ), true ); |
|
| 491 | + wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) ); |
|
| 492 | + exit; |
|
| 493 | + } |
|
| 494 | 494 | |
| 495 | - /** |
|
| 495 | + /** |
|
| 496 | 496 | * Sends a payment reminder to a customer. |
| 497 | - * |
|
| 498 | - * @param array $args |
|
| 497 | + * |
|
| 498 | + * @param array $args |
|
| 499 | 499 | */ |
| 500 | 500 | public function send_customer_payment_reminder( $args ) { |
| 501 | - $sent = getpaid()->get( 'invoice_emails' )->force_send_overdue_notice( new WPInv_Invoice( $args['invoice_id'] ) ); |
|
| 501 | + $sent = getpaid()->get( 'invoice_emails' )->force_send_overdue_notice( new WPInv_Invoice( $args['invoice_id'] ) ); |
|
| 502 | 502 | |
| 503 | - if ( $sent ) { |
|
| 504 | - $this->show_success( __( 'Payment reminder was successfully sent to the customer', 'invoicing' ) ); |
|
| 505 | - } else { |
|
| 506 | - $this->show_error( __( 'Could not sent payment reminder to the customer', 'invoicing' ) ); |
|
| 507 | - } |
|
| 503 | + if ( $sent ) { |
|
| 504 | + $this->show_success( __( 'Payment reminder was successfully sent to the customer', 'invoicing' ) ); |
|
| 505 | + } else { |
|
| 506 | + $this->show_error( __( 'Could not sent payment reminder to the customer', 'invoicing' ) ); |
|
| 507 | + } |
|
| 508 | 508 | |
| 509 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) ); |
|
| 510 | - exit; |
|
| 511 | - } |
|
| 509 | + wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) ); |
|
| 510 | + exit; |
|
| 511 | + } |
|
| 512 | 512 | |
| 513 | - /** |
|
| 513 | + /** |
|
| 514 | 514 | * Resets tax rates. |
| 515 | - * |
|
| 515 | + * |
|
| 516 | 516 | */ |
| 517 | 517 | public function admin_reset_tax_rates() { |
| 518 | 518 | |
| 519 | - update_option( 'wpinv_tax_rates', wpinv_get_data( 'tax-rates' ) ); |
|
| 520 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 521 | - exit; |
|
| 519 | + update_option( 'wpinv_tax_rates', wpinv_get_data( 'tax-rates' ) ); |
|
| 520 | + wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 521 | + exit; |
|
| 522 | 522 | |
| 523 | - } |
|
| 523 | + } |
|
| 524 | 524 | |
| 525 | - /** |
|
| 525 | + /** |
|
| 526 | 526 | * Resets admin pages. |
| 527 | - * |
|
| 527 | + * |
|
| 528 | 528 | */ |
| 529 | 529 | public function admin_create_missing_pages() { |
| 530 | - $installer = new GetPaid_Installer(); |
|
| 531 | - $installer->create_pages(); |
|
| 532 | - $this->show_success( __( 'GetPaid pages updated.', 'invoicing' ) ); |
|
| 533 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 534 | - exit; |
|
| 535 | - } |
|
| 536 | - |
|
| 537 | - /** |
|
| 538 | - * Refreshes the permalinks. |
|
| 539 | - */ |
|
| 540 | - public function admin_refresh_permalinks() { |
|
| 541 | - flush_rewrite_rules(); |
|
| 542 | - $this->show_success( __( 'Permalinks refreshed.', 'invoicing' ) ); |
|
| 543 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 544 | - exit; |
|
| 545 | - } |
|
| 546 | - |
|
| 547 | - /** |
|
| 530 | + $installer = new GetPaid_Installer(); |
|
| 531 | + $installer->create_pages(); |
|
| 532 | + $this->show_success( __( 'GetPaid pages updated.', 'invoicing' ) ); |
|
| 533 | + wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 534 | + exit; |
|
| 535 | + } |
|
| 536 | + |
|
| 537 | + /** |
|
| 538 | + * Refreshes the permalinks. |
|
| 539 | + */ |
|
| 540 | + public function admin_refresh_permalinks() { |
|
| 541 | + flush_rewrite_rules(); |
|
| 542 | + $this->show_success( __( 'Permalinks refreshed.', 'invoicing' ) ); |
|
| 543 | + wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 544 | + exit; |
|
| 545 | + } |
|
| 546 | + |
|
| 547 | + /** |
|
| 548 | 548 | * Creates an missing admin tables. |
| 549 | - * |
|
| 549 | + * |
|
| 550 | 550 | */ |
| 551 | 551 | public function admin_create_missing_tables() { |
| 552 | - global $wpdb; |
|
| 553 | - $installer = new GetPaid_Installer(); |
|
| 552 | + global $wpdb; |
|
| 553 | + $installer = new GetPaid_Installer(); |
|
| 554 | 554 | |
| 555 | - if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}wpinv_subscriptions'" ) != $wpdb->prefix . 'wpinv_subscriptions' ) { |
|
| 556 | - $installer->create_subscriptions_table(); |
|
| 555 | + if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}wpinv_subscriptions'" ) != $wpdb->prefix . 'wpinv_subscriptions' ) { |
|
| 556 | + $installer->create_subscriptions_table(); |
|
| 557 | 557 | |
| 558 | - if ( $wpdb->last_error !== '' ) { |
|
| 559 | - $this->show_error( __( 'Your GetPaid tables have been updated:', 'invoicing' ) . ' ' . $wpdb->last_error ); |
|
| 560 | - } |
|
| 561 | - } |
|
| 558 | + if ( $wpdb->last_error !== '' ) { |
|
| 559 | + $this->show_error( __( 'Your GetPaid tables have been updated:', 'invoicing' ) . ' ' . $wpdb->last_error ); |
|
| 560 | + } |
|
| 561 | + } |
|
| 562 | 562 | |
| 563 | - if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}getpaid_invoices'" ) != $wpdb->prefix . 'getpaid_invoices' ) { |
|
| 564 | - $installer->create_invoices_table(); |
|
| 563 | + if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}getpaid_invoices'" ) != $wpdb->prefix . 'getpaid_invoices' ) { |
|
| 564 | + $installer->create_invoices_table(); |
|
| 565 | 565 | |
| 566 | - if ( '' !== $wpdb->last_error ) { |
|
| 567 | - $this->show_error( __( 'Your GetPaid tables have been updated:', 'invoicing' ) . ' ' . $wpdb->last_error ); |
|
| 568 | - } |
|
| 569 | - } |
|
| 566 | + if ( '' !== $wpdb->last_error ) { |
|
| 567 | + $this->show_error( __( 'Your GetPaid tables have been updated:', 'invoicing' ) . ' ' . $wpdb->last_error ); |
|
| 568 | + } |
|
| 569 | + } |
|
| 570 | 570 | |
| 571 | - if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}getpaid_invoice_items'" ) != $wpdb->prefix . 'getpaid_invoice_items' ) { |
|
| 572 | - $installer->create_invoice_items_table(); |
|
| 571 | + if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}getpaid_invoice_items'" ) != $wpdb->prefix . 'getpaid_invoice_items' ) { |
|
| 572 | + $installer->create_invoice_items_table(); |
|
| 573 | 573 | |
| 574 | - if ( '' !== $wpdb->last_error ) { |
|
| 575 | - $this->show_error( __( 'Your GetPaid tables have been updated:', 'invoicing' ) . ' ' . $wpdb->last_error ); |
|
| 576 | - } |
|
| 577 | - } |
|
| 574 | + if ( '' !== $wpdb->last_error ) { |
|
| 575 | + $this->show_error( __( 'Your GetPaid tables have been updated:', 'invoicing' ) . ' ' . $wpdb->last_error ); |
|
| 576 | + } |
|
| 577 | + } |
|
| 578 | 578 | |
| 579 | - if ( ! $this->has_notices() ) { |
|
| 580 | - $this->show_success( __( 'Your GetPaid tables have been updated.', 'invoicing' ) ); |
|
| 581 | - } |
|
| 579 | + if ( ! $this->has_notices() ) { |
|
| 580 | + $this->show_success( __( 'Your GetPaid tables have been updated.', 'invoicing' ) ); |
|
| 581 | + } |
|
| 582 | 582 | |
| 583 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 584 | - exit; |
|
| 585 | - } |
|
| 583 | + wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 584 | + exit; |
|
| 585 | + } |
|
| 586 | 586 | |
| 587 | - /** |
|
| 587 | + /** |
|
| 588 | 588 | * Migrates old invoices to the new database tables. |
| 589 | - * |
|
| 589 | + * |
|
| 590 | 590 | */ |
| 591 | 591 | public function admin_migrate_old_invoices() { |
| 592 | 592 | |
| 593 | - // Migrate the invoices. |
|
| 594 | - $installer = new GetPaid_Installer(); |
|
| 595 | - $installer->migrate_old_invoices(); |
|
| 593 | + // Migrate the invoices. |
|
| 594 | + $installer = new GetPaid_Installer(); |
|
| 595 | + $installer->migrate_old_invoices(); |
|
| 596 | 596 | |
| 597 | - // Show an admin message. |
|
| 598 | - $this->show_success( __( 'Your invoices have been migrated.', 'invoicing' ) ); |
|
| 597 | + // Show an admin message. |
|
| 598 | + $this->show_success( __( 'Your invoices have been migrated.', 'invoicing' ) ); |
|
| 599 | 599 | |
| 600 | - // Redirect the admin. |
|
| 601 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 602 | - exit; |
|
| 600 | + // Redirect the admin. |
|
| 601 | + wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 602 | + exit; |
|
| 603 | 603 | |
| 604 | - } |
|
| 604 | + } |
|
| 605 | 605 | |
| 606 | - /** |
|
| 606 | + /** |
|
| 607 | 607 | * Download customers. |
| 608 | - * |
|
| 608 | + * |
|
| 609 | 609 | */ |
| 610 | 610 | public function admin_download_customers() { |
| 611 | - global $wpdb; |
|
| 612 | - |
|
| 613 | - $output = fopen( 'php://output', 'w' ); |
|
| 614 | - |
|
| 615 | - if ( false === $output ) { |
|
| 616 | - wp_die( esc_html__( 'Unsupported server', 'invoicing' ), 500 ); |
|
| 617 | - } |
|
| 611 | + global $wpdb; |
|
| 618 | 612 | |
| 619 | - header( 'Content-Type:text/csv' ); |
|
| 620 | - header( 'Content-Disposition:attachment;filename=customers.csv' ); |
|
| 613 | + $output = fopen( 'php://output', 'w' ); |
|
| 621 | 614 | |
| 622 | - $post_types = ''; |
|
| 615 | + if ( false === $output ) { |
|
| 616 | + wp_die( esc_html__( 'Unsupported server', 'invoicing' ), 500 ); |
|
| 617 | + } |
|
| 623 | 618 | |
| 624 | - foreach ( array_keys( getpaid_get_invoice_post_types() ) as $post_type ) { |
|
| 625 | - $post_types .= $wpdb->prepare( 'post_type=%s OR ', $post_type ); |
|
| 626 | - } |
|
| 619 | + header( 'Content-Type:text/csv' ); |
|
| 620 | + header( 'Content-Disposition:attachment;filename=customers.csv' ); |
|
| 627 | 621 | |
| 628 | - $post_types = rtrim( $post_types, ' OR' ); |
|
| 622 | + $post_types = ''; |
|
| 629 | 623 | |
| 630 | - $customers = $wpdb->get_col( "SELECT DISTINCT( post_author ) FROM $wpdb->posts WHERE $post_types" ); |
|
| 624 | + foreach ( array_keys( getpaid_get_invoice_post_types() ) as $post_type ) { |
|
| 625 | + $post_types .= $wpdb->prepare( 'post_type=%s OR ', $post_type ); |
|
| 626 | + } |
|
| 631 | 627 | |
| 632 | - $columns = array( |
|
| 633 | - 'name' => __( 'Name', 'invoicing' ), |
|
| 634 | - 'email' => __( 'Email', 'invoicing' ), |
|
| 635 | - 'country' => __( 'Country', 'invoicing' ), |
|
| 636 | - 'state' => __( 'State', 'invoicing' ), |
|
| 637 | - 'city' => __( 'City', 'invoicing' ), |
|
| 638 | - 'zip' => __( 'ZIP', 'invoicing' ), |
|
| 639 | - 'address' => __( 'Address', 'invoicing' ), |
|
| 640 | - 'phone' => __( 'Phone', 'invoicing' ), |
|
| 641 | - 'company' => __( 'Company', 'invoicing' ), |
|
| 642 | - 'company_id' => __( 'Company ID', 'invoicing' ), |
|
| 643 | - 'invoices' => __( 'Invoices', 'invoicing' ), |
|
| 644 | - 'total_raw' => __( 'Total Spend', 'invoicing' ), |
|
| 645 | - 'signup' => __( 'Date created', 'invoicing' ), |
|
| 646 | - ); |
|
| 628 | + $post_types = rtrim( $post_types, ' OR' ); |
|
| 629 | + |
|
| 630 | + $customers = $wpdb->get_col( "SELECT DISTINCT( post_author ) FROM $wpdb->posts WHERE $post_types" ); |
|
| 631 | + |
|
| 632 | + $columns = array( |
|
| 633 | + 'name' => __( 'Name', 'invoicing' ), |
|
| 634 | + 'email' => __( 'Email', 'invoicing' ), |
|
| 635 | + 'country' => __( 'Country', 'invoicing' ), |
|
| 636 | + 'state' => __( 'State', 'invoicing' ), |
|
| 637 | + 'city' => __( 'City', 'invoicing' ), |
|
| 638 | + 'zip' => __( 'ZIP', 'invoicing' ), |
|
| 639 | + 'address' => __( 'Address', 'invoicing' ), |
|
| 640 | + 'phone' => __( 'Phone', 'invoicing' ), |
|
| 641 | + 'company' => __( 'Company', 'invoicing' ), |
|
| 642 | + 'company_id' => __( 'Company ID', 'invoicing' ), |
|
| 643 | + 'invoices' => __( 'Invoices', 'invoicing' ), |
|
| 644 | + 'total_raw' => __( 'Total Spend', 'invoicing' ), |
|
| 645 | + 'signup' => __( 'Date created', 'invoicing' ), |
|
| 646 | + ); |
|
| 647 | 647 | |
| 648 | - // Output the csv column headers. |
|
| 649 | - fputcsv( $output, array_values( $columns ) ); |
|
| 648 | + // Output the csv column headers. |
|
| 649 | + fputcsv( $output, array_values( $columns ) ); |
|
| 650 | 650 | |
| 651 | - // Loop through |
|
| 652 | - $table = new WPInv_Customers_Table(); |
|
| 653 | - foreach ( $customers as $customer_id ) { |
|
| 651 | + // Loop through |
|
| 652 | + $table = new WPInv_Customers_Table(); |
|
| 653 | + foreach ( $customers as $customer_id ) { |
|
| 654 | 654 | |
| 655 | - $user = get_user_by( 'id', $customer_id ); |
|
| 656 | - $row = array(); |
|
| 657 | - if ( empty( $user ) ) { |
|
| 658 | - continue; |
|
| 659 | - } |
|
| 655 | + $user = get_user_by( 'id', $customer_id ); |
|
| 656 | + $row = array(); |
|
| 657 | + if ( empty( $user ) ) { |
|
| 658 | + continue; |
|
| 659 | + } |
|
| 660 | 660 | |
| 661 | - foreach ( array_keys( $columns ) as $column ) { |
|
| 661 | + foreach ( array_keys( $columns ) as $column ) { |
|
| 662 | 662 | |
| 663 | - $method = 'column_' . $column; |
|
| 663 | + $method = 'column_' . $column; |
|
| 664 | 664 | |
| 665 | - if ( 'name' == $column ) { |
|
| 666 | - $value = esc_html( $user->display_name ); |
|
| 667 | - } elseif ( 'email' == $column ) { |
|
| 668 | - $value = sanitize_email( $user->user_email ); |
|
| 669 | - } elseif ( is_callable( array( $table, $method ) ) ) { |
|
| 670 | - $value = wp_strip_all_tags( $table->$method( $user ) ); |
|
| 671 | - } |
|
| 665 | + if ( 'name' == $column ) { |
|
| 666 | + $value = esc_html( $user->display_name ); |
|
| 667 | + } elseif ( 'email' == $column ) { |
|
| 668 | + $value = sanitize_email( $user->user_email ); |
|
| 669 | + } elseif ( is_callable( array( $table, $method ) ) ) { |
|
| 670 | + $value = wp_strip_all_tags( $table->$method( $user ) ); |
|
| 671 | + } |
|
| 672 | 672 | |
| 673 | - if ( empty( $value ) ) { |
|
| 674 | - $value = esc_html( get_user_meta( $user->ID, '_wpinv_' . $column, true ) ); |
|
| 675 | - } |
|
| 673 | + if ( empty( $value ) ) { |
|
| 674 | + $value = esc_html( get_user_meta( $user->ID, '_wpinv_' . $column, true ) ); |
|
| 675 | + } |
|
| 676 | 676 | |
| 677 | - $row[] = $value; |
|
| 677 | + $row[] = $value; |
|
| 678 | 678 | |
| 679 | - } |
|
| 679 | + } |
|
| 680 | 680 | |
| 681 | - fputcsv( $output, $row ); |
|
| 682 | - } |
|
| 681 | + fputcsv( $output, $row ); |
|
| 682 | + } |
|
| 683 | 683 | |
| 684 | - fclose( $output ); |
|
| 685 | - exit; |
|
| 684 | + fclose( $output ); |
|
| 685 | + exit; |
|
| 686 | 686 | |
| 687 | - } |
|
| 687 | + } |
|
| 688 | 688 | |
| 689 | - /** |
|
| 689 | + /** |
|
| 690 | 690 | * Installs a plugin. |
| 691 | - * |
|
| 692 | - * @param array $data |
|
| 691 | + * |
|
| 692 | + * @param array $data |
|
| 693 | 693 | */ |
| 694 | 694 | public function admin_install_plugin( $data ) { |
| 695 | 695 | |
| 696 | - if ( ! empty( $data['plugins'] ) ) { |
|
| 697 | - include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; |
|
| 698 | - wp_cache_flush(); |
|
| 696 | + if ( ! empty( $data['plugins'] ) ) { |
|
| 697 | + include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; |
|
| 698 | + wp_cache_flush(); |
|
| 699 | 699 | |
| 700 | - foreach ( $data['plugins'] as $slug => $file ) { |
|
| 701 | - $plugin_zip = esc_url( 'https://downloads.wordpress.org/plugin/' . $slug . '.latest-stable.zip' ); |
|
| 702 | - $upgrader = new Plugin_Upgrader( new Automatic_Upgrader_Skin() ); |
|
| 703 | - $installed = $upgrader->install( $plugin_zip ); |
|
| 700 | + foreach ( $data['plugins'] as $slug => $file ) { |
|
| 701 | + $plugin_zip = esc_url( 'https://downloads.wordpress.org/plugin/' . $slug . '.latest-stable.zip' ); |
|
| 702 | + $upgrader = new Plugin_Upgrader( new Automatic_Upgrader_Skin() ); |
|
| 703 | + $installed = $upgrader->install( $plugin_zip ); |
|
| 704 | 704 | |
| 705 | - if ( ! is_wp_error( $installed ) && $installed ) { |
|
| 706 | - activate_plugin( $file, '', false, true ); |
|
| 707 | - } else { |
|
| 708 | - wpinv_error_log( $upgrader->skin->get_upgrade_messages(), false ); |
|
| 709 | - } |
|
| 705 | + if ( ! is_wp_error( $installed ) && $installed ) { |
|
| 706 | + activate_plugin( $file, '', false, true ); |
|
| 707 | + } else { |
|
| 708 | + wpinv_error_log( $upgrader->skin->get_upgrade_messages(), false ); |
|
| 709 | + } |
|
| 710 | 710 | } |
| 711 | 711 | } |
| 712 | 712 | |
| 713 | - $redirect = isset( $data['redirect'] ) ? esc_url_raw( $data['redirect'] ) : admin_url( 'plugins.php' ); |
|
| 714 | - wp_safe_redirect( $redirect ); |
|
| 715 | - exit; |
|
| 713 | + $redirect = isset( $data['redirect'] ) ? esc_url_raw( $data['redirect'] ) : admin_url( 'plugins.php' ); |
|
| 714 | + wp_safe_redirect( $redirect ); |
|
| 715 | + exit; |
|
| 716 | 716 | |
| 717 | - } |
|
| 717 | + } |
|
| 718 | 718 | |
| 719 | - /** |
|
| 719 | + /** |
|
| 720 | 720 | * Connects a gateway. |
| 721 | - * |
|
| 722 | - * @param array $data |
|
| 721 | + * |
|
| 722 | + * @param array $data |
|
| 723 | 723 | */ |
| 724 | 724 | public function admin_connect_gateway( $data ) { |
| 725 | 725 | |
| 726 | - if ( ! empty( $data['plugin'] ) ) { |
|
| 726 | + if ( ! empty( $data['plugin'] ) ) { |
|
| 727 | 727 | |
| 728 | - $gateway = sanitize_key( $data['plugin'] ); |
|
| 729 | - $connect_url = apply_filters( "getpaid_get_{$gateway}_connect_url", false, $data ); |
|
| 728 | + $gateway = sanitize_key( $data['plugin'] ); |
|
| 729 | + $connect_url = apply_filters( "getpaid_get_{$gateway}_connect_url", false, $data ); |
|
| 730 | 730 | |
| 731 | - if ( ! empty( $connect_url ) ) { |
|
| 732 | - wp_redirect( $connect_url ); |
|
| 733 | - exit; |
|
| 734 | - } |
|
| 731 | + if ( ! empty( $connect_url ) ) { |
|
| 732 | + wp_redirect( $connect_url ); |
|
| 733 | + exit; |
|
| 734 | + } |
|
| 735 | 735 | |
| 736 | - if ( 'stripe' == $data['plugin'] ) { |
|
| 737 | - require_once ABSPATH . 'wp-admin/includes/plugin.php'; |
|
| 738 | - include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; |
|
| 739 | - wp_cache_flush(); |
|
| 736 | + if ( 'stripe' == $data['plugin'] ) { |
|
| 737 | + require_once ABSPATH . 'wp-admin/includes/plugin.php'; |
|
| 738 | + include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; |
|
| 739 | + wp_cache_flush(); |
|
| 740 | 740 | |
| 741 | - if ( ! array_key_exists( 'getpaid-stripe-payments/getpaid-stripe-payments.php', get_plugins() ) ) { |
|
| 742 | - $plugin_zip = esc_url( 'https://downloads.wordpress.org/plugin/getpaid-stripe-payments.latest-stable.zip' ); |
|
| 743 | - $upgrader = new Plugin_Upgrader( new Automatic_Upgrader_Skin() ); |
|
| 744 | - $upgrader->install( $plugin_zip ); |
|
| 745 | - } |
|
| 741 | + if ( ! array_key_exists( 'getpaid-stripe-payments/getpaid-stripe-payments.php', get_plugins() ) ) { |
|
| 742 | + $plugin_zip = esc_url( 'https://downloads.wordpress.org/plugin/getpaid-stripe-payments.latest-stable.zip' ); |
|
| 743 | + $upgrader = new Plugin_Upgrader( new Automatic_Upgrader_Skin() ); |
|
| 744 | + $upgrader->install( $plugin_zip ); |
|
| 745 | + } |
|
| 746 | 746 | |
| 747 | - activate_plugin( 'getpaid-stripe-payments/getpaid-stripe-payments.php', '', false, true ); |
|
| 748 | - } |
|
| 747 | + activate_plugin( 'getpaid-stripe-payments/getpaid-stripe-payments.php', '', false, true ); |
|
| 748 | + } |
|
| 749 | 749 | |
| 750 | - $connect_url = apply_filters( "getpaid_get_{$gateway}_connect_url", false, $data ); |
|
| 751 | - if ( ! empty( $connect_url ) ) { |
|
| 752 | - wp_redirect( $connect_url ); |
|
| 753 | - exit; |
|
| 754 | - } |
|
| 750 | + $connect_url = apply_filters( "getpaid_get_{$gateway}_connect_url", false, $data ); |
|
| 751 | + if ( ! empty( $connect_url ) ) { |
|
| 752 | + wp_redirect( $connect_url ); |
|
| 753 | + exit; |
|
| 754 | + } |
|
| 755 | 755 | } |
| 756 | 756 | |
| 757 | - $redirect = isset( $data['redirect'] ) ? esc_url_raw( urldecode( $data['redirect'] ) ) : admin_url( 'admin.php?page=wpinv-settings&tab=gateways' ); |
|
| 758 | - wp_safe_redirect( $redirect ); |
|
| 759 | - exit; |
|
| 757 | + $redirect = isset( $data['redirect'] ) ? esc_url_raw( urldecode( $data['redirect'] ) ) : admin_url( 'admin.php?page=wpinv-settings&tab=gateways' ); |
|
| 758 | + wp_safe_redirect( $redirect ); |
|
| 759 | + exit; |
|
| 760 | 760 | |
| 761 | - } |
|
| 761 | + } |
|
| 762 | 762 | |
| 763 | - /** |
|
| 763 | + /** |
|
| 764 | 764 | * Recalculates discounts. |
| 765 | - * |
|
| 765 | + * |
|
| 766 | 766 | */ |
| 767 | 767 | public function admin_recalculate_discounts() { |
| 768 | - global $wpdb; |
|
| 768 | + global $wpdb; |
|
| 769 | 769 | |
| 770 | - // Fetch all invoices that have discount codes. |
|
| 771 | - $table = $wpdb->prefix . 'getpaid_invoices'; |
|
| 772 | - $invoices = $wpdb->get_col( "SELECT `post_id` FROM `$table` WHERE `discount` = 0 && `discount_code` <> ''" ); |
|
| 770 | + // Fetch all invoices that have discount codes. |
|
| 771 | + $table = $wpdb->prefix . 'getpaid_invoices'; |
|
| 772 | + $invoices = $wpdb->get_col( "SELECT `post_id` FROM `$table` WHERE `discount` = 0 && `discount_code` <> ''" ); |
|
| 773 | 773 | |
| 774 | - foreach ( $invoices as $invoice ) { |
|
| 774 | + foreach ( $invoices as $invoice ) { |
|
| 775 | 775 | |
| 776 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 776 | + $invoice = new WPInv_Invoice( $invoice ); |
|
| 777 | 777 | |
| 778 | - if ( ! $invoice->exists() ) { |
|
| 779 | - continue; |
|
| 780 | - } |
|
| 778 | + if ( ! $invoice->exists() ) { |
|
| 779 | + continue; |
|
| 780 | + } |
|
| 781 | 781 | |
| 782 | - // Abort if the discount does not exist or does not apply here. |
|
| 783 | - $discount = new WPInv_Discount( $invoice->get_discount_code() ); |
|
| 784 | - if ( ! $discount->exists() ) { |
|
| 785 | - continue; |
|
| 786 | - } |
|
| 782 | + // Abort if the discount does not exist or does not apply here. |
|
| 783 | + $discount = new WPInv_Discount( $invoice->get_discount_code() ); |
|
| 784 | + if ( ! $discount->exists() ) { |
|
| 785 | + continue; |
|
| 786 | + } |
|
| 787 | 787 | |
| 788 | - $invoice->add_discount( getpaid_calculate_invoice_discount( $invoice, $discount ) ); |
|
| 789 | - $invoice->recalculate_total(); |
|
| 788 | + $invoice->add_discount( getpaid_calculate_invoice_discount( $invoice, $discount ) ); |
|
| 789 | + $invoice->recalculate_total(); |
|
| 790 | 790 | |
| 791 | - if ( $invoice->get_total_discount() > 0 ) { |
|
| 792 | - $invoice->save(); |
|
| 793 | - } |
|
| 791 | + if ( $invoice->get_total_discount() > 0 ) { |
|
| 792 | + $invoice->save(); |
|
| 793 | + } |
|
| 794 | 794 | } |
| 795 | 795 | |
| 796 | - // Show an admin message. |
|
| 797 | - $this->show_success( __( 'Discounts have been recalculated.', 'invoicing' ) ); |
|
| 796 | + // Show an admin message. |
|
| 797 | + $this->show_success( __( 'Discounts have been recalculated.', 'invoicing' ) ); |
|
| 798 | 798 | |
| 799 | - // Redirect the admin. |
|
| 800 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 801 | - exit; |
|
| 799 | + // Redirect the admin. |
|
| 800 | + wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 801 | + exit; |
|
| 802 | 802 | |
| 803 | - } |
|
| 803 | + } |
|
| 804 | 804 | |
| 805 | 805 | /** |
| 806 | - * Returns an array of admin notices. |
|
| 807 | - * |
|
| 808 | - * @since 1.0.19 |
|
| 806 | + * Returns an array of admin notices. |
|
| 807 | + * |
|
| 808 | + * @since 1.0.19 |
|
| 809 | 809 | * @return array |
| 810 | - */ |
|
| 811 | - public function get_notices() { |
|
| 812 | - $notices = get_option( 'wpinv_admin_notices' ); |
|
| 810 | + */ |
|
| 811 | + public function get_notices() { |
|
| 812 | + $notices = get_option( 'wpinv_admin_notices' ); |
|
| 813 | 813 | return is_array( $notices ) ? $notices : array(); |
| 814 | - } |
|
| 814 | + } |
|
| 815 | 815 | |
| 816 | - /** |
|
| 817 | - * Checks if we have any admin notices. |
|
| 818 | - * |
|
| 819 | - * @since 2.0.4 |
|
| 816 | + /** |
|
| 817 | + * Checks if we have any admin notices. |
|
| 818 | + * |
|
| 819 | + * @since 2.0.4 |
|
| 820 | 820 | * @return array |
| 821 | - */ |
|
| 822 | - public function has_notices() { |
|
| 823 | - return count( $this->get_notices() ) > 0; |
|
| 824 | - } |
|
| 825 | - |
|
| 826 | - /** |
|
| 827 | - * Clears all admin notices |
|
| 828 | - * |
|
| 829 | - * @access public |
|
| 830 | - * @since 1.0.19 |
|
| 831 | - */ |
|
| 832 | - public function clear_notices() { |
|
| 833 | - delete_option( 'wpinv_admin_notices' ); |
|
| 834 | - } |
|
| 835 | - |
|
| 836 | - /** |
|
| 837 | - * Saves a new admin notice |
|
| 838 | - * |
|
| 839 | - * @access public |
|
| 840 | - * @since 1.0.19 |
|
| 841 | - */ |
|
| 842 | - public function save_notice( $type, $message ) { |
|
| 843 | - $notices = $this->get_notices(); |
|
| 844 | - |
|
| 845 | - if ( empty( $notices[ $type ] ) || ! is_array( $notices[ $type ] ) ) { |
|
| 846 | - $notices[ $type ] = array(); |
|
| 847 | - } |
|
| 848 | - |
|
| 849 | - $notices[ $type ][] = $message; |
|
| 850 | - |
|
| 851 | - update_option( 'wpinv_admin_notices', $notices ); |
|
| 852 | - } |
|
| 853 | - |
|
| 854 | - /** |
|
| 855 | - * Displays a success notice |
|
| 856 | - * |
|
| 857 | - * @param string $msg The message to qeue. |
|
| 858 | - * @access public |
|
| 859 | - * @since 1.0.19 |
|
| 860 | - */ |
|
| 861 | - public function show_success( $msg ) { |
|
| 862 | - $this->save_notice( 'success', $msg ); |
|
| 863 | - } |
|
| 864 | - |
|
| 865 | - /** |
|
| 866 | - * Displays a error notice |
|
| 867 | - * |
|
| 868 | - * @access public |
|
| 869 | - * @param string $msg The message to qeue. |
|
| 870 | - * @since 1.0.19 |
|
| 871 | - */ |
|
| 872 | - public function show_error( $msg ) { |
|
| 873 | - $this->save_notice( 'error', $msg ); |
|
| 874 | - } |
|
| 875 | - |
|
| 876 | - /** |
|
| 877 | - * Displays a warning notice |
|
| 878 | - * |
|
| 879 | - * @access public |
|
| 880 | - * @param string $msg The message to qeue. |
|
| 881 | - * @since 1.0.19 |
|
| 882 | - */ |
|
| 883 | - public function show_warning( $msg ) { |
|
| 884 | - $this->save_notice( 'warning', $msg ); |
|
| 885 | - } |
|
| 886 | - |
|
| 887 | - /** |
|
| 888 | - * Displays a info notice |
|
| 889 | - * |
|
| 890 | - * @access public |
|
| 891 | - * @param string $msg The message to qeue. |
|
| 892 | - * @since 1.0.19 |
|
| 893 | - */ |
|
| 894 | - public function show_info( $msg ) { |
|
| 895 | - $this->save_notice( 'info', $msg ); |
|
| 896 | - } |
|
| 897 | - |
|
| 898 | - /** |
|
| 899 | - * Show notices |
|
| 900 | - * |
|
| 901 | - * @access public |
|
| 902 | - * @since 1.0.19 |
|
| 903 | - */ |
|
| 904 | - public function show_notices() { |
|
| 821 | + */ |
|
| 822 | + public function has_notices() { |
|
| 823 | + return count( $this->get_notices() ) > 0; |
|
| 824 | + } |
|
| 825 | + |
|
| 826 | + /** |
|
| 827 | + * Clears all admin notices |
|
| 828 | + * |
|
| 829 | + * @access public |
|
| 830 | + * @since 1.0.19 |
|
| 831 | + */ |
|
| 832 | + public function clear_notices() { |
|
| 833 | + delete_option( 'wpinv_admin_notices' ); |
|
| 834 | + } |
|
| 835 | + |
|
| 836 | + /** |
|
| 837 | + * Saves a new admin notice |
|
| 838 | + * |
|
| 839 | + * @access public |
|
| 840 | + * @since 1.0.19 |
|
| 841 | + */ |
|
| 842 | + public function save_notice( $type, $message ) { |
|
| 843 | + $notices = $this->get_notices(); |
|
| 844 | + |
|
| 845 | + if ( empty( $notices[ $type ] ) || ! is_array( $notices[ $type ] ) ) { |
|
| 846 | + $notices[ $type ] = array(); |
|
| 847 | + } |
|
| 848 | + |
|
| 849 | + $notices[ $type ][] = $message; |
|
| 850 | + |
|
| 851 | + update_option( 'wpinv_admin_notices', $notices ); |
|
| 852 | + } |
|
| 853 | + |
|
| 854 | + /** |
|
| 855 | + * Displays a success notice |
|
| 856 | + * |
|
| 857 | + * @param string $msg The message to qeue. |
|
| 858 | + * @access public |
|
| 859 | + * @since 1.0.19 |
|
| 860 | + */ |
|
| 861 | + public function show_success( $msg ) { |
|
| 862 | + $this->save_notice( 'success', $msg ); |
|
| 863 | + } |
|
| 864 | + |
|
| 865 | + /** |
|
| 866 | + * Displays a error notice |
|
| 867 | + * |
|
| 868 | + * @access public |
|
| 869 | + * @param string $msg The message to qeue. |
|
| 870 | + * @since 1.0.19 |
|
| 871 | + */ |
|
| 872 | + public function show_error( $msg ) { |
|
| 873 | + $this->save_notice( 'error', $msg ); |
|
| 874 | + } |
|
| 875 | + |
|
| 876 | + /** |
|
| 877 | + * Displays a warning notice |
|
| 878 | + * |
|
| 879 | + * @access public |
|
| 880 | + * @param string $msg The message to qeue. |
|
| 881 | + * @since 1.0.19 |
|
| 882 | + */ |
|
| 883 | + public function show_warning( $msg ) { |
|
| 884 | + $this->save_notice( 'warning', $msg ); |
|
| 885 | + } |
|
| 886 | + |
|
| 887 | + /** |
|
| 888 | + * Displays a info notice |
|
| 889 | + * |
|
| 890 | + * @access public |
|
| 891 | + * @param string $msg The message to qeue. |
|
| 892 | + * @since 1.0.19 |
|
| 893 | + */ |
|
| 894 | + public function show_info( $msg ) { |
|
| 895 | + $this->save_notice( 'info', $msg ); |
|
| 896 | + } |
|
| 897 | + |
|
| 898 | + /** |
|
| 899 | + * Show notices |
|
| 900 | + * |
|
| 901 | + * @access public |
|
| 902 | + * @since 1.0.19 |
|
| 903 | + */ |
|
| 904 | + public function show_notices() { |
|
| 905 | 905 | |
| 906 | 906 | $notices = $this->get_notices(); |
| 907 | 907 | $this->clear_notices(); |
| 908 | 908 | |
| 909 | - foreach ( $notices as $type => $messages ) { |
|
| 909 | + foreach ( $notices as $type => $messages ) { |
|
| 910 | 910 | |
| 911 | - if ( ! is_array( $messages ) ) { |
|
| 912 | - continue; |
|
| 913 | - } |
|
| 911 | + if ( ! is_array( $messages ) ) { |
|
| 912 | + continue; |
|
| 913 | + } |
|
| 914 | 914 | |
| 915 | 915 | $type = esc_attr( $type ); |
| 916 | - foreach ( $messages as $message ) { |
|
| 917 | - echo wp_kses_post( "<div class='notice notice-$type is-dismissible'><p>$message</p></div>" ); |
|
| 916 | + foreach ( $messages as $message ) { |
|
| 917 | + echo wp_kses_post( "<div class='notice notice-$type is-dismissible'><p>$message</p></div>" ); |
|
| 918 | 918 | } |
| 919 | 919 | } |
| 920 | 920 | |
| 921 | - foreach ( array( 'checkout_page', 'invoice_history_page', 'success_page', 'failure_page', 'invoice_subscription_page' ) as $page ) { |
|
| 922 | - |
|
| 923 | - if ( ! is_numeric( wpinv_get_option( $page, false ) ) ) { |
|
| 924 | - $url = wp_nonce_url( |
|
| 925 | - add_query_arg( 'getpaid-admin-action', 'create_missing_pages' ), |
|
| 926 | - 'getpaid-nonce', |
|
| 927 | - 'getpaid-nonce' |
|
| 928 | - ); |
|
| 929 | - $message = __( 'Some GetPaid pages are missing. To use GetPaid without any issues, click the button below to generate the missing pages.', 'invoicing' ); |
|
| 930 | - $message2 = __( 'Generate Pages', 'invoicing' ); |
|
| 931 | - echo wp_kses_post( "<div class='notice notice-warning is-dismissible'><p>$message<br><br><a href='$url' class='button button-primary'>$message2</a></p></div>" ); |
|
| 932 | - break; |
|
| 933 | - } |
|
| 921 | + foreach ( array( 'checkout_page', 'invoice_history_page', 'success_page', 'failure_page', 'invoice_subscription_page' ) as $page ) { |
|
| 922 | + |
|
| 923 | + if ( ! is_numeric( wpinv_get_option( $page, false ) ) ) { |
|
| 924 | + $url = wp_nonce_url( |
|
| 925 | + add_query_arg( 'getpaid-admin-action', 'create_missing_pages' ), |
|
| 926 | + 'getpaid-nonce', |
|
| 927 | + 'getpaid-nonce' |
|
| 928 | + ); |
|
| 929 | + $message = __( 'Some GetPaid pages are missing. To use GetPaid without any issues, click the button below to generate the missing pages.', 'invoicing' ); |
|
| 930 | + $message2 = __( 'Generate Pages', 'invoicing' ); |
|
| 931 | + echo wp_kses_post( "<div class='notice notice-warning is-dismissible'><p>$message<br><br><a href='$url' class='button button-primary'>$message2</a></p></div>" ); |
|
| 932 | + break; |
|
| 933 | + } |
|
| 934 | 934 | } |
| 935 | 935 | |
| 936 | - } |
|
| 936 | + } |
|
| 937 | 937 | |
| 938 | 938 | } |
@@ -144,7 +144,7 @@ discard block |
||
| 144 | 144 | * |
| 145 | 145 | */ |
| 146 | 146 | function wpinv_register_settings() { |
| 147 | - do_action( 'getpaid_before_register_settings' ); |
|
| 147 | + do_action( 'getpaid_before_register_settings' ); |
|
| 148 | 148 | |
| 149 | 149 | // Loop through all tabs. |
| 150 | 150 | foreach ( wpinv_get_registered_settings() as $tab => $sections ) { |
@@ -159,7 +159,7 @@ discard block |
||
| 159 | 159 | $settings = $sections; |
| 160 | 160 | } |
| 161 | 161 | |
| 162 | - do_action( "getpaid_register_{$tab}_{$section}" ); |
|
| 162 | + do_action( "getpaid_register_{$tab}_{$section}" ); |
|
| 163 | 163 | |
| 164 | 164 | // Register the setting section. |
| 165 | 165 | add_settings_section( |
@@ -180,7 +180,7 @@ discard block |
||
| 180 | 180 | // Creates our settings in the options table. |
| 181 | 181 | register_setting( 'wpinv_settings', 'wpinv_settings', 'wpinv_settings_sanitize' ); |
| 182 | 182 | |
| 183 | - do_action( 'getpaid_after_register_settings' ); |
|
| 183 | + do_action( 'getpaid_after_register_settings' ); |
|
| 184 | 184 | } |
| 185 | 185 | add_action( 'admin_init', 'wpinv_register_settings' ); |
| 186 | 186 | |
@@ -197,13 +197,13 @@ discard block |
||
| 197 | 197 | $name = isset( $option['name'] ) ? $option['name'] : ''; |
| 198 | 198 | $cb = "wpinv_{$option['type']}_callback"; |
| 199 | 199 | $section = "wpinv_settings_{$tab}_$section"; |
| 200 | - $is_wizzard = is_admin() && isset( $_GET['page'] ) && 'gp-setup' == $_GET['page']; |
|
| 200 | + $is_wizzard = is_admin() && isset( $_GET['page'] ) && 'gp-setup' == $_GET['page']; |
|
| 201 | 201 | |
| 202 | - if ( isset( $option['desc'] ) && ( ! $is_wizzard && ! empty( $option['help-tip'] ) ) ) { |
|
| 203 | - $tip = wpinv_clean( $option['desc'] ); |
|
| 204 | - $name .= "<span class='dashicons dashicons-editor-help wpi-help-tip' title='$tip'></span>"; |
|
| 205 | - unset( $option['desc'] ); |
|
| 206 | - } |
|
| 202 | + if ( isset( $option['desc'] ) && ( ! $is_wizzard && ! empty( $option['help-tip'] ) ) ) { |
|
| 203 | + $tip = wpinv_clean( $option['desc'] ); |
|
| 204 | + $name .= "<span class='dashicons dashicons-editor-help wpi-help-tip' title='$tip'></span>"; |
|
| 205 | + unset( $option['desc'] ); |
|
| 206 | + } |
|
| 207 | 207 | |
| 208 | 208 | // Loop through all tabs. |
| 209 | 209 | add_settings_field( |
@@ -230,9 +230,9 @@ discard block |
||
| 230 | 230 | 'faux' => isset( $option['faux'] ) ? $option['faux'] : false, |
| 231 | 231 | 'onchange' => isset( $option['onchange'] ) ? $option['onchange'] : '', |
| 232 | 232 | 'custom' => isset( $option['custom'] ) ? $option['custom'] : '', |
| 233 | - 'default_content' => isset( $option['default_content'] ) ? $option['default_content'] : '', |
|
| 234 | - 'class' => isset( $option['class'] ) ? $option['class'] : '', |
|
| 235 | - 'style' => isset( $option['style'] ) ? $option['style'] : '', |
|
| 233 | + 'default_content' => isset( $option['default_content'] ) ? $option['default_content'] : '', |
|
| 234 | + 'class' => isset( $option['class'] ) ? $option['class'] : '', |
|
| 235 | + 'style' => isset( $option['style'] ) ? $option['style'] : '', |
|
| 236 | 236 | 'cols' => isset( $option['cols'] ) && (int) $option['cols'] > 0 ? (int) $option['cols'] : 50, |
| 237 | 237 | 'rows' => isset( $option['rows'] ) && (int) $option['rows'] > 0 ? (int) $option['rows'] : 5, |
| 238 | 238 | ) |
@@ -246,7 +246,7 @@ discard block |
||
| 246 | 246 | * @return array |
| 247 | 247 | */ |
| 248 | 248 | function wpinv_get_registered_settings() { |
| 249 | - return array_filter( apply_filters( 'wpinv_registered_settings', wpinv_get_data( 'admin-settings' ) ) ); |
|
| 249 | + return array_filter( apply_filters( 'wpinv_registered_settings', wpinv_get_data( 'admin-settings' ) ) ); |
|
| 250 | 250 | } |
| 251 | 251 | |
| 252 | 252 | /** |
@@ -265,18 +265,18 @@ discard block |
||
| 265 | 265 | */ |
| 266 | 266 | function wpinv_settings_sanitize( $input = array() ) { |
| 267 | 267 | |
| 268 | - $wpinv_options = wpinv_get_options(); |
|
| 269 | - $raw_referrer = wp_get_raw_referer(); |
|
| 268 | + $wpinv_options = wpinv_get_options(); |
|
| 269 | + $raw_referrer = wp_get_raw_referer(); |
|
| 270 | 270 | |
| 271 | 271 | if ( empty( $raw_referrer ) ) { |
| 272 | - return array_merge( $wpinv_options, $input ); |
|
| 272 | + return array_merge( $wpinv_options, $input ); |
|
| 273 | 273 | } |
| 274 | 274 | |
| 275 | 275 | wp_parse_str( $raw_referrer, $referrer ); |
| 276 | 276 | |
| 277 | - if ( in_array( 'gp-setup', $referrer ) ) { |
|
| 278 | - return array_merge( $wpinv_options, $input ); |
|
| 279 | - } |
|
| 277 | + if ( in_array( 'gp-setup', $referrer ) ) { |
|
| 278 | + return array_merge( $wpinv_options, $input ); |
|
| 279 | + } |
|
| 280 | 280 | |
| 281 | 281 | $settings = wpinv_get_registered_settings(); |
| 282 | 282 | $tab = isset( $referrer['tab'] ) ? $referrer['tab'] : 'general'; |
@@ -298,10 +298,10 @@ discard block |
||
| 298 | 298 | } |
| 299 | 299 | |
| 300 | 300 | // General filter |
| 301 | - $input[ $key ] = apply_filters( 'wpinv_settings_sanitize', $input[ $key ], $key ); |
|
| 301 | + $input[ $key ] = apply_filters( 'wpinv_settings_sanitize', $input[ $key ], $key ); |
|
| 302 | 302 | |
| 303 | - // Key specific filter. |
|
| 304 | - $input[ $key ] = apply_filters( "wpinv_settings_sanitize_$key", $input[ $key ] ); |
|
| 303 | + // Key specific filter. |
|
| 304 | + $input[ $key ] = apply_filters( "wpinv_settings_sanitize_$key", $input[ $key ] ); |
|
| 305 | 305 | } |
| 306 | 306 | |
| 307 | 307 | // Loop through the whitelist and unset any that are empty for the tab being saved |
@@ -344,14 +344,14 @@ discard block |
||
| 344 | 344 | |
| 345 | 345 | foreach ( $new_rates as $rate ) { |
| 346 | 346 | |
| 347 | - $rate['rate'] = wpinv_sanitize_amount( $rate['rate'] ); |
|
| 348 | - $rate['name'] = sanitize_text_field( $rate['name'] ); |
|
| 349 | - $rate['state'] = sanitize_text_field( $rate['state'] ); |
|
| 350 | - $rate['country'] = sanitize_text_field( $rate['country'] ); |
|
| 351 | - $rate['global'] = empty( $rate['state'] ); |
|
| 352 | - $tax_rates[] = $rate; |
|
| 347 | + $rate['rate'] = wpinv_sanitize_amount( $rate['rate'] ); |
|
| 348 | + $rate['name'] = sanitize_text_field( $rate['name'] ); |
|
| 349 | + $rate['state'] = sanitize_text_field( $rate['state'] ); |
|
| 350 | + $rate['country'] = sanitize_text_field( $rate['country'] ); |
|
| 351 | + $rate['global'] = empty( $rate['state'] ); |
|
| 352 | + $tax_rates[] = $rate; |
|
| 353 | 353 | |
| 354 | - } |
|
| 354 | + } |
|
| 355 | 355 | |
| 356 | 356 | update_option( 'wpinv_tax_rates', $tax_rates ); |
| 357 | 357 | |
@@ -364,21 +364,21 @@ discard block |
||
| 364 | 364 | return $input; |
| 365 | 365 | } |
| 366 | 366 | |
| 367 | - if ( empty( $_POST['wpinv_tax_rules_nonce'] ) || ! wp_verify_nonce( $_POST['wpinv_tax_rules_nonce'], 'wpinv_tax_rules' ) ) { |
|
| 368 | - return $input; |
|
| 369 | - } |
|
| 367 | + if ( empty( $_POST['wpinv_tax_rules_nonce'] ) || ! wp_verify_nonce( $_POST['wpinv_tax_rules_nonce'], 'wpinv_tax_rules' ) ) { |
|
| 368 | + return $input; |
|
| 369 | + } |
|
| 370 | 370 | |
| 371 | 371 | $new_rules = ! empty( $_POST['tax_rules'] ) ? wp_kses_post_deep( array_values( $_POST['tax_rules'] ) ) : array(); |
| 372 | 372 | $tax_rules = array(); |
| 373 | 373 | |
| 374 | 374 | foreach ( $new_rules as $rule ) { |
| 375 | 375 | |
| 376 | - $rule['key'] = sanitize_title_with_dashes( $rule['key'] ); |
|
| 377 | - $rule['label'] = sanitize_text_field( $rule['label'] ); |
|
| 378 | - $rule['tax_base'] = sanitize_text_field( $rule['tax_base'] ); |
|
| 379 | - $tax_rules[] = $rule; |
|
| 376 | + $rule['key'] = sanitize_title_with_dashes( $rule['key'] ); |
|
| 377 | + $rule['label'] = sanitize_text_field( $rule['label'] ); |
|
| 378 | + $rule['tax_base'] = sanitize_text_field( $rule['tax_base'] ); |
|
| 379 | + $tax_rules[] = $rule; |
|
| 380 | 380 | |
| 381 | - } |
|
| 381 | + } |
|
| 382 | 382 | |
| 383 | 383 | update_option( 'wpinv_tax_rules', $tax_rules ); |
| 384 | 384 | |
@@ -391,11 +391,11 @@ discard block |
||
| 391 | 391 | $tabs['general'] = __( 'General', 'invoicing' ); |
| 392 | 392 | $tabs['gateways'] = __( 'Payment Gateways', 'invoicing' ); |
| 393 | 393 | $tabs['taxes'] = __( 'Taxes', 'invoicing' ); |
| 394 | - $tabs['emails'] = __( 'Emails', 'invoicing' ); |
|
| 394 | + $tabs['emails'] = __( 'Emails', 'invoicing' ); |
|
| 395 | 395 | |
| 396 | - if ( count( getpaid_get_integration_settings() ) > 0 ) { |
|
| 397 | - $tabs['integrations'] = __( 'Integrations', 'invoicing' ); |
|
| 398 | - } |
|
| 396 | + if ( count( getpaid_get_integration_settings() ) > 0 ) { |
|
| 397 | + $tabs['integrations'] = __( 'Integrations', 'invoicing' ); |
|
| 398 | + } |
|
| 399 | 399 | |
| 400 | 400 | $tabs['privacy'] = __( 'Privacy', 'invoicing' ); |
| 401 | 401 | $tabs['misc'] = __( 'Misc', 'invoicing' ); |
@@ -426,53 +426,53 @@ discard block |
||
| 426 | 426 | 'general' => apply_filters( |
| 427 | 427 | 'wpinv_settings_sections_general', |
| 428 | 428 | array( |
| 429 | - 'main' => __( 'General Settings', 'invoicing' ), |
|
| 430 | - 'page_section' => __( 'Page Settings', 'invoicing' ), |
|
| 431 | - 'currency_section' => __( 'Currency Settings', 'invoicing' ), |
|
| 432 | - 'labels' => __( 'Label Texts', 'invoicing' ), |
|
| 429 | + 'main' => __( 'General Settings', 'invoicing' ), |
|
| 430 | + 'page_section' => __( 'Page Settings', 'invoicing' ), |
|
| 431 | + 'currency_section' => __( 'Currency Settings', 'invoicing' ), |
|
| 432 | + 'labels' => __( 'Label Texts', 'invoicing' ), |
|
| 433 | 433 | ) |
| 434 | 434 | ), |
| 435 | 435 | 'gateways' => apply_filters( |
| 436 | 436 | 'wpinv_settings_sections_gateways', |
| 437 | 437 | array( |
| 438 | - 'main' => __( 'Gateway Settings', 'invoicing' ), |
|
| 438 | + 'main' => __( 'Gateway Settings', 'invoicing' ), |
|
| 439 | 439 | ) |
| 440 | 440 | ), |
| 441 | 441 | 'taxes' => apply_filters( |
| 442 | 442 | 'wpinv_settings_sections_taxes', |
| 443 | 443 | array( |
| 444 | - 'main' => __( 'Tax Settings', 'invoicing' ), |
|
| 445 | - 'rules' => __( 'Tax Rules', 'invoicing' ), |
|
| 446 | - 'rates' => __( 'Tax Rates', 'invoicing' ), |
|
| 447 | - 'vat' => __( 'EU VAT Settings', 'invoicing' ), |
|
| 444 | + 'main' => __( 'Tax Settings', 'invoicing' ), |
|
| 445 | + 'rules' => __( 'Tax Rules', 'invoicing' ), |
|
| 446 | + 'rates' => __( 'Tax Rates', 'invoicing' ), |
|
| 447 | + 'vat' => __( 'EU VAT Settings', 'invoicing' ), |
|
| 448 | 448 | ) |
| 449 | 449 | ), |
| 450 | 450 | 'emails' => apply_filters( |
| 451 | 451 | 'wpinv_settings_sections_emails', |
| 452 | 452 | array( |
| 453 | - 'main' => __( 'Email Settings', 'invoicing' ), |
|
| 453 | + 'main' => __( 'Email Settings', 'invoicing' ), |
|
| 454 | 454 | ) |
| 455 | 455 | ), |
| 456 | 456 | |
| 457 | - 'integrations' => wp_list_pluck( getpaid_get_integration_settings(), 'label', 'id' ), |
|
| 457 | + 'integrations' => wp_list_pluck( getpaid_get_integration_settings(), 'label', 'id' ), |
|
| 458 | 458 | |
| 459 | 459 | 'privacy' => apply_filters( |
| 460 | 460 | 'wpinv_settings_sections_privacy', |
| 461 | 461 | array( |
| 462 | - 'main' => __( 'Privacy policy', 'invoicing' ), |
|
| 462 | + 'main' => __( 'Privacy policy', 'invoicing' ), |
|
| 463 | 463 | ) |
| 464 | 464 | ), |
| 465 | 465 | 'misc' => apply_filters( |
| 466 | 466 | 'wpinv_settings_sections_misc', |
| 467 | 467 | array( |
| 468 | - 'main' => __( 'Miscellaneous', 'invoicing' ), |
|
| 469 | - 'custom-css' => __( 'Custom CSS', 'invoicing' ), |
|
| 468 | + 'main' => __( 'Miscellaneous', 'invoicing' ), |
|
| 469 | + 'custom-css' => __( 'Custom CSS', 'invoicing' ), |
|
| 470 | 470 | ) |
| 471 | 471 | ), |
| 472 | 472 | 'tools' => apply_filters( |
| 473 | 473 | 'wpinv_settings_sections_tools', |
| 474 | 474 | array( |
| 475 | - 'main' => __( 'Diagnostic Tools', 'invoicing' ), |
|
| 475 | + 'main' => __( 'Diagnostic Tools', 'invoicing' ), |
|
| 476 | 476 | ) |
| 477 | 477 | ), |
| 478 | 478 | ); |
@@ -483,46 +483,46 @@ discard block |
||
| 483 | 483 | } |
| 484 | 484 | |
| 485 | 485 | function wpinv_get_pages( $with_slug = false, $default_label = null ) { |
| 486 | - $pages_options = array(); |
|
| 486 | + $pages_options = array(); |
|
| 487 | 487 | |
| 488 | - if ( $default_label !== null && $default_label !== false ) { |
|
| 489 | - $pages_options = array( '' => $default_label ); // Blank option |
|
| 490 | - } |
|
| 488 | + if ( $default_label !== null && $default_label !== false ) { |
|
| 489 | + $pages_options = array( '' => $default_label ); // Blank option |
|
| 490 | + } |
|
| 491 | 491 | |
| 492 | - $pages = get_pages(); |
|
| 493 | - if ( $pages ) { |
|
| 494 | - foreach ( $pages as $page ) { |
|
| 495 | - $title = $with_slug ? $page->post_title . ' (' . $page->post_name . ')' : $page->post_title; |
|
| 492 | + $pages = get_pages(); |
|
| 493 | + if ( $pages ) { |
|
| 494 | + foreach ( $pages as $page ) { |
|
| 495 | + $title = $with_slug ? $page->post_title . ' (' . $page->post_name . ')' : $page->post_title; |
|
| 496 | 496 | $pages_options[ $page->ID ] = $title; |
| 497 | - } |
|
| 498 | - } |
|
| 497 | + } |
|
| 498 | + } |
|
| 499 | 499 | |
| 500 | - return $pages_options; |
|
| 500 | + return $pages_options; |
|
| 501 | 501 | } |
| 502 | 502 | |
| 503 | 503 | function wpinv_header_callback( $args ) { |
| 504 | - if ( ! empty( $args['desc'] ) ) { |
|
| 504 | + if ( ! empty( $args['desc'] ) ) { |
|
| 505 | 505 | echo wp_kses_post( $args['desc'] ); |
| 506 | 506 | } |
| 507 | 507 | } |
| 508 | 508 | |
| 509 | 509 | function wpinv_hidden_callback( $args ) { |
| 510 | 510 | |
| 511 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 512 | - $value = wpinv_get_option( $args['id'], $std ); |
|
| 511 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 512 | + $value = wpinv_get_option( $args['id'], $std ); |
|
| 513 | 513 | |
| 514 | - if ( isset( $args['set_value'] ) ) { |
|
| 515 | - $value = $args['set_value']; |
|
| 516 | - } |
|
| 514 | + if ( isset( $args['set_value'] ) ) { |
|
| 515 | + $value = $args['set_value']; |
|
| 516 | + } |
|
| 517 | 517 | |
| 518 | - if ( isset( $args['faux'] ) && true === $args['faux'] ) { |
|
| 519 | - $args['readonly'] = true; |
|
| 520 | - $name = ''; |
|
| 521 | - } else { |
|
| 522 | - $name = 'wpinv_settings[' . esc_attr( $args['id'] ) . ']'; |
|
| 523 | - } |
|
| 518 | + if ( isset( $args['faux'] ) && true === $args['faux'] ) { |
|
| 519 | + $args['readonly'] = true; |
|
| 520 | + $name = ''; |
|
| 521 | + } else { |
|
| 522 | + $name = 'wpinv_settings[' . esc_attr( $args['id'] ) . ']'; |
|
| 523 | + } |
|
| 524 | 524 | |
| 525 | - echo '<input type="hidden" id="wpinv_settings[' . esc_attr( $args['id'] ) . ']" name="' . esc_attr( $name ) . '" value="' . esc_attr( stripslashes( $value ) ) . '" />'; |
|
| 525 | + echo '<input type="hidden" id="wpinv_settings[' . esc_attr( $args['id'] ) . ']" name="' . esc_attr( $name ) . '" value="' . esc_attr( stripslashes( $value ) ) . '" />'; |
|
| 526 | 526 | |
| 527 | 527 | } |
| 528 | 528 | |
@@ -531,12 +531,12 @@ discard block |
||
| 531 | 531 | */ |
| 532 | 532 | function wpinv_checkbox_callback( $args ) { |
| 533 | 533 | |
| 534 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 535 | - $std = wpinv_get_option( $args['id'], $std ); |
|
| 536 | - $id = esc_attr( $args['id'] ); |
|
| 534 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 535 | + $std = wpinv_get_option( $args['id'], $std ); |
|
| 536 | + $id = esc_attr( $args['id'] ); |
|
| 537 | 537 | |
| 538 | - getpaid_hidden_field( "wpinv_settings[$id]", '0' ); |
|
| 539 | - ?> |
|
| 538 | + getpaid_hidden_field( "wpinv_settings[$id]", '0' ); |
|
| 539 | + ?> |
|
| 540 | 540 | <fieldset> |
| 541 | 541 | <label> |
| 542 | 542 | <input id="wpinv-settings-<?php echo esc_attr( $id ); ?>" name="wpinv_settings[<?php echo esc_attr( $id ); ?>]" <?php checked( empty( $std ), false ); ?> value="1" type="checkbox" /> |
@@ -548,75 +548,75 @@ discard block |
||
| 548 | 548 | |
| 549 | 549 | function wpinv_multicheck_callback( $args ) { |
| 550 | 550 | |
| 551 | - $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
|
| 552 | - $class = ! empty( $args['class'] ) ? ' ' . esc_attr( $args['class'] ) : ''; |
|
| 551 | + $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
|
| 552 | + $class = ! empty( $args['class'] ) ? ' ' . esc_attr( $args['class'] ) : ''; |
|
| 553 | 553 | |
| 554 | - if ( ! empty( $args['options'] ) ) { |
|
| 554 | + if ( ! empty( $args['options'] ) ) { |
|
| 555 | 555 | |
| 556 | - $std = isset( $args['std'] ) ? $args['std'] : array(); |
|
| 557 | - $value = wpinv_get_option( $args['id'], $std ); |
|
| 556 | + $std = isset( $args['std'] ) ? $args['std'] : array(); |
|
| 557 | + $value = wpinv_get_option( $args['id'], $std ); |
|
| 558 | 558 | |
| 559 | - echo '<div class="wpi-mcheck-rows wpi-mcheck-' . esc_attr( $sanitize_id . $class ) . '">'; |
|
| 559 | + echo '<div class="wpi-mcheck-rows wpi-mcheck-' . esc_attr( $sanitize_id . $class ) . '">'; |
|
| 560 | 560 | foreach ( $args['options'] as $key => $option ) : |
| 561 | - $sanitize_key = esc_attr( wpinv_sanitize_key( $key ) ); |
|
| 562 | - if ( in_array( $sanitize_key, $value ) ) { |
|
| 563 | - $enabled = $sanitize_key; |
|
| 564 | - } else { |
|
| 565 | - $enabled = null; |
|
| 566 | - } |
|
| 567 | - echo '<div class="wpi-mcheck-row"><input name="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" id="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" type="checkbox" value="' . esc_attr( $sanitize_key ) . '" ' . checked( $sanitize_key, $enabled, false ) . '/> '; |
|
| 568 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']">' . wp_kses_post( $option ) . '</label></div>'; |
|
| 569 | - endforeach; |
|
| 570 | - echo '</div>'; |
|
| 571 | - echo '<p class="description">' . wp_kses_post( $args['desc'] ) . '</p>'; |
|
| 572 | - } |
|
| 561 | + $sanitize_key = esc_attr( wpinv_sanitize_key( $key ) ); |
|
| 562 | + if ( in_array( $sanitize_key, $value ) ) { |
|
| 563 | + $enabled = $sanitize_key; |
|
| 564 | + } else { |
|
| 565 | + $enabled = null; |
|
| 566 | + } |
|
| 567 | + echo '<div class="wpi-mcheck-row"><input name="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" id="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" type="checkbox" value="' . esc_attr( $sanitize_key ) . '" ' . checked( $sanitize_key, $enabled, false ) . '/> '; |
|
| 568 | + echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']">' . wp_kses_post( $option ) . '</label></div>'; |
|
| 569 | + endforeach; |
|
| 570 | + echo '</div>'; |
|
| 571 | + echo '<p class="description">' . wp_kses_post( $args['desc'] ) . '</p>'; |
|
| 572 | + } |
|
| 573 | 573 | } |
| 574 | 574 | |
| 575 | 575 | function wpinv_payment_icons_callback( $args ) { |
| 576 | 576 | |
| 577 | 577 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
| 578 | - $value = wpinv_get_option( $args['id'], false ); |
|
| 578 | + $value = wpinv_get_option( $args['id'], false ); |
|
| 579 | 579 | |
| 580 | - if ( ! empty( $args['options'] ) ) { |
|
| 581 | - foreach ( $args['options'] as $key => $option ) { |
|
| 580 | + if ( ! empty( $args['options'] ) ) { |
|
| 581 | + foreach ( $args['options'] as $key => $option ) { |
|
| 582 | 582 | $sanitize_key = wpinv_sanitize_key( $key ); |
| 583 | 583 | |
| 584 | - if ( empty( $value ) ) { |
|
| 585 | - $enabled = $option; |
|
| 586 | - } else { |
|
| 587 | - $enabled = null; |
|
| 588 | - } |
|
| 589 | - |
|
| 590 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" style="margin-right:10px;line-height:16px;height:16px;display:inline-block;">'; |
|
| 591 | - |
|
| 592 | - echo '<input name="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" id="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" type="checkbox" value="' . esc_attr( $option ) . '" ' . checked( $option, $enabled, false ) . '/> '; |
|
| 593 | - |
|
| 594 | - if ( wpinv_string_is_image_url( $key ) ) { |
|
| 595 | - echo '<img class="payment-icon" src="' . esc_url( $key ) . '" style="width:32px;height:24px;position:relative;top:6px;margin-right:5px;"/>'; |
|
| 596 | - } else { |
|
| 597 | - $card = strtolower( str_replace( ' ', '', $option ) ); |
|
| 598 | - |
|
| 599 | - if ( has_filter( 'wpinv_accepted_payment_' . $card . '_image' ) ) { |
|
| 600 | - $image = apply_filters( 'wpinv_accepted_payment_' . $card . '_image', '' ); |
|
| 601 | - } else { |
|
| 602 | - $image = wpinv_locate_template( 'images' . DIRECTORY_SEPARATOR . 'icons' . DIRECTORY_SEPARATOR . $card . '.gif', false ); |
|
| 603 | - $content_dir = WP_CONTENT_DIR; |
|
| 604 | - |
|
| 605 | - if ( function_exists( 'wp_normalize_path' ) ) { |
|
| 606 | - // Replaces backslashes with forward slashes for Windows systems |
|
| 607 | - $image = wp_normalize_path( $image ); |
|
| 608 | - $content_dir = wp_normalize_path( $content_dir ); |
|
| 609 | - } |
|
| 610 | - |
|
| 611 | - $image = str_replace( $content_dir, content_url(), $image ); |
|
| 612 | - } |
|
| 613 | - |
|
| 614 | - echo '<img class="payment-icon" src="' . esc_url( $image ) . '" style="width:32px;height:24px;position:relative;top:6px;margin-right:5px;"/>'; |
|
| 615 | - } |
|
| 616 | - echo wp_kses_post( $option ) . '</label>'; |
|
| 617 | - } |
|
| 618 | - echo '<p class="description" style="margin-top:16px;">' . wp_kses_post( $args['desc'] ) . '</p>'; |
|
| 619 | - } |
|
| 584 | + if ( empty( $value ) ) { |
|
| 585 | + $enabled = $option; |
|
| 586 | + } else { |
|
| 587 | + $enabled = null; |
|
| 588 | + } |
|
| 589 | + |
|
| 590 | + echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" style="margin-right:10px;line-height:16px;height:16px;display:inline-block;">'; |
|
| 591 | + |
|
| 592 | + echo '<input name="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" id="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" type="checkbox" value="' . esc_attr( $option ) . '" ' . checked( $option, $enabled, false ) . '/> '; |
|
| 593 | + |
|
| 594 | + if ( wpinv_string_is_image_url( $key ) ) { |
|
| 595 | + echo '<img class="payment-icon" src="' . esc_url( $key ) . '" style="width:32px;height:24px;position:relative;top:6px;margin-right:5px;"/>'; |
|
| 596 | + } else { |
|
| 597 | + $card = strtolower( str_replace( ' ', '', $option ) ); |
|
| 598 | + |
|
| 599 | + if ( has_filter( 'wpinv_accepted_payment_' . $card . '_image' ) ) { |
|
| 600 | + $image = apply_filters( 'wpinv_accepted_payment_' . $card . '_image', '' ); |
|
| 601 | + } else { |
|
| 602 | + $image = wpinv_locate_template( 'images' . DIRECTORY_SEPARATOR . 'icons' . DIRECTORY_SEPARATOR . $card . '.gif', false ); |
|
| 603 | + $content_dir = WP_CONTENT_DIR; |
|
| 604 | + |
|
| 605 | + if ( function_exists( 'wp_normalize_path' ) ) { |
|
| 606 | + // Replaces backslashes with forward slashes for Windows systems |
|
| 607 | + $image = wp_normalize_path( $image ); |
|
| 608 | + $content_dir = wp_normalize_path( $content_dir ); |
|
| 609 | + } |
|
| 610 | + |
|
| 611 | + $image = str_replace( $content_dir, content_url(), $image ); |
|
| 612 | + } |
|
| 613 | + |
|
| 614 | + echo '<img class="payment-icon" src="' . esc_url( $image ) . '" style="width:32px;height:24px;position:relative;top:6px;margin-right:5px;"/>'; |
|
| 615 | + } |
|
| 616 | + echo wp_kses_post( $option ) . '</label>'; |
|
| 617 | + } |
|
| 618 | + echo '<p class="description" style="margin-top:16px;">' . wp_kses_post( $args['desc'] ) . '</p>'; |
|
| 619 | + } |
|
| 620 | 620 | } |
| 621 | 621 | |
| 622 | 622 | /** |
@@ -624,9 +624,9 @@ discard block |
||
| 624 | 624 | */ |
| 625 | 625 | function wpinv_radio_callback( $args ) { |
| 626 | 626 | |
| 627 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 628 | - $std = wpinv_get_option( $args['id'], $std ); |
|
| 629 | - ?> |
|
| 627 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 628 | + $std = wpinv_get_option( $args['id'], $std ); |
|
| 629 | + ?> |
|
| 630 | 630 | <fieldset> |
| 631 | 631 | <ul id="wpinv-settings-<?php echo esc_attr( $args['id'] ); ?>" style="margin-top: 0;"> |
| 632 | 632 | <?php foreach ( $args['options'] as $key => $option ) : ?> |
@@ -640,7 +640,7 @@ discard block |
||
| 640 | 640 | </ul> |
| 641 | 641 | </fieldset> |
| 642 | 642 | <?php |
| 643 | - getpaid_settings_description_callback( $args ); |
|
| 643 | + getpaid_settings_description_callback( $args ); |
|
| 644 | 644 | } |
| 645 | 645 | |
| 646 | 646 | /** |
@@ -648,10 +648,10 @@ discard block |
||
| 648 | 648 | */ |
| 649 | 649 | function getpaid_settings_description_callback( $args ) { |
| 650 | 650 | |
| 651 | - if ( ! empty( $args['desc'] ) ) { |
|
| 652 | - $description = $args['desc']; |
|
| 653 | - echo wp_kses_post( "<p class='description'>$description</p>" ); |
|
| 654 | - } |
|
| 651 | + if ( ! empty( $args['desc'] ) ) { |
|
| 652 | + $description = $args['desc']; |
|
| 653 | + echo wp_kses_post( "<p class='description'>$description</p>" ); |
|
| 654 | + } |
|
| 655 | 655 | |
| 656 | 656 | } |
| 657 | 657 | |
@@ -660,7 +660,7 @@ discard block |
||
| 660 | 660 | */ |
| 661 | 661 | function wpinv_gateways_callback() { |
| 662 | 662 | |
| 663 | - ?> |
|
| 663 | + ?> |
|
| 664 | 664 | </td> |
| 665 | 665 | </tr> |
| 666 | 666 | <tr class="bsui"> |
@@ -674,26 +674,26 @@ discard block |
||
| 674 | 674 | |
| 675 | 675 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
| 676 | 676 | $class = ! empty( $args['class'] ) ? ' ' . esc_attr( $args['class'] ) : ''; |
| 677 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 678 | - $value = wpinv_get_option( $args['id'], $std ); |
|
| 677 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 678 | + $value = wpinv_get_option( $args['id'], $std ); |
|
| 679 | 679 | |
| 680 | - echo '<select name="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" class="' . esc_attr( $class ) . '" >'; |
|
| 680 | + echo '<select name="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" class="' . esc_attr( $class ) . '" >'; |
|
| 681 | 681 | |
| 682 | - foreach ( $args['options'] as $key => $option ) : |
|
| 682 | + foreach ( $args['options'] as $key => $option ) : |
|
| 683 | 683 | |
| 684 | - echo '<option value="' . esc_attr( $key ) . '" '; |
|
| 684 | + echo '<option value="' . esc_attr( $key ) . '" '; |
|
| 685 | 685 | |
| 686 | - if ( isset( $args['selected'] ) && $args['selected'] !== null && $args['selected'] !== false ) { |
|
| 686 | + if ( isset( $args['selected'] ) && $args['selected'] !== null && $args['selected'] !== false ) { |
|
| 687 | 687 | selected( $key, $args['selected'] ); |
| 688 | 688 | } else { |
| 689 | 689 | selected( $key, $value ); |
| 690 | 690 | } |
| 691 | 691 | |
| 692 | - echo '>' . esc_html( $option['admin_label'] ) . '</option>'; |
|
| 693 | - endforeach; |
|
| 692 | + echo '>' . esc_html( $option['admin_label'] ) . '</option>'; |
|
| 693 | + endforeach; |
|
| 694 | 694 | |
| 695 | - echo '</select>'; |
|
| 696 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 695 | + echo '</select>'; |
|
| 696 | + echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 697 | 697 | } |
| 698 | 698 | |
| 699 | 699 | /** |
@@ -704,38 +704,38 @@ discard block |
||
| 704 | 704 | */ |
| 705 | 705 | function wpinv_settings_attrs_helper( $args ) { |
| 706 | 706 | |
| 707 | - $value = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 708 | - $id = esc_attr( $args['id'] ); |
|
| 709 | - $value = is_scalar( $value ) ? $value : ''; |
|
| 710 | - |
|
| 711 | - $attrs = array( |
|
| 712 | - 'name' => ! empty( $args['faux'] ) ? false : "wpinv_settings[$id]", |
|
| 713 | - 'readonly' => ! empty( $args['faux'] ), |
|
| 714 | - 'value' => ! empty( $args['faux'] ) ? $value : wpinv_get_option( $args['id'], $value ), |
|
| 715 | - 'id' => 'wpinv-settings-' . $args['id'], |
|
| 716 | - 'style' => $args['style'], |
|
| 717 | - 'class' => $args['class'], |
|
| 718 | - 'placeholder' => $args['placeholder'], |
|
| 719 | - 'data-placeholder' => $args['placeholder'], |
|
| 720 | - ); |
|
| 707 | + $value = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 708 | + $id = esc_attr( $args['id'] ); |
|
| 709 | + $value = is_scalar( $value ) ? $value : ''; |
|
| 710 | + |
|
| 711 | + $attrs = array( |
|
| 712 | + 'name' => ! empty( $args['faux'] ) ? false : "wpinv_settings[$id]", |
|
| 713 | + 'readonly' => ! empty( $args['faux'] ), |
|
| 714 | + 'value' => ! empty( $args['faux'] ) ? $value : wpinv_get_option( $args['id'], $value ), |
|
| 715 | + 'id' => 'wpinv-settings-' . $args['id'], |
|
| 716 | + 'style' => $args['style'], |
|
| 717 | + 'class' => $args['class'], |
|
| 718 | + 'placeholder' => $args['placeholder'], |
|
| 719 | + 'data-placeholder' => $args['placeholder'], |
|
| 720 | + ); |
|
| 721 | 721 | |
| 722 | - if ( ! empty( $args['onchange'] ) ) { |
|
| 723 | - $attrs['onchange'] = $args['onchange']; |
|
| 724 | - } |
|
| 722 | + if ( ! empty( $args['onchange'] ) ) { |
|
| 723 | + $attrs['onchange'] = $args['onchange']; |
|
| 724 | + } |
|
| 725 | 725 | |
| 726 | - foreach ( $attrs as $key => $value ) { |
|
| 726 | + foreach ( $attrs as $key => $value ) { |
|
| 727 | 727 | |
| 728 | - if ( false === $value ) { |
|
| 729 | - continue; |
|
| 730 | - } |
|
| 728 | + if ( false === $value ) { |
|
| 729 | + continue; |
|
| 730 | + } |
|
| 731 | 731 | |
| 732 | - if ( true === $value ) { |
|
| 733 | - echo ' ' . esc_attr( $key ); |
|
| 734 | - } else { |
|
| 735 | - echo ' ' . esc_attr( $key ) . '="' . esc_attr( $value ) . '"'; |
|
| 736 | - } |
|
| 732 | + if ( true === $value ) { |
|
| 733 | + echo ' ' . esc_attr( $key ); |
|
| 734 | + } else { |
|
| 735 | + echo ' ' . esc_attr( $key ) . '="' . esc_attr( $value ) . '"'; |
|
| 736 | + } |
|
| 737 | 737 | |
| 738 | - } |
|
| 738 | + } |
|
| 739 | 739 | |
| 740 | 740 | } |
| 741 | 741 | |
@@ -744,7 +744,7 @@ discard block |
||
| 744 | 744 | */ |
| 745 | 745 | function wpinv_text_callback( $args ) { |
| 746 | 746 | |
| 747 | - ?> |
|
| 747 | + ?> |
|
| 748 | 748 | <label style="width: 100%;"> |
| 749 | 749 | <input type="text" <?php wpinv_settings_attrs_helper( $args ); ?>> |
| 750 | 750 | <?php getpaid_settings_description_callback( $args ); ?> |
@@ -758,7 +758,7 @@ discard block |
||
| 758 | 758 | */ |
| 759 | 759 | function wpinv_number_callback( $args ) { |
| 760 | 760 | |
| 761 | - ?> |
|
| 761 | + ?> |
|
| 762 | 762 | <label style="width: 100%;"> |
| 763 | 763 | <input type="number" step="<?php echo esc_attr( $args['step'] ); ?>" max="<?php echo intval( $args['max'] ); ?>" min="<?php echo intval( $args['min'] ); ?>" <?php wpinv_settings_attrs_helper( $args ); ?>> |
| 764 | 764 | <?php getpaid_settings_description_callback( $args ); ?> |
@@ -770,34 +770,34 @@ discard block |
||
| 770 | 770 | function wpinv_textarea_callback( $args ) { |
| 771 | 771 | |
| 772 | 772 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
| 773 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 774 | - $value = wpinv_get_option( $args['id'], $std ); |
|
| 773 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 774 | + $value = wpinv_get_option( $args['id'], $std ); |
|
| 775 | 775 | |
| 776 | 776 | $size = ( isset( $args['size'] ) && ! is_null( $args['size'] ) ) ? $args['size'] : 'regular'; |
| 777 | 777 | $class = ( isset( $args['class'] ) && ! is_null( $args['class'] ) ) ? $args['class'] : 'large-text'; |
| 778 | 778 | |
| 779 | - echo '<textarea class="' . esc_attr( $class ) . ' txtarea-' . esc_attr( $size ) . ' wpi-' . esc_attr( sanitize_html_class( $sanitize_id ) ) . ' " cols="' . esc_attr( $args['cols'] ) . '" rows="' . esc_attr( $args['rows'] ) . '" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']">' . esc_textarea( stripslashes( $value ) ) . '</textarea>'; |
|
| 780 | - echo '<br /><label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 779 | + echo '<textarea class="' . esc_attr( $class ) . ' txtarea-' . esc_attr( $size ) . ' wpi-' . esc_attr( sanitize_html_class( $sanitize_id ) ) . ' " cols="' . esc_attr( $args['cols'] ) . '" rows="' . esc_attr( $args['rows'] ) . '" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']">' . esc_textarea( stripslashes( $value ) ) . '</textarea>'; |
|
| 780 | + echo '<br /><label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 781 | 781 | |
| 782 | 782 | } |
| 783 | 783 | |
| 784 | 784 | function wpinv_password_callback( $args ) { |
| 785 | 785 | |
| 786 | 786 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
| 787 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 788 | - $value = wpinv_get_option( $args['id'], $std ); |
|
| 787 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 788 | + $value = wpinv_get_option( $args['id'], $std ); |
|
| 789 | 789 | |
| 790 | - $size = ( isset( $args['size'] ) && ! is_null( $args['size'] ) ) ? $args['size'] : 'regular'; |
|
| 791 | - echo '<input type="password" class="' . esc_attr( $size ) . '-text" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" value="' . esc_attr( $value ) . '"/>'; |
|
| 792 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 790 | + $size = ( isset( $args['size'] ) && ! is_null( $args['size'] ) ) ? $args['size'] : 'regular'; |
|
| 791 | + echo '<input type="password" class="' . esc_attr( $size ) . '-text" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" value="' . esc_attr( $value ) . '"/>'; |
|
| 792 | + echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 793 | 793 | |
| 794 | 794 | } |
| 795 | 795 | |
| 796 | 796 | function wpinv_missing_callback( $args ) { |
| 797 | - printf( |
|
| 798 | - esc_html__( 'The callback function used for the %s setting is missing.', 'invoicing' ), |
|
| 799 | - '<strong>' . esc_html( $args['id'] ) . '</strong>' |
|
| 800 | - ); |
|
| 797 | + printf( |
|
| 798 | + esc_html__( 'The callback function used for the %s setting is missing.', 'invoicing' ), |
|
| 799 | + '<strong>' . esc_html( $args['id'] ) . '</strong>' |
|
| 800 | + ); |
|
| 801 | 801 | } |
| 802 | 802 | |
| 803 | 803 | /** |
@@ -805,13 +805,13 @@ discard block |
||
| 805 | 805 | */ |
| 806 | 806 | function wpinv_select_callback( $args ) { |
| 807 | 807 | |
| 808 | - $desc = wp_kses_post( $args['desc'] ); |
|
| 809 | - $desc = empty( $desc ) ? '' : "<p class='description'>$desc</p>"; |
|
| 810 | - $value = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 811 | - $value = wpinv_get_option( $args['id'], $value ); |
|
| 812 | - $rand = uniqid( 'random_id' ); |
|
| 808 | + $desc = wp_kses_post( $args['desc'] ); |
|
| 809 | + $desc = empty( $desc ) ? '' : "<p class='description'>$desc</p>"; |
|
| 810 | + $value = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 811 | + $value = wpinv_get_option( $args['id'], $value ); |
|
| 812 | + $rand = uniqid( 'random_id' ); |
|
| 813 | 813 | |
| 814 | - ?> |
|
| 814 | + ?> |
|
| 815 | 815 | <label style="width: 100%;"> |
| 816 | 816 | <select <?php wpinv_settings_attrs_helper( $args ); ?> data-allow-clear="true"> |
| 817 | 817 | <?php foreach ( $args['options'] as $option => $name ) : ?> |
@@ -844,50 +844,50 @@ discard block |
||
| 844 | 844 | function wpinv_color_select_callback( $args ) { |
| 845 | 845 | |
| 846 | 846 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
| 847 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 848 | - $value = wpinv_get_option( $args['id'], $std ); |
|
| 847 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 848 | + $value = wpinv_get_option( $args['id'], $std ); |
|
| 849 | 849 | |
| 850 | - echo '<select id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']"/>'; |
|
| 850 | + echo '<select id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']"/>'; |
|
| 851 | 851 | |
| 852 | - foreach ( $args['options'] as $option => $color ) { |
|
| 853 | - echo '<option value="' . esc_attr( $option ) . '" ' . selected( $option, $value ) . '>' . esc_html( $color['label'] ) . '</option>'; |
|
| 854 | - } |
|
| 852 | + foreach ( $args['options'] as $option => $color ) { |
|
| 853 | + echo '<option value="' . esc_attr( $option ) . '" ' . selected( $option, $value ) . '>' . esc_html( $color['label'] ) . '</option>'; |
|
| 854 | + } |
|
| 855 | 855 | |
| 856 | - echo '</select>'; |
|
| 857 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 856 | + echo '</select>'; |
|
| 857 | + echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 858 | 858 | |
| 859 | 859 | } |
| 860 | 860 | |
| 861 | 861 | function wpinv_rich_editor_callback( $args ) { |
| 862 | - global $wp_version; |
|
| 862 | + global $wp_version; |
|
| 863 | 863 | |
| 864 | 864 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
| 865 | 865 | |
| 866 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 867 | - $value = wpinv_get_option( $args['id'], $std ); |
|
| 866 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 867 | + $value = wpinv_get_option( $args['id'], $std ); |
|
| 868 | 868 | |
| 869 | - if ( ! empty( $args['allow_blank'] ) && empty( $value ) ) { |
|
| 870 | - $value = $std; |
|
| 871 | - } |
|
| 869 | + if ( ! empty( $args['allow_blank'] ) && empty( $value ) ) { |
|
| 870 | + $value = $std; |
|
| 871 | + } |
|
| 872 | 872 | |
| 873 | - $rows = isset( $args['size'] ) ? $args['size'] : 20; |
|
| 873 | + $rows = isset( $args['size'] ) ? $args['size'] : 20; |
|
| 874 | 874 | |
| 875 | - echo '<div class="getpaid-settings-editor-input">'; |
|
| 876 | - if ( $wp_version >= 3.3 && function_exists( 'wp_editor' ) ) { |
|
| 877 | - wp_editor( |
|
| 875 | + echo '<div class="getpaid-settings-editor-input">'; |
|
| 876 | + if ( $wp_version >= 3.3 && function_exists( 'wp_editor' ) ) { |
|
| 877 | + wp_editor( |
|
| 878 | 878 | stripslashes( $value ), |
| 879 | 879 | 'wpinv_settings_' . esc_attr( $args['id'] ), |
| 880 | 880 | array( |
| 881 | - 'textarea_name' => 'wpinv_settings[' . esc_attr( $args['id'] ) . ']', |
|
| 882 | - 'textarea_rows' => absint( $rows ), |
|
| 883 | - 'media_buttons' => false, |
|
| 881 | + 'textarea_name' => 'wpinv_settings[' . esc_attr( $args['id'] ) . ']', |
|
| 882 | + 'textarea_rows' => absint( $rows ), |
|
| 883 | + 'media_buttons' => false, |
|
| 884 | 884 | ) |
| 885 | 885 | ); |
| 886 | - } else { |
|
| 887 | - echo '<textarea class="large-text" rows="10" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" class="wpi-' . esc_attr( sanitize_html_class( $args['id'] ) ) . '">' . esc_textarea( stripslashes( $value ) ) . '</textarea>'; |
|
| 888 | - } |
|
| 886 | + } else { |
|
| 887 | + echo '<textarea class="large-text" rows="10" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" class="wpi-' . esc_attr( sanitize_html_class( $args['id'] ) ) . '">' . esc_textarea( stripslashes( $value ) ) . '</textarea>'; |
|
| 888 | + } |
|
| 889 | 889 | |
| 890 | - echo '</div><br/><label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 890 | + echo '</div><br/><label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 891 | 891 | |
| 892 | 892 | } |
| 893 | 893 | |
@@ -895,51 +895,51 @@ discard block |
||
| 895 | 895 | |
| 896 | 896 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
| 897 | 897 | |
| 898 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 899 | - $value = wpinv_get_option( $args['id'], $std ); |
|
| 898 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 899 | + $value = wpinv_get_option( $args['id'], $std ); |
|
| 900 | 900 | |
| 901 | - $size = ( isset( $args['size'] ) && ! is_null( $args['size'] ) ) ? $args['size'] : 'regular'; |
|
| 902 | - echo '<input type="text" class="' . sanitize_html_class( $size ) . '-text" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" value="' . esc_attr( stripslashes( $value ) ) . '"/>'; |
|
| 903 | - echo '<span> <input type="button" class="wpinv_settings_upload_button button-secondary" value="' . esc_attr__( 'Upload File', 'invoicing' ) . '"/></span>'; |
|
| 904 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 901 | + $size = ( isset( $args['size'] ) && ! is_null( $args['size'] ) ) ? $args['size'] : 'regular'; |
|
| 902 | + echo '<input type="text" class="' . sanitize_html_class( $size ) . '-text" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" value="' . esc_attr( stripslashes( $value ) ) . '"/>'; |
|
| 903 | + echo '<span> <input type="button" class="wpinv_settings_upload_button button-secondary" value="' . esc_attr__( 'Upload File', 'invoicing' ) . '"/></span>'; |
|
| 904 | + echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 905 | 905 | |
| 906 | 906 | } |
| 907 | 907 | |
| 908 | 908 | function wpinv_color_callback( $args ) { |
| 909 | 909 | |
| 910 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 911 | - $value = wpinv_get_option( $args['id'], $std ); |
|
| 910 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 911 | + $value = wpinv_get_option( $args['id'], $std ); |
|
| 912 | 912 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
| 913 | 913 | |
| 914 | - echo '<input type="text" class="wpinv-color-picker" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" value="' . esc_attr( $value ) . '" data-default-color="' . esc_attr( $std ) . '" />'; |
|
| 915 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 914 | + echo '<input type="text" class="wpinv-color-picker" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" value="' . esc_attr( $value ) . '" data-default-color="' . esc_attr( $std ) . '" />'; |
|
| 915 | + echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 916 | 916 | |
| 917 | 917 | } |
| 918 | 918 | |
| 919 | 919 | function wpinv_country_states_callback( $args ) { |
| 920 | 920 | |
| 921 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 922 | - $value = wpinv_get_option( $args['id'], $std ); |
|
| 921 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 922 | + $value = wpinv_get_option( $args['id'], $std ); |
|
| 923 | 923 | |
| 924 | 924 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
| 925 | 925 | |
| 926 | - if ( isset( $args['placeholder'] ) ) { |
|
| 927 | - $placeholder = $args['placeholder']; |
|
| 928 | - } else { |
|
| 929 | - $placeholder = ''; |
|
| 930 | - } |
|
| 926 | + if ( isset( $args['placeholder'] ) ) { |
|
| 927 | + $placeholder = $args['placeholder']; |
|
| 928 | + } else { |
|
| 929 | + $placeholder = ''; |
|
| 930 | + } |
|
| 931 | 931 | |
| 932 | - $states = wpinv_get_country_states(); |
|
| 932 | + $states = wpinv_get_country_states(); |
|
| 933 | 933 | |
| 934 | - $class = empty( $states ) ? 'wpinv-no-states' : 'wpi_select2'; |
|
| 935 | - echo '<select id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" class="' . esc_attr( $class ) . '" data-placeholder="' . esc_html( $placeholder ) . '"/>'; |
|
| 934 | + $class = empty( $states ) ? 'wpinv-no-states' : 'wpi_select2'; |
|
| 935 | + echo '<select id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" class="' . esc_attr( $class ) . '" data-placeholder="' . esc_html( $placeholder ) . '"/>'; |
|
| 936 | 936 | |
| 937 | - foreach ( $states as $option => $name ) { |
|
| 938 | - echo '<option value="' . esc_attr( $option ) . '" ' . selected( $option, $value ) . '>' . esc_html( $name ) . '</option>'; |
|
| 939 | - } |
|
| 937 | + foreach ( $states as $option => $name ) { |
|
| 938 | + echo '<option value="' . esc_attr( $option ) . '" ' . selected( $option, $value ) . '>' . esc_html( $name ) . '</option>'; |
|
| 939 | + } |
|
| 940 | 940 | |
| 941 | - echo '</select>'; |
|
| 942 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 941 | + echo '</select>'; |
|
| 942 | + echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 943 | 943 | |
| 944 | 944 | } |
| 945 | 945 | |
@@ -948,7 +948,7 @@ discard block |
||
| 948 | 948 | */ |
| 949 | 949 | function wpinv_tax_rates_callback() { |
| 950 | 950 | |
| 951 | - ?> |
|
| 951 | + ?> |
|
| 952 | 952 | </td> |
| 953 | 953 | </tr> |
| 954 | 954 | <tr class="bsui"> |
@@ -964,9 +964,9 @@ discard block |
||
| 964 | 964 | */ |
| 965 | 965 | function wpinv_tax_rate_callback( $tax_rate, $key ) { |
| 966 | 966 | |
| 967 | - $key = sanitize_key( $key ); |
|
| 968 | - $tax_rate['reduced_rate'] = empty( $tax_rate['reduced_rate'] ) ? 0 : $tax_rate['reduced_rate']; |
|
| 969 | - include plugin_dir_path( __FILE__ ) . 'views/html-tax-rate-edit.php'; |
|
| 967 | + $key = sanitize_key( $key ); |
|
| 968 | + $tax_rate['reduced_rate'] = empty( $tax_rate['reduced_rate'] ) ? 0 : $tax_rate['reduced_rate']; |
|
| 969 | + include plugin_dir_path( __FILE__ ) . 'views/html-tax-rate-edit.php'; |
|
| 970 | 970 | |
| 971 | 971 | } |
| 972 | 972 | |
@@ -975,7 +975,7 @@ discard block |
||
| 975 | 975 | */ |
| 976 | 976 | function wpinv_tax_rules_callback() { |
| 977 | 977 | |
| 978 | - ?> |
|
| 978 | + ?> |
|
| 979 | 979 | </td> |
| 980 | 980 | </tr> |
| 981 | 981 | <tr class="bsui"> |
@@ -1013,14 +1013,14 @@ discard block |
||
| 1013 | 1013 | <td> |
| 1014 | 1014 | <a href=" |
| 1015 | 1015 | <?php |
| 1016 | - echo esc_url( |
|
| 1017 | - wp_nonce_url( |
|
| 1018 | - add_query_arg( 'getpaid-admin-action', 'create_missing_pages' ), |
|
| 1019 | - 'getpaid-nonce', |
|
| 1020 | - 'getpaid-nonce' |
|
| 1021 | - ) |
|
| 1022 | - ); |
|
| 1023 | - ?> |
|
| 1016 | + echo esc_url( |
|
| 1017 | + wp_nonce_url( |
|
| 1018 | + add_query_arg( 'getpaid-admin-action', 'create_missing_pages' ), |
|
| 1019 | + 'getpaid-nonce', |
|
| 1020 | + 'getpaid-nonce' |
|
| 1021 | + ) |
|
| 1022 | + ); |
|
| 1023 | + ?> |
|
| 1024 | 1024 | " class="button button-primary"><?php esc_html_e( 'Run', 'invoicing' ); ?></a> |
| 1025 | 1025 | </td> |
| 1026 | 1026 | </tr> |
@@ -1032,14 +1032,14 @@ discard block |
||
| 1032 | 1032 | <td> |
| 1033 | 1033 | <a href=" |
| 1034 | 1034 | <?php |
| 1035 | - echo esc_url( |
|
| 1036 | - wp_nonce_url( |
|
| 1037 | - add_query_arg( 'getpaid-admin-action', 'refresh_permalinks' ), |
|
| 1038 | - 'getpaid-nonce', |
|
| 1039 | - 'getpaid-nonce' |
|
| 1040 | - ) |
|
| 1041 | - ); |
|
| 1042 | - ?> |
|
| 1035 | + echo esc_url( |
|
| 1036 | + wp_nonce_url( |
|
| 1037 | + add_query_arg( 'getpaid-admin-action', 'refresh_permalinks' ), |
|
| 1038 | + 'getpaid-nonce', |
|
| 1039 | + 'getpaid-nonce' |
|
| 1040 | + ) |
|
| 1041 | + ); |
|
| 1042 | + ?> |
|
| 1043 | 1043 | " class="button button-primary"><?php esc_html_e( 'Run', 'invoicing' ); ?></a> |
| 1044 | 1044 | </td> |
| 1045 | 1045 | </tr> |
@@ -1051,14 +1051,14 @@ discard block |
||
| 1051 | 1051 | <td> |
| 1052 | 1052 | <a href=" |
| 1053 | 1053 | <?php |
| 1054 | - echo esc_url( |
|
| 1055 | - wp_nonce_url( |
|
| 1056 | - add_query_arg( 'getpaid-admin-action', 'create_missing_tables' ), |
|
| 1057 | - 'getpaid-nonce', |
|
| 1058 | - 'getpaid-nonce' |
|
| 1059 | - ) |
|
| 1060 | - ); |
|
| 1061 | - ?> |
|
| 1054 | + echo esc_url( |
|
| 1055 | + wp_nonce_url( |
|
| 1056 | + add_query_arg( 'getpaid-admin-action', 'create_missing_tables' ), |
|
| 1057 | + 'getpaid-nonce', |
|
| 1058 | + 'getpaid-nonce' |
|
| 1059 | + ) |
|
| 1060 | + ); |
|
| 1061 | + ?> |
|
| 1062 | 1062 | " class="button button-primary"><?php esc_html_e( 'Run', 'invoicing' ); ?></a> |
| 1063 | 1063 | </td> |
| 1064 | 1064 | </tr> |
@@ -1070,14 +1070,14 @@ discard block |
||
| 1070 | 1070 | <td> |
| 1071 | 1071 | <a href=" |
| 1072 | 1072 | <?php |
| 1073 | - echo esc_url( |
|
| 1074 | - wp_nonce_url( |
|
| 1075 | - add_query_arg( 'getpaid-admin-action', 'migrate_old_invoices' ), |
|
| 1076 | - 'getpaid-nonce', |
|
| 1077 | - 'getpaid-nonce' |
|
| 1078 | - ) |
|
| 1079 | - ); |
|
| 1080 | - ?> |
|
| 1073 | + echo esc_url( |
|
| 1074 | + wp_nonce_url( |
|
| 1075 | + add_query_arg( 'getpaid-admin-action', 'migrate_old_invoices' ), |
|
| 1076 | + 'getpaid-nonce', |
|
| 1077 | + 'getpaid-nonce' |
|
| 1078 | + ) |
|
| 1079 | + ); |
|
| 1080 | + ?> |
|
| 1081 | 1081 | " class="button button-primary"><?php esc_html_e( 'Run', 'invoicing' ); ?></a> |
| 1082 | 1082 | </td> |
| 1083 | 1083 | </tr> |
@@ -1090,14 +1090,14 @@ discard block |
||
| 1090 | 1090 | <td> |
| 1091 | 1091 | <a href=" |
| 1092 | 1092 | <?php |
| 1093 | - echo esc_url( |
|
| 1094 | - wp_nonce_url( |
|
| 1095 | - add_query_arg( 'getpaid-admin-action', 'recalculate_discounts' ), |
|
| 1096 | - 'getpaid-nonce', |
|
| 1097 | - 'getpaid-nonce' |
|
| 1098 | - ) |
|
| 1099 | - ); |
|
| 1100 | - ?> |
|
| 1093 | + echo esc_url( |
|
| 1094 | + wp_nonce_url( |
|
| 1095 | + add_query_arg( 'getpaid-admin-action', 'recalculate_discounts' ), |
|
| 1096 | + 'getpaid-nonce', |
|
| 1097 | + 'getpaid-nonce' |
|
| 1098 | + ) |
|
| 1099 | + ); |
|
| 1100 | + ?> |
|
| 1101 | 1101 | " class="button button-primary"><?php esc_html_e( 'Run', 'invoicing' ); ?></a> |
| 1102 | 1102 | </td> |
| 1103 | 1103 | </tr> |
@@ -1110,8 +1110,8 @@ discard block |
||
| 1110 | 1110 | <td> |
| 1111 | 1111 | <a href=" |
| 1112 | 1112 | <?php |
| 1113 | - echo esc_url( admin_url( 'index.php?page=gp-setup' ) ); |
|
| 1114 | - ?> |
|
| 1113 | + echo esc_url( admin_url( 'index.php?page=gp-setup' ) ); |
|
| 1114 | + ?> |
|
| 1115 | 1115 | " class="button button-primary"><?php esc_html_e( 'Launch', 'invoicing' ); ?></a> |
| 1116 | 1116 | </td> |
| 1117 | 1117 | </tr> |
@@ -1125,19 +1125,19 @@ discard block |
||
| 1125 | 1125 | |
| 1126 | 1126 | |
| 1127 | 1127 | function wpinv_descriptive_text_callback( $args ) { |
| 1128 | - echo wp_kses_post( $args['desc'] ); |
|
| 1128 | + echo wp_kses_post( $args['desc'] ); |
|
| 1129 | 1129 | } |
| 1130 | 1130 | |
| 1131 | 1131 | function wpinv_raw_html_callback( $args ) { |
| 1132 | - echo wp_kses( $args['desc'], getpaid_allowed_html() ); |
|
| 1132 | + echo wp_kses( $args['desc'], getpaid_allowed_html() ); |
|
| 1133 | 1133 | } |
| 1134 | 1134 | |
| 1135 | 1135 | function wpinv_hook_callback( $args ) { |
| 1136 | - do_action( 'wpinv_' . $args['id'], $args ); |
|
| 1136 | + do_action( 'wpinv_' . $args['id'], $args ); |
|
| 1137 | 1137 | } |
| 1138 | 1138 | |
| 1139 | 1139 | function wpinv_set_settings_cap() { |
| 1140 | - return wpinv_get_capability(); |
|
| 1140 | + return wpinv_get_capability(); |
|
| 1141 | 1141 | } |
| 1142 | 1142 | add_filter( 'option_page_capability_wpinv_settings', 'wpinv_set_settings_cap' ); |
| 1143 | 1143 | |
@@ -1161,15 +1161,15 @@ discard block |
||
| 1161 | 1161 | */ |
| 1162 | 1162 | function wpinv_get_merge_tags_help_text( $subscription = false ) { |
| 1163 | 1163 | |
| 1164 | - $url = $subscription ? 'https://gist.github.com/picocodes/3d213982d57c34edf7a46fd3f0e8583e' : 'https://gist.github.com/picocodes/43bdc4d4bbba844534b2722e2af0b58f'; |
|
| 1165 | - $link = sprintf( |
|
| 1166 | - '<strong><a href="%s" target="_blank">%s</a></strong>', |
|
| 1167 | - $url, |
|
| 1168 | - esc_html__( 'View available merge tags.', 'invoicing' ) |
|
| 1169 | - ); |
|
| 1164 | + $url = $subscription ? 'https://gist.github.com/picocodes/3d213982d57c34edf7a46fd3f0e8583e' : 'https://gist.github.com/picocodes/43bdc4d4bbba844534b2722e2af0b58f'; |
|
| 1165 | + $link = sprintf( |
|
| 1166 | + '<strong><a href="%s" target="_blank">%s</a></strong>', |
|
| 1167 | + $url, |
|
| 1168 | + esc_html__( 'View available merge tags.', 'invoicing' ) |
|
| 1169 | + ); |
|
| 1170 | 1170 | |
| 1171 | - $description = esc_html__( 'The content of the email (Merge Tags and HTML are allowed).', 'invoicing' ); |
|
| 1171 | + $description = esc_html__( 'The content of the email (Merge Tags and HTML are allowed).', 'invoicing' ); |
|
| 1172 | 1172 | |
| 1173 | - return "$description $link"; |
|
| 1173 | + return "$description $link"; |
|
| 1174 | 1174 | |
| 1175 | 1175 | } |
@@ -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.20' ); |
|
| 26 | + define( 'WPINV_VERSION', '2.6.20' ); |
|
| 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 | /** |