@@ -20,13 +20,13 @@ |
||
| 20 | 20 | <title><?php esc_html_e( 'GetPaid › Setup Wizard', 'invoicing' ); ?></title> |
| 21 | 21 | <?php |
| 22 | 22 | getpaid_admin()->enqeue_scripts(); |
| 23 | - wp_enqueue_style( 'font-awesome', 'https://use.fontawesome.com/releases/v5.13.0/css/all.css', array(), 'v5.13.0' ); |
|
| 24 | - wp_print_styles( 'select2' ); |
|
| 23 | + wp_enqueue_style( 'font-awesome', 'https://use.fontawesome.com/releases/v5.13.0/css/all.css', array(), 'v5.13.0' ); |
|
| 24 | + wp_print_styles( 'select2' ); |
|
| 25 | 25 | wp_print_scripts( 'select2' ); |
| 26 | - wp_print_scripts( 'wpinv-admin-script' ); |
|
| 26 | + wp_print_scripts( 'wpinv-admin-script' ); |
|
| 27 | 27 | do_action( 'admin_print_styles' ); |
| 28 | 28 | do_action( 'admin_head' ); |
| 29 | - ?> |
|
| 29 | + ?> |
|
| 30 | 30 | <style> |
| 31 | 31 | body, p{ |
| 32 | 32 | font-size: 16px; |
@@ -57,8 +57,8 @@ discard block |
||
| 57 | 57 | 'getpaid-nonce', |
| 58 | 58 | 'getpaid-nonce' |
| 59 | 59 | ); |
| 60 | - $anchor = __( 'Deactivate', 'invoicing' ); |
|
| 61 | - $title = esc_attr__( 'Are you sure you want to deactivate this discount?', 'invoicing' ); |
|
| 60 | + $anchor = __( 'Deactivate', 'invoicing' ); |
|
| 61 | + $title = esc_attr__( 'Are you sure you want to deactivate this discount?', 'invoicing' ); |
|
| 62 | 62 | $row_actions['deactivate'] = "<a href='$url' onclick='return confirm(\"$title\")'>$anchor</a>"; |
| 63 | 63 | |
| 64 | 64 | } else if( in_array( strtolower( $discount->post_status ), array( 'pending', 'draft' ) ) ) { |
@@ -73,8 +73,8 @@ discard block |
||
| 73 | 73 | 'getpaid-nonce', |
| 74 | 74 | 'getpaid-nonce' |
| 75 | 75 | ); |
| 76 | - $anchor = __( 'Activate', 'invoicing' ); |
|
| 77 | - $title = esc_attr__( 'Are you sure you want to activate this discount?', 'invoicing' ); |
|
| 76 | + $anchor = __( 'Activate', 'invoicing' ); |
|
| 77 | + $title = esc_attr__( 'Are you sure you want to activate this discount?', 'invoicing' ); |
|
| 78 | 78 | $row_actions['activate'] = "<a href='$url' onclick='return confirm(\"$title\")'>$anchor</a>"; |
| 79 | 79 | |
| 80 | 80 | } |
@@ -91,8 +91,8 @@ discard block |
||
| 91 | 91 | 'getpaid-nonce' |
| 92 | 92 | ) |
| 93 | 93 | ); |
| 94 | - $anchor = __( 'Delete', 'invoicing' ); |
|
| 95 | - $title = esc_attr__( 'Are you sure you want to delete this discount?', 'invoicing' ); |
|
| 94 | + $anchor = __( 'Delete', 'invoicing' ); |
|
| 95 | + $title = esc_attr__( 'Are you sure you want to delete this discount?', 'invoicing' ); |
|
| 96 | 96 | $row_actions['delete'] = "<a href='$url' onclick='return confirm(\"$title\")'>$anchor</a>"; |
| 97 | 97 | |
| 98 | 98 | $row_actions = apply_filters( 'wpinv_discount_row_actions', $row_actions, $discount ); |
@@ -8,7 +8,7 @@ discard block |
||
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | 10 | if ( ! defined( 'ABSPATH' ) ) { |
| 11 | - exit; // Exit if accessed directly |
|
| 11 | + exit; // Exit if accessed directly |
|
| 12 | 12 | } |
| 13 | 13 | |
| 14 | 14 | /** |
@@ -319,10 +319,10 @@ discard block |
||
| 319 | 319 | } |
| 320 | 320 | |
| 321 | 321 | /** |
| 322 | - * Output the metabox. |
|
| 323 | - * |
|
| 324 | - * @param WP_Post $post |
|
| 325 | - */ |
|
| 322 | + * Output the metabox. |
|
| 323 | + * |
|
| 324 | + * @param WP_Post $post |
|
| 325 | + */ |
|
| 326 | 326 | public static function output2( $post ) { |
| 327 | 327 | |
| 328 | 328 | // Prepare the invoice. |
@@ -15,12 +15,12 @@ discard block |
||
| 15 | 15 | */ |
| 16 | 16 | |
| 17 | 17 | if ( ! defined( 'ABSPATH' ) ) { |
| 18 | - exit; |
|
| 18 | + exit; |
|
| 19 | 19 | } |
| 20 | 20 | |
| 21 | 21 | if ( ! class_exists( 'AyeCode_Deactivation_Survey' ) ) { |
| 22 | - // include the class if needed |
|
| 23 | - include_once( dirname( __FILE__ ) . "/wp-deactivation-survey.php" ); |
|
| 22 | + // include the class if needed |
|
| 23 | + include_once( dirname( __FILE__ ) . "/wp-deactivation-survey.php" ); |
|
| 24 | 24 | } |
| 25 | 25 | |
| 26 | 26 | |
@@ -36,6 +36,6 @@ discard block |
||
| 36 | 36 | //}); |
| 37 | 37 | |
| 38 | 38 | AyeCode_Deactivation_Survey::instance(array( |
| 39 | - 'slug' => 'ayecode-deactivation-survey-testing', |
|
| 40 | - 'version' => '1.0.0' |
|
| 39 | + 'slug' => 'ayecode-deactivation-survey-testing', |
|
| 40 | + 'version' => '1.0.0' |
|
| 41 | 41 | )); |
| 42 | 42 | \ No newline at end of file |
@@ -20,228 +20,228 @@ discard block |
||
| 20 | 20 | */ |
| 21 | 21 | class GetPaid_Installer { |
| 22 | 22 | |
| 23 | - /** |
|
| 24 | - * Upgrades the install. |
|
| 25 | - * |
|
| 26 | - * @param string $upgrade_from The current invoicing version. |
|
| 27 | - */ |
|
| 28 | - public function upgrade_db( $upgrade_from ) { |
|
| 29 | - |
|
| 30 | - // Save the current invoicing version. |
|
| 31 | - update_option( 'wpinv_version', WPINV_VERSION ); |
|
| 32 | - |
|
| 33 | - // Setup the invoice Custom Post Type. |
|
| 34 | - GetPaid_Post_Types::register_post_types(); |
|
| 35 | - |
|
| 36 | - // Clear the permalinks |
|
| 37 | - flush_rewrite_rules(); |
|
| 38 | - |
|
| 39 | - // Maybe create new/missing pages. |
|
| 40 | - $this->create_pages(); |
|
| 41 | - |
|
| 42 | - // Maybe re(add) admin capabilities. |
|
| 43 | - $this->add_capabilities(); |
|
| 44 | - |
|
| 45 | - // Maybe create the default payment form. |
|
| 46 | - wpinv_get_default_payment_form(); |
|
| 47 | - |
|
| 48 | - // Create any missing database tables. |
|
| 49 | - $method = "upgrade_from_$upgrade_from"; |
|
| 50 | - |
|
| 51 | - $installed = get_option( 'gepaid_installed_on' ); |
|
| 52 | - |
|
| 53 | - if ( empty( $installed ) ) { |
|
| 54 | - update_option( 'gepaid_installed_on', time() ); |
|
| 55 | - } |
|
| 56 | - |
|
| 57 | - if ( method_exists( $this, $method ) ) { |
|
| 58 | - $this->$method(); |
|
| 59 | - } |
|
| 60 | - |
|
| 61 | - } |
|
| 62 | - |
|
| 63 | - /** |
|
| 64 | - * Do a fresh install. |
|
| 65 | - * |
|
| 66 | - */ |
|
| 67 | - public function upgrade_from_0() { |
|
| 68 | - $this->create_subscriptions_table(); |
|
| 69 | - $this->create_invoices_table(); |
|
| 70 | - $this->create_invoice_items_table(); |
|
| 71 | - |
|
| 72 | - // Save default tax rates. |
|
| 73 | - update_option( 'wpinv_tax_rates', wpinv_get_data( 'tax-rates' ) ); |
|
| 74 | - } |
|
| 75 | - |
|
| 76 | - /** |
|
| 77 | - * Upgrade to 0.0.5 |
|
| 78 | - * |
|
| 79 | - */ |
|
| 80 | - public function upgrade_from_004() { |
|
| 81 | - global $wpdb; |
|
| 82 | - |
|
| 83 | - // Invoices. |
|
| 84 | - $results = $wpdb->get_results( "SELECT ID FROM {$wpdb->posts} WHERE post_type = 'wpi_invoice' AND post_status IN( 'pending', 'processing', 'onhold', 'refunded', 'cancelled', 'failed', 'renewal' )" ); |
|
| 85 | - if ( ! empty( $results ) ) { |
|
| 86 | - $wpdb->query( "UPDATE {$wpdb->posts} SET post_status = CONCAT( 'wpi-', post_status ) WHERE post_type = 'wpi_invoice' AND post_status IN( 'pending', 'processing', 'onhold', 'refunded', 'cancelled', 'failed', 'renewal' )" ); |
|
| 87 | - |
|
| 88 | - // Clean post cache |
|
| 89 | - foreach ( $results as $row ) { |
|
| 90 | - clean_post_cache( $row->ID ); |
|
| 91 | - } |
|
| 92 | - |
|
| 93 | - } |
|
| 94 | - |
|
| 95 | - // Item meta key changes |
|
| 96 | - $query = "SELECT DISTINCT post_id FROM " . $wpdb->postmeta . " WHERE meta_key IN( '_wpinv_item_id', '_wpinv_package_id', '_wpinv_post_id', '_wpinv_cpt_name', '_wpinv_cpt_singular_name' )"; |
|
| 97 | - $results = $wpdb->get_results( $query ); |
|
| 98 | - |
|
| 99 | - if ( ! empty( $results ) ) { |
|
| 100 | - $wpdb->query( "UPDATE " . $wpdb->postmeta . " SET meta_key = '_wpinv_custom_id' WHERE meta_key IN( '_wpinv_item_id', '_wpinv_package_id', '_wpinv_post_id' )" ); |
|
| 101 | - $wpdb->query( "UPDATE " . $wpdb->postmeta . " SET meta_key = '_wpinv_custom_name' WHERE meta_key = '_wpinv_cpt_name'" ); |
|
| 102 | - $wpdb->query( "UPDATE " . $wpdb->postmeta . " SET meta_key = '_wpinv_custom_singular_name' WHERE meta_key = '_wpinv_cpt_singular_name'" ); |
|
| 103 | - |
|
| 104 | - foreach ( $results as $row ) { |
|
| 105 | - clean_post_cache( $row->post_id ); |
|
| 106 | - } |
|
| 107 | - |
|
| 108 | - } |
|
| 109 | - |
|
| 110 | - $this->upgrade_from_102(); |
|
| 111 | - } |
|
| 112 | - |
|
| 113 | - /** |
|
| 114 | - * Upgrade to 1.0.3 |
|
| 115 | - * |
|
| 116 | - */ |
|
| 117 | - public function upgrade_from_102() { |
|
| 118 | - $this->create_subscriptions_table(); |
|
| 119 | - $this->upgrade_from_118(); |
|
| 120 | - } |
|
| 121 | - |
|
| 122 | - /** |
|
| 123 | - * Upgrade to version 2.0.0. |
|
| 124 | - * |
|
| 125 | - */ |
|
| 126 | - public function upgrade_from_118() { |
|
| 127 | - $this->create_invoices_table(); |
|
| 128 | - $this->create_invoice_items_table(); |
|
| 129 | - $this->migrate_old_invoices(); |
|
| 130 | - } |
|
| 131 | - |
|
| 132 | - /** |
|
| 133 | - * Upgrade to version 2.0.8. |
|
| 134 | - * |
|
| 135 | - */ |
|
| 136 | - public function upgrade_from_207() { |
|
| 137 | - global $wpdb; |
|
| 138 | - $wpdb->query( "ALTER TABLE {$wpdb->prefix}getpaid_invoice_items MODIFY COLUMN quantity FLOAT(20);" ); |
|
| 139 | - } |
|
| 140 | - |
|
| 141 | - /** |
|
| 142 | - * Give administrators the capability to manage GetPaid. |
|
| 143 | - * |
|
| 144 | - */ |
|
| 145 | - public function add_capabilities() { |
|
| 146 | - $GLOBALS['wp_roles']->add_cap( 'administrator', 'manage_invoicing' ); |
|
| 147 | - } |
|
| 148 | - |
|
| 149 | - /** |
|
| 150 | - * Retreives GetPaid pages. |
|
| 151 | - * |
|
| 152 | - */ |
|
| 153 | - public static function get_pages() { |
|
| 154 | - |
|
| 155 | - return apply_filters( |
|
| 156 | - 'wpinv_create_pages', |
|
| 157 | - array( |
|
| 158 | - |
|
| 159 | - // Checkout page. |
|
| 160 | - 'checkout_page' => array( |
|
| 161 | - 'name' => _x( 'gp-checkout', 'Page slug', 'invoicing' ), |
|
| 162 | - 'title' => _x( 'Checkout', 'Page title', 'invoicing' ), |
|
| 163 | - 'content' => ' |
|
| 23 | + /** |
|
| 24 | + * Upgrades the install. |
|
| 25 | + * |
|
| 26 | + * @param string $upgrade_from The current invoicing version. |
|
| 27 | + */ |
|
| 28 | + public function upgrade_db( $upgrade_from ) { |
|
| 29 | + |
|
| 30 | + // Save the current invoicing version. |
|
| 31 | + update_option( 'wpinv_version', WPINV_VERSION ); |
|
| 32 | + |
|
| 33 | + // Setup the invoice Custom Post Type. |
|
| 34 | + GetPaid_Post_Types::register_post_types(); |
|
| 35 | + |
|
| 36 | + // Clear the permalinks |
|
| 37 | + flush_rewrite_rules(); |
|
| 38 | + |
|
| 39 | + // Maybe create new/missing pages. |
|
| 40 | + $this->create_pages(); |
|
| 41 | + |
|
| 42 | + // Maybe re(add) admin capabilities. |
|
| 43 | + $this->add_capabilities(); |
|
| 44 | + |
|
| 45 | + // Maybe create the default payment form. |
|
| 46 | + wpinv_get_default_payment_form(); |
|
| 47 | + |
|
| 48 | + // Create any missing database tables. |
|
| 49 | + $method = "upgrade_from_$upgrade_from"; |
|
| 50 | + |
|
| 51 | + $installed = get_option( 'gepaid_installed_on' ); |
|
| 52 | + |
|
| 53 | + if ( empty( $installed ) ) { |
|
| 54 | + update_option( 'gepaid_installed_on', time() ); |
|
| 55 | + } |
|
| 56 | + |
|
| 57 | + if ( method_exists( $this, $method ) ) { |
|
| 58 | + $this->$method(); |
|
| 59 | + } |
|
| 60 | + |
|
| 61 | + } |
|
| 62 | + |
|
| 63 | + /** |
|
| 64 | + * Do a fresh install. |
|
| 65 | + * |
|
| 66 | + */ |
|
| 67 | + public function upgrade_from_0() { |
|
| 68 | + $this->create_subscriptions_table(); |
|
| 69 | + $this->create_invoices_table(); |
|
| 70 | + $this->create_invoice_items_table(); |
|
| 71 | + |
|
| 72 | + // Save default tax rates. |
|
| 73 | + update_option( 'wpinv_tax_rates', wpinv_get_data( 'tax-rates' ) ); |
|
| 74 | + } |
|
| 75 | + |
|
| 76 | + /** |
|
| 77 | + * Upgrade to 0.0.5 |
|
| 78 | + * |
|
| 79 | + */ |
|
| 80 | + public function upgrade_from_004() { |
|
| 81 | + global $wpdb; |
|
| 82 | + |
|
| 83 | + // Invoices. |
|
| 84 | + $results = $wpdb->get_results( "SELECT ID FROM {$wpdb->posts} WHERE post_type = 'wpi_invoice' AND post_status IN( 'pending', 'processing', 'onhold', 'refunded', 'cancelled', 'failed', 'renewal' )" ); |
|
| 85 | + if ( ! empty( $results ) ) { |
|
| 86 | + $wpdb->query( "UPDATE {$wpdb->posts} SET post_status = CONCAT( 'wpi-', post_status ) WHERE post_type = 'wpi_invoice' AND post_status IN( 'pending', 'processing', 'onhold', 'refunded', 'cancelled', 'failed', 'renewal' )" ); |
|
| 87 | + |
|
| 88 | + // Clean post cache |
|
| 89 | + foreach ( $results as $row ) { |
|
| 90 | + clean_post_cache( $row->ID ); |
|
| 91 | + } |
|
| 92 | + |
|
| 93 | + } |
|
| 94 | + |
|
| 95 | + // Item meta key changes |
|
| 96 | + $query = "SELECT DISTINCT post_id FROM " . $wpdb->postmeta . " WHERE meta_key IN( '_wpinv_item_id', '_wpinv_package_id', '_wpinv_post_id', '_wpinv_cpt_name', '_wpinv_cpt_singular_name' )"; |
|
| 97 | + $results = $wpdb->get_results( $query ); |
|
| 98 | + |
|
| 99 | + if ( ! empty( $results ) ) { |
|
| 100 | + $wpdb->query( "UPDATE " . $wpdb->postmeta . " SET meta_key = '_wpinv_custom_id' WHERE meta_key IN( '_wpinv_item_id', '_wpinv_package_id', '_wpinv_post_id' )" ); |
|
| 101 | + $wpdb->query( "UPDATE " . $wpdb->postmeta . " SET meta_key = '_wpinv_custom_name' WHERE meta_key = '_wpinv_cpt_name'" ); |
|
| 102 | + $wpdb->query( "UPDATE " . $wpdb->postmeta . " SET meta_key = '_wpinv_custom_singular_name' WHERE meta_key = '_wpinv_cpt_singular_name'" ); |
|
| 103 | + |
|
| 104 | + foreach ( $results as $row ) { |
|
| 105 | + clean_post_cache( $row->post_id ); |
|
| 106 | + } |
|
| 107 | + |
|
| 108 | + } |
|
| 109 | + |
|
| 110 | + $this->upgrade_from_102(); |
|
| 111 | + } |
|
| 112 | + |
|
| 113 | + /** |
|
| 114 | + * Upgrade to 1.0.3 |
|
| 115 | + * |
|
| 116 | + */ |
|
| 117 | + public function upgrade_from_102() { |
|
| 118 | + $this->create_subscriptions_table(); |
|
| 119 | + $this->upgrade_from_118(); |
|
| 120 | + } |
|
| 121 | + |
|
| 122 | + /** |
|
| 123 | + * Upgrade to version 2.0.0. |
|
| 124 | + * |
|
| 125 | + */ |
|
| 126 | + public function upgrade_from_118() { |
|
| 127 | + $this->create_invoices_table(); |
|
| 128 | + $this->create_invoice_items_table(); |
|
| 129 | + $this->migrate_old_invoices(); |
|
| 130 | + } |
|
| 131 | + |
|
| 132 | + /** |
|
| 133 | + * Upgrade to version 2.0.8. |
|
| 134 | + * |
|
| 135 | + */ |
|
| 136 | + public function upgrade_from_207() { |
|
| 137 | + global $wpdb; |
|
| 138 | + $wpdb->query( "ALTER TABLE {$wpdb->prefix}getpaid_invoice_items MODIFY COLUMN quantity FLOAT(20);" ); |
|
| 139 | + } |
|
| 140 | + |
|
| 141 | + /** |
|
| 142 | + * Give administrators the capability to manage GetPaid. |
|
| 143 | + * |
|
| 144 | + */ |
|
| 145 | + public function add_capabilities() { |
|
| 146 | + $GLOBALS['wp_roles']->add_cap( 'administrator', 'manage_invoicing' ); |
|
| 147 | + } |
|
| 148 | + |
|
| 149 | + /** |
|
| 150 | + * Retreives GetPaid pages. |
|
| 151 | + * |
|
| 152 | + */ |
|
| 153 | + public static function get_pages() { |
|
| 154 | + |
|
| 155 | + return apply_filters( |
|
| 156 | + 'wpinv_create_pages', |
|
| 157 | + array( |
|
| 158 | + |
|
| 159 | + // Checkout page. |
|
| 160 | + 'checkout_page' => array( |
|
| 161 | + 'name' => _x( 'gp-checkout', 'Page slug', 'invoicing' ), |
|
| 162 | + 'title' => _x( 'Checkout', 'Page title', 'invoicing' ), |
|
| 163 | + 'content' => ' |
|
| 164 | 164 | <!-- wp:shortcode --> |
| 165 | 165 | [wpinv_checkout] |
| 166 | 166 | <!-- /wp:shortcode --> |
| 167 | 167 | ', |
| 168 | - 'parent' => '', |
|
| 169 | - ), |
|
| 170 | - |
|
| 171 | - // Invoice history page. |
|
| 172 | - 'invoice_history_page' => array( |
|
| 173 | - 'name' => _x( 'gp-invoices', 'Page slug', 'invoicing' ), |
|
| 174 | - 'title' => _x( 'My Invoices', 'Page title', 'invoicing' ), |
|
| 175 | - 'content' => ' |
|
| 168 | + 'parent' => '', |
|
| 169 | + ), |
|
| 170 | + |
|
| 171 | + // Invoice history page. |
|
| 172 | + 'invoice_history_page' => array( |
|
| 173 | + 'name' => _x( 'gp-invoices', 'Page slug', 'invoicing' ), |
|
| 174 | + 'title' => _x( 'My Invoices', 'Page title', 'invoicing' ), |
|
| 175 | + 'content' => ' |
|
| 176 | 176 | <!-- wp:shortcode --> |
| 177 | 177 | [wpinv_history] |
| 178 | 178 | <!-- /wp:shortcode --> |
| 179 | 179 | ', |
| 180 | - 'parent' => '', |
|
| 181 | - ), |
|
| 182 | - |
|
| 183 | - // Success page content. |
|
| 184 | - 'success_page' => array( |
|
| 185 | - 'name' => _x( 'gp-receipt', 'Page slug', 'invoicing' ), |
|
| 186 | - 'title' => _x( 'Payment Confirmation', 'Page title', 'invoicing' ), |
|
| 187 | - 'content' => ' |
|
| 180 | + 'parent' => '', |
|
| 181 | + ), |
|
| 182 | + |
|
| 183 | + // Success page content. |
|
| 184 | + 'success_page' => array( |
|
| 185 | + 'name' => _x( 'gp-receipt', 'Page slug', 'invoicing' ), |
|
| 186 | + 'title' => _x( 'Payment Confirmation', 'Page title', 'invoicing' ), |
|
| 187 | + 'content' => ' |
|
| 188 | 188 | <!-- wp:shortcode --> |
| 189 | 189 | [wpinv_receipt] |
| 190 | 190 | <!-- /wp:shortcode --> |
| 191 | 191 | ', |
| 192 | - 'parent' => 'gp-checkout', |
|
| 193 | - ), |
|
| 194 | - |
|
| 195 | - // Failure page content. |
|
| 196 | - 'failure_page' => array( |
|
| 197 | - 'name' => _x( 'gp-transaction-failed', 'Page slug', 'invoicing' ), |
|
| 198 | - 'title' => _x( 'Transaction Failed', 'Page title', 'invoicing' ), |
|
| 199 | - 'content' => __( 'Your transaction failed, please try again or contact site support.', 'invoicing' ), |
|
| 200 | - 'parent' => 'gp-checkout', |
|
| 201 | - ), |
|
| 202 | - |
|
| 203 | - // Subscriptions history page. |
|
| 204 | - 'invoice_subscription_page' => array( |
|
| 205 | - 'name' => _x( 'gp-subscriptions', 'Page slug', 'invoicing' ), |
|
| 206 | - 'title' => _x( 'My Subscriptions', 'Page title', 'invoicing' ), |
|
| 207 | - 'content' => ' |
|
| 192 | + 'parent' => 'gp-checkout', |
|
| 193 | + ), |
|
| 194 | + |
|
| 195 | + // Failure page content. |
|
| 196 | + 'failure_page' => array( |
|
| 197 | + 'name' => _x( 'gp-transaction-failed', 'Page slug', 'invoicing' ), |
|
| 198 | + 'title' => _x( 'Transaction Failed', 'Page title', 'invoicing' ), |
|
| 199 | + 'content' => __( 'Your transaction failed, please try again or contact site support.', 'invoicing' ), |
|
| 200 | + 'parent' => 'gp-checkout', |
|
| 201 | + ), |
|
| 202 | + |
|
| 203 | + // Subscriptions history page. |
|
| 204 | + 'invoice_subscription_page' => array( |
|
| 205 | + 'name' => _x( 'gp-subscriptions', 'Page slug', 'invoicing' ), |
|
| 206 | + 'title' => _x( 'My Subscriptions', 'Page title', 'invoicing' ), |
|
| 207 | + 'content' => ' |
|
| 208 | 208 | <!-- wp:shortcode --> |
| 209 | 209 | [wpinv_subscriptions] |
| 210 | 210 | <!-- /wp:shortcode --> |
| 211 | 211 | ', |
| 212 | - 'parent' => '', |
|
| 213 | - ), |
|
| 212 | + 'parent' => '', |
|
| 213 | + ), |
|
| 214 | 214 | |
| 215 | - ) |
|
| 216 | - ); |
|
| 215 | + ) |
|
| 216 | + ); |
|
| 217 | 217 | |
| 218 | - } |
|
| 218 | + } |
|
| 219 | 219 | |
| 220 | - /** |
|
| 221 | - * Re-create GetPaid pages. |
|
| 222 | - * |
|
| 223 | - */ |
|
| 224 | - public function create_pages() { |
|
| 220 | + /** |
|
| 221 | + * Re-create GetPaid pages. |
|
| 222 | + * |
|
| 223 | + */ |
|
| 224 | + public function create_pages() { |
|
| 225 | 225 | |
| 226 | - foreach ( self::get_pages() as $key => $page ) { |
|
| 227 | - wpinv_create_page( esc_sql( $page['name'] ), $key, $page['title'], $page['content'], $page['parent'] ); |
|
| 228 | - } |
|
| 226 | + foreach ( self::get_pages() as $key => $page ) { |
|
| 227 | + wpinv_create_page( esc_sql( $page['name'] ), $key, $page['title'], $page['content'], $page['parent'] ); |
|
| 228 | + } |
|
| 229 | 229 | |
| 230 | - } |
|
| 230 | + } |
|
| 231 | 231 | |
| 232 | - /** |
|
| 233 | - * Create subscriptions table. |
|
| 234 | - * |
|
| 235 | - */ |
|
| 236 | - public function create_subscriptions_table() { |
|
| 232 | + /** |
|
| 233 | + * Create subscriptions table. |
|
| 234 | + * |
|
| 235 | + */ |
|
| 236 | + public function create_subscriptions_table() { |
|
| 237 | 237 | |
| 238 | - global $wpdb; |
|
| 238 | + global $wpdb; |
|
| 239 | 239 | |
| 240 | - require_once( ABSPATH . 'wp-admin/includes/upgrade.php' ); |
|
| 240 | + require_once( ABSPATH . 'wp-admin/includes/upgrade.php' ); |
|
| 241 | 241 | |
| 242 | - // Create tables. |
|
| 243 | - $charset_collate = $wpdb->get_charset_collate(); |
|
| 244 | - $sql = "CREATE TABLE IF NOT EXISTS {$wpdb->prefix}wpinv_subscriptions ( |
|
| 242 | + // Create tables. |
|
| 243 | + $charset_collate = $wpdb->get_charset_collate(); |
|
| 244 | + $sql = "CREATE TABLE IF NOT EXISTS {$wpdb->prefix}wpinv_subscriptions ( |
|
| 245 | 245 | id bigint(20) unsigned NOT NULL auto_increment, |
| 246 | 246 | customer_id bigint(20) NOT NULL, |
| 247 | 247 | frequency int(11) NOT NULL DEFAULT '1', |
@@ -264,22 +264,22 @@ discard block |
||
| 264 | 264 | KEY customer_and_status (customer_id, status) |
| 265 | 265 | ) $charset_collate;"; |
| 266 | 266 | |
| 267 | - dbDelta( $sql ); |
|
| 267 | + dbDelta( $sql ); |
|
| 268 | 268 | |
| 269 | - } |
|
| 269 | + } |
|
| 270 | 270 | |
| 271 | - /** |
|
| 272 | - * Create invoices table. |
|
| 273 | - * |
|
| 274 | - */ |
|
| 275 | - public function create_invoices_table() { |
|
| 276 | - global $wpdb; |
|
| 271 | + /** |
|
| 272 | + * Create invoices table. |
|
| 273 | + * |
|
| 274 | + */ |
|
| 275 | + public function create_invoices_table() { |
|
| 276 | + global $wpdb; |
|
| 277 | 277 | |
| 278 | - require_once( ABSPATH . 'wp-admin/includes/upgrade.php' ); |
|
| 278 | + require_once( ABSPATH . 'wp-admin/includes/upgrade.php' ); |
|
| 279 | 279 | |
| 280 | - // Create tables. |
|
| 281 | - $charset_collate = $wpdb->get_charset_collate(); |
|
| 282 | - $sql = "CREATE TABLE IF NOT EXISTS {$wpdb->prefix}getpaid_invoices ( |
|
| 280 | + // Create tables. |
|
| 281 | + $charset_collate = $wpdb->get_charset_collate(); |
|
| 282 | + $sql = "CREATE TABLE IF NOT EXISTS {$wpdb->prefix}getpaid_invoices ( |
|
| 283 | 283 | post_id BIGINT(20) NOT NULL, |
| 284 | 284 | `number` VARCHAR(100), |
| 285 | 285 | `key` VARCHAR(100), |
@@ -315,22 +315,22 @@ discard block |
||
| 315 | 315 | KEY `key` (`key`) |
| 316 | 316 | ) $charset_collate;"; |
| 317 | 317 | |
| 318 | - dbDelta( $sql ); |
|
| 318 | + dbDelta( $sql ); |
|
| 319 | 319 | |
| 320 | - } |
|
| 320 | + } |
|
| 321 | 321 | |
| 322 | - /** |
|
| 323 | - * Create invoice items table. |
|
| 324 | - * |
|
| 325 | - */ |
|
| 326 | - public function create_invoice_items_table() { |
|
| 327 | - global $wpdb; |
|
| 322 | + /** |
|
| 323 | + * Create invoice items table. |
|
| 324 | + * |
|
| 325 | + */ |
|
| 326 | + public function create_invoice_items_table() { |
|
| 327 | + global $wpdb; |
|
| 328 | 328 | |
| 329 | - require_once( ABSPATH . 'wp-admin/includes/upgrade.php' ); |
|
| 329 | + require_once( ABSPATH . 'wp-admin/includes/upgrade.php' ); |
|
| 330 | 330 | |
| 331 | - // Create tables. |
|
| 332 | - $charset_collate = $wpdb->get_charset_collate(); |
|
| 333 | - $sql = "CREATE TABLE IF NOT EXISTS {$wpdb->prefix}getpaid_invoice_items ( |
|
| 331 | + // Create tables. |
|
| 332 | + $charset_collate = $wpdb->get_charset_collate(); |
|
| 333 | + $sql = "CREATE TABLE IF NOT EXISTS {$wpdb->prefix}getpaid_invoice_items ( |
|
| 334 | 334 | ID BIGINT(20) NOT NULL AUTO_INCREMENT, |
| 335 | 335 | post_id BIGINT(20) NOT NULL, |
| 336 | 336 | item_id BIGINT(20) NOT NULL, |
@@ -352,159 +352,159 @@ discard block |
||
| 352 | 352 | KEY post_id (post_id) |
| 353 | 353 | ) $charset_collate;"; |
| 354 | 354 | |
| 355 | - dbDelta( $sql ); |
|
| 356 | - |
|
| 357 | - } |
|
| 358 | - |
|
| 359 | - /** |
|
| 360 | - * Migrates old invoices to new invoices. |
|
| 361 | - * |
|
| 362 | - */ |
|
| 363 | - public function migrate_old_invoices() { |
|
| 364 | - global $wpdb; |
|
| 365 | - |
|
| 366 | - $invoices_table = $wpdb->prefix . 'getpaid_invoices'; |
|
| 367 | - $invoice_items_table = $wpdb->prefix . 'getpaid_invoice_items'; |
|
| 368 | - $migrated = $wpdb->get_col( "SELECT post_id FROM $invoices_table" ); |
|
| 369 | - $invoices = array_unique( |
|
| 370 | - get_posts( |
|
| 371 | - array( |
|
| 372 | - 'post_type' => array( 'wpi_invoice', 'wpi_quote' ), |
|
| 373 | - 'posts_per_page' => -1, |
|
| 374 | - 'fields' => 'ids', |
|
| 375 | - 'post_status' => array_keys( get_post_stati() ), |
|
| 376 | - 'exclude' => (array) $migrated, |
|
| 377 | - ) |
|
| 378 | - ) |
|
| 379 | - ); |
|
| 380 | - |
|
| 381 | - // Abort if we do not have any invoices. |
|
| 382 | - if ( empty( $invoices ) ) { |
|
| 383 | - return; |
|
| 384 | - } |
|
| 385 | - |
|
| 386 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-legacy-invoice.php' ); |
|
| 387 | - |
|
| 388 | - $invoice_rows = array(); |
|
| 389 | - foreach ( $invoices as $invoice ) { |
|
| 390 | - |
|
| 391 | - $invoice = new WPInv_Legacy_Invoice( $invoice ); |
|
| 392 | - |
|
| 393 | - if ( empty( $invoice->ID ) ) { |
|
| 394 | - return; |
|
| 395 | - } |
|
| 396 | - |
|
| 397 | - $fields = array ( |
|
| 398 | - 'post_id' => $invoice->ID, |
|
| 399 | - 'number' => $invoice->get_number(), |
|
| 400 | - 'key' => $invoice->get_key(), |
|
| 401 | - 'type' => str_replace( 'wpi_', '', $invoice->post_type ), |
|
| 402 | - 'mode' => $invoice->mode, |
|
| 403 | - 'user_ip' => $invoice->get_ip(), |
|
| 404 | - 'first_name' => $invoice->get_first_name(), |
|
| 405 | - 'last_name' => $invoice->get_last_name(), |
|
| 406 | - 'address' => $invoice->get_address(), |
|
| 407 | - 'city' => $invoice->city, |
|
| 408 | - 'state' => $invoice->state, |
|
| 409 | - 'country' => $invoice->country, |
|
| 410 | - 'zip' => $invoice->zip, |
|
| 411 | - 'adddress_confirmed' => (int) $invoice->adddress_confirmed, |
|
| 412 | - 'gateway' => $invoice->get_gateway(), |
|
| 413 | - 'transaction_id' => $invoice->get_transaction_id(), |
|
| 414 | - 'currency' => $invoice->get_currency(), |
|
| 415 | - 'subtotal' => $invoice->get_subtotal(), |
|
| 416 | - 'tax' => $invoice->get_tax(), |
|
| 417 | - 'fees_total' => $invoice->get_fees_total(), |
|
| 418 | - 'total' => $invoice->get_total(), |
|
| 419 | - 'discount' => $invoice->get_discount(), |
|
| 420 | - 'discount_code' => $invoice->get_discount_code(), |
|
| 421 | - 'disable_taxes' => $invoice->disable_taxes, |
|
| 422 | - 'due_date' => $invoice->get_due_date(), |
|
| 423 | - 'completed_date' => $invoice->get_completed_date(), |
|
| 424 | - 'company' => $invoice->company, |
|
| 425 | - 'vat_number' => $invoice->vat_number, |
|
| 426 | - 'vat_rate' => $invoice->vat_rate, |
|
| 427 | - 'custom_meta' => $invoice->payment_meta |
|
| 428 | - ); |
|
| 429 | - |
|
| 430 | - foreach ( $fields as $key => $val ) { |
|
| 431 | - if ( is_null( $val ) ) { |
|
| 432 | - $val = ''; |
|
| 433 | - } |
|
| 434 | - $val = maybe_serialize( $val ); |
|
| 435 | - $fields[ $key ] = $wpdb->prepare( '%s', $val ); |
|
| 436 | - } |
|
| 437 | - |
|
| 438 | - $fields = implode( ', ', $fields ); |
|
| 439 | - $invoice_rows[] = "($fields)"; |
|
| 440 | - |
|
| 441 | - $item_rows = array(); |
|
| 442 | - $item_columns = array(); |
|
| 443 | - foreach ( $invoice->get_cart_details() as $details ) { |
|
| 444 | - $fields = array( |
|
| 445 | - 'post_id' => $invoice->ID, |
|
| 446 | - 'item_id' => $details['id'], |
|
| 447 | - 'item_name' => $details['name'], |
|
| 448 | - 'item_description' => empty( $details['meta']['description'] ) ? '' : $details['meta']['description'], |
|
| 449 | - 'vat_rate' => $details['vat_rate'], |
|
| 450 | - 'vat_class' => empty( $details['vat_class'] ) ? '_standard' : $details['vat_class'], |
|
| 451 | - 'tax' => $details['tax'], |
|
| 452 | - 'item_price' => $details['item_price'], |
|
| 453 | - 'custom_price' => $details['custom_price'], |
|
| 454 | - 'quantity' => $details['quantity'], |
|
| 455 | - 'discount' => $details['discount'], |
|
| 456 | - 'subtotal' => $details['subtotal'], |
|
| 457 | - 'price' => $details['price'], |
|
| 458 | - 'meta' => $details['meta'], |
|
| 459 | - 'fees' => $details['fees'], |
|
| 460 | - ); |
|
| 461 | - |
|
| 462 | - $item_columns = array_keys ( $fields ); |
|
| 463 | - |
|
| 464 | - foreach ( $fields as $key => $val ) { |
|
| 465 | - if ( is_null( $val ) ) { |
|
| 466 | - $val = ''; |
|
| 467 | - } |
|
| 468 | - $val = maybe_serialize( $val ); |
|
| 469 | - $fields[ $key ] = $wpdb->prepare( '%s', $val ); |
|
| 470 | - } |
|
| 471 | - |
|
| 472 | - $fields = implode( ', ', $fields ); |
|
| 473 | - $item_rows[] = "($fields)"; |
|
| 474 | - } |
|
| 475 | - |
|
| 476 | - $item_rows = implode( ', ', $item_rows ); |
|
| 477 | - $item_columns = implode( ', ', $item_columns ); |
|
| 478 | - $wpdb->query( "INSERT INTO $invoice_items_table ($item_columns) VALUES $item_rows" ); |
|
| 479 | - } |
|
| 480 | - |
|
| 481 | - if ( empty( $invoice_rows ) ) { |
|
| 482 | - return; |
|
| 483 | - } |
|
| 484 | - |
|
| 485 | - $invoice_rows = implode( ', ', $invoice_rows ); |
|
| 486 | - $wpdb->query( "INSERT INTO $invoices_table VALUES $invoice_rows" ); |
|
| 487 | - |
|
| 488 | - } |
|
| 489 | - |
|
| 490 | - /** |
|
| 491 | - * Migrates old invoices to new invoices. |
|
| 492 | - * |
|
| 493 | - */ |
|
| 494 | - public static function rename_gateways_label() { |
|
| 495 | - global $wpdb; |
|
| 496 | - |
|
| 497 | - foreach ( array_keys( wpinv_get_payment_gateways() ) as $gateway ) { |
|
| 498 | - |
|
| 499 | - $wpdb->update( |
|
| 500 | - $wpdb->prefix . 'getpaid_invoices', |
|
| 501 | - array( 'gateway' => $gateway ), |
|
| 502 | - array( 'gateway' => wpinv_get_gateway_admin_label( $gateway ) ), |
|
| 503 | - '%s', |
|
| 504 | - '%s' |
|
| 505 | - ); |
|
| 506 | - |
|
| 507 | - } |
|
| 508 | - } |
|
| 355 | + dbDelta( $sql ); |
|
| 356 | + |
|
| 357 | + } |
|
| 358 | + |
|
| 359 | + /** |
|
| 360 | + * Migrates old invoices to new invoices. |
|
| 361 | + * |
|
| 362 | + */ |
|
| 363 | + public function migrate_old_invoices() { |
|
| 364 | + global $wpdb; |
|
| 365 | + |
|
| 366 | + $invoices_table = $wpdb->prefix . 'getpaid_invoices'; |
|
| 367 | + $invoice_items_table = $wpdb->prefix . 'getpaid_invoice_items'; |
|
| 368 | + $migrated = $wpdb->get_col( "SELECT post_id FROM $invoices_table" ); |
|
| 369 | + $invoices = array_unique( |
|
| 370 | + get_posts( |
|
| 371 | + array( |
|
| 372 | + 'post_type' => array( 'wpi_invoice', 'wpi_quote' ), |
|
| 373 | + 'posts_per_page' => -1, |
|
| 374 | + 'fields' => 'ids', |
|
| 375 | + 'post_status' => array_keys( get_post_stati() ), |
|
| 376 | + 'exclude' => (array) $migrated, |
|
| 377 | + ) |
|
| 378 | + ) |
|
| 379 | + ); |
|
| 380 | + |
|
| 381 | + // Abort if we do not have any invoices. |
|
| 382 | + if ( empty( $invoices ) ) { |
|
| 383 | + return; |
|
| 384 | + } |
|
| 385 | + |
|
| 386 | + require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-legacy-invoice.php' ); |
|
| 387 | + |
|
| 388 | + $invoice_rows = array(); |
|
| 389 | + foreach ( $invoices as $invoice ) { |
|
| 390 | + |
|
| 391 | + $invoice = new WPInv_Legacy_Invoice( $invoice ); |
|
| 392 | + |
|
| 393 | + if ( empty( $invoice->ID ) ) { |
|
| 394 | + return; |
|
| 395 | + } |
|
| 396 | + |
|
| 397 | + $fields = array ( |
|
| 398 | + 'post_id' => $invoice->ID, |
|
| 399 | + 'number' => $invoice->get_number(), |
|
| 400 | + 'key' => $invoice->get_key(), |
|
| 401 | + 'type' => str_replace( 'wpi_', '', $invoice->post_type ), |
|
| 402 | + 'mode' => $invoice->mode, |
|
| 403 | + 'user_ip' => $invoice->get_ip(), |
|
| 404 | + 'first_name' => $invoice->get_first_name(), |
|
| 405 | + 'last_name' => $invoice->get_last_name(), |
|
| 406 | + 'address' => $invoice->get_address(), |
|
| 407 | + 'city' => $invoice->city, |
|
| 408 | + 'state' => $invoice->state, |
|
| 409 | + 'country' => $invoice->country, |
|
| 410 | + 'zip' => $invoice->zip, |
|
| 411 | + 'adddress_confirmed' => (int) $invoice->adddress_confirmed, |
|
| 412 | + 'gateway' => $invoice->get_gateway(), |
|
| 413 | + 'transaction_id' => $invoice->get_transaction_id(), |
|
| 414 | + 'currency' => $invoice->get_currency(), |
|
| 415 | + 'subtotal' => $invoice->get_subtotal(), |
|
| 416 | + 'tax' => $invoice->get_tax(), |
|
| 417 | + 'fees_total' => $invoice->get_fees_total(), |
|
| 418 | + 'total' => $invoice->get_total(), |
|
| 419 | + 'discount' => $invoice->get_discount(), |
|
| 420 | + 'discount_code' => $invoice->get_discount_code(), |
|
| 421 | + 'disable_taxes' => $invoice->disable_taxes, |
|
| 422 | + 'due_date' => $invoice->get_due_date(), |
|
| 423 | + 'completed_date' => $invoice->get_completed_date(), |
|
| 424 | + 'company' => $invoice->company, |
|
| 425 | + 'vat_number' => $invoice->vat_number, |
|
| 426 | + 'vat_rate' => $invoice->vat_rate, |
|
| 427 | + 'custom_meta' => $invoice->payment_meta |
|
| 428 | + ); |
|
| 429 | + |
|
| 430 | + foreach ( $fields as $key => $val ) { |
|
| 431 | + if ( is_null( $val ) ) { |
|
| 432 | + $val = ''; |
|
| 433 | + } |
|
| 434 | + $val = maybe_serialize( $val ); |
|
| 435 | + $fields[ $key ] = $wpdb->prepare( '%s', $val ); |
|
| 436 | + } |
|
| 437 | + |
|
| 438 | + $fields = implode( ', ', $fields ); |
|
| 439 | + $invoice_rows[] = "($fields)"; |
|
| 440 | + |
|
| 441 | + $item_rows = array(); |
|
| 442 | + $item_columns = array(); |
|
| 443 | + foreach ( $invoice->get_cart_details() as $details ) { |
|
| 444 | + $fields = array( |
|
| 445 | + 'post_id' => $invoice->ID, |
|
| 446 | + 'item_id' => $details['id'], |
|
| 447 | + 'item_name' => $details['name'], |
|
| 448 | + 'item_description' => empty( $details['meta']['description'] ) ? '' : $details['meta']['description'], |
|
| 449 | + 'vat_rate' => $details['vat_rate'], |
|
| 450 | + 'vat_class' => empty( $details['vat_class'] ) ? '_standard' : $details['vat_class'], |
|
| 451 | + 'tax' => $details['tax'], |
|
| 452 | + 'item_price' => $details['item_price'], |
|
| 453 | + 'custom_price' => $details['custom_price'], |
|
| 454 | + 'quantity' => $details['quantity'], |
|
| 455 | + 'discount' => $details['discount'], |
|
| 456 | + 'subtotal' => $details['subtotal'], |
|
| 457 | + 'price' => $details['price'], |
|
| 458 | + 'meta' => $details['meta'], |
|
| 459 | + 'fees' => $details['fees'], |
|
| 460 | + ); |
|
| 461 | + |
|
| 462 | + $item_columns = array_keys ( $fields ); |
|
| 463 | + |
|
| 464 | + foreach ( $fields as $key => $val ) { |
|
| 465 | + if ( is_null( $val ) ) { |
|
| 466 | + $val = ''; |
|
| 467 | + } |
|
| 468 | + $val = maybe_serialize( $val ); |
|
| 469 | + $fields[ $key ] = $wpdb->prepare( '%s', $val ); |
|
| 470 | + } |
|
| 471 | + |
|
| 472 | + $fields = implode( ', ', $fields ); |
|
| 473 | + $item_rows[] = "($fields)"; |
|
| 474 | + } |
|
| 475 | + |
|
| 476 | + $item_rows = implode( ', ', $item_rows ); |
|
| 477 | + $item_columns = implode( ', ', $item_columns ); |
|
| 478 | + $wpdb->query( "INSERT INTO $invoice_items_table ($item_columns) VALUES $item_rows" ); |
|
| 479 | + } |
|
| 480 | + |
|
| 481 | + if ( empty( $invoice_rows ) ) { |
|
| 482 | + return; |
|
| 483 | + } |
|
| 484 | + |
|
| 485 | + $invoice_rows = implode( ', ', $invoice_rows ); |
|
| 486 | + $wpdb->query( "INSERT INTO $invoices_table VALUES $invoice_rows" ); |
|
| 487 | + |
|
| 488 | + } |
|
| 489 | + |
|
| 490 | + /** |
|
| 491 | + * Migrates old invoices to new invoices. |
|
| 492 | + * |
|
| 493 | + */ |
|
| 494 | + public static function rename_gateways_label() { |
|
| 495 | + global $wpdb; |
|
| 496 | + |
|
| 497 | + foreach ( array_keys( wpinv_get_payment_gateways() ) as $gateway ) { |
|
| 498 | + |
|
| 499 | + $wpdb->update( |
|
| 500 | + $wpdb->prefix . 'getpaid_invoices', |
|
| 501 | + array( 'gateway' => $gateway ), |
|
| 502 | + array( 'gateway' => wpinv_get_gateway_admin_label( $gateway ) ), |
|
| 503 | + '%s', |
|
| 504 | + '%s' |
|
| 505 | + ); |
|
| 506 | + |
|
| 507 | + } |
|
| 508 | + } |
|
| 509 | 509 | |
| 510 | 510 | } |
@@ -12,114 +12,114 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | class GetPaid_Payment_Form_Submission_Fees { |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * The fee validation error. |
|
| 17 | - * @var string |
|
| 18 | - */ |
|
| 19 | - public $fee_error; |
|
| 20 | - |
|
| 21 | - /** |
|
| 22 | - * Submission fees. |
|
| 23 | - * @var array |
|
| 24 | - */ |
|
| 25 | - public $fees = array(); |
|
| 15 | + /** |
|
| 16 | + * The fee validation error. |
|
| 17 | + * @var string |
|
| 18 | + */ |
|
| 19 | + public $fee_error; |
|
| 20 | + |
|
| 21 | + /** |
|
| 22 | + * Submission fees. |
|
| 23 | + * @var array |
|
| 24 | + */ |
|
| 25 | + public $fees = array(); |
|
| 26 | + |
|
| 27 | + /** |
|
| 28 | + * Class constructor |
|
| 29 | + * |
|
| 30 | + * @param GetPaid_Payment_Form_Submission $submission |
|
| 31 | + */ |
|
| 32 | + public function __construct( $submission ) { |
|
| 33 | + |
|
| 34 | + // Process any existing invoice fees. |
|
| 35 | + if ( $submission->has_invoice() ) { |
|
| 36 | + $this->fees = $submission->get_invoice()->get_fees(); |
|
| 37 | + } |
|
| 38 | + |
|
| 39 | + // Process price fields. |
|
| 40 | + $data = $submission->get_data(); |
|
| 41 | + $payment_form = $submission->get_payment_form(); |
|
| 42 | + |
|
| 43 | + foreach ( $payment_form->get_elements() as $element ) { |
|
| 44 | + |
|
| 45 | + if ( 'price_input' == $element['type'] ) { |
|
| 46 | + $this->process_price_input( $element, $data, $submission ); |
|
| 47 | + } |
|
| 48 | + |
|
| 49 | + if ( 'price_select' == $element['type'] ) { |
|
| 50 | + $this->process_price_select( $element, $data ); |
|
| 51 | + } |
|
| 52 | + |
|
| 53 | + } |
|
| 54 | + |
|
| 55 | + } |
|
| 56 | + |
|
| 57 | + /** |
|
| 58 | + * Process a price input field. |
|
| 59 | + * |
|
| 60 | + * @param array $element |
|
| 61 | + * @param array $data |
|
| 62 | + * @param GetPaid_Payment_Form_Submission $submission |
|
| 63 | + */ |
|
| 64 | + public function process_price_input( $element, $data, $submission ) { |
|
| 65 | + |
|
| 66 | + // Abort if not passed. |
|
| 67 | + if ( empty( $data[ $element['id'] ] ) ) { |
|
| 68 | + return; |
|
| 69 | + } |
|
| 70 | + |
|
| 71 | + $amount = (float) wpinv_sanitize_amount( $data[ $element['id'] ] ); |
|
| 72 | + $minimum = empty( $element['minimum'] ) ? 0 : (float) wpinv_sanitize_amount( $element['minimum'] ); |
|
| 73 | + |
|
| 74 | + if ( $amount < $minimum ) { |
|
| 75 | + throw new Exception( sprintf( __( 'The minimum allowed amount is %s', 'invoicing' ), getpaid_unstandardize_amount( $minimum, $submission->get_currency() ) ) ); |
|
| 76 | + } |
|
| 77 | + |
|
| 78 | + $this->fees[ $element['label'] ] = array( |
|
| 79 | + 'name' => $element['label'], |
|
| 80 | + 'initial_fee' => $amount, |
|
| 81 | + 'recurring_fee' => 0, |
|
| 82 | + ); |
|
| 83 | + |
|
| 84 | + } |
|
| 26 | 85 | |
| 27 | 86 | /** |
| 28 | - * Class constructor |
|
| 29 | - * |
|
| 30 | - * @param GetPaid_Payment_Form_Submission $submission |
|
| 31 | - */ |
|
| 32 | - public function __construct( $submission ) { |
|
| 33 | - |
|
| 34 | - // Process any existing invoice fees. |
|
| 35 | - if ( $submission->has_invoice() ) { |
|
| 36 | - $this->fees = $submission->get_invoice()->get_fees(); |
|
| 37 | - } |
|
| 38 | - |
|
| 39 | - // Process price fields. |
|
| 40 | - $data = $submission->get_data(); |
|
| 41 | - $payment_form = $submission->get_payment_form(); |
|
| 42 | - |
|
| 43 | - foreach ( $payment_form->get_elements() as $element ) { |
|
| 44 | - |
|
| 45 | - if ( 'price_input' == $element['type'] ) { |
|
| 46 | - $this->process_price_input( $element, $data, $submission ); |
|
| 47 | - } |
|
| 48 | - |
|
| 49 | - if ( 'price_select' == $element['type'] ) { |
|
| 50 | - $this->process_price_select( $element, $data ); |
|
| 51 | - } |
|
| 52 | - |
|
| 53 | - } |
|
| 54 | - |
|
| 55 | - } |
|
| 56 | - |
|
| 57 | - /** |
|
| 58 | - * Process a price input field. |
|
| 59 | - * |
|
| 60 | - * @param array $element |
|
| 61 | - * @param array $data |
|
| 62 | - * @param GetPaid_Payment_Form_Submission $submission |
|
| 63 | - */ |
|
| 64 | - public function process_price_input( $element, $data, $submission ) { |
|
| 65 | - |
|
| 66 | - // Abort if not passed. |
|
| 67 | - if ( empty( $data[ $element['id'] ] ) ) { |
|
| 68 | - return; |
|
| 69 | - } |
|
| 70 | - |
|
| 71 | - $amount = (float) wpinv_sanitize_amount( $data[ $element['id'] ] ); |
|
| 72 | - $minimum = empty( $element['minimum'] ) ? 0 : (float) wpinv_sanitize_amount( $element['minimum'] ); |
|
| 73 | - |
|
| 74 | - if ( $amount < $minimum ) { |
|
| 75 | - throw new Exception( sprintf( __( 'The minimum allowed amount is %s', 'invoicing' ), getpaid_unstandardize_amount( $minimum, $submission->get_currency() ) ) ); |
|
| 76 | - } |
|
| 77 | - |
|
| 78 | - $this->fees[ $element['label'] ] = array( |
|
| 79 | - 'name' => $element['label'], |
|
| 80 | - 'initial_fee' => $amount, |
|
| 81 | - 'recurring_fee' => 0, |
|
| 82 | - ); |
|
| 83 | - |
|
| 84 | - } |
|
| 85 | - |
|
| 86 | - /** |
|
| 87 | - * Process a price select field. |
|
| 88 | - * |
|
| 89 | - * @param array $element |
|
| 90 | - * @param array $data |
|
| 91 | - */ |
|
| 92 | - public function process_price_select( $element, $data ) { |
|
| 93 | - |
|
| 94 | - // Abort if not passed. |
|
| 95 | - if ( empty( $data[ $element['id'] ] ) ) { |
|
| 96 | - return; |
|
| 97 | - } |
|
| 98 | - |
|
| 99 | - $options = getpaid_convert_price_string_to_options( $element['options'] ); |
|
| 100 | - $selected = array_filter( array_map( 'trim', explode( ',', $data[ $element['id'] ] ) ) ); |
|
| 101 | - $total = 0; |
|
| 102 | - $sub_labels = array(); |
|
| 103 | - |
|
| 104 | - foreach ( $selected as $price ) { |
|
| 105 | - |
|
| 106 | - if ( ! isset( $options[ $price ] ) ) { |
|
| 107 | - throw new Exception( __( 'You have selected an invalid amount', 'invoicing' ) ); |
|
| 108 | - } |
|
| 109 | - |
|
| 110 | - $price = explode( '|', $price ); |
|
| 111 | - |
|
| 112 | - $sub_labels[] = $price[0]; |
|
| 113 | - $total += (float) wpinv_sanitize_amount( $price[1] ); |
|
| 114 | - } |
|
| 115 | - |
|
| 116 | - $this->fees[ $element['label'] ] = array( |
|
| 117 | - 'name' => $element['label'], |
|
| 118 | - 'initial_fee' => $total, |
|
| 119 | - 'recurring_fee' => 0, |
|
| 120 | - 'description' => implode( ', ', $sub_labels ), |
|
| 121 | - ); |
|
| 122 | - |
|
| 123 | - } |
|
| 87 | + * Process a price select field. |
|
| 88 | + * |
|
| 89 | + * @param array $element |
|
| 90 | + * @param array $data |
|
| 91 | + */ |
|
| 92 | + public function process_price_select( $element, $data ) { |
|
| 93 | + |
|
| 94 | + // Abort if not passed. |
|
| 95 | + if ( empty( $data[ $element['id'] ] ) ) { |
|
| 96 | + return; |
|
| 97 | + } |
|
| 98 | + |
|
| 99 | + $options = getpaid_convert_price_string_to_options( $element['options'] ); |
|
| 100 | + $selected = array_filter( array_map( 'trim', explode( ',', $data[ $element['id'] ] ) ) ); |
|
| 101 | + $total = 0; |
|
| 102 | + $sub_labels = array(); |
|
| 103 | + |
|
| 104 | + foreach ( $selected as $price ) { |
|
| 105 | + |
|
| 106 | + if ( ! isset( $options[ $price ] ) ) { |
|
| 107 | + throw new Exception( __( 'You have selected an invalid amount', 'invoicing' ) ); |
|
| 108 | + } |
|
| 109 | + |
|
| 110 | + $price = explode( '|', $price ); |
|
| 111 | + |
|
| 112 | + $sub_labels[] = $price[0]; |
|
| 113 | + $total += (float) wpinv_sanitize_amount( $price[1] ); |
|
| 114 | + } |
|
| 115 | + |
|
| 116 | + $this->fees[ $element['label'] ] = array( |
|
| 117 | + 'name' => $element['label'], |
|
| 118 | + 'initial_fee' => $total, |
|
| 119 | + 'recurring_fee' => 0, |
|
| 120 | + 'description' => implode( ', ', $sub_labels ), |
|
| 121 | + ); |
|
| 122 | + |
|
| 123 | + } |
|
| 124 | 124 | |
| 125 | 125 | } |
@@ -17,397 +17,397 @@ |
||
| 17 | 17 | */ |
| 18 | 18 | class GetPaid_Admin_Setup_Wizard { |
| 19 | 19 | |
| 20 | - /** |
|
| 21 | - * @var string Current Step |
|
| 22 | - */ |
|
| 23 | - protected $step = ''; |
|
| 24 | - |
|
| 25 | - /** |
|
| 26 | - * @var string|false Previous Step |
|
| 27 | - */ |
|
| 28 | - protected $previous_step = ''; |
|
| 29 | - |
|
| 30 | - /** |
|
| 31 | - * @var string|false Next Step |
|
| 32 | - */ |
|
| 33 | - protected $next_step = ''; |
|
| 34 | - |
|
| 35 | - /** |
|
| 36 | - * @var array All available steps for the setup wizard |
|
| 37 | - */ |
|
| 38 | - protected $steps = array(); |
|
| 39 | - |
|
| 40 | - /** |
|
| 41 | - * Class constructor. |
|
| 42 | - * |
|
| 43 | - * @since 2.4.0 |
|
| 44 | - */ |
|
| 45 | - public function __construct() { |
|
| 46 | - |
|
| 47 | - if ( apply_filters( 'getpaid_enable_setup_wizard', true ) && wpinv_current_user_can_manage_invoicing() ) { |
|
| 48 | - add_action( 'admin_menu', array( $this, 'add_menu' ) ); |
|
| 49 | - add_action( 'current_screen', array( $this, 'setup_wizard' ) ); |
|
| 50 | - } |
|
| 51 | - |
|
| 52 | - } |
|
| 53 | - |
|
| 54 | - /** |
|
| 55 | - * Add admin menus/screens. |
|
| 56 | - * |
|
| 57 | - * @since 2.4.0 |
|
| 58 | - */ |
|
| 59 | - public function add_menu() { |
|
| 60 | - add_dashboard_page( '', '', wpinv_get_capability(), 'gp-setup', '' ); |
|
| 61 | - } |
|
| 62 | - |
|
| 63 | - /** |
|
| 64 | - * Sets up the setup wizard. |
|
| 65 | - * |
|
| 66 | - * @since 2.4.0 |
|
| 67 | - */ |
|
| 68 | - public function setup_wizard() { |
|
| 69 | - |
|
| 70 | - if ( isset( $_GET['page'] ) && 'gp-setup' === $_GET['page'] ) { |
|
| 71 | - $this->setup_globals(); |
|
| 72 | - $this->maybe_save_current_step(); |
|
| 73 | - $this->display_wizard(); |
|
| 74 | - exit; |
|
| 75 | - } |
|
| 76 | - |
|
| 77 | - } |
|
| 78 | - |
|
| 79 | - /** |
|
| 80 | - * Sets up class variables. |
|
| 81 | - * |
|
| 82 | - * @since 2.4.0 |
|
| 83 | - */ |
|
| 84 | - protected function setup_globals() { |
|
| 85 | - $this->steps = $this->get_setup_steps(); |
|
| 86 | - $this->step = $this->get_current_step(); |
|
| 87 | - $this->previous_step = $this->get_previous_step(); |
|
| 88 | - $this->next_step = $this->get_next_step(); |
|
| 89 | - } |
|
| 90 | - |
|
| 91 | - /** |
|
| 92 | - * Saves the current step. |
|
| 93 | - * |
|
| 94 | - * @since 2.4.0 |
|
| 95 | - */ |
|
| 96 | - protected function maybe_save_current_step() { |
|
| 97 | - if ( ! empty( $_POST['save_step'] ) && is_callable( $this->steps[ $this->step ]['handler'] ) ) { |
|
| 98 | - call_user_func( $this->steps[ $this->step ]['handler'], $this ); |
|
| 99 | - } |
|
| 100 | - } |
|
| 101 | - |
|
| 102 | - /** |
|
| 103 | - * Returns the setup steps. |
|
| 104 | - * |
|
| 105 | - * @since 2.4.0 |
|
| 106 | - * @return array |
|
| 107 | - */ |
|
| 108 | - protected function get_setup_steps() { |
|
| 109 | - |
|
| 110 | - $steps = array( |
|
| 111 | - |
|
| 112 | - 'introduction' => array( |
|
| 113 | - 'name' => __( 'Introduction', 'invoicing' ), |
|
| 114 | - 'view' => array( $this, 'setup_introduction' ), |
|
| 115 | - 'handler' => '', |
|
| 116 | - ), |
|
| 117 | - |
|
| 118 | - 'business_details' => array( |
|
| 119 | - 'name' => __( "Business Details", 'invoicing' ), |
|
| 120 | - 'view' => array( $this, 'setup_business' ), |
|
| 121 | - 'handler' => '', |
|
| 122 | - ), |
|
| 123 | - |
|
| 124 | - 'currency' => array( |
|
| 125 | - 'name' => __( 'Currency', 'invoicing' ), |
|
| 126 | - 'view' => array( $this, 'setup_currency' ), |
|
| 127 | - 'handler' => '', |
|
| 128 | - ), |
|
| 129 | - |
|
| 130 | - 'payments' => array( |
|
| 131 | - 'name' => __( 'Payment Gateways', 'invoicing' ), |
|
| 132 | - 'view' => array( $this, 'setup_payments' ), |
|
| 133 | - 'handler' => array( $this, 'setup_payments_save' ), |
|
| 134 | - ), |
|
| 135 | - |
|
| 136 | - 'recommend' => array( |
|
| 137 | - 'name' => __( 'Recommend', 'invoicing' ), |
|
| 138 | - 'view' => array( $this, 'setup_recommend' ), |
|
| 139 | - 'handler' => '', |
|
| 140 | - ), |
|
| 141 | - |
|
| 142 | - 'next_steps' => array( |
|
| 143 | - 'name' => __( 'Get Paid', 'invoicing' ), |
|
| 144 | - 'view' => array( $this, 'setup_ready' ), |
|
| 145 | - 'handler' => '', |
|
| 146 | - ), |
|
| 147 | - |
|
| 148 | - ); |
|
| 149 | - |
|
| 150 | - return apply_filters( 'getpaid_setup_wizard_steps', $steps ); |
|
| 151 | - |
|
| 152 | - } |
|
| 153 | - |
|
| 154 | - /** |
|
| 155 | - * Returns the current step. |
|
| 156 | - * |
|
| 157 | - * @since 2.4.0 |
|
| 158 | - * @return string |
|
| 159 | - */ |
|
| 160 | - protected function get_current_step() { |
|
| 161 | - $step = isset( $_GET['step'] ) ? sanitize_key( $_GET['step'] ) : ''; |
|
| 162 | - return ! empty( $step ) && in_array( $step, array_keys( $this->steps ) ) ? $step : current( array_keys( $this->steps ) ); |
|
| 163 | - } |
|
| 164 | - |
|
| 165 | - /** |
|
| 166 | - * Returns the previous step. |
|
| 167 | - * |
|
| 168 | - * @since 2.4.0 |
|
| 169 | - * @return string|false |
|
| 170 | - */ |
|
| 171 | - protected function get_previous_step() { |
|
| 172 | - |
|
| 173 | - $previous = false; |
|
| 174 | - $current = $this->step; |
|
| 175 | - foreach ( array_keys( $this->steps ) as $step ) { |
|
| 176 | - if ( $current === $step ) { |
|
| 177 | - return $previous; |
|
| 178 | - } |
|
| 179 | - |
|
| 180 | - $previous = $step; |
|
| 181 | - } |
|
| 182 | - |
|
| 183 | - return false; |
|
| 184 | - } |
|
| 185 | - |
|
| 186 | - /** |
|
| 187 | - * Returns the next step. |
|
| 188 | - * |
|
| 189 | - * @since 2.4.0 |
|
| 190 | - * @return string|false |
|
| 191 | - */ |
|
| 192 | - protected function get_next_step() { |
|
| 193 | - |
|
| 194 | - $on_current = false; |
|
| 195 | - $current = $this->step; |
|
| 196 | - foreach ( array_keys( $this->steps ) as $step ) { |
|
| 197 | - |
|
| 198 | - if ( $on_current ) { |
|
| 199 | - return $step; |
|
| 200 | - } |
|
| 201 | - |
|
| 202 | - if ( $current === $step ) { |
|
| 203 | - return $on_current = true; |
|
| 204 | - } |
|
| 205 | - |
|
| 206 | - } |
|
| 207 | - |
|
| 208 | - return false; |
|
| 209 | - } |
|
| 210 | - |
|
| 211 | - /** |
|
| 212 | - * Displays the setup wizard. |
|
| 213 | - * |
|
| 214 | - * @since 2.4.0 |
|
| 215 | - */ |
|
| 216 | - public function display_wizard() { |
|
| 217 | - $this->display_header(); |
|
| 218 | - $this->display_current_step(); |
|
| 219 | - $this->display_footer(); |
|
| 220 | - } |
|
| 221 | - |
|
| 222 | - /** |
|
| 223 | - * Displays the Wizard Header. |
|
| 224 | - * |
|
| 225 | - * @since 2.0.0 |
|
| 226 | - */ |
|
| 227 | - public function display_header() { |
|
| 228 | - $steps = $this->steps; |
|
| 229 | - $current = $this->step; |
|
| 230 | - $next_step = $this->next_step; |
|
| 231 | - array_shift( $steps ); |
|
| 232 | - include plugin_dir_path( __FILE__ ) . 'views/wizard-header.php'; |
|
| 233 | - } |
|
| 234 | - |
|
| 235 | - /** |
|
| 236 | - * Displays the content for the current step. |
|
| 237 | - * |
|
| 238 | - * @since 2.4.0 |
|
| 239 | - */ |
|
| 240 | - public function display_current_step() { |
|
| 241 | - ?> |
|
| 20 | + /** |
|
| 21 | + * @var string Current Step |
|
| 22 | + */ |
|
| 23 | + protected $step = ''; |
|
| 24 | + |
|
| 25 | + /** |
|
| 26 | + * @var string|false Previous Step |
|
| 27 | + */ |
|
| 28 | + protected $previous_step = ''; |
|
| 29 | + |
|
| 30 | + /** |
|
| 31 | + * @var string|false Next Step |
|
| 32 | + */ |
|
| 33 | + protected $next_step = ''; |
|
| 34 | + |
|
| 35 | + /** |
|
| 36 | + * @var array All available steps for the setup wizard |
|
| 37 | + */ |
|
| 38 | + protected $steps = array(); |
|
| 39 | + |
|
| 40 | + /** |
|
| 41 | + * Class constructor. |
|
| 42 | + * |
|
| 43 | + * @since 2.4.0 |
|
| 44 | + */ |
|
| 45 | + public function __construct() { |
|
| 46 | + |
|
| 47 | + if ( apply_filters( 'getpaid_enable_setup_wizard', true ) && wpinv_current_user_can_manage_invoicing() ) { |
|
| 48 | + add_action( 'admin_menu', array( $this, 'add_menu' ) ); |
|
| 49 | + add_action( 'current_screen', array( $this, 'setup_wizard' ) ); |
|
| 50 | + } |
|
| 51 | + |
|
| 52 | + } |
|
| 53 | + |
|
| 54 | + /** |
|
| 55 | + * Add admin menus/screens. |
|
| 56 | + * |
|
| 57 | + * @since 2.4.0 |
|
| 58 | + */ |
|
| 59 | + public function add_menu() { |
|
| 60 | + add_dashboard_page( '', '', wpinv_get_capability(), 'gp-setup', '' ); |
|
| 61 | + } |
|
| 62 | + |
|
| 63 | + /** |
|
| 64 | + * Sets up the setup wizard. |
|
| 65 | + * |
|
| 66 | + * @since 2.4.0 |
|
| 67 | + */ |
|
| 68 | + public function setup_wizard() { |
|
| 69 | + |
|
| 70 | + if ( isset( $_GET['page'] ) && 'gp-setup' === $_GET['page'] ) { |
|
| 71 | + $this->setup_globals(); |
|
| 72 | + $this->maybe_save_current_step(); |
|
| 73 | + $this->display_wizard(); |
|
| 74 | + exit; |
|
| 75 | + } |
|
| 76 | + |
|
| 77 | + } |
|
| 78 | + |
|
| 79 | + /** |
|
| 80 | + * Sets up class variables. |
|
| 81 | + * |
|
| 82 | + * @since 2.4.0 |
|
| 83 | + */ |
|
| 84 | + protected function setup_globals() { |
|
| 85 | + $this->steps = $this->get_setup_steps(); |
|
| 86 | + $this->step = $this->get_current_step(); |
|
| 87 | + $this->previous_step = $this->get_previous_step(); |
|
| 88 | + $this->next_step = $this->get_next_step(); |
|
| 89 | + } |
|
| 90 | + |
|
| 91 | + /** |
|
| 92 | + * Saves the current step. |
|
| 93 | + * |
|
| 94 | + * @since 2.4.0 |
|
| 95 | + */ |
|
| 96 | + protected function maybe_save_current_step() { |
|
| 97 | + if ( ! empty( $_POST['save_step'] ) && is_callable( $this->steps[ $this->step ]['handler'] ) ) { |
|
| 98 | + call_user_func( $this->steps[ $this->step ]['handler'], $this ); |
|
| 99 | + } |
|
| 100 | + } |
|
| 101 | + |
|
| 102 | + /** |
|
| 103 | + * Returns the setup steps. |
|
| 104 | + * |
|
| 105 | + * @since 2.4.0 |
|
| 106 | + * @return array |
|
| 107 | + */ |
|
| 108 | + protected function get_setup_steps() { |
|
| 109 | + |
|
| 110 | + $steps = array( |
|
| 111 | + |
|
| 112 | + 'introduction' => array( |
|
| 113 | + 'name' => __( 'Introduction', 'invoicing' ), |
|
| 114 | + 'view' => array( $this, 'setup_introduction' ), |
|
| 115 | + 'handler' => '', |
|
| 116 | + ), |
|
| 117 | + |
|
| 118 | + 'business_details' => array( |
|
| 119 | + 'name' => __( "Business Details", 'invoicing' ), |
|
| 120 | + 'view' => array( $this, 'setup_business' ), |
|
| 121 | + 'handler' => '', |
|
| 122 | + ), |
|
| 123 | + |
|
| 124 | + 'currency' => array( |
|
| 125 | + 'name' => __( 'Currency', 'invoicing' ), |
|
| 126 | + 'view' => array( $this, 'setup_currency' ), |
|
| 127 | + 'handler' => '', |
|
| 128 | + ), |
|
| 129 | + |
|
| 130 | + 'payments' => array( |
|
| 131 | + 'name' => __( 'Payment Gateways', 'invoicing' ), |
|
| 132 | + 'view' => array( $this, 'setup_payments' ), |
|
| 133 | + 'handler' => array( $this, 'setup_payments_save' ), |
|
| 134 | + ), |
|
| 135 | + |
|
| 136 | + 'recommend' => array( |
|
| 137 | + 'name' => __( 'Recommend', 'invoicing' ), |
|
| 138 | + 'view' => array( $this, 'setup_recommend' ), |
|
| 139 | + 'handler' => '', |
|
| 140 | + ), |
|
| 141 | + |
|
| 142 | + 'next_steps' => array( |
|
| 143 | + 'name' => __( 'Get Paid', 'invoicing' ), |
|
| 144 | + 'view' => array( $this, 'setup_ready' ), |
|
| 145 | + 'handler' => '', |
|
| 146 | + ), |
|
| 147 | + |
|
| 148 | + ); |
|
| 149 | + |
|
| 150 | + return apply_filters( 'getpaid_setup_wizard_steps', $steps ); |
|
| 151 | + |
|
| 152 | + } |
|
| 153 | + |
|
| 154 | + /** |
|
| 155 | + * Returns the current step. |
|
| 156 | + * |
|
| 157 | + * @since 2.4.0 |
|
| 158 | + * @return string |
|
| 159 | + */ |
|
| 160 | + protected function get_current_step() { |
|
| 161 | + $step = isset( $_GET['step'] ) ? sanitize_key( $_GET['step'] ) : ''; |
|
| 162 | + return ! empty( $step ) && in_array( $step, array_keys( $this->steps ) ) ? $step : current( array_keys( $this->steps ) ); |
|
| 163 | + } |
|
| 164 | + |
|
| 165 | + /** |
|
| 166 | + * Returns the previous step. |
|
| 167 | + * |
|
| 168 | + * @since 2.4.0 |
|
| 169 | + * @return string|false |
|
| 170 | + */ |
|
| 171 | + protected function get_previous_step() { |
|
| 172 | + |
|
| 173 | + $previous = false; |
|
| 174 | + $current = $this->step; |
|
| 175 | + foreach ( array_keys( $this->steps ) as $step ) { |
|
| 176 | + if ( $current === $step ) { |
|
| 177 | + return $previous; |
|
| 178 | + } |
|
| 179 | + |
|
| 180 | + $previous = $step; |
|
| 181 | + } |
|
| 182 | + |
|
| 183 | + return false; |
|
| 184 | + } |
|
| 185 | + |
|
| 186 | + /** |
|
| 187 | + * Returns the next step. |
|
| 188 | + * |
|
| 189 | + * @since 2.4.0 |
|
| 190 | + * @return string|false |
|
| 191 | + */ |
|
| 192 | + protected function get_next_step() { |
|
| 193 | + |
|
| 194 | + $on_current = false; |
|
| 195 | + $current = $this->step; |
|
| 196 | + foreach ( array_keys( $this->steps ) as $step ) { |
|
| 197 | + |
|
| 198 | + if ( $on_current ) { |
|
| 199 | + return $step; |
|
| 200 | + } |
|
| 201 | + |
|
| 202 | + if ( $current === $step ) { |
|
| 203 | + return $on_current = true; |
|
| 204 | + } |
|
| 205 | + |
|
| 206 | + } |
|
| 207 | + |
|
| 208 | + return false; |
|
| 209 | + } |
|
| 210 | + |
|
| 211 | + /** |
|
| 212 | + * Displays the setup wizard. |
|
| 213 | + * |
|
| 214 | + * @since 2.4.0 |
|
| 215 | + */ |
|
| 216 | + public function display_wizard() { |
|
| 217 | + $this->display_header(); |
|
| 218 | + $this->display_current_step(); |
|
| 219 | + $this->display_footer(); |
|
| 220 | + } |
|
| 221 | + |
|
| 222 | + /** |
|
| 223 | + * Displays the Wizard Header. |
|
| 224 | + * |
|
| 225 | + * @since 2.0.0 |
|
| 226 | + */ |
|
| 227 | + public function display_header() { |
|
| 228 | + $steps = $this->steps; |
|
| 229 | + $current = $this->step; |
|
| 230 | + $next_step = $this->next_step; |
|
| 231 | + array_shift( $steps ); |
|
| 232 | + include plugin_dir_path( __FILE__ ) . 'views/wizard-header.php'; |
|
| 233 | + } |
|
| 234 | + |
|
| 235 | + /** |
|
| 236 | + * Displays the content for the current step. |
|
| 237 | + * |
|
| 238 | + * @since 2.4.0 |
|
| 239 | + */ |
|
| 240 | + public function display_current_step() { |
|
| 241 | + ?> |
|
| 242 | 242 | <div class="gp-setup-content rowx mw-100 text-center mb-3"> |
| 243 | 243 | <div class="col-12 col-md-5 m-auto"> |
| 244 | 244 | <?php call_user_func( $this->steps[ $this->step ]['view'], $this ); ?> |
| 245 | 245 | </div> |
| 246 | 246 | </div> |
| 247 | 247 | <?php |
| 248 | - } |
|
| 249 | - |
|
| 250 | - /** |
|
| 251 | - * Setup Wizard Footer. |
|
| 252 | - * |
|
| 253 | - * @since 2.4.0 |
|
| 254 | - */ |
|
| 255 | - public function display_footer() { |
|
| 256 | - |
|
| 257 | - if ( isset( $_GET['step'] ) ) { |
|
| 258 | - $next_url = esc_url( $this->get_next_step_link() ); |
|
| 259 | - $label = $this->step == 'next_steps' ? __( 'Return to the WordPress Dashboard', 'invoicing' ) : __( 'Skip this step', 'invoicing' ); |
|
| 260 | - |
|
| 261 | - echo '<p class="gd-return-to-dashboard-wrap"> <a href="' . $next_url . '" class="gd-return-to-dashboard btn btn-link d-block text-muted">' . $label . '</a></p>'; |
|
| 262 | - } |
|
| 263 | - |
|
| 264 | - echo '</body></html>'; |
|
| 265 | - } |
|
| 266 | - |
|
| 267 | - /** |
|
| 268 | - * Introduction step. |
|
| 269 | - * |
|
| 270 | - * @since 2.0.0 |
|
| 271 | - */ |
|
| 272 | - public function setup_introduction() { |
|
| 273 | - $next_url = $this->get_next_step_link(); |
|
| 274 | - include plugin_dir_path( __FILE__ ) . 'views/wizard-introduction.php'; |
|
| 275 | - } |
|
| 276 | - |
|
| 277 | - /** |
|
| 278 | - * Get the URL for the next step's screen. |
|
| 279 | - * |
|
| 280 | - * @param string step slug (default: current step) |
|
| 281 | - * |
|
| 282 | - * @return string URL for next step if a next step exists. |
|
| 283 | - * Admin URL if it's the last step. |
|
| 284 | - * Empty string on failure. |
|
| 285 | - * @since 3.0.0 |
|
| 286 | - */ |
|
| 287 | - public function get_next_step_link( $step = '' ) { |
|
| 288 | - if ( ! $step ) { |
|
| 289 | - $step = $this->step; |
|
| 290 | - } |
|
| 291 | - |
|
| 292 | - $keys = array_keys( $this->steps ); |
|
| 293 | - if ( end( $keys ) === $step ) { |
|
| 294 | - return admin_url(); |
|
| 295 | - } |
|
| 296 | - |
|
| 297 | - $step_index = array_search( $step, $keys ); |
|
| 298 | - if ( false === $step_index ) { |
|
| 299 | - return ''; |
|
| 300 | - } |
|
| 301 | - |
|
| 302 | - return remove_query_arg('settings-updated', add_query_arg( 'step', $keys[ $step_index + 1 ] )); |
|
| 303 | - } |
|
| 304 | - |
|
| 305 | - /** |
|
| 306 | - * Setup maps api. |
|
| 307 | - * |
|
| 308 | - * @since 2.0.0 |
|
| 309 | - */ |
|
| 310 | - public function setup_business() { |
|
| 311 | - $next_url = $this->get_next_step_link(); |
|
| 312 | - $wizard = $this; |
|
| 313 | - $page = 'wpinv_settings_general_main'; |
|
| 314 | - $section = 'wpinv_settings_general_main'; |
|
| 315 | - include plugin_dir_path( __FILE__ ) . 'views/wizard-settings.php'; |
|
| 316 | - } |
|
| 317 | - |
|
| 318 | - /** |
|
| 319 | - * Default Location settings. |
|
| 320 | - * |
|
| 321 | - * @since 2.0.0 |
|
| 322 | - */ |
|
| 323 | - public function setup_currency() { |
|
| 324 | - $next_url = $this->get_next_step_link(); |
|
| 325 | - $wizard = $this; |
|
| 326 | - $page = 'wpinv_settings_general_currency_section'; |
|
| 327 | - $section = 'wpinv_settings_general_currency_section'; |
|
| 328 | - include plugin_dir_path( __FILE__ ) . 'views/wizard-settings.php'; |
|
| 329 | - } |
|
| 330 | - |
|
| 331 | - /** |
|
| 332 | - * Installation of recommended plugins. |
|
| 333 | - * |
|
| 334 | - * @since 1.0.0 |
|
| 335 | - */ |
|
| 336 | - public function setup_recommend() { |
|
| 337 | - $next_url = $this->get_next_step_link(); |
|
| 338 | - $recommended_plugins = self::get_recommend_wp_plugins(); |
|
| 339 | - include plugin_dir_path( __FILE__ ) . 'views/wizard-plugins.php'; |
|
| 340 | - } |
|
| 341 | - |
|
| 342 | - /** |
|
| 343 | - * A list of recommended wp.org plugins. |
|
| 344 | - * @return array |
|
| 345 | - */ |
|
| 346 | - public static function get_recommend_wp_plugins(){ |
|
| 347 | - return array( |
|
| 348 | - 'ayecode-connect' => array( |
|
| 349 | - 'file' => 'ayecode-connect/ayecode-connect.php', |
|
| 350 | - 'url' => 'https://wordpress.org/plugins/ayecode-connect/', |
|
| 351 | - 'slug' => 'ayecode-connect', |
|
| 352 | - 'name' => 'AyeCode Connect', |
|
| 353 | - 'desc' => __( 'Documentation and Support from within your WordPress admin.', 'geodirectory' ), |
|
| 354 | - ), |
|
| 355 | - 'invoicing-quotes' => array( |
|
| 356 | - 'file' => 'invoicing-quotes/wpinv-quote.php', |
|
| 357 | - 'url' => 'https://wordpress.org/plugins/invoicing-quotes/', |
|
| 358 | - 'slug' => 'invoicing-quotes', |
|
| 359 | - 'name' => 'Customer Quotes', |
|
| 360 | - 'desc' => __('Create & Send Quotes to Customers and have them accept and pay.','geodirectory'), |
|
| 361 | - ), |
|
| 362 | - 'userswp' => array( |
|
| 363 | - 'file' => 'userswp/userswp.php', |
|
| 364 | - 'url' => 'https://wordpress.org/plugins/userswp/', |
|
| 365 | - 'slug' => 'userswp', |
|
| 366 | - 'name' => 'UsersWP', |
|
| 367 | - 'desc' => __('Frontend user login and registration as well as slick profile pages.','geodirectory'), |
|
| 368 | - ), |
|
| 369 | - ); |
|
| 370 | - } |
|
| 371 | - |
|
| 372 | - /** |
|
| 373 | - * Dummy Data setup. |
|
| 374 | - * |
|
| 375 | - * @since 2.4.0 |
|
| 376 | - */ |
|
| 377 | - public function setup_payments() { |
|
| 378 | - $next_url = $this->get_next_step_link(); |
|
| 379 | - include plugin_dir_path( __FILE__ ) . 'views/wizard-gateways.php'; |
|
| 380 | - } |
|
| 381 | - |
|
| 382 | - /** |
|
| 383 | - * Dummy data save. |
|
| 384 | - * |
|
| 385 | - * This is done via ajax so we just pass onto the next step. |
|
| 386 | - * |
|
| 387 | - * @since 2.0.0 |
|
| 388 | - */ |
|
| 389 | - public function setup_payments_save() { |
|
| 390 | - check_admin_referer( 'getpaid-setup-wizard', 'getpaid-setup-wizard' ); |
|
| 391 | - wpinv_update_option( 'manual_active', ! empty( $_POST['enable-manual-gateway'] ) ); |
|
| 392 | - |
|
| 393 | - if ( ! empty( $_POST['paypal-email'] ) ) { |
|
| 394 | - wpinv_update_option( 'paypal_email', sanitize_email( $_POST['paypal-email'] ) ); |
|
| 395 | - wpinv_update_option( 'paypal_active', 1 ); |
|
| 396 | - wpinv_update_option( 'paypal_sandbox', 0 ); |
|
| 397 | - } |
|
| 398 | - |
|
| 399 | - wp_redirect( esc_url_raw( $this->get_next_step_link() ) ); |
|
| 400 | - exit; |
|
| 401 | - } |
|
| 402 | - |
|
| 403 | - /** |
|
| 404 | - * Final step. |
|
| 405 | - * |
|
| 406 | - * @since 2.0.0 |
|
| 407 | - */ |
|
| 408 | - public function setup_ready() { |
|
| 409 | - include plugin_dir_path( __FILE__ ) . 'views/wizard-thank-you.php'; |
|
| 410 | - } |
|
| 248 | + } |
|
| 249 | + |
|
| 250 | + /** |
|
| 251 | + * Setup Wizard Footer. |
|
| 252 | + * |
|
| 253 | + * @since 2.4.0 |
|
| 254 | + */ |
|
| 255 | + public function display_footer() { |
|
| 256 | + |
|
| 257 | + if ( isset( $_GET['step'] ) ) { |
|
| 258 | + $next_url = esc_url( $this->get_next_step_link() ); |
|
| 259 | + $label = $this->step == 'next_steps' ? __( 'Return to the WordPress Dashboard', 'invoicing' ) : __( 'Skip this step', 'invoicing' ); |
|
| 260 | + |
|
| 261 | + echo '<p class="gd-return-to-dashboard-wrap"> <a href="' . $next_url . '" class="gd-return-to-dashboard btn btn-link d-block text-muted">' . $label . '</a></p>'; |
|
| 262 | + } |
|
| 263 | + |
|
| 264 | + echo '</body></html>'; |
|
| 265 | + } |
|
| 266 | + |
|
| 267 | + /** |
|
| 268 | + * Introduction step. |
|
| 269 | + * |
|
| 270 | + * @since 2.0.0 |
|
| 271 | + */ |
|
| 272 | + public function setup_introduction() { |
|
| 273 | + $next_url = $this->get_next_step_link(); |
|
| 274 | + include plugin_dir_path( __FILE__ ) . 'views/wizard-introduction.php'; |
|
| 275 | + } |
|
| 276 | + |
|
| 277 | + /** |
|
| 278 | + * Get the URL for the next step's screen. |
|
| 279 | + * |
|
| 280 | + * @param string step slug (default: current step) |
|
| 281 | + * |
|
| 282 | + * @return string URL for next step if a next step exists. |
|
| 283 | + * Admin URL if it's the last step. |
|
| 284 | + * Empty string on failure. |
|
| 285 | + * @since 3.0.0 |
|
| 286 | + */ |
|
| 287 | + public function get_next_step_link( $step = '' ) { |
|
| 288 | + if ( ! $step ) { |
|
| 289 | + $step = $this->step; |
|
| 290 | + } |
|
| 291 | + |
|
| 292 | + $keys = array_keys( $this->steps ); |
|
| 293 | + if ( end( $keys ) === $step ) { |
|
| 294 | + return admin_url(); |
|
| 295 | + } |
|
| 296 | + |
|
| 297 | + $step_index = array_search( $step, $keys ); |
|
| 298 | + if ( false === $step_index ) { |
|
| 299 | + return ''; |
|
| 300 | + } |
|
| 301 | + |
|
| 302 | + return remove_query_arg('settings-updated', add_query_arg( 'step', $keys[ $step_index + 1 ] )); |
|
| 303 | + } |
|
| 304 | + |
|
| 305 | + /** |
|
| 306 | + * Setup maps api. |
|
| 307 | + * |
|
| 308 | + * @since 2.0.0 |
|
| 309 | + */ |
|
| 310 | + public function setup_business() { |
|
| 311 | + $next_url = $this->get_next_step_link(); |
|
| 312 | + $wizard = $this; |
|
| 313 | + $page = 'wpinv_settings_general_main'; |
|
| 314 | + $section = 'wpinv_settings_general_main'; |
|
| 315 | + include plugin_dir_path( __FILE__ ) . 'views/wizard-settings.php'; |
|
| 316 | + } |
|
| 317 | + |
|
| 318 | + /** |
|
| 319 | + * Default Location settings. |
|
| 320 | + * |
|
| 321 | + * @since 2.0.0 |
|
| 322 | + */ |
|
| 323 | + public function setup_currency() { |
|
| 324 | + $next_url = $this->get_next_step_link(); |
|
| 325 | + $wizard = $this; |
|
| 326 | + $page = 'wpinv_settings_general_currency_section'; |
|
| 327 | + $section = 'wpinv_settings_general_currency_section'; |
|
| 328 | + include plugin_dir_path( __FILE__ ) . 'views/wizard-settings.php'; |
|
| 329 | + } |
|
| 330 | + |
|
| 331 | + /** |
|
| 332 | + * Installation of recommended plugins. |
|
| 333 | + * |
|
| 334 | + * @since 1.0.0 |
|
| 335 | + */ |
|
| 336 | + public function setup_recommend() { |
|
| 337 | + $next_url = $this->get_next_step_link(); |
|
| 338 | + $recommended_plugins = self::get_recommend_wp_plugins(); |
|
| 339 | + include plugin_dir_path( __FILE__ ) . 'views/wizard-plugins.php'; |
|
| 340 | + } |
|
| 341 | + |
|
| 342 | + /** |
|
| 343 | + * A list of recommended wp.org plugins. |
|
| 344 | + * @return array |
|
| 345 | + */ |
|
| 346 | + public static function get_recommend_wp_plugins(){ |
|
| 347 | + return array( |
|
| 348 | + 'ayecode-connect' => array( |
|
| 349 | + 'file' => 'ayecode-connect/ayecode-connect.php', |
|
| 350 | + 'url' => 'https://wordpress.org/plugins/ayecode-connect/', |
|
| 351 | + 'slug' => 'ayecode-connect', |
|
| 352 | + 'name' => 'AyeCode Connect', |
|
| 353 | + 'desc' => __( 'Documentation and Support from within your WordPress admin.', 'geodirectory' ), |
|
| 354 | + ), |
|
| 355 | + 'invoicing-quotes' => array( |
|
| 356 | + 'file' => 'invoicing-quotes/wpinv-quote.php', |
|
| 357 | + 'url' => 'https://wordpress.org/plugins/invoicing-quotes/', |
|
| 358 | + 'slug' => 'invoicing-quotes', |
|
| 359 | + 'name' => 'Customer Quotes', |
|
| 360 | + 'desc' => __('Create & Send Quotes to Customers and have them accept and pay.','geodirectory'), |
|
| 361 | + ), |
|
| 362 | + 'userswp' => array( |
|
| 363 | + 'file' => 'userswp/userswp.php', |
|
| 364 | + 'url' => 'https://wordpress.org/plugins/userswp/', |
|
| 365 | + 'slug' => 'userswp', |
|
| 366 | + 'name' => 'UsersWP', |
|
| 367 | + 'desc' => __('Frontend user login and registration as well as slick profile pages.','geodirectory'), |
|
| 368 | + ), |
|
| 369 | + ); |
|
| 370 | + } |
|
| 371 | + |
|
| 372 | + /** |
|
| 373 | + * Dummy Data setup. |
|
| 374 | + * |
|
| 375 | + * @since 2.4.0 |
|
| 376 | + */ |
|
| 377 | + public function setup_payments() { |
|
| 378 | + $next_url = $this->get_next_step_link(); |
|
| 379 | + include plugin_dir_path( __FILE__ ) . 'views/wizard-gateways.php'; |
|
| 380 | + } |
|
| 381 | + |
|
| 382 | + /** |
|
| 383 | + * Dummy data save. |
|
| 384 | + * |
|
| 385 | + * This is done via ajax so we just pass onto the next step. |
|
| 386 | + * |
|
| 387 | + * @since 2.0.0 |
|
| 388 | + */ |
|
| 389 | + public function setup_payments_save() { |
|
| 390 | + check_admin_referer( 'getpaid-setup-wizard', 'getpaid-setup-wizard' ); |
|
| 391 | + wpinv_update_option( 'manual_active', ! empty( $_POST['enable-manual-gateway'] ) ); |
|
| 392 | + |
|
| 393 | + if ( ! empty( $_POST['paypal-email'] ) ) { |
|
| 394 | + wpinv_update_option( 'paypal_email', sanitize_email( $_POST['paypal-email'] ) ); |
|
| 395 | + wpinv_update_option( 'paypal_active', 1 ); |
|
| 396 | + wpinv_update_option( 'paypal_sandbox', 0 ); |
|
| 397 | + } |
|
| 398 | + |
|
| 399 | + wp_redirect( esc_url_raw( $this->get_next_step_link() ) ); |
|
| 400 | + exit; |
|
| 401 | + } |
|
| 402 | + |
|
| 403 | + /** |
|
| 404 | + * Final step. |
|
| 405 | + * |
|
| 406 | + * @since 2.0.0 |
|
| 407 | + */ |
|
| 408 | + public function setup_ready() { |
|
| 409 | + include plugin_dir_path( __FILE__ ) . 'views/wizard-thank-you.php'; |
|
| 410 | + } |
|
| 411 | 411 | |
| 412 | 412 | } |
| 413 | 413 | |
@@ -12,145 +12,145 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | class GetPaid_Daily_Maintenance { |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * Class constructor. |
|
| 17 | - */ |
|
| 18 | - public function __construct(){ |
|
| 19 | - |
|
| 20 | - // Clear deprecated events. |
|
| 21 | - add_action( 'wp', array( $this, 'maybe_clear_deprecated_events' ) ); |
|
| 22 | - |
|
| 23 | - // (Maybe) schedule a cron that runs daily. |
|
| 24 | - add_action( 'wp', array( $this, 'maybe_create_scheduled_event' ) ); |
|
| 25 | - |
|
| 26 | - // Fired everyday at 7 a.m (this might vary for sites with few visitors) |
|
| 27 | - add_action( 'getpaid_daily_maintenance', array( $this, 'log_cron_run' ) ); |
|
| 28 | - add_action( 'getpaid_daily_maintenance', array( $this, 'backwards_compat' ) ); |
|
| 29 | - add_action( 'getpaid_daily_maintenance', array( $this, 'maybe_expire_subscriptions' ) ); |
|
| 30 | - add_action( 'getpaid_daily_maintenance', array( $this, 'check_renewing_subscriptions' ) ); |
|
| 31 | - add_action( 'getpaid_daily_maintenance', array( $this, 'maybe_update_geoip_databases' ) ); |
|
| 32 | - |
|
| 33 | - } |
|
| 34 | - |
|
| 35 | - /** |
|
| 36 | - * Schedules a cron to run every day at 7 a.m |
|
| 37 | - * |
|
| 38 | - */ |
|
| 39 | - public function maybe_create_scheduled_event() { |
|
| 40 | - |
|
| 41 | - if ( ! wp_next_scheduled( 'getpaid_daily_maintenance' ) ) { |
|
| 42 | - $timestamp = strtotime( 'tomorrow 07:00:00', current_time( 'timestamp' ) ); |
|
| 43 | - wp_schedule_event( $timestamp, 'daily', 'getpaid_daily_maintenance' ); |
|
| 44 | - } |
|
| 45 | - |
|
| 46 | - } |
|
| 47 | - |
|
| 48 | - /** |
|
| 49 | - * Clears deprecated events. |
|
| 50 | - * |
|
| 51 | - */ |
|
| 52 | - public function maybe_clear_deprecated_events() { |
|
| 53 | - |
|
| 54 | - if ( ! get_option( 'wpinv_cleared_old_events' ) ) { |
|
| 55 | - wp_clear_scheduled_hook( 'wpinv_register_schedule_event_twicedaily' ); |
|
| 56 | - wp_clear_scheduled_hook( 'wpinv_register_schedule_event_daily' ); |
|
| 57 | - update_option( 'wpinv_cleared_old_events', 1 ); |
|
| 58 | - } |
|
| 59 | - |
|
| 60 | - } |
|
| 61 | - |
|
| 62 | - /** |
|
| 63 | - * Fires the old hook for backwards compatibility. |
|
| 64 | - * |
|
| 65 | - */ |
|
| 66 | - public function backwards_compat() { |
|
| 67 | - do_action( 'wpinv_register_schedule_event_daily' ); |
|
| 68 | - } |
|
| 69 | - |
|
| 70 | - /** |
|
| 71 | - * Checks for subscriptions that are scheduled to renew. |
|
| 72 | - * |
|
| 73 | - */ |
|
| 74 | - public function check_renewing_subscriptions() { |
|
| 75 | - |
|
| 76 | - // Fetch subscriptions that expire today. |
|
| 77 | - $args = array( |
|
| 78 | - 'number' => -1, |
|
| 79 | - 'count_total' => false, |
|
| 80 | - 'status' => 'trialling active', |
|
| 81 | - 'date_expires_query' => array( |
|
| 82 | - array( |
|
| 83 | - 'year' => date( 'Y', current_time( 'timestamp' ) ), |
|
| 84 | - 'month' => date( 'n', current_time( 'timestamp' ) ), |
|
| 85 | - 'day' => date( 'j', current_time( 'timestamp' ) ), |
|
| 86 | - 'compare' => '=', |
|
| 87 | - ), |
|
| 88 | - ), |
|
| 89 | - ); |
|
| 90 | - |
|
| 91 | - $subscriptions = new GetPaid_Subscriptions_Query( $args ); |
|
| 92 | - |
|
| 93 | - foreach ( $subscriptions->get_results() as $subscription ) { |
|
| 94 | - |
|
| 95 | - /** @var WPInv_Subscription $subscription */ |
|
| 96 | - if ( $subscription->is_last_renewal() ) { |
|
| 97 | - $subscription->complete(); |
|
| 98 | - } else { |
|
| 99 | - do_action( 'getpaid_should_renew_subscription', $subscription ); |
|
| 100 | - } |
|
| 101 | - |
|
| 102 | - } |
|
| 103 | - |
|
| 104 | - } |
|
| 105 | - |
|
| 106 | - /** |
|
| 107 | - * Expires expired subscriptions. |
|
| 108 | - * |
|
| 109 | - */ |
|
| 110 | - public function maybe_expire_subscriptions() { |
|
| 111 | - |
|
| 112 | - // Fetch expired subscriptions (skips those that expire today). |
|
| 113 | - $args = array( |
|
| 114 | - 'number' => -1, |
|
| 115 | - 'count_total' => false, |
|
| 116 | - 'status' => 'trialling active failing cancelled', |
|
| 117 | - 'date_expires_query' => array( |
|
| 118 | - 'before' => 'yesterday', |
|
| 119 | - 'inclusive' => false, |
|
| 120 | - ), |
|
| 121 | - ); |
|
| 122 | - |
|
| 123 | - $subscriptions = new GetPaid_Subscriptions_Query( $args ); |
|
| 124 | - |
|
| 125 | - foreach ( $subscriptions->get_results() as $subscription ) { |
|
| 126 | - if ( apply_filters( 'getpaid_daily_maintenance_should_expire_subscription', false, $subscription ) ) { |
|
| 127 | - $subscription->set_status( 'expired' ); |
|
| 128 | - $subscription->save(); |
|
| 129 | - } |
|
| 130 | - } |
|
| 131 | - |
|
| 132 | - } |
|
| 133 | - |
|
| 134 | - /** |
|
| 135 | - * Logs cron runs. |
|
| 136 | - * |
|
| 137 | - */ |
|
| 138 | - public function log_cron_run() { |
|
| 139 | - wpinv_error_log( 'GetPaid Daily Cron', false ); |
|
| 140 | - } |
|
| 141 | - |
|
| 142 | - /** |
|
| 143 | - * Updates GeoIP databases. |
|
| 144 | - * |
|
| 145 | - */ |
|
| 146 | - public function maybe_update_geoip_databases() { |
|
| 147 | - $updated = get_transient( 'getpaid_updated_geoip_databases' ); |
|
| 148 | - |
|
| 149 | - if ( false === $updated ) { |
|
| 150 | - set_transient( 'getpaid_updated_geoip_databases', 1, 15 * DAY_IN_SECONDS ); |
|
| 151 | - do_action( 'getpaid_update_geoip_databases' ); |
|
| 152 | - } |
|
| 153 | - |
|
| 154 | - } |
|
| 15 | + /** |
|
| 16 | + * Class constructor. |
|
| 17 | + */ |
|
| 18 | + public function __construct(){ |
|
| 19 | + |
|
| 20 | + // Clear deprecated events. |
|
| 21 | + add_action( 'wp', array( $this, 'maybe_clear_deprecated_events' ) ); |
|
| 22 | + |
|
| 23 | + // (Maybe) schedule a cron that runs daily. |
|
| 24 | + add_action( 'wp', array( $this, 'maybe_create_scheduled_event' ) ); |
|
| 25 | + |
|
| 26 | + // Fired everyday at 7 a.m (this might vary for sites with few visitors) |
|
| 27 | + add_action( 'getpaid_daily_maintenance', array( $this, 'log_cron_run' ) ); |
|
| 28 | + add_action( 'getpaid_daily_maintenance', array( $this, 'backwards_compat' ) ); |
|
| 29 | + add_action( 'getpaid_daily_maintenance', array( $this, 'maybe_expire_subscriptions' ) ); |
|
| 30 | + add_action( 'getpaid_daily_maintenance', array( $this, 'check_renewing_subscriptions' ) ); |
|
| 31 | + add_action( 'getpaid_daily_maintenance', array( $this, 'maybe_update_geoip_databases' ) ); |
|
| 32 | + |
|
| 33 | + } |
|
| 34 | + |
|
| 35 | + /** |
|
| 36 | + * Schedules a cron to run every day at 7 a.m |
|
| 37 | + * |
|
| 38 | + */ |
|
| 39 | + public function maybe_create_scheduled_event() { |
|
| 40 | + |
|
| 41 | + if ( ! wp_next_scheduled( 'getpaid_daily_maintenance' ) ) { |
|
| 42 | + $timestamp = strtotime( 'tomorrow 07:00:00', current_time( 'timestamp' ) ); |
|
| 43 | + wp_schedule_event( $timestamp, 'daily', 'getpaid_daily_maintenance' ); |
|
| 44 | + } |
|
| 45 | + |
|
| 46 | + } |
|
| 47 | + |
|
| 48 | + /** |
|
| 49 | + * Clears deprecated events. |
|
| 50 | + * |
|
| 51 | + */ |
|
| 52 | + public function maybe_clear_deprecated_events() { |
|
| 53 | + |
|
| 54 | + if ( ! get_option( 'wpinv_cleared_old_events' ) ) { |
|
| 55 | + wp_clear_scheduled_hook( 'wpinv_register_schedule_event_twicedaily' ); |
|
| 56 | + wp_clear_scheduled_hook( 'wpinv_register_schedule_event_daily' ); |
|
| 57 | + update_option( 'wpinv_cleared_old_events', 1 ); |
|
| 58 | + } |
|
| 59 | + |
|
| 60 | + } |
|
| 61 | + |
|
| 62 | + /** |
|
| 63 | + * Fires the old hook for backwards compatibility. |
|
| 64 | + * |
|
| 65 | + */ |
|
| 66 | + public function backwards_compat() { |
|
| 67 | + do_action( 'wpinv_register_schedule_event_daily' ); |
|
| 68 | + } |
|
| 69 | + |
|
| 70 | + /** |
|
| 71 | + * Checks for subscriptions that are scheduled to renew. |
|
| 72 | + * |
|
| 73 | + */ |
|
| 74 | + public function check_renewing_subscriptions() { |
|
| 75 | + |
|
| 76 | + // Fetch subscriptions that expire today. |
|
| 77 | + $args = array( |
|
| 78 | + 'number' => -1, |
|
| 79 | + 'count_total' => false, |
|
| 80 | + 'status' => 'trialling active', |
|
| 81 | + 'date_expires_query' => array( |
|
| 82 | + array( |
|
| 83 | + 'year' => date( 'Y', current_time( 'timestamp' ) ), |
|
| 84 | + 'month' => date( 'n', current_time( 'timestamp' ) ), |
|
| 85 | + 'day' => date( 'j', current_time( 'timestamp' ) ), |
|
| 86 | + 'compare' => '=', |
|
| 87 | + ), |
|
| 88 | + ), |
|
| 89 | + ); |
|
| 90 | + |
|
| 91 | + $subscriptions = new GetPaid_Subscriptions_Query( $args ); |
|
| 92 | + |
|
| 93 | + foreach ( $subscriptions->get_results() as $subscription ) { |
|
| 94 | + |
|
| 95 | + /** @var WPInv_Subscription $subscription */ |
|
| 96 | + if ( $subscription->is_last_renewal() ) { |
|
| 97 | + $subscription->complete(); |
|
| 98 | + } else { |
|
| 99 | + do_action( 'getpaid_should_renew_subscription', $subscription ); |
|
| 100 | + } |
|
| 101 | + |
|
| 102 | + } |
|
| 103 | + |
|
| 104 | + } |
|
| 105 | + |
|
| 106 | + /** |
|
| 107 | + * Expires expired subscriptions. |
|
| 108 | + * |
|
| 109 | + */ |
|
| 110 | + public function maybe_expire_subscriptions() { |
|
| 111 | + |
|
| 112 | + // Fetch expired subscriptions (skips those that expire today). |
|
| 113 | + $args = array( |
|
| 114 | + 'number' => -1, |
|
| 115 | + 'count_total' => false, |
|
| 116 | + 'status' => 'trialling active failing cancelled', |
|
| 117 | + 'date_expires_query' => array( |
|
| 118 | + 'before' => 'yesterday', |
|
| 119 | + 'inclusive' => false, |
|
| 120 | + ), |
|
| 121 | + ); |
|
| 122 | + |
|
| 123 | + $subscriptions = new GetPaid_Subscriptions_Query( $args ); |
|
| 124 | + |
|
| 125 | + foreach ( $subscriptions->get_results() as $subscription ) { |
|
| 126 | + if ( apply_filters( 'getpaid_daily_maintenance_should_expire_subscription', false, $subscription ) ) { |
|
| 127 | + $subscription->set_status( 'expired' ); |
|
| 128 | + $subscription->save(); |
|
| 129 | + } |
|
| 130 | + } |
|
| 131 | + |
|
| 132 | + } |
|
| 133 | + |
|
| 134 | + /** |
|
| 135 | + * Logs cron runs. |
|
| 136 | + * |
|
| 137 | + */ |
|
| 138 | + public function log_cron_run() { |
|
| 139 | + wpinv_error_log( 'GetPaid Daily Cron', false ); |
|
| 140 | + } |
|
| 141 | + |
|
| 142 | + /** |
|
| 143 | + * Updates GeoIP databases. |
|
| 144 | + * |
|
| 145 | + */ |
|
| 146 | + public function maybe_update_geoip_databases() { |
|
| 147 | + $updated = get_transient( 'getpaid_updated_geoip_databases' ); |
|
| 148 | + |
|
| 149 | + if ( false === $updated ) { |
|
| 150 | + set_transient( 'getpaid_updated_geoip_databases', 1, 15 * DAY_IN_SECONDS ); |
|
| 151 | + do_action( 'getpaid_update_geoip_databases' ); |
|
| 152 | + } |
|
| 153 | + |
|
| 154 | + } |
|
| 155 | 155 | |
| 156 | 156 | } |
@@ -6,7 +6,7 @@ discard block |
||
| 6 | 6 | * |
| 7 | 7 | */ |
| 8 | 8 | if ( ! defined( 'ABSPATH' ) ) { |
| 9 | - exit; |
|
| 9 | + exit; |
|
| 10 | 10 | } |
| 11 | 11 | |
| 12 | 12 | /** |
@@ -15,85 +15,85 @@ discard block |
||
| 15 | 15 | class WPInv_Admin_Addons extends Ayecode_Addons { |
| 16 | 16 | |
| 17 | 17 | |
| 18 | - /** |
|
| 19 | - * Get the extensions page tabs. |
|
| 20 | - * |
|
| 21 | - * @return array of tabs. |
|
| 22 | - */ |
|
| 23 | - public function get_tabs(){ |
|
| 24 | - $tabs = array( |
|
| 25 | - 'addons' => __("Addons", "invoicing"), |
|
| 18 | + /** |
|
| 19 | + * Get the extensions page tabs. |
|
| 20 | + * |
|
| 21 | + * @return array of tabs. |
|
| 22 | + */ |
|
| 23 | + public function get_tabs(){ |
|
| 24 | + $tabs = array( |
|
| 25 | + 'addons' => __("Addons", "invoicing"), |
|
| 26 | 26 | 'gateways' => __("Payment Gateways", "invoicing"), |
| 27 | 27 | 'recommended_plugins' => __("Recommended plugins", "invoicing"), |
| 28 | 28 | 'membership' => __("Membership", "invoicing"), |
| 29 | - ); |
|
| 30 | - |
|
| 31 | - return $tabs; |
|
| 32 | - } |
|
| 33 | - |
|
| 34 | - /** |
|
| 35 | - * Get section content for the addons screen. |
|
| 36 | - * |
|
| 37 | - * @param string $section_id |
|
| 38 | - * |
|
| 39 | - * @return array |
|
| 40 | - */ |
|
| 41 | - public function get_section_data( $section_id ) { |
|
| 42 | - $section = self::get_tab( $section_id ); |
|
| 43 | - $api_url = "https://wpinvoicing.com/edd-api/v2/products/"; |
|
| 44 | - $section_data = new stdClass(); |
|
| 45 | - |
|
| 46 | - if($section_id=='recommended_plugins'){ |
|
| 47 | - $section_data->products = self::get_recommend_wp_plugins_edd_formatted(); |
|
| 48 | - } |
|
| 49 | - elseif ( ! empty( $section ) ) { |
|
| 50 | - if ( false === ( $section_data = get_transient( 'wpi_addons_section_' . $section_id ) ) ) { //@todo restore after testing |
|
| 51 | - //if ( 1==1) { |
|
| 52 | - |
|
| 53 | - $query_args = array( 'category' => $section_id, 'number' => 100); |
|
| 54 | - $query_args = apply_filters('wpeu_edd_api_query_args',$query_args,$api_url,$section_id); |
|
| 55 | - |
|
| 56 | - $raw_section = wp_safe_remote_get( esc_url_raw( add_query_arg($query_args ,$api_url) ), array( 'user-agent' => 'Invoicing Addons Page','timeout' => 15, ) ); |
|
| 57 | - |
|
| 58 | - if ( ! is_wp_error( $raw_section ) ) { |
|
| 59 | - $section_data = json_decode( wp_remote_retrieve_body( $raw_section ) ); |
|
| 60 | - |
|
| 61 | - if ( ! empty( $section_data->products ) ) { |
|
| 62 | - set_transient( 'wpi_addons_section_' . $section_id, $section_data, DAY_IN_SECONDS ); |
|
| 63 | - } |
|
| 64 | - } |
|
| 65 | - } |
|
| 66 | - |
|
| 67 | - } |
|
| 68 | - |
|
| 69 | - $products = isset($section_data->products) ? $section_data->products : array(); |
|
| 70 | - if ( 'addons' == $section_id ) { |
|
| 71 | - |
|
| 72 | - $quotes = new stdClass(); |
|
| 73 | - $quotes->info = new stdClass(); |
|
| 74 | - $quotes->info->id = ''; |
|
| 75 | - $quotes->info->slug = 'invoicing-quotes'; |
|
| 76 | - $quotes->info->title = __( 'Quotes', 'invoicing' ); |
|
| 77 | - $quotes->info->excerpt = __( 'Create quotes and estimates', 'invoicing' ); |
|
| 78 | - $quotes->info->link = 'https://wordpress.org/plugins/invoicing-quotes/'; |
|
| 79 | - $quotes->info->thumbnail = 'https://wpgetpaid.com/wp-content/uploads/sites/13/edd/2019/11/Quotes-1-768x384.png'; |
|
| 80 | - |
|
| 81 | - $products[] = $quotes; |
|
| 82 | - } |
|
| 29 | + ); |
|
| 30 | + |
|
| 31 | + return $tabs; |
|
| 32 | + } |
|
| 33 | + |
|
| 34 | + /** |
|
| 35 | + * Get section content for the addons screen. |
|
| 36 | + * |
|
| 37 | + * @param string $section_id |
|
| 38 | + * |
|
| 39 | + * @return array |
|
| 40 | + */ |
|
| 41 | + public function get_section_data( $section_id ) { |
|
| 42 | + $section = self::get_tab( $section_id ); |
|
| 43 | + $api_url = "https://wpinvoicing.com/edd-api/v2/products/"; |
|
| 44 | + $section_data = new stdClass(); |
|
| 45 | + |
|
| 46 | + if($section_id=='recommended_plugins'){ |
|
| 47 | + $section_data->products = self::get_recommend_wp_plugins_edd_formatted(); |
|
| 48 | + } |
|
| 49 | + elseif ( ! empty( $section ) ) { |
|
| 50 | + if ( false === ( $section_data = get_transient( 'wpi_addons_section_' . $section_id ) ) ) { //@todo restore after testing |
|
| 51 | + //if ( 1==1) { |
|
| 52 | + |
|
| 53 | + $query_args = array( 'category' => $section_id, 'number' => 100); |
|
| 54 | + $query_args = apply_filters('wpeu_edd_api_query_args',$query_args,$api_url,$section_id); |
|
| 55 | + |
|
| 56 | + $raw_section = wp_safe_remote_get( esc_url_raw( add_query_arg($query_args ,$api_url) ), array( 'user-agent' => 'Invoicing Addons Page','timeout' => 15, ) ); |
|
| 57 | + |
|
| 58 | + if ( ! is_wp_error( $raw_section ) ) { |
|
| 59 | + $section_data = json_decode( wp_remote_retrieve_body( $raw_section ) ); |
|
| 60 | + |
|
| 61 | + if ( ! empty( $section_data->products ) ) { |
|
| 62 | + set_transient( 'wpi_addons_section_' . $section_id, $section_data, DAY_IN_SECONDS ); |
|
| 63 | + } |
|
| 64 | + } |
|
| 65 | + } |
|
| 66 | + |
|
| 67 | + } |
|
| 68 | + |
|
| 69 | + $products = isset($section_data->products) ? $section_data->products : array(); |
|
| 70 | + if ( 'addons' == $section_id ) { |
|
| 71 | + |
|
| 72 | + $quotes = new stdClass(); |
|
| 73 | + $quotes->info = new stdClass(); |
|
| 74 | + $quotes->info->id = ''; |
|
| 75 | + $quotes->info->slug = 'invoicing-quotes'; |
|
| 76 | + $quotes->info->title = __( 'Quotes', 'invoicing' ); |
|
| 77 | + $quotes->info->excerpt = __( 'Create quotes and estimates', 'invoicing' ); |
|
| 78 | + $quotes->info->link = 'https://wordpress.org/plugins/invoicing-quotes/'; |
|
| 79 | + $quotes->info->thumbnail = 'https://wpgetpaid.com/wp-content/uploads/sites/13/edd/2019/11/Quotes-1-768x384.png'; |
|
| 80 | + |
|
| 81 | + $products[] = $quotes; |
|
| 82 | + } |
|
| 83 | 83 | |
| 84 | - return apply_filters( 'wpi_addons_section_data', $products, $section_id ); |
|
| 85 | - } |
|
| 86 | - |
|
| 87 | - /** |
|
| 88 | - * Outputs a button. |
|
| 89 | - *ccc |
|
| 90 | - * @param string $url |
|
| 91 | - * @param string $text |
|
| 92 | - * @param string $theme |
|
| 93 | - * @param string $plugin |
|
| 94 | - */ |
|
| 95 | - public function output_button( $addon ) { |
|
| 96 | - $current_tab = empty( $_GET['tab'] ) ? 'addons' : sanitize_title( $_GET['tab'] ); |
|
| 84 | + return apply_filters( 'wpi_addons_section_data', $products, $section_id ); |
|
| 85 | + } |
|
| 86 | + |
|
| 87 | + /** |
|
| 88 | + * Outputs a button. |
|
| 89 | + *ccc |
|
| 90 | + * @param string $url |
|
| 91 | + * @param string $text |
|
| 92 | + * @param string $theme |
|
| 93 | + * @param string $plugin |
|
| 94 | + */ |
|
| 95 | + public function output_button( $addon ) { |
|
| 96 | + $current_tab = empty( $_GET['tab'] ) ? 'addons' : sanitize_title( $_GET['tab'] ); |
|
| 97 | 97 | // $button_text = __('Free','invoicing'); |
| 98 | 98 | // $licensing = false; |
| 99 | 99 | // $installed = false; |
@@ -105,123 +105,123 @@ discard block |
||
| 105 | 105 | // $install_status = 'get'; |
| 106 | 106 | // $onclick = ''; |
| 107 | 107 | |
| 108 | - $wp_org_themes = array('supreme-directory','directory-starter'); |
|
| 109 | - |
|
| 110 | - $button_args = array( |
|
| 111 | - 'type' => ($current_tab == 'addons' || $current_tab =='gateways') ? 'addons' : $current_tab, |
|
| 112 | - 'id' => isset($addon->info->id) ? absint($addon->info->id) : '', |
|
| 113 | - 'title' => isset($addon->info->title) ? $addon->info->title : '', |
|
| 114 | - 'button_text' => __('Free','invoicing'), |
|
| 115 | - 'price_text' => __('Free','invoicing'), |
|
| 116 | - 'link' => isset($addon->info->link) ? $addon->info->link : '', // link to product |
|
| 117 | - 'url' => isset($addon->info->link) ? $addon->info->link : '', // button url |
|
| 118 | - 'class' => 'button-primary', |
|
| 119 | - 'install_status' => 'get', |
|
| 120 | - 'installed' => false, |
|
| 121 | - 'price' => '', |
|
| 122 | - 'licensing' => isset($addon->licensing->enabled) && $addon->licensing->enabled ? true : false, |
|
| 123 | - 'license' => isset($addon->licensing->license) && $addon->licensing->license ? $addon->licensing->license : '', |
|
| 124 | - 'onclick' => '', |
|
| 125 | - 'slug' => isset($addon->info->slug) ? $addon->info->slug : '', |
|
| 126 | - 'active' => false, |
|
| 127 | - 'file' => '', |
|
| 128 | - 'update_url' => '', |
|
| 129 | - ); |
|
| 130 | - |
|
| 131 | - if( 'invoicing-quotes' == $addon->info->slug || 'getpaid-stripe-payments' == $addon->info->slug || ( $current_tab == 'recommended_plugins' && isset($addon->info->slug) && $addon->info->slug )){ |
|
| 132 | - include_once( ABSPATH . 'wp-admin/includes/plugin-install.php' ); //for plugins_api.. |
|
| 133 | - $status = install_plugin_install_status(array("slug"=>$button_args['slug'],"version"=>"")); |
|
| 134 | - $button_args['install_status'] = isset($status['status']) ? $status['status'] : 'install'; |
|
| 135 | - $button_args['file'] = isset($status['file']) ? $status['file'] : ''; |
|
| 136 | - }elseif( ($current_tab == 'addons' || $current_tab =='gateways') && isset($addon->info->id) && $addon->info->id){ |
|
| 137 | - include_once( ABSPATH . 'wp-admin/includes/plugin-install.php' ); //for plugins_api.. |
|
| 138 | - if(!empty($addon->licensing->edd_slug)){$button_args['slug'] = $addon->licensing->edd_slug;} |
|
| 139 | - $status = self::install_plugin_install_status($addon); |
|
| 140 | - $button_args['file'] = isset($status['file']) ? $status['file'] : ''; |
|
| 141 | - if(isset($status['status'])){$button_args['install_status'] = $status['status'];} |
|
| 142 | - $button_args['update_url'] = "https://wpinvoicing.com"; |
|
| 143 | - }elseif($current_tab == 'themes' && isset($addon->info->id) && $addon->info->id) { |
|
| 144 | - if(!empty($addon->licensing->edd_slug)){$button_args['slug'] = $addon->licensing->edd_slug;} |
|
| 145 | - $button_args['installed'] = self::is_theme_installed($addon); |
|
| 146 | - if(!in_array($button_args['slug'],$wp_org_themes)){ |
|
| 147 | - $button_args['update_url'] = "https://wpinvoicing.com"; |
|
| 148 | - } |
|
| 149 | - } |
|
| 150 | - |
|
| 151 | - // set price |
|
| 152 | - if(isset($addon->pricing) && !empty($addon->pricing)){ |
|
| 153 | - if(is_object($addon->pricing)){ |
|
| 154 | - $prices = (Array)$addon->pricing; |
|
| 155 | - $button_args['price'] = reset($prices); |
|
| 156 | - }elseif(isset($addon->pricing)){ |
|
| 157 | - $button_args['price'] = $addon->pricing; |
|
| 158 | - } |
|
| 159 | - } |
|
| 160 | - |
|
| 161 | - // set price text |
|
| 162 | - if( $button_args['price'] && $button_args['price'] != '0.00' ){ |
|
| 163 | - $button_args['price_text'] = sprintf( __('From: $%d', 'invoicing'), $button_args['price']); |
|
| 164 | - } |
|
| 165 | - |
|
| 166 | - |
|
| 167 | - // set if installed |
|
| 168 | - if(in_array($button_args['install_status'], array('installed','latest_installed','update_available','newer_installed'))){ |
|
| 169 | - $button_args['installed'] = true; |
|
| 170 | - } |
|
| 108 | + $wp_org_themes = array('supreme-directory','directory-starter'); |
|
| 109 | + |
|
| 110 | + $button_args = array( |
|
| 111 | + 'type' => ($current_tab == 'addons' || $current_tab =='gateways') ? 'addons' : $current_tab, |
|
| 112 | + 'id' => isset($addon->info->id) ? absint($addon->info->id) : '', |
|
| 113 | + 'title' => isset($addon->info->title) ? $addon->info->title : '', |
|
| 114 | + 'button_text' => __('Free','invoicing'), |
|
| 115 | + 'price_text' => __('Free','invoicing'), |
|
| 116 | + 'link' => isset($addon->info->link) ? $addon->info->link : '', // link to product |
|
| 117 | + 'url' => isset($addon->info->link) ? $addon->info->link : '', // button url |
|
| 118 | + 'class' => 'button-primary', |
|
| 119 | + 'install_status' => 'get', |
|
| 120 | + 'installed' => false, |
|
| 121 | + 'price' => '', |
|
| 122 | + 'licensing' => isset($addon->licensing->enabled) && $addon->licensing->enabled ? true : false, |
|
| 123 | + 'license' => isset($addon->licensing->license) && $addon->licensing->license ? $addon->licensing->license : '', |
|
| 124 | + 'onclick' => '', |
|
| 125 | + 'slug' => isset($addon->info->slug) ? $addon->info->slug : '', |
|
| 126 | + 'active' => false, |
|
| 127 | + 'file' => '', |
|
| 128 | + 'update_url' => '', |
|
| 129 | + ); |
|
| 130 | + |
|
| 131 | + if( 'invoicing-quotes' == $addon->info->slug || 'getpaid-stripe-payments' == $addon->info->slug || ( $current_tab == 'recommended_plugins' && isset($addon->info->slug) && $addon->info->slug )){ |
|
| 132 | + include_once( ABSPATH . 'wp-admin/includes/plugin-install.php' ); //for plugins_api.. |
|
| 133 | + $status = install_plugin_install_status(array("slug"=>$button_args['slug'],"version"=>"")); |
|
| 134 | + $button_args['install_status'] = isset($status['status']) ? $status['status'] : 'install'; |
|
| 135 | + $button_args['file'] = isset($status['file']) ? $status['file'] : ''; |
|
| 136 | + }elseif( ($current_tab == 'addons' || $current_tab =='gateways') && isset($addon->info->id) && $addon->info->id){ |
|
| 137 | + include_once( ABSPATH . 'wp-admin/includes/plugin-install.php' ); //for plugins_api.. |
|
| 138 | + if(!empty($addon->licensing->edd_slug)){$button_args['slug'] = $addon->licensing->edd_slug;} |
|
| 139 | + $status = self::install_plugin_install_status($addon); |
|
| 140 | + $button_args['file'] = isset($status['file']) ? $status['file'] : ''; |
|
| 141 | + if(isset($status['status'])){$button_args['install_status'] = $status['status'];} |
|
| 142 | + $button_args['update_url'] = "https://wpinvoicing.com"; |
|
| 143 | + }elseif($current_tab == 'themes' && isset($addon->info->id) && $addon->info->id) { |
|
| 144 | + if(!empty($addon->licensing->edd_slug)){$button_args['slug'] = $addon->licensing->edd_slug;} |
|
| 145 | + $button_args['installed'] = self::is_theme_installed($addon); |
|
| 146 | + if(!in_array($button_args['slug'],$wp_org_themes)){ |
|
| 147 | + $button_args['update_url'] = "https://wpinvoicing.com"; |
|
| 148 | + } |
|
| 149 | + } |
|
| 150 | + |
|
| 151 | + // set price |
|
| 152 | + if(isset($addon->pricing) && !empty($addon->pricing)){ |
|
| 153 | + if(is_object($addon->pricing)){ |
|
| 154 | + $prices = (Array)$addon->pricing; |
|
| 155 | + $button_args['price'] = reset($prices); |
|
| 156 | + }elseif(isset($addon->pricing)){ |
|
| 157 | + $button_args['price'] = $addon->pricing; |
|
| 158 | + } |
|
| 159 | + } |
|
| 160 | + |
|
| 161 | + // set price text |
|
| 162 | + if( $button_args['price'] && $button_args['price'] != '0.00' ){ |
|
| 163 | + $button_args['price_text'] = sprintf( __('From: $%d', 'invoicing'), $button_args['price']); |
|
| 164 | + } |
|
| 165 | + |
|
| 166 | + |
|
| 167 | + // set if installed |
|
| 168 | + if(in_array($button_args['install_status'], array('installed','latest_installed','update_available','newer_installed'))){ |
|
| 169 | + $button_args['installed'] = true; |
|
| 170 | + } |
|
| 171 | 171 | |
| 172 | 172 | // print_r($button_args); |
| 173 | - // set if active |
|
| 174 | - if($button_args['installed'] && ($button_args['file'] || $button_args['type'] == 'themes')){ |
|
| 175 | - if($button_args['type'] != 'themes'){ |
|
| 176 | - $button_args['active'] = is_plugin_active($button_args['file']); |
|
| 177 | - }else{ |
|
| 178 | - $button_args['active'] = self::is_theme_active($addon); |
|
| 179 | - } |
|
| 180 | - } |
|
| 181 | - |
|
| 182 | - // set button text and class |
|
| 183 | - if($button_args['active']){ |
|
| 184 | - $button_args['button_text'] = __('Active','invoicing'); |
|
| 185 | - $button_args['class'] = ' button-secondary disabled '; |
|
| 186 | - }elseif($button_args['installed']){ |
|
| 187 | - $button_args['button_text'] = __('Activate','invoicing'); |
|
| 188 | - |
|
| 189 | - if($button_args['type'] != 'themes'){ |
|
| 190 | - if ( current_user_can( 'manage_options' ) ) { |
|
| 191 | - $button_args['url'] = wp_nonce_url(admin_url('plugins.php?action=activate&plugin='.$button_args['file']), 'activate-plugin_' . $button_args['file']); |
|
| 192 | - }else{ |
|
| 193 | - $button_args['url'] = '#'; |
|
| 194 | - } |
|
| 195 | - }else{ |
|
| 196 | - if ( current_user_can( 'switch_themes' ) ) { |
|
| 197 | - $button_args['url'] = self::get_theme_activation_url($addon); |
|
| 198 | - }else{ |
|
| 199 | - $button_args['url'] = '#'; |
|
| 200 | - } |
|
| 201 | - } |
|
| 202 | - |
|
| 203 | - }else{ |
|
| 204 | - if($button_args['type'] == 'recommended_plugins'){ |
|
| 205 | - $button_args['button_text'] = __('Install','invoicing'); |
|
| 206 | - }else{ |
|
| 207 | - $button_args['button_text'] = __('Get it','invoicing'); |
|
| 208 | - |
|
| 209 | - /*if($button_args['type'] == 'themes' && in_array($button_args['slug'],$wp_org_themes) ){ |
|
| 173 | + // set if active |
|
| 174 | + if($button_args['installed'] && ($button_args['file'] || $button_args['type'] == 'themes')){ |
|
| 175 | + if($button_args['type'] != 'themes'){ |
|
| 176 | + $button_args['active'] = is_plugin_active($button_args['file']); |
|
| 177 | + }else{ |
|
| 178 | + $button_args['active'] = self::is_theme_active($addon); |
|
| 179 | + } |
|
| 180 | + } |
|
| 181 | + |
|
| 182 | + // set button text and class |
|
| 183 | + if($button_args['active']){ |
|
| 184 | + $button_args['button_text'] = __('Active','invoicing'); |
|
| 185 | + $button_args['class'] = ' button-secondary disabled '; |
|
| 186 | + }elseif($button_args['installed']){ |
|
| 187 | + $button_args['button_text'] = __('Activate','invoicing'); |
|
| 188 | + |
|
| 189 | + if($button_args['type'] != 'themes'){ |
|
| 190 | + if ( current_user_can( 'manage_options' ) ) { |
|
| 191 | + $button_args['url'] = wp_nonce_url(admin_url('plugins.php?action=activate&plugin='.$button_args['file']), 'activate-plugin_' . $button_args['file']); |
|
| 192 | + }else{ |
|
| 193 | + $button_args['url'] = '#'; |
|
| 194 | + } |
|
| 195 | + }else{ |
|
| 196 | + if ( current_user_can( 'switch_themes' ) ) { |
|
| 197 | + $button_args['url'] = self::get_theme_activation_url($addon); |
|
| 198 | + }else{ |
|
| 199 | + $button_args['url'] = '#'; |
|
| 200 | + } |
|
| 201 | + } |
|
| 202 | + |
|
| 203 | + }else{ |
|
| 204 | + if($button_args['type'] == 'recommended_plugins'){ |
|
| 205 | + $button_args['button_text'] = __('Install','invoicing'); |
|
| 206 | + }else{ |
|
| 207 | + $button_args['button_text'] = __('Get it','invoicing'); |
|
| 208 | + |
|
| 209 | + /*if($button_args['type'] == 'themes' && in_array($button_args['slug'],$wp_org_themes) ){ |
|
| 210 | 210 | $button_args['button_text'] = __('Install','invoicing'); |
| 211 | 211 | $button_args['url'] = self::get_theme_install_url($button_args['slug']); |
| 212 | 212 | $button_args['onclick'] = 'gd_set_button_installing(this);'; |
| 213 | 213 | }*/ |
| 214 | 214 | |
| 215 | - } |
|
| 216 | - } |
|
| 215 | + } |
|
| 216 | + } |
|
| 217 | 217 | |
| 218 | 218 | |
| 219 | - // filter the button arguments |
|
| 220 | - $button_args = apply_filters('edd_api_button_args',$button_args); |
|
| 219 | + // filter the button arguments |
|
| 220 | + $button_args = apply_filters('edd_api_button_args',$button_args); |
|
| 221 | 221 | // print_r($button_args); |
| 222 | - // set price text |
|
| 223 | - if(isset($button_args['price_text'])){ |
|
| 224 | - ?> |
|
| 222 | + // set price text |
|
| 223 | + if(isset($button_args['price_text'])){ |
|
| 224 | + ?> |
|
| 225 | 225 | <a |
| 226 | 226 | target="_blank" |
| 227 | 227 | class="addons-price-text" |
@@ -229,15 +229,15 @@ discard block |
||
| 229 | 229 | <?php echo esc_html( $button_args['price_text'] ); ?> |
| 230 | 230 | </a> |
| 231 | 231 | <?php |
| 232 | - } |
|
| 232 | + } |
|
| 233 | 233 | |
| 234 | 234 | |
| 235 | - $target = ''; |
|
| 236 | - if ( ! empty( $button_args['url'] ) ) { |
|
| 237 | - $target = strpos($button_args['url'], get_site_url()) !== false ? '' : ' target="_blank" '; |
|
| 238 | - } |
|
| 235 | + $target = ''; |
|
| 236 | + if ( ! empty( $button_args['url'] ) ) { |
|
| 237 | + $target = strpos($button_args['url'], get_site_url()) !== false ? '' : ' target="_blank" '; |
|
| 238 | + } |
|
| 239 | 239 | |
| 240 | - ?> |
|
| 240 | + ?> |
|
| 241 | 241 | <a |
| 242 | 242 | data-licence="<?php echo esc_attr($button_args['license']);?>" |
| 243 | 243 | data-licensing="<?php echo $button_args['licensing'] ? 1 : 0;?>" |
@@ -260,33 +260,33 @@ discard block |
||
| 260 | 260 | <?php |
| 261 | 261 | |
| 262 | 262 | |
| 263 | - } |
|
| 264 | - |
|
| 265 | - |
|
| 266 | - /** |
|
| 267 | - * Handles output of the addons page in admin. |
|
| 268 | - */ |
|
| 269 | - public function output() { |
|
| 270 | - $tabs = self::get_tabs(); |
|
| 271 | - $sections = self::get_sections(); |
|
| 272 | - $theme = wp_get_theme(); |
|
| 273 | - $section_keys = array_keys( $sections ); |
|
| 274 | - $current_section = isset( $_GET['section'] ) ? sanitize_text_field( $_GET['section'] ) : current( $section_keys ); |
|
| 275 | - $current_tab = empty( $_GET['tab'] ) ? 'addons' : sanitize_title( $_GET['tab'] ); |
|
| 276 | - include_once( WPINV_PLUGIN_DIR . '/includes/admin/html-admin-page-addons.php' ); |
|
| 277 | - } |
|
| 278 | - |
|
| 279 | - /** |
|
| 280 | - * A list of recommended wp.org plugins. |
|
| 281 | - * @return array |
|
| 282 | - */ |
|
| 283 | - public function get_recommend_wp_plugins(){ |
|
| 284 | - $plugins = array( |
|
| 263 | + } |
|
| 264 | + |
|
| 265 | + |
|
| 266 | + /** |
|
| 267 | + * Handles output of the addons page in admin. |
|
| 268 | + */ |
|
| 269 | + public function output() { |
|
| 270 | + $tabs = self::get_tabs(); |
|
| 271 | + $sections = self::get_sections(); |
|
| 272 | + $theme = wp_get_theme(); |
|
| 273 | + $section_keys = array_keys( $sections ); |
|
| 274 | + $current_section = isset( $_GET['section'] ) ? sanitize_text_field( $_GET['section'] ) : current( $section_keys ); |
|
| 275 | + $current_tab = empty( $_GET['tab'] ) ? 'addons' : sanitize_title( $_GET['tab'] ); |
|
| 276 | + include_once( WPINV_PLUGIN_DIR . '/includes/admin/html-admin-page-addons.php' ); |
|
| 277 | + } |
|
| 278 | + |
|
| 279 | + /** |
|
| 280 | + * A list of recommended wp.org plugins. |
|
| 281 | + * @return array |
|
| 282 | + */ |
|
| 283 | + public function get_recommend_wp_plugins(){ |
|
| 284 | + $plugins = array( |
|
| 285 | 285 | 'invoicing-quotes' => array( |
| 286 | 286 | 'url' => 'https://wordpress.org/plugins/invoicing-quotes/', |
| 287 | 287 | 'slug' => 'invoicing-quotes', |
| 288 | - 'name' => 'Quotes', |
|
| 289 | - 'thumbnail' => 'https://ps.w.org/invoicing-quotes/assets/banner-772x250.png', |
|
| 288 | + 'name' => 'Quotes', |
|
| 289 | + 'thumbnail' => 'https://ps.w.org/invoicing-quotes/assets/banner-772x250.png', |
|
| 290 | 290 | 'desc' => __('Allows you to create quotes, send them to clients and convert them to Invoices when accepted by the customer.','invoicing'), |
| 291 | 291 | ), |
| 292 | 292 | 'geodirectory' => array( |
@@ -301,8 +301,8 @@ discard block |
||
| 301 | 301 | 'name' => 'UsersWP', |
| 302 | 302 | 'desc' => __('Allow frontend user login and registration as well as have slick profile pages.','invoicing'), |
| 303 | 303 | ), |
| 304 | - ); |
|
| 304 | + ); |
|
| 305 | 305 | |
| 306 | - return $plugins; |
|
| 307 | - } |
|
| 306 | + return $plugins; |
|
| 307 | + } |
|
| 308 | 308 | } |