@@ -7,15 +7,15 @@ |
||
7 | 7 | * @version 1.0.19 |
8 | 8 | */ |
9 | 9 | |
10 | -defined( 'ABSPATH' ) || exit; |
|
10 | +defined('ABSPATH') || exit; |
|
11 | 11 | |
12 | 12 | ?> |
13 | 13 | |
14 | 14 | <label><span v-html="form_element.label"></span></label> |
15 | 15 | <div class="d-flex w-100 flex-column align-items-center justify-content-center p-2" style="height: 200px; border: 3px dashed rgb(136, 136, 136); cursor: pointer;"> |
16 | 16 | <div class="h5 text-dark"> |
17 | - <span v-if="form_element.max_file_num > 1"><?php esc_html_e( 'Drag files to this area or click to upload', 'invoicing' ); ?></span> |
|
18 | - <span v-if="form_element.max_file_num < 2"><?php esc_html_e( 'Drag your file to this area or click to upload', 'invoicing' ); ?></span> |
|
17 | + <span v-if="form_element.max_file_num > 1"><?php esc_html_e('Drag files to this area or click to upload', 'invoicing'); ?></span> |
|
18 | + <span v-if="form_element.max_file_num < 2"><?php esc_html_e('Drag your file to this area or click to upload', 'invoicing'); ?></span> |
|
19 | 19 | </div> |
20 | 20 | <small v-if='form_element.description' class='form-text text-muted' v-html='form_element.description'></small> |
21 | 21 | </div> |
@@ -8,25 +8,25 @@ |
||
8 | 8 | * @var WPInv_Invoice $invoice |
9 | 9 | */ |
10 | 10 | |
11 | -defined( 'ABSPATH' ) || exit; |
|
11 | +defined('ABSPATH') || exit; |
|
12 | 12 | |
13 | 13 | ?> |
14 | 14 | |
15 | 15 | <div class="getpaid-header-left-actions"> |
16 | 16 | |
17 | - <?php if ( $invoice->is_type( 'invoice' ) && $invoice->needs_payment() && ! $invoice->is_held() ) : ?> |
|
18 | - <a class="btn btn-sm btn-primary m-1 d-inline-block invoice-action-pay" href="<?php echo esc_url( $invoice->get_checkout_payment_url() ); ?>"> |
|
19 | - <?php esc_html_e( 'Pay For Invoice', 'invoicing' ); ?> |
|
17 | + <?php if ($invoice->is_type('invoice') && $invoice->needs_payment() && !$invoice->is_held()) : ?> |
|
18 | + <a class="btn btn-sm btn-primary m-1 d-inline-block invoice-action-pay" href="<?php echo esc_url($invoice->get_checkout_payment_url()); ?>"> |
|
19 | + <?php esc_html_e('Pay For Invoice', 'invoicing'); ?> |
|
20 | 20 | </a> |
21 | 21 | <?php endif; ?> |
22 | 22 | |
23 | - <?php if ( $invoice->is_type( 'invoice' ) && $invoice->is_paid() ) : ?> |
|
24 | - <a class="btn btn-sm btn-info m-1 d-inline-block invoice-action-receipt" href="<?php echo esc_url( $invoice->get_receipt_url() ); ?>"> |
|
25 | - <?php esc_html_e( 'View Receipt', 'invoicing' ); ?> |
|
23 | + <?php if ($invoice->is_type('invoice') && $invoice->is_paid()) : ?> |
|
24 | + <a class="btn btn-sm btn-info m-1 d-inline-block invoice-action-receipt" href="<?php echo esc_url($invoice->get_receipt_url()); ?>"> |
|
25 | + <?php esc_html_e('View Receipt', 'invoicing'); ?> |
|
26 | 26 | </a> |
27 | 27 | <?php endif; ?> |
28 | 28 | |
29 | - <?php do_action( 'wpinv_invoice_display_left_actions', $invoice ); ?> |
|
29 | + <?php do_action('wpinv_invoice_display_left_actions', $invoice); ?> |
|
30 | 30 | |
31 | 31 | </div> |
32 | 32 |
@@ -7,11 +7,11 @@ discard block |
||
7 | 7 | * @version 1.0.19 |
8 | 8 | */ |
9 | 9 | |
10 | -defined( 'ABSPATH' ) || exit; |
|
10 | +defined('ABSPATH') || exit; |
|
11 | 11 | |
12 | 12 | // Fetch the invoice. |
13 | -if ( empty( $invoice ) ) { |
|
14 | - $invoice = new WPInv_Invoice( $GLOBALS['post'] ); |
|
13 | +if (empty($invoice)) { |
|
14 | + $invoice = new WPInv_Invoice($GLOBALS['post']); |
|
15 | 15 | } |
16 | 16 | |
17 | 17 | ?><!DOCTYPE html> |
@@ -21,16 +21,16 @@ discard block |
||
21 | 21 | |
22 | 22 | <head> |
23 | 23 | |
24 | - <meta charset="<?php bloginfo( 'charset' ); ?>"> |
|
24 | + <meta charset="<?php bloginfo('charset'); ?>"> |
|
25 | 25 | <meta name="viewport" content="width=device-width, initial-scale=1.0" > |
26 | 26 | |
27 | 27 | <meta name="robots" content="noindex,nofollow"> |
28 | 28 | |
29 | 29 | <link rel="profile" href="https://gmpg.org/xfn/11"> |
30 | 30 | |
31 | - <title><?php esc_html_e( 'Invalid Access', 'invoicing' ); ?></title> |
|
31 | + <title><?php esc_html_e('Invalid Access', 'invoicing'); ?></title> |
|
32 | 32 | |
33 | - <?php do_action( 'wpinv_invoice_print_head', $invoice ); ?> |
|
33 | + <?php do_action('wpinv_invoice_print_head', $invoice); ?> |
|
34 | 34 | |
35 | 35 | </head> |
36 | 36 | |
@@ -39,20 +39,20 @@ discard block |
||
39 | 39 | |
40 | 40 | <?php |
41 | 41 | |
42 | - if ( ! $invoice->exists() || $invoice->is_draft() ) { |
|
43 | - $error = __( 'This invoice was deleted or is not visible.', 'invoicing' ); |
|
42 | + if (!$invoice->exists() || $invoice->is_draft()) { |
|
43 | + $error = __('This invoice was deleted or is not visible.', 'invoicing'); |
|
44 | 44 | } else { |
45 | 45 | |
46 | 46 | $user_id = get_current_user_id(); |
47 | - if ( wpinv_require_login_to_checkout() && empty( $user_id ) ) { |
|
48 | - $error = __( 'You must be logged in to view this invoice.', 'invoicing' ); |
|
47 | + if (wpinv_require_login_to_checkout() && empty($user_id)) { |
|
48 | + $error = __('You must be logged in to view this invoice.', 'invoicing'); |
|
49 | 49 | $error .= sprintf( |
50 | 50 | ' <a href="%s">%s</a>', |
51 | - wp_login_url( $invoice->get_view_url() ), |
|
52 | - __( 'Login.', 'invoicing' ) |
|
51 | + wp_login_url($invoice->get_view_url()), |
|
52 | + __('Login.', 'invoicing') |
|
53 | 53 | ); |
54 | 54 | } else { |
55 | - $error = __( 'This invoice is only viewable by clicking on the invoice link that was sent to you via email.', 'invoicing' ); |
|
55 | + $error = __('This invoice is only viewable by clicking on the invoice link that was sent to you via email.', 'invoicing'); |
|
56 | 56 | } |
57 | 57 | } |
58 | 58 | |
@@ -60,8 +60,8 @@ discard block |
||
60 | 60 | |
61 | 61 | <div class="container"> |
62 | 62 | <div class="alert alert-danger m-5" role="alert"> |
63 | - <h4 class="alert-heading"><?php esc_html_e( 'Access Denied', 'invoicing' ); ?></h4> |
|
64 | - <p><?php echo wp_kses_post( $error ); ?></p> |
|
63 | + <h4 class="alert-heading"><?php esc_html_e('Access Denied', 'invoicing'); ?></h4> |
|
64 | + <p><?php echo wp_kses_post($error); ?></p> |
|
65 | 65 | </div> |
66 | 66 | </div> |
67 | 67 |
@@ -9,45 +9,45 @@ |
||
9 | 9 | * @var WPInv_Subscriptions_Widget $widget |
10 | 10 | */ |
11 | 11 | |
12 | -defined( 'ABSPATH' ) || exit; |
|
12 | +defined('ABSPATH') || exit; |
|
13 | 13 | |
14 | -foreach ( array_keys( $widget->get_subscriptions_table_columns() ) as $column ) : |
|
14 | +foreach (array_keys($widget->get_subscriptions_table_columns()) as $column) : |
|
15 | 15 | |
16 | - $class = sanitize_html_class( $column ); |
|
17 | - echo "<td class='getpaid-subscriptions-table-column-" . esc_attr( $class ) . "'>"; |
|
16 | + $class = sanitize_html_class($column); |
|
17 | + echo "<td class='getpaid-subscriptions-table-column-" . esc_attr($class) . "'>"; |
|
18 | 18 | |
19 | - do_action( "getpaid_subscriptions_before_frontend_subscription_table_$column", $subscription ); |
|
19 | + do_action("getpaid_subscriptions_before_frontend_subscription_table_$column", $subscription); |
|
20 | 20 | |
21 | - switch ( $column ) : |
|
21 | + switch ($column) : |
|
22 | 22 | |
23 | 23 | case 'subscription': |
24 | 24 | $subscription_id = (int) $subscription->get_id(); |
25 | - $url = esc_url( $subscription->get_view_url() ); |
|
25 | + $url = esc_url($subscription->get_view_url()); |
|
26 | 26 | $id_label = sprintf( |
27 | - esc_attr_x( '#%s', 'subscription id', 'invoicing' ), |
|
27 | + esc_attr_x('#%s', 'subscription id', 'invoicing'), |
|
28 | 28 | (int) $subscription->get_id() |
29 | 29 | ); |
30 | - echo wp_kses_post( $widget->add_row_actions( "<a href='$url' class='font-weight-bold text-decoration-none'>$id_label</a>", $subscription ) ); |
|
30 | + echo wp_kses_post($widget->add_row_actions("<a href='$url' class='font-weight-bold text-decoration-none'>$id_label</a>", $subscription)); |
|
31 | 31 | break; |
32 | 32 | |
33 | 33 | case 'status': |
34 | - echo esc_html( $subscription->get_status_label() ); |
|
34 | + echo esc_html($subscription->get_status_label()); |
|
35 | 35 | break; |
36 | 36 | |
37 | 37 | case 'renewal-date': |
38 | - $renewal = getpaid_format_date_value( $subscription->get_next_renewal_date() ); |
|
39 | - echo $subscription->is_active() ? esc_html( $renewal ) : '—'; |
|
38 | + $renewal = getpaid_format_date_value($subscription->get_next_renewal_date()); |
|
39 | + echo $subscription->is_active() ? esc_html($renewal) : '—'; |
|
40 | 40 | break; |
41 | 41 | |
42 | 42 | case 'amount': |
43 | - $frequency = getpaid_get_subscription_period_label( $subscription->get_period(), $subscription->get_frequency(), '' ); |
|
44 | - $amount = wpinv_price( $subscription->get_recurring_amount(), $subscription->get_parent_payment()->get_currency() ); |
|
45 | - echo wp_kses_post( "<span>$amount</span> / <span class='getpaid-item-recurring-period'>$frequency</span>" ); |
|
43 | + $frequency = getpaid_get_subscription_period_label($subscription->get_period(), $subscription->get_frequency(), ''); |
|
44 | + $amount = wpinv_price($subscription->get_recurring_amount(), $subscription->get_parent_payment()->get_currency()); |
|
45 | + echo wp_kses_post("<span>$amount</span> / <span class='getpaid-item-recurring-period'>$frequency</span>"); |
|
46 | 46 | break; |
47 | 47 | |
48 | 48 | endswitch; |
49 | 49 | |
50 | - do_action( "getpaid_subscriptions_frontend_subscription_table_$column", $subscription ); |
|
50 | + do_action("getpaid_subscriptions_frontend_subscription_table_$column", $subscription); |
|
51 | 51 | |
52 | 52 | echo '</td>'; |
53 | 53 |
@@ -5,7 +5,7 @@ discard block |
||
5 | 5 | * All Invoicing extensions screen related functions can be found here. |
6 | 6 | * |
7 | 7 | */ |
8 | -if ( ! defined( 'ABSPATH' ) ) { |
|
8 | +if (!defined('ABSPATH')) { |
|
9 | 9 | exit; |
10 | 10 | } |
11 | 11 | |
@@ -22,10 +22,10 @@ discard block |
||
22 | 22 | */ |
23 | 23 | public function get_tabs() { |
24 | 24 | $tabs = array( |
25 | - 'addons' => __( 'Addons', 'invoicing' ), |
|
26 | - 'gateways' => __( 'Payment Gateways', 'invoicing' ), |
|
27 | - 'recommended_plugins' => __( 'Recommended plugins', 'invoicing' ), |
|
28 | - 'membership' => __( 'Membership', 'invoicing' ), |
|
25 | + 'addons' => __('Addons', 'invoicing'), |
|
26 | + 'gateways' => __('Payment Gateways', 'invoicing'), |
|
27 | + 'recommended_plugins' => __('Recommended plugins', 'invoicing'), |
|
28 | + 'membership' => __('Membership', 'invoicing'), |
|
29 | 29 | ); |
30 | 30 | |
31 | 31 | return $tabs; |
@@ -38,57 +38,57 @@ discard block |
||
38 | 38 | * |
39 | 39 | * @return array |
40 | 40 | */ |
41 | - public function get_section_data( $section_id ) { |
|
42 | - $section = self::get_tab( $section_id ); |
|
41 | + public function get_section_data($section_id) { |
|
42 | + $section = self::get_tab($section_id); |
|
43 | 43 | $api_url = 'https://wpinvoicing.com/edd-api/v2/products/'; |
44 | 44 | $section_data = new stdClass(); |
45 | 45 | |
46 | - if ( $section_id == 'recommended_plugins' ) { |
|
46 | + if ($section_id == 'recommended_plugins') { |
|
47 | 47 | $section_data->products = self::get_recommend_wp_plugins_edd_formatted(); |
48 | - } elseif ( ! empty( $section ) ) { |
|
49 | - if ( false === ( $section_data = get_transient( 'wpi_addons_section_' . $section_id ) ) ) { //@todo restore after testing |
|
48 | + } elseif (!empty($section)) { |
|
49 | + if (false === ($section_data = get_transient('wpi_addons_section_' . $section_id))) { //@todo restore after testing |
|
50 | 50 | //if ( 1==1) { |
51 | 51 | |
52 | 52 | $query_args = array( |
53 | 53 | 'category' => $section_id, |
54 | 54 | 'number' => 100, |
55 | 55 | ); |
56 | - $query_args = apply_filters( 'wpeu_edd_api_query_args', $query_args, $api_url, $section_id ); |
|
56 | + $query_args = apply_filters('wpeu_edd_api_query_args', $query_args, $api_url, $section_id); |
|
57 | 57 | |
58 | 58 | $raw_section = wp_safe_remote_get( |
59 | - esc_url_raw( add_query_arg( $query_args, $api_url ) ), |
|
59 | + esc_url_raw(add_query_arg($query_args, $api_url)), |
|
60 | 60 | array( |
61 | 61 | 'user-agent' => 'Invoicing Addons Page', |
62 | 62 | 'timeout' => 15, |
63 | 63 | ) |
64 | 64 | ); |
65 | 65 | |
66 | - if ( ! is_wp_error( $raw_section ) ) { |
|
67 | - $section_data = json_decode( wp_remote_retrieve_body( $raw_section ) ); |
|
66 | + if (!is_wp_error($raw_section)) { |
|
67 | + $section_data = json_decode(wp_remote_retrieve_body($raw_section)); |
|
68 | 68 | |
69 | - if ( ! empty( $section_data->products ) ) { |
|
70 | - set_transient( 'wpi_addons_section_' . $section_id, $section_data, DAY_IN_SECONDS ); |
|
69 | + if (!empty($section_data->products)) { |
|
70 | + set_transient('wpi_addons_section_' . $section_id, $section_data, DAY_IN_SECONDS); |
|
71 | 71 | } |
72 | 72 | } |
73 | 73 | } |
74 | 74 | } |
75 | 75 | |
76 | - $products = isset( $section_data->products ) ? $section_data->products : array(); |
|
77 | - if ( 'addons' == $section_id ) { |
|
76 | + $products = isset($section_data->products) ? $section_data->products : array(); |
|
77 | + if ('addons' == $section_id) { |
|
78 | 78 | |
79 | 79 | $quotes = new stdClass(); |
80 | 80 | $quotes->info = new stdClass(); |
81 | 81 | $quotes->info->id = ''; |
82 | 82 | $quotes->info->slug = 'invoicing-quotes'; |
83 | - $quotes->info->title = __( 'Quotes', 'invoicing' ); |
|
84 | - $quotes->info->excerpt = __( 'Create quotes and estimates', 'invoicing' ); |
|
83 | + $quotes->info->title = __('Quotes', 'invoicing'); |
|
84 | + $quotes->info->excerpt = __('Create quotes and estimates', 'invoicing'); |
|
85 | 85 | $quotes->info->link = 'https://wordpress.org/plugins/invoicing-quotes/'; |
86 | 86 | $quotes->info->thumbnail = WPINV_PLUGIN_URL . 'assets/images/Quotes-1-768x384.png'; |
87 | 87 | |
88 | 88 | $products[] = $quotes; |
89 | 89 | } |
90 | 90 | |
91 | - return apply_filters( 'wpi_addons_section_data', $products, $section_id ); |
|
91 | + return apply_filters('wpi_addons_section_data', $products, $section_id); |
|
92 | 92 | } |
93 | 93 | |
94 | 94 | /** |
@@ -99,8 +99,8 @@ discard block |
||
99 | 99 | * @param string $theme |
100 | 100 | * @param string $plugin |
101 | 101 | */ |
102 | - public function output_button( $addon ) { |
|
103 | - $current_tab = empty( $_GET['tab'] ) ? 'addons' : sanitize_title( $_GET['tab'] ); |
|
102 | + public function output_button($addon) { |
|
103 | + $current_tab = empty($_GET['tab']) ? 'addons' : sanitize_title($_GET['tab']); |
|
104 | 104 | // $button_text = __('Free','invoicing'); |
105 | 105 | // $licensing = false; |
106 | 106 | // $installed = false; |
@@ -112,30 +112,30 @@ discard block |
||
112 | 112 | // $install_status = 'get'; |
113 | 113 | // $onclick = ''; |
114 | 114 | |
115 | - $wp_org_themes = array( 'supreme-directory', 'directory-starter' ); |
|
115 | + $wp_org_themes = array('supreme-directory', 'directory-starter'); |
|
116 | 116 | |
117 | 117 | $button_args = array( |
118 | 118 | 'type' => ($current_tab == 'addons' || $current_tab == 'gateways') ? 'addons' : $current_tab, |
119 | - 'id' => isset( $addon->info->id ) ? absint( $addon->info->id ) : '', |
|
120 | - 'title' => isset( $addon->info->title ) ? $addon->info->title : '', |
|
121 | - 'button_text' => __( 'Free', 'invoicing' ), |
|
122 | - 'price_text' => __( 'Free', 'invoicing' ), |
|
123 | - 'link' => isset( $addon->info->link ) ? $addon->info->link : '', // link to product |
|
124 | - 'url' => isset( $addon->info->link ) ? $addon->info->link : '', // button url |
|
119 | + 'id' => isset($addon->info->id) ? absint($addon->info->id) : '', |
|
120 | + 'title' => isset($addon->info->title) ? $addon->info->title : '', |
|
121 | + 'button_text' => __('Free', 'invoicing'), |
|
122 | + 'price_text' => __('Free', 'invoicing'), |
|
123 | + 'link' => isset($addon->info->link) ? $addon->info->link : '', // link to product |
|
124 | + 'url' => isset($addon->info->link) ? $addon->info->link : '', // button url |
|
125 | 125 | 'class' => 'button-primary', |
126 | 126 | 'install_status' => 'get', |
127 | 127 | 'installed' => false, |
128 | 128 | 'price' => '', |
129 | - 'licensing' => isset( $addon->licensing->enabled ) && $addon->licensing->enabled ? true : false, |
|
130 | - 'license' => isset( $addon->licensing->license ) && $addon->licensing->license ? $addon->licensing->license : '', |
|
129 | + 'licensing' => isset($addon->licensing->enabled) && $addon->licensing->enabled ? true : false, |
|
130 | + 'license' => isset($addon->licensing->license) && $addon->licensing->license ? $addon->licensing->license : '', |
|
131 | 131 | 'onclick' => '', |
132 | - 'slug' => isset( $addon->info->slug ) ? $addon->info->slug : '', |
|
132 | + 'slug' => isset($addon->info->slug) ? $addon->info->slug : '', |
|
133 | 133 | 'active' => false, |
134 | 134 | 'file' => '', |
135 | 135 | 'update_url' => '', |
136 | 136 | ); |
137 | 137 | |
138 | - if ( 'invoicing-quotes' == $addon->info->slug || 'getpaid-stripe-payments' == $addon->info->slug || ( $current_tab == 'recommended_plugins' && isset( $addon->info->slug ) && $addon->info->slug ) ) { |
|
138 | + if ('invoicing-quotes' == $addon->info->slug || 'getpaid-stripe-payments' == $addon->info->slug || ($current_tab == 'recommended_plugins' && isset($addon->info->slug) && $addon->info->slug)) { |
|
139 | 139 | include_once ABSPATH . 'wp-admin/includes/plugin-install.php'; //for plugins_api.. |
140 | 140 | $status = install_plugin_install_status( |
141 | 141 | array( |
@@ -143,81 +143,81 @@ discard block |
||
143 | 143 | 'version' => '', |
144 | 144 | ) |
145 | 145 | ); |
146 | - $button_args['install_status'] = isset( $status['status'] ) ? $status['status'] : 'install'; |
|
147 | - $button_args['file'] = isset( $status['file'] ) ? $status['file'] : ''; |
|
148 | - } elseif ( ($current_tab == 'addons' || $current_tab == 'gateways') && isset( $addon->info->id ) && $addon->info->id ) { |
|
146 | + $button_args['install_status'] = isset($status['status']) ? $status['status'] : 'install'; |
|
147 | + $button_args['file'] = isset($status['file']) ? $status['file'] : ''; |
|
148 | + } elseif (($current_tab == 'addons' || $current_tab == 'gateways') && isset($addon->info->id) && $addon->info->id) { |
|
149 | 149 | include_once ABSPATH . 'wp-admin/includes/plugin-install.php'; //for plugins_api.. |
150 | - if ( ! empty( $addon->licensing->edd_slug ) ) { |
|
151 | -$button_args['slug'] = $addon->licensing->edd_slug;} |
|
152 | - $status = self::install_plugin_install_status( $addon ); |
|
153 | - $button_args['file'] = isset( $status['file'] ) ? $status['file'] : ''; |
|
154 | - if ( isset( $status['status'] ) ) { |
|
155 | -$button_args['install_status'] = $status['status'];} |
|
150 | + if (!empty($addon->licensing->edd_slug)) { |
|
151 | +$button_args['slug'] = $addon->licensing->edd_slug; } |
|
152 | + $status = self::install_plugin_install_status($addon); |
|
153 | + $button_args['file'] = isset($status['file']) ? $status['file'] : ''; |
|
154 | + if (isset($status['status'])) { |
|
155 | +$button_args['install_status'] = $status['status']; } |
|
156 | 156 | $button_args['update_url'] = 'https://wpinvoicing.com'; |
157 | - } elseif ( $current_tab == 'themes' && isset( $addon->info->id ) && $addon->info->id ) { |
|
158 | - if ( ! empty( $addon->licensing->edd_slug ) ) { |
|
159 | -$button_args['slug'] = $addon->licensing->edd_slug;} |
|
160 | - $button_args['installed'] = self::is_theme_installed( $addon ); |
|
161 | - if ( ! in_array( $button_args['slug'], $wp_org_themes ) ) { |
|
157 | + } elseif ($current_tab == 'themes' && isset($addon->info->id) && $addon->info->id) { |
|
158 | + if (!empty($addon->licensing->edd_slug)) { |
|
159 | +$button_args['slug'] = $addon->licensing->edd_slug; } |
|
160 | + $button_args['installed'] = self::is_theme_installed($addon); |
|
161 | + if (!in_array($button_args['slug'], $wp_org_themes)) { |
|
162 | 162 | $button_args['update_url'] = 'https://wpinvoicing.com'; |
163 | 163 | } |
164 | 164 | } |
165 | 165 | |
166 | 166 | // set price |
167 | - if ( isset( $addon->pricing ) && ! empty( $addon->pricing ) ) { |
|
168 | - if ( is_object( $addon->pricing ) ) { |
|
169 | - $prices = (array)$addon->pricing; |
|
170 | - $button_args['price'] = reset( $prices ); |
|
171 | - } elseif ( isset( $addon->pricing ) ) { |
|
167 | + if (isset($addon->pricing) && !empty($addon->pricing)) { |
|
168 | + if (is_object($addon->pricing)) { |
|
169 | + $prices = (array) $addon->pricing; |
|
170 | + $button_args['price'] = reset($prices); |
|
171 | + } elseif (isset($addon->pricing)) { |
|
172 | 172 | $button_args['price'] = $addon->pricing; |
173 | 173 | } |
174 | 174 | } |
175 | 175 | |
176 | 176 | // set price text |
177 | - if ( $button_args['price'] && $button_args['price'] != '0.00' ) { |
|
178 | - $button_args['price_text'] = sprintf( __( 'From: $%d', 'invoicing' ), $button_args['price'] ); |
|
177 | + if ($button_args['price'] && $button_args['price'] != '0.00') { |
|
178 | + $button_args['price_text'] = sprintf(__('From: $%d', 'invoicing'), $button_args['price']); |
|
179 | 179 | } |
180 | 180 | |
181 | 181 | // set if installed |
182 | - if ( in_array( $button_args['install_status'], array( 'installed', 'latest_installed', 'update_available', 'newer_installed' ) ) ) { |
|
182 | + if (in_array($button_args['install_status'], array('installed', 'latest_installed', 'update_available', 'newer_installed'))) { |
|
183 | 183 | $button_args['installed'] = true; |
184 | 184 | } |
185 | 185 | |
186 | 186 | // print_r($button_args); |
187 | 187 | // set if active |
188 | - if ( $button_args['installed'] && ($button_args['file'] || $button_args['type'] == 'themes') ) { |
|
189 | - if ( $button_args['type'] != 'themes' ) { |
|
190 | - $button_args['active'] = is_plugin_active( $button_args['file'] ); |
|
188 | + if ($button_args['installed'] && ($button_args['file'] || $button_args['type'] == 'themes')) { |
|
189 | + if ($button_args['type'] != 'themes') { |
|
190 | + $button_args['active'] = is_plugin_active($button_args['file']); |
|
191 | 191 | } else { |
192 | - $button_args['active'] = self::is_theme_active( $addon ); |
|
192 | + $button_args['active'] = self::is_theme_active($addon); |
|
193 | 193 | } |
194 | 194 | } |
195 | 195 | |
196 | 196 | // set button text and class |
197 | - if ( $button_args['active'] ) { |
|
198 | - $button_args['button_text'] = __( 'Active', 'invoicing' ); |
|
197 | + if ($button_args['active']) { |
|
198 | + $button_args['button_text'] = __('Active', 'invoicing'); |
|
199 | 199 | $button_args['class'] = ' button-secondary disabled '; |
200 | - } elseif ( $button_args['installed'] ) { |
|
201 | - $button_args['button_text'] = __( 'Activate', 'invoicing' ); |
|
200 | + } elseif ($button_args['installed']) { |
|
201 | + $button_args['button_text'] = __('Activate', 'invoicing'); |
|
202 | 202 | |
203 | - if ( $button_args['type'] != 'themes' ) { |
|
204 | - if ( current_user_can( 'manage_options' ) ) { |
|
205 | - $button_args['url'] = wp_nonce_url( admin_url( 'plugins.php?action=activate&plugin=' . $button_args['file'] ), 'activate-plugin_' . $button_args['file'] ); |
|
203 | + if ($button_args['type'] != 'themes') { |
|
204 | + if (current_user_can('manage_options')) { |
|
205 | + $button_args['url'] = wp_nonce_url(admin_url('plugins.php?action=activate&plugin=' . $button_args['file']), 'activate-plugin_' . $button_args['file']); |
|
206 | 206 | } else { |
207 | 207 | $button_args['url'] = '#'; |
208 | 208 | } |
209 | 209 | } else { |
210 | - if ( current_user_can( 'switch_themes' ) ) { |
|
211 | - $button_args['url'] = self::get_theme_activation_url( $addon ); |
|
210 | + if (current_user_can('switch_themes')) { |
|
211 | + $button_args['url'] = self::get_theme_activation_url($addon); |
|
212 | 212 | } else { |
213 | 213 | $button_args['url'] = '#'; |
214 | 214 | } |
215 | 215 | } |
216 | 216 | } else { |
217 | - if ( $button_args['type'] == 'recommended_plugins' ) { |
|
218 | - $button_args['button_text'] = __( 'Install', 'invoicing' ); |
|
217 | + if ($button_args['type'] == 'recommended_plugins') { |
|
218 | + $button_args['button_text'] = __('Install', 'invoicing'); |
|
219 | 219 | } else { |
220 | - $button_args['button_text'] = __( 'Get it', 'invoicing' ); |
|
220 | + $button_args['button_text'] = __('Get it', 'invoicing'); |
|
221 | 221 | |
222 | 222 | /*if($button_args['type'] == 'themes' && in_array($button_args['slug'],$wp_org_themes) ){ |
223 | 223 | $button_args['button_text'] = __('Install','invoicing'); |
@@ -229,41 +229,41 @@ discard block |
||
229 | 229 | } |
230 | 230 | |
231 | 231 | // filter the button arguments |
232 | - $button_args = apply_filters( 'edd_api_button_args', $button_args ); |
|
232 | + $button_args = apply_filters('edd_api_button_args', $button_args); |
|
233 | 233 | // print_r($button_args); |
234 | 234 | // set price text |
235 | - if ( isset( $button_args['price_text'] ) ) { |
|
235 | + if (isset($button_args['price_text'])) { |
|
236 | 236 | ?> |
237 | 237 | <a |
238 | 238 | target="_blank" |
239 | 239 | class="addons-price-text" |
240 | - href="<?php echo esc_url( $button_args['link'] ); ?>"> |
|
241 | - <?php echo esc_html( $button_args['price_text'] ); ?> |
|
240 | + href="<?php echo esc_url($button_args['link']); ?>"> |
|
241 | + <?php echo esc_html($button_args['price_text']); ?> |
|
242 | 242 | </a> |
243 | 243 | <?php |
244 | 244 | } |
245 | 245 | |
246 | 246 | ?> |
247 | 247 | <a |
248 | - data-licence="<?php echo esc_attr( $button_args['license'] ); ?>" |
|
248 | + data-licence="<?php echo esc_attr($button_args['license']); ?>" |
|
249 | 249 | data-licensing="<?php echo $button_args['licensing'] ? 1 : 0; ?>" |
250 | - data-title="<?php echo esc_attr( $button_args['title'] ); ?>" |
|
251 | - data-type="<?php echo esc_attr( $button_args['type'] ); ?>" |
|
252 | - data-text-error-message="<?php esc_attr_e( 'Something went wrong!', 'invoicing' ); ?>" |
|
253 | - data-text-activate="<?php esc_attr_e( 'Activate', 'invoicing' ); ?>" |
|
254 | - data-text-activating="<?php esc_attr_e( 'Activating', 'invoicing' ); ?>" |
|
255 | - data-text-deactivate="<?php esc_attr_e( 'Deactivate', 'invoicing' ); ?>" |
|
256 | - data-text-installed="<?php esc_attr_e( 'Installed', 'invoicing' ); ?>" |
|
257 | - data-text-install="<?php esc_attr_e( 'Install', 'invoicing' ); ?>" |
|
258 | - data-text-installing="<?php esc_attr_e( 'Installing', 'invoicing' ); ?>" |
|
259 | - data-text-error="<?php esc_attr_e( 'Error', 'invoicing' ); ?>" |
|
250 | + data-title="<?php echo esc_attr($button_args['title']); ?>" |
|
251 | + data-type="<?php echo esc_attr($button_args['type']); ?>" |
|
252 | + data-text-error-message="<?php esc_attr_e('Something went wrong!', 'invoicing'); ?>" |
|
253 | + data-text-activate="<?php esc_attr_e('Activate', 'invoicing'); ?>" |
|
254 | + data-text-activating="<?php esc_attr_e('Activating', 'invoicing'); ?>" |
|
255 | + data-text-deactivate="<?php esc_attr_e('Deactivate', 'invoicing'); ?>" |
|
256 | + data-text-installed="<?php esc_attr_e('Installed', 'invoicing'); ?>" |
|
257 | + data-text-install="<?php esc_attr_e('Install', 'invoicing'); ?>" |
|
258 | + data-text-installing="<?php esc_attr_e('Installing', 'invoicing'); ?>" |
|
259 | + data-text-error="<?php esc_attr_e('Error', 'invoicing'); ?>" |
|
260 | 260 | <?php |
261 | - if ( ! empty( $button_args['onclick'] ) ) { |
|
262 | -echo " onclick='" . esc_attr( $button_args['onclick'] ) . "' ";} |
|
261 | + if (!empty($button_args['onclick'])) { |
|
262 | +echo " onclick='" . esc_attr($button_args['onclick']) . "' "; } |
|
263 | 263 | ?> |
264 | - class="addons-button <?php echo esc_attr( $button_args['class'] ); ?>" |
|
265 | - href="<?php echo esc_url( $button_args['url'] ); ?>"> |
|
266 | - <?php echo esc_html( $button_args['button_text'] ); ?> |
|
264 | + class="addons-button <?php echo esc_attr($button_args['class']); ?>" |
|
265 | + href="<?php echo esc_url($button_args['url']); ?>"> |
|
266 | + <?php echo esc_html($button_args['button_text']); ?> |
|
267 | 267 | </a> |
268 | 268 | <?php |
269 | 269 | |
@@ -277,9 +277,9 @@ discard block |
||
277 | 277 | $tabs = self::get_tabs(); |
278 | 278 | $sections = self::get_sections(); |
279 | 279 | $theme = wp_get_theme(); |
280 | - $section_keys = array_keys( $sections ); |
|
281 | - $current_section = isset( $_GET['section'] ) ? sanitize_text_field( $_GET['section'] ) : current( $section_keys ); |
|
282 | - $current_tab = empty( $_GET['tab'] ) ? 'addons' : sanitize_title( $_GET['tab'] ); |
|
280 | + $section_keys = array_keys($sections); |
|
281 | + $current_section = isset($_GET['section']) ? sanitize_text_field($_GET['section']) : current($section_keys); |
|
282 | + $current_tab = empty($_GET['tab']) ? 'addons' : sanitize_title($_GET['tab']); |
|
283 | 283 | include_once WPINV_PLUGIN_DIR . '/includes/admin/html-admin-page-addons.php'; |
284 | 284 | } |
285 | 285 | |
@@ -294,19 +294,19 @@ discard block |
||
294 | 294 | 'slug' => 'invoicing-quotes', |
295 | 295 | 'name' => 'Quotes', |
296 | 296 | 'thumbnail' => 'https://ps.w.org/invoicing-quotes/assets/banner-772x250.png', |
297 | - 'desc' => __( 'Allows you to create quotes, send them to clients and convert them to Invoices when accepted by the customer.', 'invoicing' ), |
|
297 | + 'desc' => __('Allows you to create quotes, send them to clients and convert them to Invoices when accepted by the customer.', 'invoicing'), |
|
298 | 298 | ), |
299 | 299 | 'geodirectory' => array( |
300 | 300 | 'url' => 'https://wordpress.org/plugins/geodirectory/', |
301 | 301 | 'slug' => 'geodirectory', |
302 | 302 | 'name' => 'GeoDirectory', |
303 | - 'desc' => __( 'Turn any WordPress theme into a global business directory portal.', 'invoicing' ), |
|
303 | + 'desc' => __('Turn any WordPress theme into a global business directory portal.', 'invoicing'), |
|
304 | 304 | ), |
305 | 305 | 'userswp' => array( |
306 | 306 | 'url' => 'https://wordpress.org/plugins/userswp/', |
307 | 307 | 'slug' => 'userswp', |
308 | 308 | 'name' => 'UsersWP', |
309 | - 'desc' => __( 'Allow frontend user login and registration as well as have slick profile pages.', 'invoicing' ), |
|
309 | + 'desc' => __('Allow frontend user login and registration as well as have slick profile pages.', 'invoicing'), |
|
310 | 310 | ), |
311 | 311 | ); |
312 | 312 |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | function __construct($name, $slug) { |
61 | 61 | $this->name = $name; |
62 | 62 | $this->slug = $slug; |
63 | - if (!empty($_GET['id'])){ |
|
63 | + if (!empty($_GET['id'])) { |
|
64 | 64 | $this->isWizard = false; |
65 | 65 | } |
66 | 66 | } |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | |
76 | 76 | function is_active_addon($post_type = null) { |
77 | 77 | |
78 | - if ( ! class_exists( 'PMXI_Plugin' ) ) { |
|
78 | + if (!class_exists('PMXI_Plugin')) { |
|
79 | 79 | return false; |
80 | 80 | } |
81 | 81 | |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | } |
88 | 88 | } |
89 | 89 | |
90 | - if ($addon_active){ |
|
90 | + if ($addon_active) { |
|
91 | 91 | |
92 | 92 | $current_theme = wp_get_theme(); |
93 | 93 | |
@@ -97,18 +97,18 @@ discard block |
||
97 | 97 | |
98 | 98 | $addon_active = (@in_array($theme_name, $this->active_themes) or empty($this->active_themes)) ? true : false; |
99 | 99 | |
100 | - if ( ! $addon_active and $parent_theme ){ |
|
100 | + if (!$addon_active and $parent_theme) { |
|
101 | 101 | $parent_theme_name = $parent_theme->get('Name'); |
102 | 102 | $addon_active = (@in_array($parent_theme_name, $this->active_themes) or empty($this->active_themes)) ? true : false; |
103 | 103 | |
104 | 104 | } |
105 | 105 | |
106 | - if ( $addon_active and ! empty($this->active_plugins) ){ |
|
106 | + if ($addon_active and !empty($this->active_plugins)) { |
|
107 | 107 | |
108 | - include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); |
|
108 | + include_once(ABSPATH . 'wp-admin/includes/plugin.php'); |
|
109 | 109 | |
110 | 110 | foreach ($this->active_plugins as $plugin) { |
111 | - if ( ! is_plugin_active($plugin) ) { |
|
111 | + if (!is_plugin_active($plugin)) { |
|
112 | 112 | $addon_active = false; |
113 | 113 | break; |
114 | 114 | } |
@@ -137,9 +137,9 @@ discard block |
||
137 | 137 | $this->when_to_run = "always"; |
138 | 138 | } |
139 | 139 | |
140 | - @$this->active_post_types = ( ! empty($conditions['post_types'])) ? $conditions['post_types'] : array(); |
|
141 | - @$this->active_themes = ( ! empty($conditions['themes'])) ? $conditions['themes'] : array(); |
|
142 | - @$this->active_plugins = ( ! empty($conditions['plugins'])) ? $conditions['plugins'] : array(); |
|
140 | + @$this->active_post_types = (!empty($conditions['post_types'])) ? $conditions['post_types'] : array(); |
|
141 | + @$this->active_themes = (!empty($conditions['themes'])) ? $conditions['themes'] : array(); |
|
142 | + @$this->active_plugins = (!empty($conditions['plugins'])) ? $conditions['plugins'] : array(); |
|
143 | 143 | |
144 | 144 | add_filter('pmxi_addons', array($this, 'wpai_api_register')); |
145 | 145 | add_filter('wp_all_import_addon_parse', array($this, 'wpai_api_parse')); |
@@ -148,15 +148,15 @@ discard block |
||
148 | 148 | add_filter('pmxi_options_options', array($this, 'wpai_api_options')); |
149 | 149 | add_filter('wp_all_import_image_sections', array($this, 'additional_sections'), 10, 1); |
150 | 150 | add_filter('pmxi_custom_types', array($this, 'filter_post_types'), 10, 2); |
151 | - add_filter('pmxi_post_list_order', array($this,'sort_post_types'), 10, 1); |
|
152 | - add_filter('wp_all_import_post_type_image', array($this, 'post_type_image'), 10, 1 ); |
|
153 | - add_action('pmxi_extend_options_featured', array($this, 'wpai_api_metabox'), 10, 2); |
|
151 | + add_filter('pmxi_post_list_order', array($this, 'sort_post_types'), 10, 1); |
|
152 | + add_filter('wp_all_import_post_type_image', array($this, 'post_type_image'), 10, 1); |
|
153 | + add_action('pmxi_extend_options_featured', array($this, 'wpai_api_metabox'), 10, 2); |
|
154 | 154 | add_action('admin_init', array($this, 'admin_notice_ignore')); |
155 | 155 | } |
156 | 156 | |
157 | 157 | function parse($data) { |
158 | 158 | |
159 | - if ( ! $this->is_active_addon($data['import']->options['custom_type'])) return false; |
|
159 | + if (!$this->is_active_addon($data['import']->options['custom_type'])) return false; |
|
160 | 160 | |
161 | 161 | $parsedData = $this->helper_parse($data, $this->options_array()); |
162 | 162 | return $parsedData; |
@@ -166,11 +166,11 @@ discard block |
||
166 | 166 | |
167 | 167 | function add_field($field_slug, $field_name, $field_type, $enum_values = null, $tooltip = "", $is_html = true, $default_text = '') { |
168 | 168 | |
169 | - $field = array("name" => $field_name, "type" => $field_type, "enum_values" => $enum_values, "tooltip" => $tooltip, "is_sub_field" => false, "is_main_field" => false, "slug" => $field_slug, "is_html" => $is_html, 'default_text' => $default_text); |
|
169 | + $field = array("name" => $field_name, "type" => $field_type, "enum_values" => $enum_values, "tooltip" => $tooltip, "is_sub_field" => false, "is_main_field" => false, "slug" => $field_slug, "is_html" => $is_html, 'default_text' => $default_text); |
|
170 | 170 | |
171 | 171 | $this->fields[$field_slug] = $field; |
172 | 172 | |
173 | - if ( ! empty($enum_values) ){ |
|
173 | + if (!empty($enum_values)) { |
|
174 | 174 | foreach ($enum_values as $key => $value) { |
175 | 175 | if (is_array($value)) |
176 | 176 | { |
@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | else |
182 | 182 | { |
183 | 183 | foreach ($value as $n => $param) { |
184 | - if (is_array($param) and ! empty($this->fields[$param['slug']])){ |
|
184 | + if (is_array($param) and !empty($this->fields[$param['slug']])) { |
|
185 | 185 | $this->fields[$param['slug']]['is_sub_field'] = true; |
186 | 186 | } |
187 | 187 | } |
@@ -194,7 +194,7 @@ discard block |
||
194 | 194 | |
195 | 195 | } |
196 | 196 | |
197 | - function add_acf_field($field){ |
|
197 | + function add_acf_field($field) { |
|
198 | 198 | $this->fields[$field->post_name] = array( |
199 | 199 | 'type' => 'acf', |
200 | 200 | 'field_obj' => $field |
@@ -203,13 +203,13 @@ discard block |
||
203 | 203 | |
204 | 204 | private $acfGroups = array(); |
205 | 205 | |
206 | - function use_acf_group($acf_group){ |
|
206 | + function use_acf_group($acf_group) { |
|
207 | 207 | $this->add_text( |
208 | 208 | '<div class="postbox acf_postbox default acf_signle_group rad4"> |
209 | - <h3 class="hndle" style="margin-top:0;"><span>'.$acf_group['title'].'</span></h3> |
|
209 | + <h3 class="hndle" style="margin-top:0;"><span>'.$acf_group['title'] . '</span></h3> |
|
210 | 210 | <div class="inside">'); |
211 | 211 | $acf_fields = get_posts(array('posts_per_page' => -1, 'post_type' => 'acf-field', 'post_parent' => $acf_group['ID'], 'post_status' => 'publish', 'orderby' => 'menu_order', 'order' => 'ASC')); |
212 | - if (!empty($acf_fields)){ |
|
212 | + if (!empty($acf_fields)) { |
|
213 | 213 | foreach ($acf_fields as $field) { |
214 | 214 | $this->add_acf_field($field); |
215 | 215 | } |
@@ -219,7 +219,7 @@ discard block |
||
219 | 219 | add_filter('wp_all_import_acf_is_show_group', array($this, 'acf_is_show_group'), 10, 2); |
220 | 220 | } |
221 | 221 | |
222 | - function acf_is_show_group($is_show, $acf_group){ |
|
222 | + function acf_is_show_group($is_show, $acf_group) { |
|
223 | 223 | return (in_array($acf_group['ID'], $this->acfGroups)) ? false : true; |
224 | 224 | } |
225 | 225 | |
@@ -231,7 +231,7 @@ discard block |
||
231 | 231 | * @param string $default_value - default option value |
232 | 232 | * |
233 | 233 | */ |
234 | - function add_option($slug, $default_value = ''){ |
|
234 | + function add_option($slug, $default_value = '') { |
|
235 | 235 | $this->options[$slug] = $default_value; |
236 | 236 | } |
237 | 237 | |
@@ -239,12 +239,12 @@ discard block |
||
239 | 239 | |
240 | 240 | $options_list = array(); |
241 | 241 | |
242 | - if ( ! empty( $this->fields ) ) { |
|
242 | + if (!empty($this->fields)) { |
|
243 | 243 | |
244 | 244 | foreach ($this->fields as $field_slug => $field_params) { |
245 | 245 | if (in_array($field_params['type'], array('title', 'plain_text', 'acf'))) continue; |
246 | 246 | $default_value = ''; |
247 | - if (!empty($field_params['enum_values'])){ |
|
247 | + if (!empty($field_params['enum_values'])) { |
|
248 | 248 | foreach ($field_params['enum_values'] as $key => $value) { |
249 | 249 | $default_value = $key; |
250 | 250 | break; |
@@ -255,14 +255,14 @@ discard block |
||
255 | 255 | |
256 | 256 | } |
257 | 257 | |
258 | - if ( ! empty($this->options) ){ |
|
258 | + if (!empty($this->options)) { |
|
259 | 259 | foreach ($this->options as $slug => $value) { |
260 | 260 | $options_arr[$slug] = $value; |
261 | 261 | } |
262 | 262 | } |
263 | 263 | |
264 | 264 | $options_arr[$this->slug] = $options_list; |
265 | - $options_arr['rapid_addon'] = plugin_basename( __FILE__ ); |
|
265 | + $options_arr['rapid_addon'] = plugin_basename(__FILE__); |
|
266 | 266 | |
267 | 267 | return $options_arr; |
268 | 268 | |
@@ -295,7 +295,7 @@ discard block |
||
295 | 295 | |
296 | 296 | } |
297 | 297 | |
298 | - function wpai_api_post_saved($functions){ |
|
298 | + function wpai_api_post_saved($functions) { |
|
299 | 299 | $functions[$this->slug] = array($this, 'post_saved'); |
300 | 300 | return $functions; |
301 | 301 | } |
@@ -308,7 +308,7 @@ discard block |
||
308 | 308 | |
309 | 309 | } |
310 | 310 | |
311 | - function post_saved( $importData ){ |
|
311 | + function post_saved($importData) { |
|
312 | 312 | |
313 | 313 | if (is_callable($this->post_saved_function)) |
314 | 314 | call_user_func($this->post_saved_function, $importData['pid'], $importData['import'], $importData['logger']); |
@@ -327,14 +327,14 @@ discard block |
||
327 | 327 | // print_r($import_options); |
328 | 328 | // echo "</pre>"; |
329 | 329 | |
330 | - if ( ! empty($parsedData) ) { |
|
330 | + if (!empty($parsedData)) { |
|
331 | 331 | |
332 | 332 | $this->logger = $importData['logger']; |
333 | 333 | |
334 | 334 | $post_id = $importData['pid']; |
335 | 335 | $index = $importData['i']; |
336 | 336 | $data = array(); |
337 | - if (!empty($this->fields)){ |
|
337 | + if (!empty($this->fields)) { |
|
338 | 338 | foreach ($this->fields as $field_slug => $field_params) { |
339 | 339 | if (in_array($field_params['type'], array('title', 'plain_text'))) continue; |
340 | 340 | switch ($field_params['type']) { |
@@ -345,7 +345,7 @@ discard block |
||
345 | 345 | |
346 | 346 | $image_url_or_path = $parsedData[$field_slug][$index]; |
347 | 347 | |
348 | - if ( ! array_key_exists( $field_slug, $import_options['download_image'] ) ) { |
|
348 | + if (!array_key_exists($field_slug, $import_options['download_image'])) { |
|
349 | 349 | continue 2; |
350 | 350 | } |
351 | 351 | |
@@ -365,7 +365,7 @@ discard block |
||
365 | 365 | |
366 | 366 | $image_url_or_path = $parsedData[$field_slug][$index]; |
367 | 367 | |
368 | - if ( ! array_key_exists( $field_slug, $import_options['download_image'] ) ) { |
|
368 | + if (!array_key_exists($field_slug, $import_options['download_image'])) { |
|
369 | 369 | continue 2; |
370 | 370 | } |
371 | 371 | |
@@ -393,7 +393,7 @@ discard block |
||
393 | 393 | |
394 | 394 | if (!empty($mapping_rules) and is_array($mapping_rules)) { |
395 | 395 | foreach ($mapping_rules as $rule_number => $map_to) { |
396 | - if (isset($map_to[trim($data[$field_slug])])){ |
|
396 | + if (isset($map_to[trim($data[$field_slug])])) { |
|
397 | 397 | $data[$field_slug] = trim($map_to[trim($data[$field_slug])]); |
398 | 398 | break; |
399 | 399 | } |
@@ -442,14 +442,14 @@ discard block |
||
442 | 442 | |
443 | 443 | echo $this->helper_metabox_bottom(); |
444 | 444 | |
445 | - if ( ! empty($this->image_sections) ){ |
|
445 | + if (!empty($this->image_sections)) { |
|
446 | 446 | $is_images_section_enabled = apply_filters('wp_all_import_is_images_section_enabled', true, $post_type); |
447 | 447 | foreach ($this->image_sections as $k => $section) { |
448 | 448 | $section_options = array(); |
449 | 449 | foreach ($this->image_options as $slug => $value) { |
450 | 450 | $section_options[$section['slug'] . $slug] = $value; |
451 | 451 | } |
452 | - if ( ! $is_images_section_enabled and ! $k ){ |
|
452 | + if (!$is_images_section_enabled and !$k) { |
|
453 | 453 | $section_options[$section['slug'] . 'is_featured'] = 1; |
454 | 454 | } |
455 | 455 | PMXI_API::add_additional_images_section($section['title'], $section['slug'], $current_values, '', true, false, $section['type']); |
@@ -458,7 +458,7 @@ discard block |
||
458 | 458 | |
459 | 459 | } |
460 | 460 | |
461 | - function render_field($field_params, $field_slug, $current_values, $in_the_bottom = false){ |
|
461 | + function render_field($field_params, $field_slug, $current_values, $in_the_bottom = false) { |
|
462 | 462 | |
463 | 463 | if (!isset($current_values[$this->slug][$field_slug])) { |
464 | 464 | $current_values[$this->slug][$field_slug] = isset($field_params['default_text']) ? $field_params['default_text'] : ''; |
@@ -471,8 +471,8 @@ discard block |
||
471 | 471 | $field_params['name'], |
472 | 472 | array( |
473 | 473 | 'tooltip' => $field_params['tooltip'], |
474 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
475 | - 'field_value' => ( $current_values[$this->slug][$field_slug] == '' && $this->isWizard ) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
474 | + 'field_name' => $this->slug . "[" . $field_slug . "]", |
|
475 | + 'field_value' => ($current_values[$this->slug][$field_slug] == '' && $this->isWizard) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
476 | 476 | ) |
477 | 477 | ); |
478 | 478 | |
@@ -483,8 +483,8 @@ discard block |
||
483 | 483 | $field_params['name'], |
484 | 484 | array( |
485 | 485 | 'tooltip' => $field_params['tooltip'], |
486 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
487 | - 'field_value' => ( $current_values[$this->slug][$field_slug] == '' && $this->isWizard ) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
486 | + 'field_name' => $this->slug . "[" . $field_slug . "]", |
|
487 | + 'field_value' => ($current_values[$this->slug][$field_slug] == '' && $this->isWizard) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
488 | 488 | ) |
489 | 489 | ); |
490 | 490 | |
@@ -495,8 +495,8 @@ discard block |
||
495 | 495 | $field_params['name'], |
496 | 496 | array( |
497 | 497 | 'tooltip' => $field_params['tooltip'], |
498 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
499 | - 'field_value' => ( $current_values[$this->slug][$field_slug] == '' && $this->isWizard ) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
498 | + 'field_name' => $this->slug . "[" . $field_slug . "]", |
|
499 | + 'field_value' => ($current_values[$this->slug][$field_slug] == '' && $this->isWizard) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
500 | 500 | ) |
501 | 501 | ); |
502 | 502 | |
@@ -509,7 +509,7 @@ discard block |
||
509 | 509 | $field_params['name'], |
510 | 510 | array( |
511 | 511 | 'tooltip' => $field_params['tooltip'], |
512 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
512 | + 'field_name' => $this->slug . "[" . $field_slug . "]", |
|
513 | 513 | 'field_value' => $current_values[$this->slug][$field_slug], |
514 | 514 | 'download_image' => $current_values[$this->slug]['download_image'][$field_slug], |
515 | 515 | 'field_key' => $field_slug, |
@@ -528,7 +528,7 @@ discard block |
||
528 | 528 | $field_params['name'], |
529 | 529 | array( |
530 | 530 | 'tooltip' => $field_params['tooltip'], |
531 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
531 | + 'field_name' => $this->slug . "[" . $field_slug . "]", |
|
532 | 532 | 'field_value' => $current_values[$this->slug][$field_slug], |
533 | 533 | 'enum_values' => $field_params['enum_values'], |
534 | 534 | 'mapping' => true, |
@@ -540,14 +540,14 @@ discard block |
||
540 | 540 | ) |
541 | 541 | ); |
542 | 542 | |
543 | - } else if($field_params['type'] == 'accordion') { |
|
543 | + } else if ($field_params['type'] == 'accordion') { |
|
544 | 544 | |
545 | 545 | PMXI_API::add_field( |
546 | 546 | 'accordion', |
547 | 547 | $field_params['name'], |
548 | 548 | array( |
549 | 549 | 'tooltip' => $field_params['tooltip'], |
550 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
550 | + 'field_name' => $this->slug . "[" . $field_slug . "]", |
|
551 | 551 | 'field_key' => $field_slug, |
552 | 552 | 'addon_prefix' => $this->slug, |
553 | 553 | 'sub_fields' => $this->get_sub_fields($field_params, $field_slug, $current_values), |
@@ -555,7 +555,7 @@ discard block |
||
555 | 555 | ) |
556 | 556 | ); |
557 | 557 | |
558 | - } else if($field_params['type'] == 'acf') { |
|
558 | + } else if ($field_params['type'] == 'acf') { |
|
559 | 559 | $fieldData = (!empty($field_params['field_obj']->post_content)) ? unserialize($field_params['field_obj']->post_content) : array(); |
560 | 560 | $fieldData['ID'] = $field_params['field_obj']->ID; |
561 | 561 | $fieldData['id'] = $field_params['field_obj']->ID; |
@@ -563,19 +563,19 @@ discard block |
||
563 | 563 | $fieldData['key'] = $field_params['field_obj']->post_name; |
564 | 564 | if (empty($fieldData['name'])) $fieldData['name'] = $field_params['field_obj']->post_excerpt; |
565 | 565 | if (function_exists('pmai_render_field')) { |
566 | - echo pmai_render_field($fieldData, ( ! empty($current_values) ) ? $current_values : array() ); |
|
566 | + echo pmai_render_field($fieldData, (!empty($current_values)) ? $current_values : array()); |
|
567 | 567 | } |
568 | - } else if($field_params['type'] == 'title'){ |
|
568 | + } else if ($field_params['type'] == 'title') { |
|
569 | 569 | ?> |
570 | - <h4 class="wpallimport-add-on-options-title"><?php esc_html_e($field_params['name'], 'wp_all_import_plugin'); ?><?php if ( ! empty($field_params['tooltip'])): ?><a href="#help" class="wpallimport-help" title="<?php echo $field_params['tooltip']; ?>" style="position:relative; top: -1px;">?</a><?php endif; ?></h4> |
|
570 | + <h4 class="wpallimport-add-on-options-title"><?php esc_html_e($field_params['name'], 'wp_all_import_plugin'); ?><?php if (!empty($field_params['tooltip'])): ?><a href="#help" class="wpallimport-help" title="<?php echo $field_params['tooltip']; ?>" style="position:relative; top: -1px;">?</a><?php endif; ?></h4> |
|
571 | 571 | <?php |
572 | 572 | |
573 | - } else if($field_params['type'] == 'plain_text'){ |
|
573 | + } else if ($field_params['type'] == 'plain_text') { |
|
574 | 574 | if ($field_params['is_html']): |
575 | 575 | echo $field_params['name']; |
576 | 576 | else: |
577 | 577 | ?> |
578 | - <p style="margin: 0 0 12px 0;"><?php echo $field_params['name'];?></p> |
|
578 | + <p style="margin: 0 0 12px 0;"><?php echo $field_params['name']; ?></p> |
|
579 | 579 | <?php |
580 | 580 | endif; |
581 | 581 | } |
@@ -587,19 +587,19 @@ discard block |
||
587 | 587 | * Helper function for nested radio fields |
588 | 588 | * |
589 | 589 | */ |
590 | - function get_sub_fields($field_params, $field_slug, $current_values){ |
|
590 | + function get_sub_fields($field_params, $field_slug, $current_values) { |
|
591 | 591 | $sub_fields = array(); |
592 | - if ( ! empty($field_params['enum_values']) ){ |
|
592 | + if (!empty($field_params['enum_values'])) { |
|
593 | 593 | foreach ($field_params['enum_values'] as $key => $value) { |
594 | 594 | $sub_fields[$key] = array(); |
595 | - if (is_array($value)){ |
|
596 | - if ($field_params['type'] == 'accordion'){ |
|
595 | + if (is_array($value)) { |
|
596 | + if ($field_params['type'] == 'accordion') { |
|
597 | 597 | $sub_fields[$key][] = $this->convert_field($value, $current_values); |
598 | 598 | } |
599 | 599 | else |
600 | 600 | { |
601 | 601 | foreach ($value as $k => $sub_field) { |
602 | - if (is_array($sub_field) and ! empty($this->fields[$sub_field['slug']])) |
|
602 | + if (is_array($sub_field) and !empty($this->fields[$sub_field['slug']])) |
|
603 | 603 | { |
604 | 604 | $sub_fields[$key][] = $this->convert_field($sub_field, $current_values); |
605 | 605 | } |
@@ -611,7 +611,7 @@ discard block |
||
611 | 611 | return $sub_fields; |
612 | 612 | } |
613 | 613 | |
614 | - function convert_field($sub_field, $current_values){ |
|
614 | + function convert_field($sub_field, $current_values) { |
|
615 | 615 | $field = array(); |
616 | 616 | if (!isset($current_values[$this->slug][$sub_field['slug']])) { |
617 | 617 | $current_values[$this->slug][$sub_field['slug']] = isset($sub_field['default_text']) ? $sub_field['default_text'] : ''; |
@@ -623,7 +623,7 @@ discard block |
||
623 | 623 | 'label' => $this->fields[$sub_field['slug']]['name'], |
624 | 624 | 'params' => array( |
625 | 625 | 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
626 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
626 | + 'field_name' => $this->slug . "[" . $sub_field['slug'] . "]", |
|
627 | 627 | 'field_value' => ($current_values[$this->slug][$sub_field['slug']] == '' && $this->isWizard) ? $sub_field['default_text'] : $current_values[$this->slug][$sub_field['slug']], |
628 | 628 | 'is_main_field' => $sub_field['is_main_field'] |
629 | 629 | ) |
@@ -635,7 +635,7 @@ discard block |
||
635 | 635 | 'label' => $this->fields[$sub_field['slug']]['name'], |
636 | 636 | 'params' => array( |
637 | 637 | 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
638 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
638 | + 'field_name' => $this->slug . "[" . $sub_field['slug'] . "]", |
|
639 | 639 | 'field_value' => ($current_values[$this->slug][$sub_field['slug']] == '' && $this->isWizard) ? $sub_field['default_text'] : $current_values[$this->slug][$sub_field['slug']], |
640 | 640 | 'is_main_field' => $sub_field['is_main_field'] |
641 | 641 | ) |
@@ -647,7 +647,7 @@ discard block |
||
647 | 647 | 'label' => $this->fields[$sub_field['slug']]['name'], |
648 | 648 | 'params' => array( |
649 | 649 | 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
650 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
650 | + 'field_name' => $this->slug . "[" . $sub_field['slug'] . "]", |
|
651 | 651 | 'field_value' => ($current_values[$this->slug][$sub_field['slug']] == '' && $this->isWizard) ? $sub_field['default_text'] : $current_values[$this->slug][$sub_field['slug']], |
652 | 652 | 'is_main_field' => $sub_field['is_main_field'] |
653 | 653 | ) |
@@ -659,7 +659,7 @@ discard block |
||
659 | 659 | 'label' => $this->fields[$sub_field['slug']]['name'], |
660 | 660 | 'params' => array( |
661 | 661 | 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
662 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
662 | + 'field_name' => $this->slug . "[" . $sub_field['slug'] . "]", |
|
663 | 663 | 'field_value' => $current_values[$this->slug][$sub_field['slug']], |
664 | 664 | 'download_image' => null, |
665 | 665 | 'field_key' => $sub_field['slug'], |
@@ -668,7 +668,7 @@ discard block |
||
668 | 668 | ) |
669 | 669 | ); |
670 | 670 | |
671 | - if ( array_key_exists( 'download_image', $current_values[$this->slug] ) && array_key_exists( $sub_field['slug'], $current_values[$this->slug]['download_image'] ) ) { |
|
671 | + if (array_key_exists('download_image', $current_values[$this->slug]) && array_key_exists($sub_field['slug'], $current_values[$this->slug]['download_image'])) { |
|
672 | 672 | $field['params']['download_image'] = $current_values[$this->slug]['download_image'][$sub_field['slug']]; |
673 | 673 | } |
674 | 674 | break; |
@@ -678,7 +678,7 @@ discard block |
||
678 | 678 | 'label' => $this->fields[$sub_field['slug']]['name'], |
679 | 679 | 'params' => array( |
680 | 680 | 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
681 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
681 | + 'field_name' => $this->slug . "[" . $sub_field['slug'] . "]", |
|
682 | 682 | 'field_value' => $current_values[$this->slug][$sub_field['slug']], |
683 | 683 | 'download_image' => null, |
684 | 684 | 'field_key' => $sub_field['slug'], |
@@ -687,7 +687,7 @@ discard block |
||
687 | 687 | ) |
688 | 688 | ); |
689 | 689 | |
690 | - if ( array_key_exists( 'download_image', $current_values[$this->slug] ) && array_key_exists( $sub_field['slug'], $current_values[$this->slug]['download_image'] ) ) { |
|
690 | + if (array_key_exists('download_image', $current_values[$this->slug]) && array_key_exists($sub_field['slug'], $current_values[$this->slug]['download_image'])) { |
|
691 | 691 | $field['params']['download_image'] = $current_values[$this->slug]['download_image'][$sub_field['slug']]; |
692 | 692 | } |
693 | 693 | |
@@ -698,7 +698,7 @@ discard block |
||
698 | 698 | 'label' => $this->fields[$sub_field['slug']]['name'], |
699 | 699 | 'params' => array( |
700 | 700 | 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
701 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
701 | + 'field_name' => $this->slug . "[" . $sub_field['slug'] . "]", |
|
702 | 702 | 'field_value' => $current_values[$this->slug][$sub_field['slug']], |
703 | 703 | 'enum_values' => $this->fields[$sub_field['slug']]['enum_values'], |
704 | 704 | 'mapping' => true, |
@@ -717,7 +717,7 @@ discard block |
||
717 | 717 | 'label' => $this->fields[$sub_field['slug']]['name'], |
718 | 718 | 'params' => array( |
719 | 719 | 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
720 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
720 | + 'field_name' => $this->slug . "[" . $sub_field['slug'] . "]", |
|
721 | 721 | 'field_key' => $sub_field['slug'], |
722 | 722 | 'addon_prefix' => $this->slug, |
723 | 723 | 'sub_fields' => $this->get_sub_fields($this->fields[$sub_field['slug']], $sub_field['slug'], $current_values), |
@@ -738,12 +738,12 @@ discard block |
||
738 | 738 | * |
739 | 739 | * |
740 | 740 | */ |
741 | - function add_options( $main_field = false, $title = '', $fields = array() ){ |
|
741 | + function add_options($main_field = false, $title = '', $fields = array()) { |
|
742 | 742 | |
743 | - if ( ! empty($fields) ) |
|
743 | + if (!empty($fields)) |
|
744 | 744 | { |
745 | 745 | |
746 | - if ($main_field){ |
|
746 | + if ($main_field) { |
|
747 | 747 | |
748 | 748 | $main_field['is_main_field'] = true; |
749 | 749 | $fields[] = $main_field; |
@@ -756,7 +756,7 @@ discard block |
||
756 | 756 | |
757 | 757 | } |
758 | 758 | |
759 | - function add_title($title = '', $tooltip = ''){ |
|
759 | + function add_title($title = '', $tooltip = '') { |
|
760 | 760 | |
761 | 761 | if (empty($title)) return; |
762 | 762 | |
@@ -764,7 +764,7 @@ discard block |
||
764 | 764 | |
765 | 765 | } |
766 | 766 | |
767 | - function add_text($text = '', $is_html = false){ |
|
767 | + function add_text($text = '', $is_html = false) { |
|
768 | 768 | |
769 | 769 | if (empty($text)) return; |
770 | 770 | |
@@ -862,10 +862,10 @@ discard block |
||
862 | 862 | margin: 45px 0 15px 0; |
863 | 863 | } |
864 | 864 | </style> |
865 | - <div class="wpallimport-collapsed wpallimport-section wpallimport-addon '.$this->slug.' closed"> |
|
865 | + <div class="wpallimport-collapsed wpallimport-section wpallimport-addon '.$this->slug . ' closed"> |
|
866 | 866 | <div class="wpallimport-content-section"> |
867 | 867 | <div class="wpallimport-collapsed-header"> |
868 | - <h3>'.__($name,'pmxi_plugin').'</h3> |
|
868 | + <h3>'.__($name, 'pmxi_plugin') . '</h3> |
|
869 | 869 | </div> |
870 | 870 | <div class="wpallimport-collapsed-content" style="padding: 0;"> |
871 | 871 | <div class="wpallimport-collapsed-content-inner"> |
@@ -891,8 +891,8 @@ discard block |
||
891 | 891 | * simply add an additional section for attachments |
892 | 892 | * |
893 | 893 | */ |
894 | - function import_files( $slug, $title, $callback = NULL ){ |
|
895 | - $this->import_images( $slug, $title, 'files', $callback); |
|
894 | + function import_files($slug, $title, $callback = NULL) { |
|
895 | + $this->import_images($slug, $title, 'files', $callback); |
|
896 | 896 | } |
897 | 897 | |
898 | 898 | /** |
@@ -900,9 +900,9 @@ discard block |
||
900 | 900 | * simply add an additional section |
901 | 901 | * |
902 | 902 | */ |
903 | - function import_images( $slug, $title, $type = 'images', $callback = NULL ){ |
|
903 | + function import_images($slug, $title, $type = 'images', $callback = NULL) { |
|
904 | 904 | |
905 | - if ( empty($title) or empty($slug) ) return; |
|
905 | + if (empty($title) or empty($slug)) return; |
|
906 | 906 | |
907 | 907 | if (is_array($slug)) { |
908 | 908 | $section_slug = 'pmxi_' . md5(serialize($slug)); |
@@ -920,17 +920,17 @@ discard block |
||
920 | 920 | $this->add_option($section_slug . $option_slug, $value); |
921 | 921 | } |
922 | 922 | |
923 | - if (count($this->image_sections) > 1){ |
|
923 | + if (count($this->image_sections) > 1) { |
|
924 | 924 | add_filter('wp_all_import_is_show_add_new_images', array($this, 'filter_is_show_add_new_images'), 10, 2); |
925 | 925 | } |
926 | 926 | |
927 | 927 | add_filter('wp_all_import_is_allow_import_images', array($this, 'is_allow_import_images'), 10, 2); |
928 | 928 | |
929 | 929 | if ($callback && is_callable($callback)) { |
930 | - add_action( $section_slug, $callback, 10, 4); |
|
930 | + add_action($section_slug, $callback, 10, 4); |
|
931 | 931 | } else { |
932 | 932 | if (function_exists($slug)) { |
933 | - add_action( $section_slug, $slug, 10, 4); |
|
933 | + add_action($section_slug, $slug, 10, 4); |
|
934 | 934 | } |
935 | 935 | } |
936 | 936 | } |
@@ -939,7 +939,7 @@ discard block |
||
939 | 939 | * filter to allow import images for free edition of WP All Import |
940 | 940 | * |
941 | 941 | */ |
942 | - function is_allow_import_images($is_allow, $post_type){ |
|
942 | + function is_allow_import_images($is_allow, $post_type) { |
|
943 | 943 | return ($this->is_active_addon($post_type)) ? true : $is_allow; |
944 | 944 | } |
945 | 945 | |
@@ -948,8 +948,8 @@ discard block |
||
948 | 948 | * filter to control additional images sections |
949 | 949 | * |
950 | 950 | */ |
951 | - function additional_sections($sections){ |
|
952 | - if ( ! empty($this->image_sections) ){ |
|
951 | + function additional_sections($sections) { |
|
952 | + if (!empty($this->image_sections)) { |
|
953 | 953 | foreach ($this->image_sections as $add_section) { |
954 | 954 | $sections[] = $add_section; |
955 | 955 | } |
@@ -962,7 +962,7 @@ discard block |
||
962 | 962 | * remove the 'Don't touch existing images, append new images' when more than one image section is in use. |
963 | 963 | * |
964 | 964 | */ |
965 | - function filter_is_show_add_new_images($is_show, $post_type){ |
|
965 | + function filter_is_show_add_new_images($is_show, $post_type) { |
|
966 | 966 | return ($this->is_active_addon($post_type)) ? false : $is_show; |
967 | 967 | } |
968 | 968 | |
@@ -971,12 +971,12 @@ discard block |
||
971 | 971 | * disable the default images section |
972 | 972 | * |
973 | 973 | */ |
974 | - function disable_default_images($post_type = false){ |
|
974 | + function disable_default_images($post_type = false) { |
|
975 | 975 | |
976 | 976 | add_filter('wp_all_import_is_images_section_enabled', array($this, 'is_enable_default_images_section'), 10, 2); |
977 | 977 | |
978 | 978 | } |
979 | - function is_enable_default_images_section($is_enabled, $post_type){ |
|
979 | + function is_enable_default_images_section($is_enabled, $post_type) { |
|
980 | 980 | |
981 | 981 | return ($this->is_active_addon($post_type)) ? false : true; |
982 | 982 | |
@@ -988,7 +988,7 @@ discard block |
||
988 | 988 | |
989 | 989 | $data = array(); // parsed data |
990 | 990 | |
991 | - if ( ! empty($import->options[$this->slug])){ |
|
991 | + if (!empty($import->options[$this->slug])) { |
|
992 | 992 | |
993 | 993 | $this->logger = $parsingData['logger']; |
994 | 994 | |
@@ -997,9 +997,9 @@ discard block |
||
997 | 997 | $tmp_files = array(); |
998 | 998 | |
999 | 999 | foreach ($options[$this->slug] as $option_name => $option_value) { |
1000 | - if ( isset($import->options[$this->slug][$option_name]) and $import->options[$this->slug][$option_name] != '') { |
|
1000 | + if (isset($import->options[$this->slug][$option_name]) and $import->options[$this->slug][$option_name] != '') { |
|
1001 | 1001 | if ($import->options[$this->slug][$option_name] == "xpath") { |
1002 | - if ($import->options[$this->slug]['xpaths'][$option_name] == ""){ |
|
1002 | + if ($import->options[$this->slug]['xpaths'][$option_name] == "") { |
|
1003 | 1003 | $count and $data[$option_name] = array_fill(0, $count, ""); |
1004 | 1004 | } else { |
1005 | 1005 | $data[$option_name] = XmlImportParser::factory($xml, $cxpath, (string) $import->options[$this->slug]['xpaths'][$option_name], $file)->parse(); |
@@ -1038,11 +1038,11 @@ discard block |
||
1038 | 1038 | |
1039 | 1039 | if ($import_options['update_all_data'] == 'yes') return true; |
1040 | 1040 | |
1041 | - if ( ! $import_options['is_update_custom_fields'] ) return false; |
|
1041 | + if (!$import_options['is_update_custom_fields']) return false; |
|
1042 | 1042 | |
1043 | 1043 | if ($import_options['update_custom_fields_logic'] == "full_update") return true; |
1044 | - if ($import_options['update_custom_fields_logic'] == "only" and ! empty($import_options['custom_fields_list']) and is_array($import_options['custom_fields_list']) and in_array($meta_key, $import_options['custom_fields_list']) ) return true; |
|
1045 | - if ($import_options['update_custom_fields_logic'] == "all_except" and ( empty($import_options['custom_fields_list']) or ! in_array($meta_key, $import_options['custom_fields_list']) )) return true; |
|
1044 | + if ($import_options['update_custom_fields_logic'] == "only" and !empty($import_options['custom_fields_list']) and is_array($import_options['custom_fields_list']) and in_array($meta_key, $import_options['custom_fields_list'])) return true; |
|
1045 | + if ($import_options['update_custom_fields_logic'] == "all_except" and (empty($import_options['custom_fields_list']) or !in_array($meta_key, $import_options['custom_fields_list']))) return true; |
|
1046 | 1046 | |
1047 | 1047 | return false; |
1048 | 1048 | |
@@ -1058,11 +1058,11 @@ discard block |
||
1058 | 1058 | |
1059 | 1059 | if ($import_options['update_all_data'] == 'yes') return true; |
1060 | 1060 | |
1061 | - if ( ! $import_options['is_update_categories'] ) return false; |
|
1061 | + if (!$import_options['is_update_categories']) return false; |
|
1062 | 1062 | |
1063 | 1063 | if ($import_options['update_categories_logic'] == "full_update") return true; |
1064 | - if ($import_options['update_categories_logic'] == "only" and ! empty($import_options['taxonomies_list']) and is_array($import_options['taxonomies_list']) and in_array($tax_name, $import_options['taxonomies_list']) ) return true; |
|
1065 | - if ($import_options['update_categories_logic'] == "all_except" and ( empty($import_options['taxonomies_list']) or ! in_array($tax_name, $import_options['taxonomies_list']) )) return true; |
|
1064 | + if ($import_options['update_categories_logic'] == "only" and !empty($import_options['taxonomies_list']) and is_array($import_options['taxonomies_list']) and in_array($tax_name, $import_options['taxonomies_list'])) return true; |
|
1065 | + if ($import_options['update_categories_logic'] == "all_except" and (empty($import_options['taxonomies_list']) or !in_array($tax_name, $import_options['taxonomies_list']))) return true; |
|
1066 | 1066 | |
1067 | 1067 | return false; |
1068 | 1068 | |
@@ -1083,8 +1083,8 @@ discard block |
||
1083 | 1083 | |
1084 | 1084 | |
1085 | 1085 | function admin_notice_ignore() { |
1086 | - if (isset($_GET[$this->slug.'_ignore']) && '0' == $_GET[$this->slug.'_ignore'] ) { |
|
1087 | - update_option($this->slug.'_ignore', 'true'); |
|
1086 | + if (isset($_GET[$this->slug . '_ignore']) && '0' == $_GET[$this->slug . '_ignore']) { |
|
1087 | + update_option($this->slug . '_ignore', 'true'); |
|
1088 | 1088 | } |
1089 | 1089 | } |
1090 | 1090 | |
@@ -1094,10 +1094,10 @@ discard block |
||
1094 | 1094 | if ($this->notice_text) { |
1095 | 1095 | $notice_text = $this->notice_text; |
1096 | 1096 | } else { |
1097 | - $notice_text = $this->name.' requires WP All Import <a href="http://www.wpallimport.com/" target="_blank">Pro</a> or <a href="http://wordpress.org/plugins/wp-all-import" target="_blank">Free</a>.'; |
|
1097 | + $notice_text = $this->name . ' requires WP All Import <a href="http://www.wpallimport.com/" target="_blank">Pro</a> or <a href="http://wordpress.org/plugins/wp-all-import" target="_blank">Free</a>.'; |
|
1098 | 1098 | } |
1099 | 1099 | |
1100 | - if (!get_option(sanitize_key($this->slug).'_notice_ignore')) { |
|
1100 | + if (!get_option(sanitize_key($this->slug) . '_notice_ignore')) { |
|
1101 | 1101 | |
1102 | 1102 | ?> |
1103 | 1103 | |
@@ -1105,9 +1105,9 @@ discard block |
||
1105 | 1105 | <p><?php echo wp_kses_post(__( |
1106 | 1106 | sprintf( |
1107 | 1107 | $notice_text, |
1108 | - '?'.$this->slug.'_ignore=0' |
|
1108 | + '?' . $this->slug . '_ignore=0' |
|
1109 | 1109 | ), |
1110 | - 'rapid_addon_'.$this->slug |
|
1110 | + 'rapid_addon_' . $this->slug |
|
1111 | 1111 | )); ?></p> |
1112 | 1112 | </div> |
1113 | 1113 | |
@@ -1126,14 +1126,14 @@ discard block |
||
1126 | 1126 | |
1127 | 1127 | $is_show_notice = false; |
1128 | 1128 | |
1129 | - include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); |
|
1129 | + include_once(ABSPATH . 'wp-admin/includes/plugin.php'); |
|
1130 | 1130 | |
1131 | - if ( ! class_exists( 'PMXI_Plugin' ) ) { |
|
1131 | + if (!class_exists('PMXI_Plugin')) { |
|
1132 | 1132 | $is_show_notice = true; |
1133 | 1133 | } |
1134 | 1134 | |
1135 | 1135 | // Supported Themes |
1136 | - if ( ! $is_show_notice and ! empty($conditions['themes']) ){ |
|
1136 | + if (!$is_show_notice and !empty($conditions['themes'])) { |
|
1137 | 1137 | |
1138 | 1138 | $themeInfo = wp_get_theme(); |
1139 | 1139 | $parentInfo = $themeInfo->parent(); |
@@ -1141,7 +1141,7 @@ discard block |
||
1141 | 1141 | |
1142 | 1142 | $is_show_notice = in_array($currentTheme, $conditions['themes']) ? false : true; |
1143 | 1143 | |
1144 | - if ( $is_show_notice and $parentInfo ){ |
|
1144 | + if ($is_show_notice and $parentInfo) { |
|
1145 | 1145 | $parent_theme = $parentInfo->get('Name'); |
1146 | 1146 | $is_show_notice = in_array($parent_theme, $conditions['themes']) ? false : true; |
1147 | 1147 | } |
@@ -1149,22 +1149,22 @@ discard block |
||
1149 | 1149 | } |
1150 | 1150 | |
1151 | 1151 | // Required Plugins |
1152 | - if ( ! $is_show_notice and ! empty($conditions['plugins']) ){ |
|
1152 | + if (!$is_show_notice and !empty($conditions['plugins'])) { |
|
1153 | 1153 | |
1154 | 1154 | $requires_counter = 0; |
1155 | 1155 | foreach ($conditions['plugins'] as $plugin) { |
1156 | - if ( is_plugin_active($plugin) ) $requires_counter++; |
|
1156 | + if (is_plugin_active($plugin)) $requires_counter++; |
|
1157 | 1157 | } |
1158 | 1158 | |
1159 | - if ($requires_counter != count($conditions['plugins'])){ |
|
1159 | + if ($requires_counter != count($conditions['plugins'])) { |
|
1160 | 1160 | $is_show_notice = true; |
1161 | 1161 | } |
1162 | 1162 | |
1163 | 1163 | } |
1164 | 1164 | |
1165 | - if ( $is_show_notice ){ |
|
1165 | + if ($is_show_notice) { |
|
1166 | 1166 | |
1167 | - if ( $notice_text != '' ) { |
|
1167 | + if ($notice_text != '') { |
|
1168 | 1168 | $this->notice_text = $notice_text; |
1169 | 1169 | } |
1170 | 1170 | |
@@ -1173,34 +1173,34 @@ discard block |
||
1173 | 1173 | |
1174 | 1174 | } |
1175 | 1175 | |
1176 | - function log( $m = false){ |
|
1176 | + function log($m = false) { |
|
1177 | 1177 | |
1178 | 1178 | $m and $this->logger and call_user_func($this->logger, $m); |
1179 | 1179 | |
1180 | 1180 | } |
1181 | 1181 | |
1182 | - public function remove_post_type( $type = '' ) { |
|
1183 | - if ( ! empty( $type ) ) { |
|
1184 | - $this->add_option( 'post_types_to_remove', $type ); |
|
1182 | + public function remove_post_type($type = '') { |
|
1183 | + if (!empty($type)) { |
|
1184 | + $this->add_option('post_types_to_remove', $type); |
|
1185 | 1185 | } |
1186 | 1186 | } |
1187 | 1187 | |
1188 | - public function filter_post_types( $custom_types = array(), $custom_type = '' ) { |
|
1188 | + public function filter_post_types($custom_types = array(), $custom_type = '') { |
|
1189 | 1189 | $options = $this->options_array(); |
1190 | 1190 | $option_key = 'post_types_to_remove'; |
1191 | 1191 | |
1192 | - if ( array_key_exists( $option_key, $options ) ) { |
|
1193 | - $type = $options[ $option_key ]; |
|
1192 | + if (array_key_exists($option_key, $options)) { |
|
1193 | + $type = $options[$option_key]; |
|
1194 | 1194 | |
1195 | - if ( ! empty( $type ) ) { |
|
1196 | - if ( ! is_array( $type ) ) { |
|
1197 | - if ( array_key_exists( $type, $custom_types ) ) { |
|
1198 | - unset( $custom_types[ $type ] ); |
|
1195 | + if (!empty($type)) { |
|
1196 | + if (!is_array($type)) { |
|
1197 | + if (array_key_exists($type, $custom_types)) { |
|
1198 | + unset($custom_types[$type]); |
|
1199 | 1199 | } |
1200 | 1200 | } else { |
1201 | - foreach ( $type as $key => $post_type ) { |
|
1202 | - if ( array_key_exists( $post_type, $custom_types ) ) { |
|
1203 | - unset( $custom_types[ $post_type ] ); |
|
1201 | + foreach ($type as $key => $post_type) { |
|
1202 | + if (array_key_exists($post_type, $custom_types)) { |
|
1203 | + unset($custom_types[$post_type]); |
|
1204 | 1204 | } |
1205 | 1205 | } |
1206 | 1206 | } |
@@ -1209,26 +1209,26 @@ discard block |
||
1209 | 1209 | return $custom_types; |
1210 | 1210 | } |
1211 | 1211 | |
1212 | - public function sort_post_types( array $order ) { |
|
1212 | + public function sort_post_types(array $order) { |
|
1213 | 1213 | $options = $this->options_array(); |
1214 | 1214 | $option_key = 'post_type_move'; |
1215 | 1215 | |
1216 | - if ( array_key_exists( $option_key, $options ) ) { |
|
1217 | - $move_rules = maybe_unserialize( $options[ $option_key ] ); |
|
1216 | + if (array_key_exists($option_key, $options)) { |
|
1217 | + $move_rules = maybe_unserialize($options[$option_key]); |
|
1218 | 1218 | |
1219 | - foreach ( $move_rules as $rule ) { |
|
1219 | + foreach ($move_rules as $rule) { |
|
1220 | 1220 | $move_this = $rule['move_this']; |
1221 | 1221 | $move_to = $rule['move_to']; |
1222 | - if ( $move_to > count( $order ) ) { |
|
1223 | - if ( ( $rm_key = array_search( $move_this, $order ) ) !== false ) { |
|
1224 | - unset( $order[ $rm_key ] ); |
|
1222 | + if ($move_to > count($order)) { |
|
1223 | + if (($rm_key = array_search($move_this, $order)) !== false) { |
|
1224 | + unset($order[$rm_key]); |
|
1225 | 1225 | } |
1226 | - array_push( $order, $move_this ); |
|
1226 | + array_push($order, $move_this); |
|
1227 | 1227 | } else { |
1228 | - if ( ( $rm_key = array_search( $move_this, $order ) ) !== false ) { |
|
1229 | - unset( $order[ $rm_key ] ); |
|
1228 | + if (($rm_key = array_search($move_this, $order)) !== false) { |
|
1229 | + unset($order[$rm_key]); |
|
1230 | 1230 | } |
1231 | - array_splice( $order, $move_to, 0, $move_this ); |
|
1231 | + array_splice($order, $move_to, 0, $move_this); |
|
1232 | 1232 | } |
1233 | 1233 | } |
1234 | 1234 | |
@@ -1238,57 +1238,57 @@ discard block |
||
1238 | 1238 | return $order; |
1239 | 1239 | } |
1240 | 1240 | |
1241 | - public function move_post_type( $move_this = null, $move_to = null ) { |
|
1241 | + public function move_post_type($move_this = null, $move_to = null) { |
|
1242 | 1242 | $move_rules = array(); |
1243 | 1243 | |
1244 | - if ( ! is_array( $move_this ) && ! is_array( $move_to ) ) { |
|
1244 | + if (!is_array($move_this) && !is_array($move_to)) { |
|
1245 | 1245 | $move_rules[] = array( |
1246 | 1246 | 'move_this' => $move_this, |
1247 | 1247 | 'move_to' => $move_to |
1248 | 1248 | ); |
1249 | 1249 | } else { |
1250 | - foreach ( $move_this as $key => $move_post ) { |
|
1250 | + foreach ($move_this as $key => $move_post) { |
|
1251 | 1251 | $move_rules[] = array( |
1252 | 1252 | 'move_this' => $move_post, |
1253 | - 'move_to' => $move_to[ $key ] |
|
1253 | + 'move_to' => $move_to[$key] |
|
1254 | 1254 | ); |
1255 | 1255 | } |
1256 | 1256 | } |
1257 | 1257 | |
1258 | - $this->add_option( 'post_type_move', $move_rules ); |
|
1258 | + $this->add_option('post_type_move', $move_rules); |
|
1259 | 1259 | } |
1260 | 1260 | |
1261 | - public function set_post_type_image( $post_type = null, $image = null ) { |
|
1261 | + public function set_post_type_image($post_type = null, $image = null) { |
|
1262 | 1262 | $post_type_image_rules = array(); |
1263 | 1263 | |
1264 | - if ( ! is_array( $post_type ) ) { |
|
1264 | + if (!is_array($post_type)) { |
|
1265 | 1265 | |
1266 | - $post_type_image_rules[ $post_type ] = array( |
|
1266 | + $post_type_image_rules[$post_type] = array( |
|
1267 | 1267 | 'post_type' => $post_type, |
1268 | 1268 | 'image' => $image |
1269 | 1269 | ); |
1270 | 1270 | |
1271 | 1271 | } else { |
1272 | 1272 | |
1273 | - if ( count( $post_type ) == count( $image ) ) { |
|
1273 | + if (count($post_type) == count($image)) { |
|
1274 | 1274 | |
1275 | - foreach ( $post_type as $key => $post_name ) { |
|
1276 | - $post_type_image_rules[ $post_name ] = array( |
|
1275 | + foreach ($post_type as $key => $post_name) { |
|
1276 | + $post_type_image_rules[$post_name] = array( |
|
1277 | 1277 | 'post_type' => $post_name, |
1278 | - 'image' => $image[ $key ] |
|
1278 | + 'image' => $image[$key] |
|
1279 | 1279 | ); |
1280 | 1280 | } |
1281 | 1281 | } |
1282 | 1282 | } |
1283 | 1283 | |
1284 | - $this->add_option( 'post_type_image', $post_type_image_rules ); |
|
1284 | + $this->add_option('post_type_image', $post_type_image_rules); |
|
1285 | 1285 | } |
1286 | 1286 | |
1287 | - public function post_type_image( $image ) { |
|
1287 | + public function post_type_image($image) { |
|
1288 | 1288 | $options = $this->options_array(); |
1289 | 1289 | $option_key = 'post_type_image'; |
1290 | - if ( array_key_exists( $option_key, $options ) ) { |
|
1291 | - $post_type_image_rules = maybe_unserialize( $options[ $option_key ] ); |
|
1290 | + if (array_key_exists($option_key, $options)) { |
|
1291 | + $post_type_image_rules = maybe_unserialize($options[$option_key]); |
|
1292 | 1292 | return $post_type_image_rules; |
1293 | 1293 | } |
1294 | 1294 | return $image; |
@@ -4,68 +4,68 @@ |
||
4 | 4 | * |
5 | 5 | */ |
6 | 6 | |
7 | -defined( 'ABSPATH' ) || exit; |
|
7 | +defined('ABSPATH') || exit; |
|
8 | 8 | |
9 | 9 | ?> |
10 | 10 | |
11 | 11 | <div class="card shadow-sm my-5"> |
12 | 12 | <div class="text-center card-body"> |
13 | - <h1 class="h3"><?php esc_html_e( 'Awesome, you are ready to Get Paid', 'invoicing' ); ?></h1> |
|
13 | + <h1 class="h3"><?php esc_html_e('Awesome, you are ready to Get Paid', 'invoicing'); ?></h1> |
|
14 | 14 | |
15 | 15 | <div class="geodirectory-message geodirectory-tracker"> |
16 | - <p><?php esc_html_e( 'Thank you for choosing GetPaid!', 'invoicing' ); ?> <i class="far fa-smile-beam"></i></p> |
|
16 | + <p><?php esc_html_e('Thank you for choosing GetPaid!', 'invoicing'); ?> <i class="far fa-smile-beam"></i></p> |
|
17 | 17 | </div> |
18 | 18 | |
19 | 19 | <div class="gp-setup-next-steps"> |
20 | 20 | <div class="gp-setup-next-steps-first mb-4"> |
21 | 21 | <div> |
22 | - <h2 class="h3"><i class="fas fa-arrow-down"></i> <?php esc_html_e( 'Watch This', 'invoicing' ); ?> <i class="fas fa-arrow-down"></i></h2> |
|
22 | + <h2 class="h3"><i class="fas fa-arrow-down"></i> <?php esc_html_e('Watch This', 'invoicing'); ?> <i class="fas fa-arrow-down"></i></h2> |
|
23 | 23 | <div class="embed-responsive embed-responsive-16by9 mb-4"> |
24 | 24 | <iframe class="embed-responsive-item" src="https://www.youtube.com/embed/TXZuPXHjt9E?rel=0" allowfullscreen></iframe> |
25 | 25 | </div> |
26 | 26 | </div> |
27 | - <h2 class="h3"><?php esc_html_e( 'Next steps', 'invoicing' ); ?></h2> |
|
27 | + <h2 class="h3"><?php esc_html_e('Next steps', 'invoicing'); ?></h2> |
|
28 | 28 | |
29 | 29 | <div class="d-flex justify-content-between"> |
30 | 30 | <a |
31 | 31 | class="btn btn-outline-primary btn-sm" |
32 | - href="<?php echo esc_url( admin_url( 'post-new.php?post_type=wpi_item' ) ); ?>"> |
|
32 | + href="<?php echo esc_url(admin_url('post-new.php?post_type=wpi_item')); ?>"> |
|
33 | 33 | <span class="h1 d-block"><i class="fas fa-box-open"></i></span> |
34 | - <?php esc_html_e( 'Create Item', 'invoicing' ); ?> |
|
34 | + <?php esc_html_e('Create Item', 'invoicing'); ?> |
|
35 | 35 | </a> |
36 | 36 | <a |
37 | 37 | class="btn btn-outline-primary btn-sm" |
38 | - href="<?php echo esc_url( admin_url( 'post-new.php?post_type=wpi_payment_form' ) ); ?>"> |
|
38 | + href="<?php echo esc_url(admin_url('post-new.php?post_type=wpi_payment_form')); ?>"> |
|
39 | 39 | <span class="h1 d-block"><i class="fas fa-align-justify"></i></span> |
40 | - <?php esc_html_e( 'Create Payment Form', 'invoicing' ); ?> |
|
40 | + <?php esc_html_e('Create Payment Form', 'invoicing'); ?> |
|
41 | 41 | </a> |
42 | 42 | <a |
43 | 43 | class="btn btn-outline-primary btn-sm" |
44 | - href="<?php echo esc_url( admin_url( 'post-new.php?post_type=wpi_invoice' ) ); ?>"> |
|
44 | + href="<?php echo esc_url(admin_url('post-new.php?post_type=wpi_invoice')); ?>"> |
|
45 | 45 | <span class="h1 d-block"><i class="fas fa-file-alt"></i></span> |
46 | - <?php esc_html_e( 'Create Invoice', 'invoicing' ); ?> |
|
46 | + <?php esc_html_e('Create Invoice', 'invoicing'); ?> |
|
47 | 47 | </a> |
48 | 48 | </div> |
49 | 49 | |
50 | 50 | |
51 | 51 | |
52 | - <h2 class="h3 mt-4"><?php esc_html_e( 'Learn more', 'invoicing' ); ?></h2> |
|
52 | + <h2 class="h3 mt-4"><?php esc_html_e('Learn more', 'invoicing'); ?></h2> |
|
53 | 53 | <div class="gp-setup-next-steps-last mt-2 d-flex justify-content-between"> |
54 | 54 | <a |
55 | 55 | class="btn btn-outline-primary btn-sm" href="https://docs.wpgetpaid.com/collection/114-getting-started?utm_source=setupwizard&utm_medium=product&utm_content=getting-started&utm_campaign=invoicingplugin" |
56 | - target="_blank"><?php esc_html_e( 'Getting Started', 'invoicing' ); ?></a> |
|
56 | + target="_blank"><?php esc_html_e('Getting Started', 'invoicing'); ?></a> |
|
57 | 57 | <a |
58 | 58 | class="btn btn-outline-primary btn-sm" |
59 | 59 | href="https://docs.wpgetpaid.com/?utm_source=setupwizard&utm_medium=product&utm_content=docs&utm_campaign=invoicingplugin" |
60 | - target="_blank"><?php esc_html_e( 'Documentation', 'invoicing' ); ?></a> |
|
60 | + target="_blank"><?php esc_html_e('Documentation', 'invoicing'); ?></a> |
|
61 | 61 | <a |
62 | 62 | class="btn btn-outline-primary btn-sm" |
63 | 63 | href="https://wpgetpaid.com/support/?utm_source=setupwizard&utm_medium=product&utm_content=docs&utm_campaign=invoicingyplugin" |
64 | - target="_blank"><?php esc_html_e( 'Support', 'invoicing' ); ?></a> |
|
64 | + target="_blank"><?php esc_html_e('Support', 'invoicing'); ?></a> |
|
65 | 65 | <a |
66 | 66 | class="btn btn-outline-primary btn-sm" |
67 | 67 | href="https://demos.ayecode.io/getpaid/?utm_source=setupwizard&utm_medium=product&utm_content=demos&utm_campaign=invoicingyplugin" |
68 | - target="_blank"><?php esc_html_e( 'Demos', 'invoicing' ); ?></a> |
|
68 | + target="_blank"><?php esc_html_e('Demos', 'invoicing'); ?></a> |
|
69 | 69 | </div> |
70 | 70 | </div> |
71 | 71 | </div> |
@@ -4,29 +4,29 @@ discard block |
||
4 | 4 | * |
5 | 5 | */ |
6 | 6 | |
7 | -defined( 'ABSPATH' ) || exit; |
|
7 | +defined('ABSPATH') || exit; |
|
8 | 8 | |
9 | 9 | $gateways = wpinv_get_payment_gateways(); |
10 | -ksort( $gateways ); |
|
10 | +ksort($gateways); |
|
11 | 11 | |
12 | 12 | ?> |
13 | 13 | <div class="table-responsive"> |
14 | 14 | <table id="wpinv_gateways_select" class="table border bg-white form-table"> |
15 | - <caption><?php echo esc_html_e( 'This table displays installed payment methods.', 'invoicing' ); ?></caption> |
|
15 | + <caption><?php echo esc_html_e('This table displays installed payment methods.', 'invoicing'); ?></caption> |
|
16 | 16 | |
17 | 17 | <thead> |
18 | 18 | <tr class="table-light"> |
19 | 19 | |
20 | 20 | <th scope="col" class="border-bottom border-top text-left"> |
21 | - <?php esc_html_e( 'Payment Method', 'invoicing' ); ?> |
|
21 | + <?php esc_html_e('Payment Method', 'invoicing'); ?> |
|
22 | 22 | </th> |
23 | 23 | |
24 | 24 | <th scope="col" class="border-bottom border-top text-center"> |
25 | - <?php esc_html_e( 'Enabled', 'invoicing' ); ?> |
|
25 | + <?php esc_html_e('Enabled', 'invoicing'); ?> |
|
26 | 26 | </th> |
27 | 27 | |
28 | 28 | <th scope="col" class="border-bottom border-top text-center"> |
29 | - <?php esc_html_e( 'Supports Subscriptions', 'invoicing' ); ?> |
|
29 | + <?php esc_html_e('Supports Subscriptions', 'invoicing'); ?> |
|
30 | 30 | </th> |
31 | 31 | |
32 | 32 | <th scope="col" class="border-bottom border-top text-right" style="width:32px"> </th> |
@@ -35,15 +35,15 @@ discard block |
||
35 | 35 | </thead> |
36 | 36 | |
37 | 37 | <tbody> |
38 | - <?php foreach ( $gateways as $id => $gateway ) : ?> |
|
38 | + <?php foreach ($gateways as $id => $gateway) : ?> |
|
39 | 39 | <tr> |
40 | 40 | <td class="getpaid-payment-method text-left"> |
41 | - <a style="color: #0073aa;" href="<?php echo esc_url( add_query_arg( 'section', $id ) ); ?>" class="font-weight-bold"><?php echo esc_html( $gateway['admin_label'] ); ?></a> |
|
41 | + <a style="color: #0073aa;" href="<?php echo esc_url(add_query_arg('section', $id)); ?>" class="font-weight-bold"><?php echo esc_html($gateway['admin_label']); ?></a> |
|
42 | 42 | </td> |
43 | 43 | <td class="getpaid-payment-method-enabled text-center"> |
44 | 44 | <?php |
45 | 45 | |
46 | - if ( wpinv_is_gateway_active( $id ) ) { |
|
46 | + if (wpinv_is_gateway_active($id)) { |
|
47 | 47 | echo "<i class='text-success fa fa-check'></i>"; |
48 | 48 | } else { |
49 | 49 | echo "<i class='text-dark fa fa-times'></i>"; |
@@ -54,10 +54,10 @@ discard block |
||
54 | 54 | <td class="getpaid-payment-method-subscription text-center"> |
55 | 55 | <?php |
56 | 56 | |
57 | - $supports = apply_filters( "wpinv_{$id}_support_subscription", false ); |
|
58 | - $supports = apply_filters( 'getapid_gateway_supports_subscription', $supports, $id ); |
|
57 | + $supports = apply_filters("wpinv_{$id}_support_subscription", false); |
|
58 | + $supports = apply_filters('getapid_gateway_supports_subscription', $supports, $id); |
|
59 | 59 | |
60 | - if ( $supports ) { |
|
60 | + if ($supports) { |
|
61 | 61 | echo "<i class='text-success fa fa-check'></i>"; |
62 | 62 | } else { |
63 | 63 | echo "<i class='text-dark fa fa-times'></i>"; |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | </td> |
68 | 68 | |
69 | 69 | <td class="getpaid-payment-method-action text-right"> |
70 | - <a class="button button-secondary" href="<?php echo esc_url( add_query_arg( 'section', $id ) ); ?>"><?php esc_html_e( 'Manage', 'invoicing' ); ?></a> |
|
70 | + <a class="button button-secondary" href="<?php echo esc_url(add_query_arg('section', $id)); ?>"><?php esc_html_e('Manage', 'invoicing'); ?></a> |
|
71 | 71 | </td> |
72 | 72 | |
73 | 73 | </tr> |
@@ -77,8 +77,8 @@ discard block |
||
77 | 77 | <tfoot> |
78 | 78 | <tr class="table-light"> |
79 | 79 | <td colspan="4" class="border-top"> |
80 | - <a class="button button-secondary getpaid-install-gateways" href="<?php echo esc_url( admin_url( 'admin.php?page=wpi-addons&tab=gateways' ) ); ?>"> |
|
81 | - <span><?php esc_html_e( 'Add Payment Methods', 'invoicing' ); ?></span> |
|
80 | + <a class="button button-secondary getpaid-install-gateways" href="<?php echo esc_url(admin_url('admin.php?page=wpi-addons&tab=gateways')); ?>"> |
|
81 | + <span><?php esc_html_e('Add Payment Methods', 'invoicing'); ?></span> |
|
82 | 82 | </a> |
83 | 83 | </td> |
84 | 84 | </tr> |
@@ -4,78 +4,78 @@ discard block |
||
4 | 4 | * |
5 | 5 | */ |
6 | 6 | |
7 | -defined( 'ABSPATH' ) || exit; |
|
7 | +defined('ABSPATH') || exit; |
|
8 | 8 | |
9 | 9 | ?> |
10 | 10 | |
11 | 11 | <div class="card shadow-sm my-5"> |
12 | 12 | |
13 | 13 | <h1 class="h4 card-header bg-white border-bottom-0 pt-4 pb-1"> |
14 | - <?php esc_html_e( 'Welcome to the GetPaid Setup Wizard!', 'invoicing' ); ?> |
|
14 | + <?php esc_html_e('Welcome to the GetPaid Setup Wizard!', 'invoicing'); ?> |
|
15 | 15 | </h1> |
16 | 16 | |
17 | 17 | <div class="card-body text-muted "> |
18 | - <p><?php esc_html_e( 'Thank you for choosing GetPaid - The most Powerful Payments Plugin for WordPress', 'invoicing' ); ?></p> |
|
18 | + <p><?php esc_html_e('Thank you for choosing GetPaid - The most Powerful Payments Plugin for WordPress', 'invoicing'); ?></p> |
|
19 | 19 | <hr class="mt-4 pt-3 pb-0" /> |
20 | - <p class="small"><?php echo wp_kses_post( __( 'This quick setup wizard will help you <b>configure the basic settings</b>. It’s <b>completely optional</b> and shouldn’t take longer than <b>five minutes</b>.', 'invoicing' ) ); ?></p> |
|
20 | + <p class="small"><?php echo wp_kses_post(__('This quick setup wizard will help you <b>configure the basic settings</b>. It’s <b>completely optional</b> and shouldn’t take longer than <b>five minutes</b>.', 'invoicing')); ?></p> |
|
21 | 21 | </div> |
22 | 22 | |
23 | 23 | <div class="card-footer mb-0 bg-white gp-setup-actions step border-top-0"> |
24 | 24 | <a |
25 | - href="<?php echo esc_url( $next_url ); ?>" |
|
26 | - class="btn btn-primary button-next"><?php esc_html_e( "Let's go!", 'invoicing' ); ?></a> |
|
25 | + href="<?php echo esc_url($next_url); ?>" |
|
26 | + class="btn btn-primary button-next"><?php esc_html_e("Let's go!", 'invoicing'); ?></a> |
|
27 | 27 | <a |
28 | - href="<?php echo esc_url( admin_url() ); ?>" |
|
29 | - class="btn btn-link d-block mt-2 "><?php esc_html_e( 'Not right now', 'invoicing' ); ?></a> |
|
28 | + href="<?php echo esc_url(admin_url()); ?>" |
|
29 | + class="btn btn-link d-block mt-2 "><?php esc_html_e('Not right now', 'invoicing'); ?></a> |
|
30 | 30 | </div> |
31 | 31 | </div> |
32 | 32 | |
33 | 33 | <div class="card shadow-sm my-5 overflow-hidden"> |
34 | 34 | <h1 class="h4 card-header bg-white border-bottom-0 pt-4 pb-1"> |
35 | - <?php esc_html_e( 'GetPaid Features & Addons!', 'invoicing' ); ?> |
|
35 | + <?php esc_html_e('GetPaid Features & Addons!', 'invoicing'); ?> |
|
36 | 36 | </h1> |
37 | 37 | |
38 | 38 | <div class="card-body text-muted overflow-hidden"> |
39 | - <p><?php esc_html_e( 'Collect one time & recurring payments online within minutes. No complex setup required.', 'invoicing' ); ?></p> |
|
39 | + <p><?php esc_html_e('Collect one time & recurring payments online within minutes. No complex setup required.', 'invoicing'); ?></p> |
|
40 | 40 | <hr> |
41 | 41 | |
42 | 42 | <div class="row row-cols-2 text-left"> |
43 | 43 | <div class="col mt-3"> |
44 | 44 | <div class="media"> |
45 | - <img src="<?php echo esc_url( WPINV_PLUGIN_URL . 'assets/images/buy.svg' ); ?>" class="mr-3" alt="..."> |
|
45 | + <img src="<?php echo esc_url(WPINV_PLUGIN_URL . 'assets/images/buy.svg'); ?>" class="mr-3" alt="..."> |
|
46 | 46 | <div class="media-body"> |
47 | - <h6 class="mt-0 font-weight-bold"><?php esc_html_e( 'GetPaid via Buy Now Buttons', 'invoicing' ); ?></h6> |
|
48 | - <small><?php esc_html_e( 'Sell via buy now buttons anywhere on your site', 'invoicing' ); ?></small> |
|
47 | + <h6 class="mt-0 font-weight-bold"><?php esc_html_e('GetPaid via Buy Now Buttons', 'invoicing'); ?></h6> |
|
48 | + <small><?php esc_html_e('Sell via buy now buttons anywhere on your site', 'invoicing'); ?></small> |
|
49 | 49 | </div> |
50 | 50 | </div> |
51 | 51 | </div> |
52 | 52 | |
53 | 53 | <div class="col mt-3"> |
54 | 54 | <div class="media"> |
55 | - <img src="<?php echo esc_url( WPINV_PLUGIN_URL . 'assets/images/report.svg' ); ?>" class="mr-3" alt="..."> |
|
55 | + <img src="<?php echo esc_url(WPINV_PLUGIN_URL . 'assets/images/report.svg'); ?>" class="mr-3" alt="..."> |
|
56 | 56 | <div class="media-body"> |
57 | - <h6 class="mt-0 font-weight-bold"><?php esc_html_e( 'GetPaid via payment form', 'invoicing' ); ?></h6> |
|
58 | - <small><?php esc_html_e( 'Payment forms are conversion-optimized checkout forms', 'invoicing' ); ?></small> |
|
57 | + <h6 class="mt-0 font-weight-bold"><?php esc_html_e('GetPaid via payment form', 'invoicing'); ?></h6> |
|
58 | + <small><?php esc_html_e('Payment forms are conversion-optimized checkout forms', 'invoicing'); ?></small> |
|
59 | 59 | </div> |
60 | 60 | </div> |
61 | 61 | </div> |
62 | 62 | |
63 | 63 | <div class="col mt-3"> |
64 | 64 | <div class="media"> |
65 | - <img src="<?php echo esc_url( WPINV_PLUGIN_URL . 'assets/images/invoices.svg' ); ?>" class="mr-3" alt="..."> |
|
65 | + <img src="<?php echo esc_url(WPINV_PLUGIN_URL . 'assets/images/invoices.svg'); ?>" class="mr-3" alt="..."> |
|
66 | 66 | <div class="media-body"> |
67 | - <h6 class="mt-0 font-weight-bold"><?php esc_html_e( 'GetPaid via Invoice', 'invoicing' ); ?></h6> |
|
68 | - <small><?php esc_html_e( 'Create and send invoices for just about anything from the WordPress dashboard', 'invoicing' ); ?></small> |
|
67 | + <h6 class="mt-0 font-weight-bold"><?php esc_html_e('GetPaid via Invoice', 'invoicing'); ?></h6> |
|
68 | + <small><?php esc_html_e('Create and send invoices for just about anything from the WordPress dashboard', 'invoicing'); ?></small> |
|
69 | 69 | </div> |
70 | 70 | </div> |
71 | 71 | </div> |
72 | 72 | |
73 | 73 | <div class="col mt-3"> |
74 | 74 | <div class="media"> |
75 | - <img src="<?php echo esc_url( WPINV_PLUGIN_URL . 'assets/images/payment.svg' ); ?>" class="mr-3" alt="..."> |
|
75 | + <img src="<?php echo esc_url(WPINV_PLUGIN_URL . 'assets/images/payment.svg'); ?>" class="mr-3" alt="..."> |
|
76 | 76 | <div class="media-body"> |
77 | - <h6 class="mt-0 font-weight-bold"><?php esc_html_e( 'Affordable payment gateways', 'invoicing' ); ?></h6> |
|
78 | - <small><?php esc_html_e( 'On average our gateways are over 66% cheaper than our competition', 'invoicing' ); ?></small> |
|
77 | + <h6 class="mt-0 font-weight-bold"><?php esc_html_e('Affordable payment gateways', 'invoicing'); ?></h6> |
|
78 | + <small><?php esc_html_e('On average our gateways are over 66% cheaper than our competition', 'invoicing'); ?></small> |
|
79 | 79 | </div> |
80 | 80 | </div> |
81 | 81 | </div> |
@@ -86,51 +86,51 @@ discard block |
||
86 | 86 | <div class="mt-5"> |
87 | 87 | <a |
88 | 88 | href="https://wpgetpaid.com/features-list/" |
89 | - class="btn btn-primary"><?php esc_html_e( 'View All Features!', 'invoicing' ); ?></a> |
|
89 | + class="btn btn-primary"><?php esc_html_e('View All Features!', 'invoicing'); ?></a> |
|
90 | 90 | </div> |
91 | 91 | |
92 | 92 | <div class="mt-5 mx-n4 py-4" style="background:#eafaf6;"> |
93 | - <h4 class="mt-0 font-weight-bold text-dark mb-4"><?php esc_html_e( 'More with Membership!', 'invoicing' ); ?></h4> |
|
93 | + <h4 class="mt-0 font-weight-bold text-dark mb-4"><?php esc_html_e('More with Membership!', 'invoicing'); ?></h4> |
|
94 | 94 | <div class="row row-cols-2 text-left px-5"> |
95 | 95 | |
96 | 96 | <div class="col"> |
97 | 97 | <ul class="list-unstyled"> |
98 | - <li class="my-2"><i class="far fa-check-circle text-success"></i> <?php esc_html_e( 'PDF Invoices', 'invoicing' ); ?></li> |
|
99 | - <li class="my-2"><i class="far fa-check-circle text-success"></i> <?php esc_html_e( 'Gravity Forms', 'invoicing' ); ?></li> |
|
100 | - <li class="my-2"><i class="far fa-check-circle text-success"></i> <?php esc_html_e( 'Contact form 7', 'invoicing' ); ?></li> |
|
101 | - <li class="my-2"><i class="far fa-check-circle text-success"></i> <?php esc_html_e( 'AffiliateWP Integration', 'invoicing' ); ?></li> |
|
98 | + <li class="my-2"><i class="far fa-check-circle text-success"></i> <?php esc_html_e('PDF Invoices', 'invoicing'); ?></li> |
|
99 | + <li class="my-2"><i class="far fa-check-circle text-success"></i> <?php esc_html_e('Gravity Forms', 'invoicing'); ?></li> |
|
100 | + <li class="my-2"><i class="far fa-check-circle text-success"></i> <?php esc_html_e('Contact form 7', 'invoicing'); ?></li> |
|
101 | + <li class="my-2"><i class="far fa-check-circle text-success"></i> <?php esc_html_e('AffiliateWP Integration', 'invoicing'); ?></li> |
|
102 | 102 | </ul> |
103 | 103 | </div> |
104 | 104 | |
105 | 105 | <div class="col"> |
106 | 106 | <ul class="list-unstyled"> |
107 | - <li class="my-2"><i class="far fa-check-circle text-success"></i> <?php esc_html_e( 'Ninja forms', 'invoicing' ); ?></li> |
|
108 | - <li class="my-2"><i class="far fa-check-circle text-success"></i> <?php esc_html_e( 'Digital Downloads', 'invoicing' ); ?></li> |
|
109 | - <li class="my-2"><i class="far fa-check-circle text-success"></i> <?php esc_html_e( 'Wallet', 'invoicing' ); ?></li> |
|
107 | + <li class="my-2"><i class="far fa-check-circle text-success"></i> <?php esc_html_e('Ninja forms', 'invoicing'); ?></li> |
|
108 | + <li class="my-2"><i class="far fa-check-circle text-success"></i> <?php esc_html_e('Digital Downloads', 'invoicing'); ?></li> |
|
109 | + <li class="my-2"><i class="far fa-check-circle text-success"></i> <?php esc_html_e('Wallet', 'invoicing'); ?></li> |
|
110 | 110 | </ul> |
111 | 111 | </div> |
112 | 112 | </div> |
113 | 113 | |
114 | - <h5 class="mt-4 font-weight-bold text-dark mb-3"><?php esc_html_e( 'Membership Starts From', 'invoicing' ); ?></h5> |
|
115 | - <h1 class="mt-0 font-weight-bold text-dark mb-4 display-3"><?php esc_html_e( '$49', 'invoicing' ); ?></h1> |
|
114 | + <h5 class="mt-4 font-weight-bold text-dark mb-3"><?php esc_html_e('Membership Starts From', 'invoicing'); ?></h5> |
|
115 | + <h1 class="mt-0 font-weight-bold text-dark mb-4 display-3"><?php esc_html_e('$49', 'invoicing'); ?></h1> |
|
116 | 116 | |
117 | 117 | <div class="mt-2"> |
118 | 118 | <a |
119 | 119 | href="https://wpgetpaid.com/downloads/membership/" |
120 | - class="btn btn-primary"><?php esc_html_e( 'Buy Membership Now!', 'invoicing' ); ?></a> |
|
120 | + class="btn btn-primary"><?php esc_html_e('Buy Membership Now!', 'invoicing'); ?></a> |
|
121 | 121 | </div> |
122 | 122 | |
123 | 123 | </div> |
124 | 124 | |
125 | 125 | <div class="card-footer mb-0 bg-white gp-setup-actions step border-top-0"> |
126 | 126 | <a |
127 | - href="<?php echo esc_url( $next_url ); ?>" |
|
128 | - class="btn btn-outline-primary button-next"><?php esc_html_e( 'Launch the Setup Wizard!', 'invoicing' ); ?></a> |
|
127 | + href="<?php echo esc_url($next_url); ?>" |
|
128 | + class="btn btn-outline-primary button-next"><?php esc_html_e('Launch the Setup Wizard!', 'invoicing'); ?></a> |
|
129 | 129 | <a |
130 | 130 | href="https://docs.wpgetpaid.com/" |
131 | - class="btn btn-outline-primary ml-4"><?php esc_html_e( 'Documentation', 'invoicing' ); ?></a> |
|
131 | + class="btn btn-outline-primary ml-4"><?php esc_html_e('Documentation', 'invoicing'); ?></a> |
|
132 | 132 | <a |
133 | - href="<?php echo esc_url( admin_url() ); ?>" |
|
134 | - class="btn btn-link d-block mt-2 "><?php esc_html_e( 'Not right now', 'invoicing' ); ?></a> |
|
133 | + href="<?php echo esc_url(admin_url()); ?>" |
|
134 | + class="btn btn-link d-block mt-2 "><?php esc_html_e('Not right now', 'invoicing'); ?></a> |
|
135 | 135 | </div> |
136 | 136 | </div> |