@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | * |
5 | 5 | */ |
6 | 6 | |
7 | -defined( 'ABSPATH' ) || exit; |
|
7 | +defined('ABSPATH') || exit; |
|
8 | 8 | |
9 | 9 | /** |
10 | 10 | * Payment form submission discount class |
@@ -25,28 +25,28 @@ discard block |
||
25 | 25 | * @param float $initial_total |
26 | 26 | * @param float $recurring_total |
27 | 27 | */ |
28 | - public function __construct( $submission, $initial_total, $recurring_total ) { |
|
28 | + public function __construct($submission, $initial_total, $recurring_total) { |
|
29 | 29 | |
30 | 30 | // Process any existing invoice discounts. |
31 | - if ( $submission->has_invoice() ) { |
|
31 | + if ($submission->has_invoice()) { |
|
32 | 32 | $this->discounts = $submission->get_invoice()->get_discounts(); |
33 | 33 | } |
34 | 34 | |
35 | 35 | // Do we have a discount? |
36 | - $discount = $submission->get_field( 'discount' ); |
|
36 | + $discount = $submission->get_field('discount'); |
|
37 | 37 | |
38 | - if ( empty( $discount ) ) { |
|
38 | + if (empty($discount)) { |
|
39 | 39 | |
40 | - if ( isset( $this->discounts['discount_code'] ) ) { |
|
41 | - unset( $this->discounts['discount_code'] ); |
|
40 | + if (isset($this->discounts['discount_code'])) { |
|
41 | + unset($this->discounts['discount_code']); |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | return; |
45 | 45 | } |
46 | 46 | |
47 | 47 | // Processes the discount code. |
48 | - $amount = max( $initial_total, $recurring_total ); |
|
49 | - $this->process_discount( $submission, $discount, $amount ); |
|
48 | + $amount = max($initial_total, $recurring_total); |
|
49 | + $this->process_discount($submission, $discount, $amount); |
|
50 | 50 | |
51 | 51 | } |
52 | 52 | |
@@ -57,29 +57,29 @@ discard block |
||
57 | 57 | * @param string $discount |
58 | 58 | * @param float $amount |
59 | 59 | */ |
60 | - public function process_discount( $submission, $discount, $amount ) { |
|
60 | + public function process_discount($submission, $discount, $amount) { |
|
61 | 61 | |
62 | 62 | // Fetch the discount. |
63 | - $discount = new WPInv_Discount( $discount ); |
|
63 | + $discount = new WPInv_Discount($discount); |
|
64 | 64 | |
65 | 65 | // Ensure it is active. |
66 | - if ( ! $this->is_discount_active( $discount ) ) { |
|
67 | - throw new Exception( __( 'Invalid or expired discount code', 'invoicing' ) ); |
|
66 | + if (!$this->is_discount_active($discount)) { |
|
67 | + throw new Exception(__('Invalid or expired discount code', 'invoicing')); |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | // Exceeded limit. |
71 | - if ( $discount->has_exceeded_limit() ) { |
|
72 | - throw new Exception( __( 'This discount code has been used up', 'invoicing' ) ); |
|
71 | + if ($discount->has_exceeded_limit()) { |
|
72 | + throw new Exception(__('This discount code has been used up', 'invoicing')); |
|
73 | 73 | } |
74 | 74 | |
75 | 75 | // Validate usages. |
76 | - $this->validate_single_use_discount( $submission, $discount ); |
|
76 | + $this->validate_single_use_discount($submission, $discount); |
|
77 | 77 | |
78 | 78 | // Validate amount. |
79 | - $this->validate_discount_amount( $submission, $discount, $amount ); |
|
79 | + $this->validate_discount_amount($submission, $discount, $amount); |
|
80 | 80 | |
81 | 81 | // Save the discount. |
82 | - $this->discounts['discount_code'] = $this->calculate_discount( $submission, $discount ); |
|
82 | + $this->discounts['discount_code'] = $this->calculate_discount($submission, $discount); |
|
83 | 83 | } |
84 | 84 | |
85 | 85 | /** |
@@ -88,8 +88,8 @@ discard block |
||
88 | 88 | * @param WPInv_Discount $discount |
89 | 89 | * @return bool |
90 | 90 | */ |
91 | - public function is_discount_active( $discount ) { |
|
92 | - return $discount->exists() && $discount->is_active() && $discount->has_started() && ! $discount->is_expired(); |
|
91 | + public function is_discount_active($discount) { |
|
92 | + return $discount->exists() && $discount->is_active() && $discount->has_started() && !$discount->is_expired(); |
|
93 | 93 | } |
94 | 94 | |
95 | 95 | /** |
@@ -98,13 +98,13 @@ discard block |
||
98 | 98 | * @param string $email |
99 | 99 | * @return int|string|false |
100 | 100 | */ |
101 | - public function get_user_id_or_email( $email ) { |
|
101 | + public function get_user_id_or_email($email) { |
|
102 | 102 | |
103 | - if ( is_user_logged_in() ) { |
|
103 | + if (is_user_logged_in()) { |
|
104 | 104 | return get_current_user_id(); |
105 | 105 | } |
106 | 106 | |
107 | - return empty( $email ) ? false : sanitize_email( $email ); |
|
107 | + return empty($email) ? false : sanitize_email($email); |
|
108 | 108 | } |
109 | 109 | |
110 | 110 | /** |
@@ -113,23 +113,23 @@ discard block |
||
113 | 113 | * @param GetPaid_Payment_Form_Submission $submission |
114 | 114 | * @param WPInv_Discount $discount |
115 | 115 | */ |
116 | - public function validate_single_use_discount( $submission, $discount ) { |
|
116 | + public function validate_single_use_discount($submission, $discount) { |
|
117 | 117 | |
118 | 118 | // Abort if it is not a single use discount. |
119 | - if ( ! $discount->is_single_use() ) { |
|
119 | + if (!$discount->is_single_use()) { |
|
120 | 120 | return; |
121 | 121 | } |
122 | 122 | |
123 | 123 | // Ensure there is a valid billing email. |
124 | - $user = $this->get_user_id_or_email( $submission->get_billing_email() ); |
|
124 | + $user = $this->get_user_id_or_email($submission->get_billing_email()); |
|
125 | 125 | |
126 | - if ( empty( $user ) ) { |
|
127 | - throw new Exception( __( 'You need to either log in or enter your billing email before applying this discount', 'invoicing' ) ); |
|
126 | + if (empty($user)) { |
|
127 | + throw new Exception(__('You need to either log in or enter your billing email before applying this discount', 'invoicing')); |
|
128 | 128 | } |
129 | 129 | |
130 | 130 | // Has the user used this discount code before? |
131 | - if ( ! $discount->is_valid_for_user( $user ) ) { |
|
132 | - throw new Exception( __( 'You have already used this discount', 'invoicing' ) ); |
|
131 | + if (!$discount->is_valid_for_user($user)) { |
|
132 | + throw new Exception(__('You have already used this discount', 'invoicing')); |
|
133 | 133 | } |
134 | 134 | |
135 | 135 | } |
@@ -141,18 +141,18 @@ discard block |
||
141 | 141 | * @param WPInv_Discount $discount |
142 | 142 | * @param float $amount |
143 | 143 | */ |
144 | - public function validate_discount_amount( $submission, $discount, $amount ) { |
|
144 | + public function validate_discount_amount($submission, $discount, $amount) { |
|
145 | 145 | |
146 | 146 | // Validate minimum amount. |
147 | - if ( ! $discount->is_minimum_amount_met( $amount ) ) { |
|
148 | - $min = wpinv_price( $discount->get_minimum_total(), $submission->get_currency() ); |
|
149 | - throw new Exception( sprintf( __( 'The minimum total for using this discount is %s', 'invoicing' ), $min ) ); |
|
147 | + if (!$discount->is_minimum_amount_met($amount)) { |
|
148 | + $min = wpinv_price($discount->get_minimum_total(), $submission->get_currency()); |
|
149 | + throw new Exception(sprintf(__('The minimum total for using this discount is %s', 'invoicing'), $min)); |
|
150 | 150 | } |
151 | 151 | |
152 | 152 | // Validate the maximum amount. |
153 | - if ( ! $discount->is_maximum_amount_met( $amount ) ) { |
|
154 | - $max = wpinv_price( $discount->get_maximum_total(), $submission->get_currency() ); |
|
155 | - throw new Exception( sprintf( __( 'The maximum total for using this discount is %s', 'invoicing' ), $max ) ); |
|
153 | + if (!$discount->is_maximum_amount_met($amount)) { |
|
154 | + $max = wpinv_price($discount->get_maximum_total(), $submission->get_currency()); |
|
155 | + throw new Exception(sprintf(__('The maximum total for using this discount is %s', 'invoicing'), $max)); |
|
156 | 156 | } |
157 | 157 | |
158 | 158 | } |
@@ -166,24 +166,24 @@ discard block |
||
166 | 166 | * @param WPInv_Discount $discount |
167 | 167 | * @return array |
168 | 168 | */ |
169 | - public function calculate_discount( $submission, $discount ) { |
|
169 | + public function calculate_discount($submission, $discount) { |
|
170 | 170 | |
171 | 171 | $initial_discount = 0; |
172 | 172 | $recurring_discount = 0; |
173 | 173 | |
174 | - foreach ( $submission->get_items() as $item ) { |
|
174 | + foreach ($submission->get_items() as $item) { |
|
175 | 175 | |
176 | 176 | // Abort if it is not valid for this item. |
177 | - if ( ! $discount->is_valid_for_items( array( $item->get_id() ) ) ) { |
|
177 | + if (!$discount->is_valid_for_items(array($item->get_id()))) { |
|
178 | 178 | continue; |
179 | 179 | } |
180 | 180 | |
181 | 181 | // Calculate the initial amount... |
182 | - $initial_discount += $discount->get_discounted_amount( $item->get_sub_total() ); |
|
182 | + $initial_discount += $discount->get_discounted_amount($item->get_sub_total()); |
|
183 | 183 | |
184 | 184 | // ... and maybe the recurring amount. |
185 | - if ( $item->is_recurring() && $discount->is_recurring() ) { |
|
186 | - $recurring_discount += $discount->get_discounted_amount( $item->get_recurring_sub_total() ); |
|
185 | + if ($item->is_recurring() && $discount->is_recurring()) { |
|
186 | + $recurring_discount += $discount->get_discounted_amount($item->get_recurring_sub_total()); |
|
187 | 187 | } |
188 | 188 | |
189 | 189 | } |
@@ -7,33 +7,33 @@ |
||
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 | <div class='form-group'> |
15 | 15 | <label class="d-block"> |
16 | - <span><?php esc_html_e( 'Alert Text', 'invoicing' ); ?></span> |
|
16 | + <span><?php esc_html_e('Alert Text', 'invoicing'); ?></span> |
|
17 | 17 | <textarea v-model='active_form_element.text' class='form-control' rows='3'></textarea> |
18 | 18 | </label> |
19 | 19 | </div> |
20 | 20 | |
21 | 21 | <div class='form-group form-check'> |
22 | 22 | <input :id="active_form_element.id + '_edit_dismissible'" v-model='active_form_element.dismissible' type='checkbox' class='form-check-input' /> |
23 | - <label class='form-check-label' :for="active_form_element.id + '_edit_dismissible'"><?php esc_html_e( 'Is Dismissible?', 'invoicing' ); ?></label> |
|
23 | + <label class='form-check-label' :for="active_form_element.id + '_edit_dismissible'"><?php esc_html_e('Is Dismissible?', 'invoicing'); ?></label> |
|
24 | 24 | </div> |
25 | 25 | |
26 | 26 | <div class='form-group'> |
27 | - <label :for="active_form_element.id + '_edit_type'"><?php esc_html_e( 'Alert Type', 'invoicing' ) ?></label> |
|
27 | + <label :for="active_form_element.id + '_edit_type'"><?php esc_html_e('Alert Type', 'invoicing') ?></label> |
|
28 | 28 | <select class='form-control custom-select' :id="active_form_element.id + '_edit_type'" v-model='active_form_element.class'> |
29 | - <option value='alert-primary'><?php esc_html_e( 'Primary', 'invoicing' ); ?></option> |
|
30 | - <option value='alert-secondary'><?php esc_html_e( 'Secondary', 'invoicing' ); ?></option> |
|
31 | - <option value='alert-success'><?php esc_html_e( 'Success', 'invoicing' ); ?></option> |
|
32 | - <option value='alert-danger'><?php esc_html_e( 'Danger', 'invoicing' ); ?></option> |
|
33 | - <option value='alert-warning'><?php esc_html_e( 'Warning', 'invoicing' ); ?></option> |
|
34 | - <option value='alert-info'><?php esc_html_e( 'Info', 'invoicing' ); ?></option> |
|
35 | - <option value='alert-light'><?php esc_html_e( 'Light', 'invoicing' ); ?></option> |
|
36 | - <option value='alert-dark'><?php esc_html_e( 'Dark', 'invoicing' ); ?></option> |
|
37 | - <option value='alert-link'><?php esc_html_e( 'Link', 'invoicing' ); ?></option> |
|
29 | + <option value='alert-primary'><?php esc_html_e('Primary', 'invoicing'); ?></option> |
|
30 | + <option value='alert-secondary'><?php esc_html_e('Secondary', 'invoicing'); ?></option> |
|
31 | + <option value='alert-success'><?php esc_html_e('Success', 'invoicing'); ?></option> |
|
32 | + <option value='alert-danger'><?php esc_html_e('Danger', 'invoicing'); ?></option> |
|
33 | + <option value='alert-warning'><?php esc_html_e('Warning', 'invoicing'); ?></option> |
|
34 | + <option value='alert-info'><?php esc_html_e('Info', 'invoicing'); ?></option> |
|
35 | + <option value='alert-light'><?php esc_html_e('Light', 'invoicing'); ?></option> |
|
36 | + <option value='alert-dark'><?php esc_html_e('Dark', 'invoicing'); ?></option> |
|
37 | + <option value='alert-link'><?php esc_html_e('Link', 'invoicing'); ?></option> |
|
38 | 38 | </select> |
39 | 39 | </div> |
@@ -7,30 +7,30 @@ |
||
7 | 7 | * @version 1.0.19 |
8 | 8 | */ |
9 | 9 | |
10 | -defined( 'ABSPATH' ) || exit; |
|
10 | +defined('ABSPATH') || exit; |
|
11 | 11 | |
12 | 12 | // Set the currency position. |
13 | 13 | $position = wpinv_currency_position(); |
14 | 14 | |
15 | -if ( $position == 'left_space' ) { |
|
15 | +if ($position == 'left_space') { |
|
16 | 16 | $position = 'left'; |
17 | 17 | } |
18 | 18 | |
19 | -if ( $position == 'right_space' ) { |
|
19 | +if ($position == 'right_space') { |
|
20 | 20 | $position = 'right'; |
21 | 21 | } |
22 | 22 | |
23 | 23 | echo aui()->input( |
24 | 24 | array( |
25 | - 'name' => esc_attr( $id ), |
|
26 | - 'id' => esc_attr( $id ) . uniqid( '_' ), |
|
27 | - 'placeholder' => empty( $placeholder ) ? wpinv_format_amount(0) : wpinv_format_amount( $placeholder ), |
|
28 | - 'value' => empty( $value ) ? wpinv_format_amount(0) : wpinv_format_amount( $value ), |
|
29 | - 'label' => empty( $label ) ? '' : wp_kses_post( $label ), |
|
25 | + 'name' => esc_attr($id), |
|
26 | + 'id' => esc_attr($id) . uniqid('_'), |
|
27 | + 'placeholder' => empty($placeholder) ? wpinv_format_amount(0) : wpinv_format_amount($placeholder), |
|
28 | + 'value' => empty($value) ? wpinv_format_amount(0) : wpinv_format_amount($value), |
|
29 | + 'label' => empty($label) ? '' : wp_kses_post($label), |
|
30 | 30 | 'label_type' => 'vertical', |
31 | - 'help_text' => empty( $description ) ? '' : wp_kses_post( $description ), |
|
32 | - 'input_group_right' => $position == 'right' ? wpinv_currency_symbol( $form->get_currency() ) : '', |
|
33 | - 'input_group_left' => $position == 'left' ? wpinv_currency_symbol( $form->get_currency() ) : '', |
|
31 | + 'help_text' => empty($description) ? '' : wp_kses_post($description), |
|
32 | + 'input_group_right' => $position == 'right' ? wpinv_currency_symbol($form->get_currency()) : '', |
|
33 | + 'input_group_left' => $position == 'left' ? wpinv_currency_symbol($form->get_currency()) : '', |
|
34 | 34 | 'class' => 'getpaid-refresh-on-change', |
35 | 35 | ) |
36 | 36 | ); |
@@ -3,9 +3,9 @@ discard block |
||
3 | 3 | * Displays a list of all subscriptions rules |
4 | 4 | */ |
5 | 5 | |
6 | -if ( ! defined( 'ABSPATH' ) ) exit; |
|
6 | +if (!defined('ABSPATH')) exit; |
|
7 | 7 | |
8 | -if ( ! class_exists( 'WP_List_Table' ) ) { |
|
8 | +if (!class_exists('WP_List_Table')) { |
|
9 | 9 | include_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
10 | 10 | } |
11 | 11 | |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | |
79 | 79 | $this->prepare_query(); |
80 | 80 | |
81 | - $this->base_url = remove_query_arg( 'status' ); |
|
81 | + $this->base_url = remove_query_arg('status'); |
|
82 | 82 | |
83 | 83 | } |
84 | 84 | |
@@ -91,21 +91,21 @@ discard block |
||
91 | 91 | $query = array( |
92 | 92 | 'number' => $this->per_page, |
93 | 93 | 'paged' => $this->get_paged(), |
94 | - 'status' => ( isset( $_GET['status'] ) && array_key_exists( $_GET['status'], getpaid_get_subscription_statuses() ) ) ? $_GET['status'] : 'all', |
|
95 | - 'orderby' => ( isset( $_GET['orderby'] ) ) ? $_GET['orderby'] : 'id', |
|
96 | - 'order' => ( isset( $_GET['order'] ) ) ? $_GET['order'] : 'DESC', |
|
94 | + 'status' => (isset($_GET['status']) && array_key_exists($_GET['status'], getpaid_get_subscription_statuses())) ? $_GET['status'] : 'all', |
|
95 | + 'orderby' => (isset($_GET['orderby'])) ? $_GET['orderby'] : 'id', |
|
96 | + 'order' => (isset($_GET['order'])) ? $_GET['order'] : 'DESC', |
|
97 | 97 | ); |
98 | 98 | |
99 | 99 | // Prepare class properties. |
100 | - $this->query = new GetPaid_Subscriptions_Query( $query ); |
|
100 | + $this->query = new GetPaid_Subscriptions_Query($query); |
|
101 | 101 | $this->total_count = $this->query->get_total(); |
102 | 102 | $this->current_total_count = $this->query->get_total(); |
103 | 103 | $this->items = $this->query->get_results(); |
104 | - $this->status_counts = getpaid_get_subscription_status_counts( $query ); |
|
104 | + $this->status_counts = getpaid_get_subscription_status_counts($query); |
|
105 | 105 | |
106 | - if ( 'all' != $query['status'] ) { |
|
107 | - unset( $query['status'] ); |
|
108 | - $this->total_count = getpaid_get_subscriptions( $query, 'count' ); |
|
106 | + if ('all' != $query['status']) { |
|
107 | + unset($query['status']); |
|
108 | + $this->total_count = getpaid_get_subscriptions($query, 'count'); |
|
109 | 109 | } |
110 | 110 | |
111 | 111 | } |
@@ -122,26 +122,26 @@ discard block |
||
122 | 122 | */ |
123 | 123 | public function get_views() { |
124 | 124 | |
125 | - $current = isset( $_GET['status'] ) ? $_GET['status'] : 'all'; |
|
125 | + $current = isset($_GET['status']) ? $_GET['status'] : 'all'; |
|
126 | 126 | $views = array( |
127 | 127 | |
128 | 128 | 'all' => sprintf( |
129 | 129 | '<a href="%s" %s>%s <span class="count">(%d)</span></a>', |
130 | - esc_url( add_query_arg( 'status', false, $this->base_url ) ), |
|
130 | + esc_url(add_query_arg('status', false, $this->base_url)), |
|
131 | 131 | $current === 'all' ? ' class="current"' : '', |
132 | - __('All','invoicing' ), |
|
132 | + __('All', 'invoicing'), |
|
133 | 133 | $this->total_count |
134 | 134 | ) |
135 | 135 | |
136 | 136 | ); |
137 | 137 | |
138 | - foreach ( array_filter( $this->status_counts ) as $status => $count ) { |
|
138 | + foreach (array_filter($this->status_counts) as $status => $count) { |
|
139 | 139 | |
140 | - $views[ $status ] = sprintf( |
|
140 | + $views[$status] = sprintf( |
|
141 | 141 | '<a href="%s" %s>%s <span class="count">(%d)</span></a>', |
142 | - esc_url( add_query_arg( 'status', urlencode( $status ), $this->base_url ) ), |
|
142 | + esc_url(add_query_arg('status', urlencode($status), $this->base_url)), |
|
143 | 143 | $current === $status ? ' class="current"' : '', |
144 | - sanitize_text_field( getpaid_get_subscription_status_label( $status ) ), |
|
144 | + sanitize_text_field(getpaid_get_subscription_status_label($status)), |
|
145 | 145 | $count |
146 | 146 | ); |
147 | 147 | |
@@ -158,8 +158,8 @@ discard block |
||
158 | 158 | * @since 1.0.0 |
159 | 159 | * @return string |
160 | 160 | */ |
161 | - public function column_default( $item, $column_name ) { |
|
162 | - return apply_filters( "getpaid_subscriptions_table_column_$column_name", $item->$column_name ); |
|
161 | + public function column_default($item, $column_name) { |
|
162 | + return apply_filters("getpaid_subscriptions_table_column_$column_name", $item->$column_name); |
|
163 | 163 | } |
164 | 164 | |
165 | 165 | /** |
@@ -168,8 +168,8 @@ discard block |
||
168 | 168 | * @param WPInv_Subscription $item |
169 | 169 | * @return string |
170 | 170 | */ |
171 | - public function column_cb( $item ) { |
|
172 | - return sprintf( '<input type="checkbox" name="id[]" value="%s" />', esc_html( $item->get_id() ) ); |
|
171 | + public function column_cb($item) { |
|
172 | + return sprintf('<input type="checkbox" name="id[]" value="%s" />', esc_html($item->get_id())); |
|
173 | 173 | } |
174 | 174 | |
175 | 175 | /** |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | * @since 1.0.0 |
180 | 180 | * @return string |
181 | 181 | */ |
182 | - public function column_status( $item ) { |
|
182 | + public function column_status($item) { |
|
183 | 183 | return $item->get_status_label_html(); |
184 | 184 | } |
185 | 185 | |
@@ -190,46 +190,46 @@ discard block |
||
190 | 190 | * @since 1.0.0 |
191 | 191 | * @return string |
192 | 192 | */ |
193 | - public function column_subscription( $item ) { |
|
193 | + public function column_subscription($item) { |
|
194 | 194 | |
195 | - $username = __( '(Missing User)', 'invoicing' ); |
|
195 | + $username = __('(Missing User)', 'invoicing'); |
|
196 | 196 | |
197 | - $user = get_userdata( $item->get_customer_id() ); |
|
198 | - if ( $user ) { |
|
197 | + $user = get_userdata($item->get_customer_id()); |
|
198 | + if ($user) { |
|
199 | 199 | |
200 | 200 | $username = sprintf( |
201 | 201 | '<a href="user-edit.php?user_id=%s">%s</a>', |
202 | - absint( $user->ID ), |
|
203 | - ! empty( $user->display_name ) ? sanitize_text_field( $user->display_name ) : sanitize_email( $user->user_email ) |
|
202 | + absint($user->ID), |
|
203 | + !empty($user->display_name) ? sanitize_text_field($user->display_name) : sanitize_email($user->user_email) |
|
204 | 204 | ); |
205 | 205 | |
206 | 206 | } |
207 | 207 | |
208 | 208 | // translators: $1: is opening link, $2: is subscription id number, $3: is closing link tag, $4: is user's name |
209 | 209 | $column_content = sprintf( |
210 | - _x( '%1$s#%2$s%3$s for %4$s', 'Subscription title on admin table. (e.g.: #211 for John Doe)', 'invoicing' ), |
|
211 | - '<a href="' . esc_url( admin_url( 'admin.php?page=wpinv-subscriptions&id=' . absint( $item->get_id() ) ) ) . '">', |
|
212 | - '<strong>' . esc_attr( $item->get_id() ) . '</strong>', '</a>', |
|
210 | + _x('%1$s#%2$s%3$s for %4$s', 'Subscription title on admin table. (e.g.: #211 for John Doe)', 'invoicing'), |
|
211 | + '<a href="' . esc_url(admin_url('admin.php?page=wpinv-subscriptions&id=' . absint($item->get_id()))) . '">', |
|
212 | + '<strong>' . esc_attr($item->get_id()) . '</strong>', '</a>', |
|
213 | 213 | $username |
214 | 214 | ); |
215 | 215 | |
216 | 216 | $row_actions = array(); |
217 | 217 | |
218 | 218 | // View subscription. |
219 | - $view_url = esc_url( add_query_arg( 'id', $item->get_id(), admin_url( 'admin.php?page=wpinv-subscriptions' ) )); |
|
220 | - $row_actions['view'] = '<a href="' . $view_url . '">' . __( 'View Subscription', 'invoicing' ) . '</a>'; |
|
219 | + $view_url = esc_url(add_query_arg('id', $item->get_id(), admin_url('admin.php?page=wpinv-subscriptions'))); |
|
220 | + $row_actions['view'] = '<a href="' . $view_url . '">' . __('View Subscription', 'invoicing') . '</a>'; |
|
221 | 221 | |
222 | 222 | // View invoice. |
223 | - $invoice = get_post( $item->get_parent_invoice_id() ); |
|
223 | + $invoice = get_post($item->get_parent_invoice_id()); |
|
224 | 224 | |
225 | - if ( ! empty( $invoice ) ) { |
|
226 | - $view_url = get_edit_post_link( $invoice ); |
|
227 | - $row_actions['invoice'] = '<a href="' . $view_url . '">' . __( 'View Invoice', 'invoicing' ) . '</a>'; |
|
225 | + if (!empty($invoice)) { |
|
226 | + $view_url = get_edit_post_link($invoice); |
|
227 | + $row_actions['invoice'] = '<a href="' . $view_url . '">' . __('View Invoice', 'invoicing') . '</a>'; |
|
228 | 228 | } |
229 | 229 | |
230 | - $row_actions = $this->row_actions( apply_filters( 'getpaid_subscription_table_row_actions', $row_actions, $item ) ); |
|
230 | + $row_actions = $this->row_actions(apply_filters('getpaid_subscription_table_row_actions', $row_actions, $item)); |
|
231 | 231 | |
232 | - return "<strong>$column_content</strong>" . $this->column_amount( $item ) . $row_actions; |
|
232 | + return "<strong>$column_content</strong>" . $this->column_amount($item) . $row_actions; |
|
233 | 233 | } |
234 | 234 | |
235 | 235 | /** |
@@ -239,8 +239,8 @@ discard block |
||
239 | 239 | * @since 1.0.0 |
240 | 240 | * @return string |
241 | 241 | */ |
242 | - public function column_renewal_date( $item ) { |
|
243 | - return getpaid_format_date_value( $item->get_expiration() ); |
|
242 | + public function column_renewal_date($item) { |
|
243 | + return getpaid_format_date_value($item->get_expiration()); |
|
244 | 244 | } |
245 | 245 | |
246 | 246 | /** |
@@ -250,8 +250,8 @@ discard block |
||
250 | 250 | * @since 1.0.0 |
251 | 251 | * @return string |
252 | 252 | */ |
253 | - public function column_start_date( $item ) { |
|
254 | - return getpaid_format_date_value( $item->get_date_created() ); |
|
253 | + public function column_start_date($item) { |
|
254 | + return getpaid_format_date_value($item->get_date_created()); |
|
255 | 255 | } |
256 | 256 | |
257 | 257 | /** |
@@ -261,8 +261,8 @@ discard block |
||
261 | 261 | * @since 1.0.19 |
262 | 262 | * @return string |
263 | 263 | */ |
264 | - public function column_amount( $item ) { |
|
265 | - $amount = getpaid_get_formatted_subscription_amount( $item ); |
|
264 | + public function column_amount($item) { |
|
265 | + $amount = getpaid_get_formatted_subscription_amount($item); |
|
266 | 266 | return "<span class='text-muted form-text mt-2 mb-2'>$amount</span>"; |
267 | 267 | } |
268 | 268 | |
@@ -273,9 +273,9 @@ discard block |
||
273 | 273 | * @since 1.0.0 |
274 | 274 | * @return string |
275 | 275 | */ |
276 | - public function column_renewals( $item ) { |
|
276 | + public function column_renewals($item) { |
|
277 | 277 | $max_bills = $item->get_bill_times(); |
278 | - return $item->get_times_billed() . ' / ' . ( empty( $max_bills ) ? "∞" : $max_bills ); |
|
278 | + return $item->get_times_billed() . ' / ' . (empty($max_bills) ? "∞" : $max_bills); |
|
279 | 279 | } |
280 | 280 | |
281 | 281 | /** |
@@ -285,16 +285,16 @@ discard block |
||
285 | 285 | * @since 1.0.0 |
286 | 286 | * @return string |
287 | 287 | */ |
288 | - public function column_item( $item ) { |
|
289 | - $_item = get_post( $item->get_product_id() ); |
|
288 | + public function column_item($item) { |
|
289 | + $_item = get_post($item->get_product_id()); |
|
290 | 290 | |
291 | - if ( ! empty( $_item ) ) { |
|
292 | - $link = get_edit_post_link( $_item ); |
|
293 | - $link = esc_url( $link ); |
|
294 | - $name = esc_html( get_the_title( $_item ) ); |
|
291 | + if (!empty($_item)) { |
|
292 | + $link = get_edit_post_link($_item); |
|
293 | + $link = esc_url($link); |
|
294 | + $name = esc_html(get_the_title($_item)); |
|
295 | 295 | return "<a href='$link'>$name</a>"; |
296 | 296 | } else { |
297 | - return sprintf( __( 'Item #%s', 'invoicing' ), $item->get_product_id() ); |
|
297 | + return sprintf(__('Item #%s', 'invoicing'), $item->get_product_id()); |
|
298 | 298 | } |
299 | 299 | |
300 | 300 | } |
@@ -305,7 +305,7 @@ discard block |
||
305 | 305 | * @return int |
306 | 306 | */ |
307 | 307 | public function get_paged() { |
308 | - return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1; |
|
308 | + return isset($_GET['paged']) ? absint($_GET['paged']) : 1; |
|
309 | 309 | } |
310 | 310 | |
311 | 311 | /** |
@@ -318,13 +318,13 @@ discard block |
||
318 | 318 | $hidden = array(); |
319 | 319 | $sortable = $this->get_sortable_columns(); |
320 | 320 | |
321 | - $this->_column_headers = array( $columns, $hidden, $sortable ); |
|
321 | + $this->_column_headers = array($columns, $hidden, $sortable); |
|
322 | 322 | |
323 | 323 | $this->set_pagination_args( |
324 | 324 | array( |
325 | 325 | 'total_items' => $this->current_total_count, |
326 | 326 | 'per_page' => $this->per_page, |
327 | - 'total_pages' => ceil( $this->current_total_count / $this->per_page ) |
|
327 | + 'total_pages' => ceil($this->current_total_count / $this->per_page) |
|
328 | 328 | ) |
329 | 329 | ); |
330 | 330 | } |
@@ -334,18 +334,18 @@ discard block |
||
334 | 334 | * |
335 | 335 | * @return array |
336 | 336 | */ |
337 | - public function get_columns(){ |
|
337 | + public function get_columns() { |
|
338 | 338 | $columns = array( |
339 | 339 | 'cb' => '<input type="checkbox" />', |
340 | - 'subscription' => __( 'Subscription', 'invoicing' ), |
|
341 | - 'start_date' => __( 'Start Date', 'invoicing' ), |
|
342 | - 'renewal_date' => __( 'Next Payment', 'invoicing' ), |
|
343 | - 'renewals' => __( 'Payments', 'invoicing' ), |
|
344 | - 'item' => __( 'Item', 'invoicing' ), |
|
345 | - 'status' => __( 'Status', 'invoicing' ), |
|
340 | + 'subscription' => __('Subscription', 'invoicing'), |
|
341 | + 'start_date' => __('Start Date', 'invoicing'), |
|
342 | + 'renewal_date' => __('Next Payment', 'invoicing'), |
|
343 | + 'renewals' => __('Payments', 'invoicing'), |
|
344 | + 'item' => __('Item', 'invoicing'), |
|
345 | + 'status' => __('Status', 'invoicing'), |
|
346 | 346 | ); |
347 | 347 | |
348 | - return apply_filters( 'manage_getpaid_subscriptions_table_columns', $columns ); |
|
348 | + return apply_filters('manage_getpaid_subscriptions_table_columns', $columns); |
|
349 | 349 | } |
350 | 350 | |
351 | 351 | /** |
@@ -355,15 +355,15 @@ discard block |
||
355 | 355 | */ |
356 | 356 | public function get_sortable_columns() { |
357 | 357 | $sortable = array( |
358 | - 'subscription' => array( 'id', true ), |
|
359 | - 'start_date' => array( 'created', true ), |
|
360 | - 'renewal_date' => array( 'expiration', true ), |
|
361 | - 'renewals' => array( 'bill_times', true ), |
|
362 | - 'item' => array( 'product_id', true ), |
|
363 | - 'status' => array( 'status', true ), |
|
358 | + 'subscription' => array('id', true), |
|
359 | + 'start_date' => array('created', true), |
|
360 | + 'renewal_date' => array('expiration', true), |
|
361 | + 'renewals' => array('bill_times', true), |
|
362 | + 'item' => array('product_id', true), |
|
363 | + 'status' => array('status', true), |
|
364 | 364 | ); |
365 | 365 | |
366 | - return apply_filters( 'manage_getpaid_subscriptions_sortable_table_columns', $sortable ); |
|
366 | + return apply_filters('manage_getpaid_subscriptions_sortable_table_columns', $sortable); |
|
367 | 367 | } |
368 | 368 | |
369 | 369 | /** |
@@ -372,7 +372,7 @@ discard block |
||
372 | 372 | * @return bool |
373 | 373 | */ |
374 | 374 | public function has_items() { |
375 | - return ! empty( $this->current_total_count ); |
|
375 | + return !empty($this->current_total_count); |
|
376 | 376 | } |
377 | 377 | |
378 | 378 | /** |
@@ -5,7 +5,7 @@ discard block |
||
5 | 5 | * @since 1.0.15 |
6 | 6 | */ |
7 | 7 | |
8 | -defined( 'ABSPATH' ) || exit; |
|
8 | +defined('ABSPATH') || exit; |
|
9 | 9 | |
10 | 10 | /** |
11 | 11 | * Discount class. |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | * @since 1.0.15 |
14 | 14 | * |
15 | 15 | */ |
16 | -class WPInv_Discount extends GetPaid_Data { |
|
16 | +class WPInv_Discount extends GetPaid_Data { |
|
17 | 17 | |
18 | 18 | /** |
19 | 19 | * Which data store to load. |
@@ -79,35 +79,35 @@ discard block |
||
79 | 79 | * |
80 | 80 | * @param int|array|string|WPInv_Discount|WP_Post $discount discount data, object, ID or code. |
81 | 81 | */ |
82 | - public function __construct( $discount = 0 ) { |
|
83 | - parent::__construct( $discount ); |
|
82 | + public function __construct($discount = 0) { |
|
83 | + parent::__construct($discount); |
|
84 | 84 | |
85 | - if ( is_numeric( $discount ) && 'wpi_discount' === get_post_type( $discount ) ) { |
|
86 | - $this->set_id( $discount ); |
|
87 | - } elseif ( $discount instanceof self ) { |
|
88 | - $this->set_id( $discount->get_id() ); |
|
89 | - } elseif ( ! empty( $discount->ID ) ) { |
|
90 | - $this->set_id( $discount->ID ); |
|
91 | - } elseif ( is_array( $discount ) ) { |
|
92 | - $this->set_props( $discount ); |
|
85 | + if (is_numeric($discount) && 'wpi_discount' === get_post_type($discount)) { |
|
86 | + $this->set_id($discount); |
|
87 | + } elseif ($discount instanceof self) { |
|
88 | + $this->set_id($discount->get_id()); |
|
89 | + } elseif (!empty($discount->ID)) { |
|
90 | + $this->set_id($discount->ID); |
|
91 | + } elseif (is_array($discount)) { |
|
92 | + $this->set_props($discount); |
|
93 | 93 | |
94 | - if ( isset( $discount['ID'] ) ) { |
|
95 | - $this->set_id( $discount['ID'] ); |
|
94 | + if (isset($discount['ID'])) { |
|
95 | + $this->set_id($discount['ID']); |
|
96 | 96 | } |
97 | 97 | |
98 | - } elseif ( is_scalar( $discount ) && $discount = self::get_discount_id_by_code( $discount ) ) { |
|
99 | - $this->set_id( $discount ); |
|
98 | + } elseif (is_scalar($discount) && $discount = self::get_discount_id_by_code($discount)) { |
|
99 | + $this->set_id($discount); |
|
100 | 100 | } else { |
101 | - $this->set_object_read( true ); |
|
101 | + $this->set_object_read(true); |
|
102 | 102 | } |
103 | 103 | |
104 | 104 | // Load the datastore. |
105 | - $this->data_store = GetPaid_Data_Store::load( $this->data_store_name ); |
|
105 | + $this->data_store = GetPaid_Data_Store::load($this->data_store_name); |
|
106 | 106 | |
107 | - if ( $this->get_id() > 0 ) { |
|
108 | - $this->post = get_post( $this->get_id() ); |
|
107 | + if ($this->get_id() > 0) { |
|
108 | + $this->post = get_post($this->get_id()); |
|
109 | 109 | $this->ID = $this->get_id(); |
110 | - $this->data_store->read( $this ); |
|
110 | + $this->data_store->read($this); |
|
111 | 111 | } |
112 | 112 | |
113 | 113 | } |
@@ -123,50 +123,50 @@ discard block |
||
123 | 123 | * @since 1.0.15 |
124 | 124 | * @return array|bool array of discount details on success. False otherwise. |
125 | 125 | */ |
126 | - public static function get_data_by( $field, $value ) { |
|
126 | + public static function get_data_by($field, $value) { |
|
127 | 127 | |
128 | - if ( 'id' == strtolower( $field ) ) { |
|
128 | + if ('id' == strtolower($field)) { |
|
129 | 129 | // Make sure the value is numeric to avoid casting objects, for example, |
130 | 130 | // to int 1. |
131 | - if ( ! is_numeric( $value ) ) |
|
131 | + if (!is_numeric($value)) |
|
132 | 132 | return false; |
133 | - $value = intval( $value ); |
|
134 | - if ( $value < 1 ) |
|
133 | + $value = intval($value); |
|
134 | + if ($value < 1) |
|
135 | 135 | return false; |
136 | 136 | } |
137 | 137 | |
138 | - if ( ! $value || ! is_string( $field ) ) { |
|
138 | + if (!$value || !is_string($field)) { |
|
139 | 139 | return false; |
140 | 140 | } |
141 | 141 | |
142 | - $field = trim( $field ); |
|
142 | + $field = trim($field); |
|
143 | 143 | |
144 | 144 | // prepare query args |
145 | - switch ( strtolower( $field ) ) { |
|
145 | + switch (strtolower($field)) { |
|
146 | 146 | case 'id': |
147 | 147 | $discount_id = $value; |
148 | - $args = array( 'include' => array( $value ) ); |
|
148 | + $args = array('include' => array($value)); |
|
149 | 149 | break; |
150 | 150 | case 'discount_code': |
151 | 151 | case 'code': |
152 | - $value = trim( $value ); |
|
153 | - $discount_id = wp_cache_get( $value, 'WPInv_Discount_Codes' ); |
|
154 | - $args = array( 'meta_key' => '_wpi_discount_code', 'meta_value' => $value ); |
|
152 | + $value = trim($value); |
|
153 | + $discount_id = wp_cache_get($value, 'WPInv_Discount_Codes'); |
|
154 | + $args = array('meta_key' => '_wpi_discount_code', 'meta_value' => $value); |
|
155 | 155 | break; |
156 | 156 | case 'name': |
157 | 157 | $discount_id = 0; |
158 | - $args = array( 'name' => trim( $value ) ); |
|
158 | + $args = array('name' => trim($value)); |
|
159 | 159 | break; |
160 | 160 | default: |
161 | - $args = apply_filters( "wpinv_discount_get_data_by_{$field}_args", null, $value ); |
|
162 | - if ( ! is_array( $args ) ) { |
|
163 | - return apply_filters( "wpinv_discount_get_data_by_$field", false, $value ); |
|
161 | + $args = apply_filters("wpinv_discount_get_data_by_{$field}_args", null, $value); |
|
162 | + if (!is_array($args)) { |
|
163 | + return apply_filters("wpinv_discount_get_data_by_$field", false, $value); |
|
164 | 164 | } |
165 | 165 | |
166 | 166 | } |
167 | 167 | |
168 | 168 | // Check if there is a cached value. |
169 | - if ( ! empty( $discount_id ) && $discount = wp_cache_get( (int) $discount_id, 'WPInv_Discounts' ) ) { |
|
169 | + if (!empty($discount_id) && $discount = wp_cache_get((int) $discount_id, 'WPInv_Discounts')) { |
|
170 | 170 | return $discount; |
171 | 171 | } |
172 | 172 | |
@@ -175,13 +175,13 @@ discard block |
||
175 | 175 | array( |
176 | 176 | 'post_type' => 'wpi_discount', |
177 | 177 | 'posts_per_page' => 1, |
178 | - 'post_status' => array( 'publish', 'pending', 'draft', 'expired' ) |
|
178 | + 'post_status' => array('publish', 'pending', 'draft', 'expired') |
|
179 | 179 | ) |
180 | 180 | ); |
181 | 181 | |
182 | - $discount = get_posts( $args ); |
|
182 | + $discount = get_posts($args); |
|
183 | 183 | |
184 | - if( empty( $discount ) ) { |
|
184 | + if (empty($discount)) { |
|
185 | 185 | return false; |
186 | 186 | } |
187 | 187 | |
@@ -190,30 +190,30 @@ discard block |
||
190 | 190 | // Prepare the return data. |
191 | 191 | $return = array( |
192 | 192 | 'ID' => $discount->ID, |
193 | - 'code' => get_post_meta( $discount->ID, '_wpi_discount_code', true ), |
|
194 | - 'amount' => get_post_meta( $discount->ID, '_wpi_discount_amount', true ), |
|
193 | + 'code' => get_post_meta($discount->ID, '_wpi_discount_code', true), |
|
194 | + 'amount' => get_post_meta($discount->ID, '_wpi_discount_amount', true), |
|
195 | 195 | 'date_created' => $discount->post_date, |
196 | 196 | 'date_modified' => $discount->post_modified, |
197 | 197 | 'status' => $discount->post_status, |
198 | - 'start' => get_post_meta( $discount->ID, '_wpi_discount_start', true ), |
|
199 | - 'expiration' => get_post_meta( $discount->ID, '_wpi_discount_expiration', true ), |
|
200 | - 'type' => get_post_meta( $discount->ID, '_wpi_discount_type', true ), |
|
198 | + 'start' => get_post_meta($discount->ID, '_wpi_discount_start', true), |
|
199 | + 'expiration' => get_post_meta($discount->ID, '_wpi_discount_expiration', true), |
|
200 | + 'type' => get_post_meta($discount->ID, '_wpi_discount_type', true), |
|
201 | 201 | 'description' => $discount->post_excerpt, |
202 | - 'uses' => get_post_meta( $discount->ID, '_wpi_discount_uses', true ), |
|
203 | - 'is_single_use' => get_post_meta( $discount->ID, '_wpi_discount_is_single_use', true ), |
|
204 | - 'items' => get_post_meta( $discount->ID, '_wpi_discount_items', true ), |
|
205 | - 'excluded_items' => get_post_meta( $discount->ID, '_wpi_discount_excluded_items', true ), |
|
206 | - 'max_uses' => get_post_meta( $discount->ID, '_wpi_discount_max_uses', true ), |
|
207 | - 'is_recurring' => get_post_meta( $discount->ID, '_wpi_discount_is_recurring', true ), |
|
208 | - 'min_total' => get_post_meta( $discount->ID, '_wpi_discount_min_total', true ), |
|
209 | - 'max_total' => get_post_meta( $discount->ID, '_wpi_discount_max_total', true ), |
|
202 | + 'uses' => get_post_meta($discount->ID, '_wpi_discount_uses', true), |
|
203 | + 'is_single_use' => get_post_meta($discount->ID, '_wpi_discount_is_single_use', true), |
|
204 | + 'items' => get_post_meta($discount->ID, '_wpi_discount_items', true), |
|
205 | + 'excluded_items' => get_post_meta($discount->ID, '_wpi_discount_excluded_items', true), |
|
206 | + 'max_uses' => get_post_meta($discount->ID, '_wpi_discount_max_uses', true), |
|
207 | + 'is_recurring' => get_post_meta($discount->ID, '_wpi_discount_is_recurring', true), |
|
208 | + 'min_total' => get_post_meta($discount->ID, '_wpi_discount_min_total', true), |
|
209 | + 'max_total' => get_post_meta($discount->ID, '_wpi_discount_max_total', true), |
|
210 | 210 | ); |
211 | 211 | |
212 | - $return = apply_filters( 'wpinv_discount_properties', $return ); |
|
212 | + $return = apply_filters('wpinv_discount_properties', $return); |
|
213 | 213 | |
214 | 214 | // Update the cache with our data |
215 | - wp_cache_add( $discount->ID, $return, 'WPInv_Discounts' ); |
|
216 | - wp_cache_add( $return['code'], $discount->ID, 'WPInv_Discount_Codes' ); |
|
215 | + wp_cache_add($discount->ID, $return, 'WPInv_Discounts'); |
|
216 | + wp_cache_add($return['code'], $discount->ID, 'WPInv_Discount_Codes'); |
|
217 | 217 | |
218 | 218 | return $return; |
219 | 219 | } |
@@ -227,19 +227,19 @@ discard block |
||
227 | 227 | * @since 1.0.15 |
228 | 228 | * @return int |
229 | 229 | */ |
230 | - public static function get_discount_id_by_code( $discount_code ) { |
|
230 | + public static function get_discount_id_by_code($discount_code) { |
|
231 | 231 | |
232 | 232 | // Trim the code. |
233 | - $discount_code = trim( $discount_code ); |
|
233 | + $discount_code = trim($discount_code); |
|
234 | 234 | |
235 | 235 | // Ensure a value has been passed. |
236 | - if ( empty( $discount_code ) ) { |
|
236 | + if (empty($discount_code)) { |
|
237 | 237 | return 0; |
238 | 238 | } |
239 | 239 | |
240 | 240 | // Maybe retrieve from the cache. |
241 | - $discount_id = wp_cache_get( $discount_code, 'getpaid_discount_codes' ); |
|
242 | - if ( ! empty( $discount_id ) ) { |
|
241 | + $discount_id = wp_cache_get($discount_code, 'getpaid_discount_codes'); |
|
242 | + if (!empty($discount_id)) { |
|
243 | 243 | return $discount_id; |
244 | 244 | } |
245 | 245 | |
@@ -250,19 +250,19 @@ discard block |
||
250 | 250 | 'meta_value' => $discount_code, |
251 | 251 | 'post_type' => 'wpi_discount', |
252 | 252 | 'posts_per_page' => 1, |
253 | - 'post_status' => array( 'publish', 'pending', 'draft', 'expired' ), |
|
253 | + 'post_status' => array('publish', 'pending', 'draft', 'expired'), |
|
254 | 254 | 'fields' => 'ids', |
255 | 255 | ) |
256 | 256 | ); |
257 | 257 | |
258 | - if ( empty( $discounts ) ) { |
|
258 | + if (empty($discounts)) { |
|
259 | 259 | return 0; |
260 | 260 | } |
261 | 261 | |
262 | 262 | $discount_id = $discounts[0]; |
263 | 263 | |
264 | 264 | // Update the cache with our data |
265 | - wp_cache_add( get_post_meta( $discount_id, '_wpi_discount_code', true ), $discount_id, 'getpaid_discount_codes' ); |
|
265 | + wp_cache_add(get_post_meta($discount_id, '_wpi_discount_code', true), $discount_id, 'getpaid_discount_codes'); |
|
266 | 266 | |
267 | 267 | return $discount_id; |
268 | 268 | } |
@@ -275,8 +275,8 @@ discard block |
||
275 | 275 | * |
276 | 276 | * @return bool Whether the given discount field is set. |
277 | 277 | */ |
278 | - public function __isset( $key ){ |
|
279 | - return isset( $this->data[$key] ) || method_exists( $this, "get_$key"); |
|
278 | + public function __isset($key) { |
|
279 | + return isset($this->data[$key]) || method_exists($this, "get_$key"); |
|
280 | 280 | } |
281 | 281 | |
282 | 282 | /* |
@@ -301,8 +301,8 @@ discard block |
||
301 | 301 | * @param string $context View or edit context. |
302 | 302 | * @return string |
303 | 303 | */ |
304 | - public function get_status( $context = 'view' ) { |
|
305 | - return $this->get_prop( 'status', $context ); |
|
304 | + public function get_status($context = 'view') { |
|
305 | + return $this->get_prop('status', $context); |
|
306 | 306 | } |
307 | 307 | |
308 | 308 | /** |
@@ -312,8 +312,8 @@ discard block |
||
312 | 312 | * @param string $context View or edit context. |
313 | 313 | * @return string |
314 | 314 | */ |
315 | - public function get_version( $context = 'view' ) { |
|
316 | - return $this->get_prop( 'version', $context ); |
|
315 | + public function get_version($context = 'view') { |
|
316 | + return $this->get_prop('version', $context); |
|
317 | 317 | } |
318 | 318 | |
319 | 319 | /** |
@@ -323,8 +323,8 @@ discard block |
||
323 | 323 | * @param string $context View or edit context. |
324 | 324 | * @return string |
325 | 325 | */ |
326 | - public function get_date_created( $context = 'view' ) { |
|
327 | - return $this->get_prop( 'date_created', $context ); |
|
326 | + public function get_date_created($context = 'view') { |
|
327 | + return $this->get_prop('date_created', $context); |
|
328 | 328 | } |
329 | 329 | |
330 | 330 | /** |
@@ -334,11 +334,11 @@ discard block |
||
334 | 334 | * @param string $context View or edit context. |
335 | 335 | * @return string |
336 | 336 | */ |
337 | - public function get_date_created_gmt( $context = 'view' ) { |
|
338 | - $date = $this->get_date_created( $context ); |
|
337 | + public function get_date_created_gmt($context = 'view') { |
|
338 | + $date = $this->get_date_created($context); |
|
339 | 339 | |
340 | - if ( $date ) { |
|
341 | - $date = get_gmt_from_date( $date ); |
|
340 | + if ($date) { |
|
341 | + $date = get_gmt_from_date($date); |
|
342 | 342 | } |
343 | 343 | return $date; |
344 | 344 | } |
@@ -350,8 +350,8 @@ discard block |
||
350 | 350 | * @param string $context View or edit context. |
351 | 351 | * @return string |
352 | 352 | */ |
353 | - public function get_date_modified( $context = 'view' ) { |
|
354 | - return $this->get_prop( 'date_modified', $context ); |
|
353 | + public function get_date_modified($context = 'view') { |
|
354 | + return $this->get_prop('date_modified', $context); |
|
355 | 355 | } |
356 | 356 | |
357 | 357 | /** |
@@ -361,11 +361,11 @@ discard block |
||
361 | 361 | * @param string $context View or edit context. |
362 | 362 | * @return string |
363 | 363 | */ |
364 | - public function get_date_modified_gmt( $context = 'view' ) { |
|
365 | - $date = $this->get_date_modified( $context ); |
|
364 | + public function get_date_modified_gmt($context = 'view') { |
|
365 | + $date = $this->get_date_modified($context); |
|
366 | 366 | |
367 | - if ( $date ) { |
|
368 | - $date = get_gmt_from_date( $date ); |
|
367 | + if ($date) { |
|
368 | + $date = get_gmt_from_date($date); |
|
369 | 369 | } |
370 | 370 | return $date; |
371 | 371 | } |
@@ -377,8 +377,8 @@ discard block |
||
377 | 377 | * @param string $context View or edit context. |
378 | 378 | * @return string |
379 | 379 | */ |
380 | - public function get_name( $context = 'view' ) { |
|
381 | - return $this->get_prop( 'name', $context ); |
|
380 | + public function get_name($context = 'view') { |
|
381 | + return $this->get_prop('name', $context); |
|
382 | 382 | } |
383 | 383 | |
384 | 384 | /** |
@@ -388,8 +388,8 @@ discard block |
||
388 | 388 | * @param string $context View or edit context. |
389 | 389 | * @return string |
390 | 390 | */ |
391 | - public function get_title( $context = 'view' ) { |
|
392 | - return $this->get_name( $context ); |
|
391 | + public function get_title($context = 'view') { |
|
392 | + return $this->get_name($context); |
|
393 | 393 | } |
394 | 394 | |
395 | 395 | /** |
@@ -399,8 +399,8 @@ discard block |
||
399 | 399 | * @param string $context View or edit context. |
400 | 400 | * @return string |
401 | 401 | */ |
402 | - public function get_description( $context = 'view' ) { |
|
403 | - return $this->get_prop( 'description', $context ); |
|
402 | + public function get_description($context = 'view') { |
|
403 | + return $this->get_prop('description', $context); |
|
404 | 404 | } |
405 | 405 | |
406 | 406 | /** |
@@ -410,8 +410,8 @@ discard block |
||
410 | 410 | * @param string $context View or edit context. |
411 | 411 | * @return string |
412 | 412 | */ |
413 | - public function get_excerpt( $context = 'view' ) { |
|
414 | - return $this->get_description( $context ); |
|
413 | + public function get_excerpt($context = 'view') { |
|
414 | + return $this->get_description($context); |
|
415 | 415 | } |
416 | 416 | |
417 | 417 | /** |
@@ -421,8 +421,8 @@ discard block |
||
421 | 421 | * @param string $context View or edit context. |
422 | 422 | * @return string |
423 | 423 | */ |
424 | - public function get_summary( $context = 'view' ) { |
|
425 | - return $this->get_description( $context ); |
|
424 | + public function get_summary($context = 'view') { |
|
425 | + return $this->get_description($context); |
|
426 | 426 | } |
427 | 427 | |
428 | 428 | /** |
@@ -432,8 +432,8 @@ discard block |
||
432 | 432 | * @param string $context View or edit context. |
433 | 433 | * @return string |
434 | 434 | */ |
435 | - public function get_author( $context = 'view' ) { |
|
436 | - return (int) $this->get_prop( 'author', $context ); |
|
435 | + public function get_author($context = 'view') { |
|
436 | + return (int) $this->get_prop('author', $context); |
|
437 | 437 | } |
438 | 438 | |
439 | 439 | /** |
@@ -443,8 +443,8 @@ discard block |
||
443 | 443 | * @param string $context View or edit context. |
444 | 444 | * @return string |
445 | 445 | */ |
446 | - public function get_code( $context = 'view' ) { |
|
447 | - return $this->get_prop( 'code', $context ); |
|
446 | + public function get_code($context = 'view') { |
|
447 | + return $this->get_prop('code', $context); |
|
448 | 448 | } |
449 | 449 | |
450 | 450 | /** |
@@ -454,8 +454,8 @@ discard block |
||
454 | 454 | * @param string $context View or edit context. |
455 | 455 | * @return string |
456 | 456 | */ |
457 | - public function get_coupon_code( $context = 'view' ) { |
|
458 | - return $this->get_code( $context ); |
|
457 | + public function get_coupon_code($context = 'view') { |
|
458 | + return $this->get_code($context); |
|
459 | 459 | } |
460 | 460 | |
461 | 461 | /** |
@@ -465,8 +465,8 @@ discard block |
||
465 | 465 | * @param string $context View or edit context. |
466 | 466 | * @return string |
467 | 467 | */ |
468 | - public function get_discount_code( $context = 'view' ) { |
|
469 | - return $this->get_code( $context ); |
|
468 | + public function get_discount_code($context = 'view') { |
|
469 | + return $this->get_code($context); |
|
470 | 470 | } |
471 | 471 | |
472 | 472 | /** |
@@ -476,8 +476,8 @@ discard block |
||
476 | 476 | * @param string $context View or edit context. |
477 | 477 | * @return float |
478 | 478 | */ |
479 | - public function get_amount( $context = 'view' ) { |
|
480 | - return $this->get_prop( 'amount', $context ); |
|
479 | + public function get_amount($context = 'view') { |
|
480 | + return $this->get_prop('amount', $context); |
|
481 | 481 | } |
482 | 482 | |
483 | 483 | /** |
@@ -488,13 +488,13 @@ discard block |
||
488 | 488 | */ |
489 | 489 | public function get_formatted_amount() { |
490 | 490 | |
491 | - if ( $this->is_type( 'flat' ) ) { |
|
492 | - $rate = wpinv_price( wpinv_format_amount( $this->get_amount() ) ); |
|
491 | + if ($this->is_type('flat')) { |
|
492 | + $rate = wpinv_price(wpinv_format_amount($this->get_amount())); |
|
493 | 493 | } else { |
494 | 494 | $rate = $this->get_amount() . '%'; |
495 | 495 | } |
496 | 496 | |
497 | - return apply_filters( 'wpinv_format_discount_rate', $rate, $this->get_type(), $this->get_amount() ); |
|
497 | + return apply_filters('wpinv_format_discount_rate', $rate, $this->get_type(), $this->get_amount()); |
|
498 | 498 | } |
499 | 499 | |
500 | 500 | /** |
@@ -504,8 +504,8 @@ discard block |
||
504 | 504 | * @param string $context View or edit context. |
505 | 505 | * @return string |
506 | 506 | */ |
507 | - public function get_start( $context = 'view' ) { |
|
508 | - return $this->get_prop( 'start', $context ); |
|
507 | + public function get_start($context = 'view') { |
|
508 | + return $this->get_prop('start', $context); |
|
509 | 509 | } |
510 | 510 | |
511 | 511 | /** |
@@ -515,8 +515,8 @@ discard block |
||
515 | 515 | * @param string $context View or edit context. |
516 | 516 | * @return string |
517 | 517 | */ |
518 | - public function get_start_date( $context = 'view' ) { |
|
519 | - return $this->get_start( $context ); |
|
518 | + public function get_start_date($context = 'view') { |
|
519 | + return $this->get_start($context); |
|
520 | 520 | } |
521 | 521 | |
522 | 522 | /** |
@@ -526,8 +526,8 @@ discard block |
||
526 | 526 | * @param string $context View or edit context. |
527 | 527 | * @return string |
528 | 528 | */ |
529 | - public function get_expiration( $context = 'view' ) { |
|
530 | - return $this->get_prop( 'expiration', $context ); |
|
529 | + public function get_expiration($context = 'view') { |
|
530 | + return $this->get_prop('expiration', $context); |
|
531 | 531 | } |
532 | 532 | |
533 | 533 | /** |
@@ -537,8 +537,8 @@ discard block |
||
537 | 537 | * @param string $context View or edit context. |
538 | 538 | * @return string |
539 | 539 | */ |
540 | - public function get_expiration_date( $context = 'view' ) { |
|
541 | - return $this->get_expiration( $context ); |
|
540 | + public function get_expiration_date($context = 'view') { |
|
541 | + return $this->get_expiration($context); |
|
542 | 542 | } |
543 | 543 | |
544 | 544 | /** |
@@ -548,8 +548,8 @@ discard block |
||
548 | 548 | * @param string $context View or edit context. |
549 | 549 | * @return string |
550 | 550 | */ |
551 | - public function get_end_date( $context = 'view' ) { |
|
552 | - return $this->get_expiration( $context ); |
|
551 | + public function get_end_date($context = 'view') { |
|
552 | + return $this->get_expiration($context); |
|
553 | 553 | } |
554 | 554 | |
555 | 555 | /** |
@@ -559,8 +559,8 @@ discard block |
||
559 | 559 | * @param string $context View or edit context. |
560 | 560 | * @return string |
561 | 561 | */ |
562 | - public function get_type( $context = 'view' ) { |
|
563 | - return $this->get_prop( 'type', $context ); |
|
562 | + public function get_type($context = 'view') { |
|
563 | + return $this->get_prop('type', $context); |
|
564 | 564 | } |
565 | 565 | |
566 | 566 | /** |
@@ -570,8 +570,8 @@ discard block |
||
570 | 570 | * @param string $context View or edit context. |
571 | 571 | * @return int |
572 | 572 | */ |
573 | - public function get_uses( $context = 'view' ) { |
|
574 | - return (int) $this->get_prop( 'uses', $context ); |
|
573 | + public function get_uses($context = 'view') { |
|
574 | + return (int) $this->get_prop('uses', $context); |
|
575 | 575 | } |
576 | 576 | |
577 | 577 | /** |
@@ -582,7 +582,7 @@ discard block |
||
582 | 582 | */ |
583 | 583 | public function get_usage() { |
584 | 584 | |
585 | - if ( ! $this->has_limit() ) { |
|
585 | + if (!$this->has_limit()) { |
|
586 | 586 | return $this->get_uses() . ' / ' . ' ∞'; |
587 | 587 | } |
588 | 588 | |
@@ -597,9 +597,9 @@ discard block |
||
597 | 597 | * @param string $context View or edit context. |
598 | 598 | * @return int |
599 | 599 | */ |
600 | - public function get_max_uses( $context = 'view' ) { |
|
601 | - $max_uses = $this->get_prop( 'max_uses', $context ); |
|
602 | - return empty( $max_uses ) ? null : $max_uses; |
|
600 | + public function get_max_uses($context = 'view') { |
|
601 | + $max_uses = $this->get_prop('max_uses', $context); |
|
602 | + return empty($max_uses) ? null : $max_uses; |
|
603 | 603 | } |
604 | 604 | |
605 | 605 | /** |
@@ -609,8 +609,8 @@ discard block |
||
609 | 609 | * @param string $context View or edit context. |
610 | 610 | * @return bool |
611 | 611 | */ |
612 | - public function get_is_single_use( $context = 'view' ) { |
|
613 | - return $this->get_prop( 'is_single_use', $context ); |
|
612 | + public function get_is_single_use($context = 'view') { |
|
613 | + return $this->get_prop('is_single_use', $context); |
|
614 | 614 | } |
615 | 615 | |
616 | 616 | /** |
@@ -620,8 +620,8 @@ discard block |
||
620 | 620 | * @param string $context View or edit context. |
621 | 621 | * @return array |
622 | 622 | */ |
623 | - public function get_items( $context = 'view' ) { |
|
624 | - return wpinv_parse_list( $this->get_prop( 'items', $context ) ); |
|
623 | + public function get_items($context = 'view') { |
|
624 | + return wpinv_parse_list($this->get_prop('items', $context)); |
|
625 | 625 | } |
626 | 626 | |
627 | 627 | /** |
@@ -631,8 +631,8 @@ discard block |
||
631 | 631 | * @param string $context View or edit context. |
632 | 632 | * @return array |
633 | 633 | */ |
634 | - public function get_allowed_items( $context = 'view' ) { |
|
635 | - return $this->get_items( $context ); |
|
634 | + public function get_allowed_items($context = 'view') { |
|
635 | + return $this->get_items($context); |
|
636 | 636 | } |
637 | 637 | |
638 | 638 | /** |
@@ -642,8 +642,8 @@ discard block |
||
642 | 642 | * @param string $context View or edit context. |
643 | 643 | * @return array |
644 | 644 | */ |
645 | - public function get_excluded_items( $context = 'view' ) { |
|
646 | - return wpinv_parse_list( $this->get_prop( 'excluded_items', $context ) ); |
|
645 | + public function get_excluded_items($context = 'view') { |
|
646 | + return wpinv_parse_list($this->get_prop('excluded_items', $context)); |
|
647 | 647 | } |
648 | 648 | |
649 | 649 | /** |
@@ -653,8 +653,8 @@ discard block |
||
653 | 653 | * @param string $context View or edit context. |
654 | 654 | * @return int|string|bool |
655 | 655 | */ |
656 | - public function get_is_recurring( $context = 'view' ) { |
|
657 | - return $this->get_prop( 'is_recurring', $context ); |
|
656 | + public function get_is_recurring($context = 'view') { |
|
657 | + return $this->get_prop('is_recurring', $context); |
|
658 | 658 | } |
659 | 659 | |
660 | 660 | /** |
@@ -664,9 +664,9 @@ discard block |
||
664 | 664 | * @param string $context View or edit context. |
665 | 665 | * @return float |
666 | 666 | */ |
667 | - public function get_min_total( $context = 'view' ) { |
|
668 | - $minimum = $this->get_prop( 'min_total', $context ); |
|
669 | - return empty( $minimum ) ? null : $minimum; |
|
667 | + public function get_min_total($context = 'view') { |
|
668 | + $minimum = $this->get_prop('min_total', $context); |
|
669 | + return empty($minimum) ? null : $minimum; |
|
670 | 670 | } |
671 | 671 | |
672 | 672 | /** |
@@ -676,8 +676,8 @@ discard block |
||
676 | 676 | * @param string $context View or edit context. |
677 | 677 | * @return float |
678 | 678 | */ |
679 | - public function get_minimum_total( $context = 'view' ) { |
|
680 | - return $this->get_min_total( $context ); |
|
679 | + public function get_minimum_total($context = 'view') { |
|
680 | + return $this->get_min_total($context); |
|
681 | 681 | } |
682 | 682 | |
683 | 683 | /** |
@@ -687,9 +687,9 @@ discard block |
||
687 | 687 | * @param string $context View or edit context. |
688 | 688 | * @return float |
689 | 689 | */ |
690 | - public function get_max_total( $context = 'view' ) { |
|
691 | - $maximum = $this->get_prop( 'max_total', $context ); |
|
692 | - return empty( $maximum ) ? null : $maximum; |
|
690 | + public function get_max_total($context = 'view') { |
|
691 | + $maximum = $this->get_prop('max_total', $context); |
|
692 | + return empty($maximum) ? null : $maximum; |
|
693 | 693 | } |
694 | 694 | |
695 | 695 | /** |
@@ -699,8 +699,8 @@ discard block |
||
699 | 699 | * @param string $context View or edit context. |
700 | 700 | * @return float |
701 | 701 | */ |
702 | - public function get_maximum_total( $context = 'view' ) { |
|
703 | - return $this->get_max_total( $context ); |
|
702 | + public function get_maximum_total($context = 'view') { |
|
703 | + return $this->get_max_total($context); |
|
704 | 704 | } |
705 | 705 | |
706 | 706 | /** |
@@ -713,8 +713,8 @@ discard block |
||
713 | 713 | * @param string $context View or edit context. |
714 | 714 | * @return mixed Value of the given discount property (if set). |
715 | 715 | */ |
716 | - public function get( $key, $context = 'view' ) { |
|
717 | - return $this->get_prop( $key, $context ); |
|
716 | + public function get($key, $context = 'view') { |
|
717 | + return $this->get_prop($key, $context); |
|
718 | 718 | } |
719 | 719 | |
720 | 720 | /* |
@@ -734,10 +734,10 @@ discard block |
||
734 | 734 | * @param string $status New status. |
735 | 735 | * @return array details of change. |
736 | 736 | */ |
737 | - public function set_status( $status ) { |
|
737 | + public function set_status($status) { |
|
738 | 738 | $old_status = $this->get_status(); |
739 | 739 | |
740 | - $this->set_prop( 'status', $status ); |
|
740 | + $this->set_prop('status', $status); |
|
741 | 741 | |
742 | 742 | return array( |
743 | 743 | 'from' => $old_status, |
@@ -750,8 +750,8 @@ discard block |
||
750 | 750 | * |
751 | 751 | * @since 1.0.19 |
752 | 752 | */ |
753 | - public function set_version( $value ) { |
|
754 | - $this->set_prop( 'version', $value ); |
|
753 | + public function set_version($value) { |
|
754 | + $this->set_prop('version', $value); |
|
755 | 755 | } |
756 | 756 | |
757 | 757 | /** |
@@ -761,11 +761,11 @@ discard block |
||
761 | 761 | * @param string $value Value to set. |
762 | 762 | * @return bool Whether or not the date was set. |
763 | 763 | */ |
764 | - public function set_date_created( $value ) { |
|
765 | - $date = strtotime( $value ); |
|
764 | + public function set_date_created($value) { |
|
765 | + $date = strtotime($value); |
|
766 | 766 | |
767 | - if ( $date ) { |
|
768 | - $this->set_prop( 'date_created', date( 'Y-m-d H:i:s', $date ) ); |
|
767 | + if ($date) { |
|
768 | + $this->set_prop('date_created', date('Y-m-d H:i:s', $date)); |
|
769 | 769 | return true; |
770 | 770 | } |
771 | 771 | |
@@ -780,11 +780,11 @@ discard block |
||
780 | 780 | * @param string $value Value to set. |
781 | 781 | * @return bool Whether or not the date was set. |
782 | 782 | */ |
783 | - public function set_date_modified( $value ) { |
|
784 | - $date = strtotime( $value ); |
|
783 | + public function set_date_modified($value) { |
|
784 | + $date = strtotime($value); |
|
785 | 785 | |
786 | - if ( $date ) { |
|
787 | - $this->set_prop( 'date_modified', date( 'Y-m-d H:i:s', $date ) ); |
|
786 | + if ($date) { |
|
787 | + $this->set_prop('date_modified', date('Y-m-d H:i:s', $date)); |
|
788 | 788 | return true; |
789 | 789 | } |
790 | 790 | |
@@ -798,9 +798,9 @@ discard block |
||
798 | 798 | * @since 1.0.19 |
799 | 799 | * @param string $value New name. |
800 | 800 | */ |
801 | - public function set_name( $value ) { |
|
802 | - $name = sanitize_text_field( $value ); |
|
803 | - $this->set_prop( 'name', $name ); |
|
801 | + public function set_name($value) { |
|
802 | + $name = sanitize_text_field($value); |
|
803 | + $this->set_prop('name', $name); |
|
804 | 804 | } |
805 | 805 | |
806 | 806 | /** |
@@ -809,8 +809,8 @@ discard block |
||
809 | 809 | * @since 1.0.19 |
810 | 810 | * @param string $value New name. |
811 | 811 | */ |
812 | - public function set_title( $value ) { |
|
813 | - $this->set_name( $value ); |
|
812 | + public function set_title($value) { |
|
813 | + $this->set_name($value); |
|
814 | 814 | } |
815 | 815 | |
816 | 816 | /** |
@@ -819,9 +819,9 @@ discard block |
||
819 | 819 | * @since 1.0.19 |
820 | 820 | * @param string $value New description. |
821 | 821 | */ |
822 | - public function set_description( $value ) { |
|
823 | - $description = wp_kses_post( $value ); |
|
824 | - return $this->set_prop( 'description', $description ); |
|
822 | + public function set_description($value) { |
|
823 | + $description = wp_kses_post($value); |
|
824 | + return $this->set_prop('description', $description); |
|
825 | 825 | } |
826 | 826 | |
827 | 827 | /** |
@@ -830,8 +830,8 @@ discard block |
||
830 | 830 | * @since 1.0.19 |
831 | 831 | * @param string $value New description. |
832 | 832 | */ |
833 | - public function set_excerpt( $value ) { |
|
834 | - $this->set_description( $value ); |
|
833 | + public function set_excerpt($value) { |
|
834 | + $this->set_description($value); |
|
835 | 835 | } |
836 | 836 | |
837 | 837 | /** |
@@ -840,8 +840,8 @@ discard block |
||
840 | 840 | * @since 1.0.19 |
841 | 841 | * @param string $value New description. |
842 | 842 | */ |
843 | - public function set_summary( $value ) { |
|
844 | - $this->set_description( $value ); |
|
843 | + public function set_summary($value) { |
|
844 | + $this->set_description($value); |
|
845 | 845 | } |
846 | 846 | |
847 | 847 | /** |
@@ -850,8 +850,8 @@ discard block |
||
850 | 850 | * @since 1.0.19 |
851 | 851 | * @param int $value New author. |
852 | 852 | */ |
853 | - public function set_author( $value ) { |
|
854 | - $this->set_prop( 'author', (int) $value ); |
|
853 | + public function set_author($value) { |
|
854 | + $this->set_prop('author', (int) $value); |
|
855 | 855 | } |
856 | 856 | |
857 | 857 | /** |
@@ -860,9 +860,9 @@ discard block |
||
860 | 860 | * @since 1.0.19 |
861 | 861 | * @param string $value New discount code. |
862 | 862 | */ |
863 | - public function set_code( $value ) { |
|
864 | - $code = sanitize_text_field( $value ); |
|
865 | - $this->set_prop( 'code', $code ); |
|
863 | + public function set_code($value) { |
|
864 | + $code = sanitize_text_field($value); |
|
865 | + $this->set_prop('code', $code); |
|
866 | 866 | } |
867 | 867 | |
868 | 868 | /** |
@@ -871,8 +871,8 @@ discard block |
||
871 | 871 | * @since 1.0.19 |
872 | 872 | * @param string $value New discount code. |
873 | 873 | */ |
874 | - public function set_coupon_code( $value ) { |
|
875 | - $this->set_code( $value ); |
|
874 | + public function set_coupon_code($value) { |
|
875 | + $this->set_code($value); |
|
876 | 876 | } |
877 | 877 | |
878 | 878 | /** |
@@ -881,8 +881,8 @@ discard block |
||
881 | 881 | * @since 1.0.19 |
882 | 882 | * @param string $value New discount code. |
883 | 883 | */ |
884 | - public function set_discount_code( $value ) { |
|
885 | - $this->set_code( $value ); |
|
884 | + public function set_discount_code($value) { |
|
885 | + $this->set_code($value); |
|
886 | 886 | } |
887 | 887 | |
888 | 888 | /** |
@@ -891,9 +891,9 @@ discard block |
||
891 | 891 | * @since 1.0.19 |
892 | 892 | * @param float $value New discount code. |
893 | 893 | */ |
894 | - public function set_amount( $value ) { |
|
895 | - $amount = floatval( wpinv_sanitize_amount( $value ) ); |
|
896 | - $this->set_prop( 'amount', $amount ); |
|
894 | + public function set_amount($value) { |
|
895 | + $amount = floatval(wpinv_sanitize_amount($value)); |
|
896 | + $this->set_prop('amount', $amount); |
|
897 | 897 | } |
898 | 898 | |
899 | 899 | /** |
@@ -902,15 +902,15 @@ discard block |
||
902 | 902 | * @since 1.0.19 |
903 | 903 | * @param float $value New start date. |
904 | 904 | */ |
905 | - public function set_start( $value ) { |
|
906 | - $date = strtotime( $value ); |
|
905 | + public function set_start($value) { |
|
906 | + $date = strtotime($value); |
|
907 | 907 | |
908 | - if ( $date ) { |
|
909 | - $this->set_prop( 'start', date( 'Y-m-d H:i', $date ) ); |
|
908 | + if ($date) { |
|
909 | + $this->set_prop('start', date('Y-m-d H:i', $date)); |
|
910 | 910 | return true; |
911 | 911 | } |
912 | 912 | |
913 | - $this->set_prop( 'start', '' ); |
|
913 | + $this->set_prop('start', ''); |
|
914 | 914 | |
915 | 915 | return false; |
916 | 916 | } |
@@ -921,8 +921,8 @@ discard block |
||
921 | 921 | * @since 1.0.19 |
922 | 922 | * @param string $value New start date. |
923 | 923 | */ |
924 | - public function set_start_date( $value ) { |
|
925 | - $this->set_start( $value ); |
|
924 | + public function set_start_date($value) { |
|
925 | + $this->set_start($value); |
|
926 | 926 | } |
927 | 927 | |
928 | 928 | /** |
@@ -931,15 +931,15 @@ discard block |
||
931 | 931 | * @since 1.0.19 |
932 | 932 | * @param float $value New expiration date. |
933 | 933 | */ |
934 | - public function set_expiration( $value ) { |
|
935 | - $date = strtotime( $value ); |
|
934 | + public function set_expiration($value) { |
|
935 | + $date = strtotime($value); |
|
936 | 936 | |
937 | - if ( $date ) { |
|
938 | - $this->set_prop( 'expiration', date( 'Y-m-d H:i', $date ) ); |
|
937 | + if ($date) { |
|
938 | + $this->set_prop('expiration', date('Y-m-d H:i', $date)); |
|
939 | 939 | return true; |
940 | 940 | } |
941 | 941 | |
942 | - $this->set_prop( 'expiration', '' ); |
|
942 | + $this->set_prop('expiration', ''); |
|
943 | 943 | return false; |
944 | 944 | } |
945 | 945 | |
@@ -949,8 +949,8 @@ discard block |
||
949 | 949 | * @since 1.0.19 |
950 | 950 | * @param string $value New expiration date. |
951 | 951 | */ |
952 | - public function set_expiration_date( $value ) { |
|
953 | - $this->set_expiration( $value ); |
|
952 | + public function set_expiration_date($value) { |
|
953 | + $this->set_expiration($value); |
|
954 | 954 | } |
955 | 955 | |
956 | 956 | /** |
@@ -959,8 +959,8 @@ discard block |
||
959 | 959 | * @since 1.0.19 |
960 | 960 | * @param string $value New expiration date. |
961 | 961 | */ |
962 | - public function set_end_date( $value ) { |
|
963 | - $this->set_expiration( $value ); |
|
962 | + public function set_end_date($value) { |
|
963 | + $this->set_expiration($value); |
|
964 | 964 | } |
965 | 965 | |
966 | 966 | /** |
@@ -969,9 +969,9 @@ discard block |
||
969 | 969 | * @since 1.0.19 |
970 | 970 | * @param string $value New discount type. |
971 | 971 | */ |
972 | - public function set_type( $value ) { |
|
973 | - if ( $value && array_key_exists( sanitize_text_field( $value ), wpinv_get_discount_types() ) ) { |
|
974 | - $this->set_prop( 'type', sanitize_text_field( $value ) ); |
|
972 | + public function set_type($value) { |
|
973 | + if ($value && array_key_exists(sanitize_text_field($value), wpinv_get_discount_types())) { |
|
974 | + $this->set_prop('type', sanitize_text_field($value)); |
|
975 | 975 | } |
976 | 976 | } |
977 | 977 | |
@@ -981,15 +981,15 @@ discard block |
||
981 | 981 | * @since 1.0.19 |
982 | 982 | * @param int $value usage count. |
983 | 983 | */ |
984 | - public function set_uses( $value ) { |
|
984 | + public function set_uses($value) { |
|
985 | 985 | |
986 | 986 | $value = (int) $value; |
987 | 987 | |
988 | - if ( $value < 0 ) { |
|
988 | + if ($value < 0) { |
|
989 | 989 | $value = 0; |
990 | 990 | } |
991 | 991 | |
992 | - $this->set_prop( 'uses', (int) $value ); |
|
992 | + $this->set_prop('uses', (int) $value); |
|
993 | 993 | } |
994 | 994 | |
995 | 995 | /** |
@@ -998,8 +998,8 @@ discard block |
||
998 | 998 | * @since 1.0.19 |
999 | 999 | * @param int $value maximum usage count. |
1000 | 1000 | */ |
1001 | - public function set_max_uses( $value ) { |
|
1002 | - $this->set_prop( 'max_uses', absint( $value ) ); |
|
1001 | + public function set_max_uses($value) { |
|
1002 | + $this->set_prop('max_uses', absint($value)); |
|
1003 | 1003 | } |
1004 | 1004 | |
1005 | 1005 | /** |
@@ -1008,8 +1008,8 @@ discard block |
||
1008 | 1008 | * @since 1.0.19 |
1009 | 1009 | * @param int|bool $value is single use. |
1010 | 1010 | */ |
1011 | - public function set_is_single_use( $value ) { |
|
1012 | - $this->set_prop( 'is_single_use', (bool) $value ); |
|
1011 | + public function set_is_single_use($value) { |
|
1012 | + $this->set_prop('is_single_use', (bool) $value); |
|
1013 | 1013 | } |
1014 | 1014 | |
1015 | 1015 | /** |
@@ -1018,8 +1018,8 @@ discard block |
||
1018 | 1018 | * @since 1.0.19 |
1019 | 1019 | * @param array $value items. |
1020 | 1020 | */ |
1021 | - public function set_items( $value ) { |
|
1022 | - $this->set_prop( 'items', wpinv_parse_list( $value ) ); |
|
1021 | + public function set_items($value) { |
|
1022 | + $this->set_prop('items', wpinv_parse_list($value)); |
|
1023 | 1023 | } |
1024 | 1024 | |
1025 | 1025 | /** |
@@ -1028,8 +1028,8 @@ discard block |
||
1028 | 1028 | * @since 1.0.19 |
1029 | 1029 | * @param array $value items. |
1030 | 1030 | */ |
1031 | - public function set_allowed_items( $value ) { |
|
1032 | - $this->set_items( $value ); |
|
1031 | + public function set_allowed_items($value) { |
|
1032 | + $this->set_items($value); |
|
1033 | 1033 | } |
1034 | 1034 | |
1035 | 1035 | /** |
@@ -1038,8 +1038,8 @@ discard block |
||
1038 | 1038 | * @since 1.0.19 |
1039 | 1039 | * @param array $value items. |
1040 | 1040 | */ |
1041 | - public function set_excluded_items( $value ) { |
|
1042 | - $this->set_prop( 'excluded_items', wpinv_parse_list( $value ) ); |
|
1041 | + public function set_excluded_items($value) { |
|
1042 | + $this->set_prop('excluded_items', wpinv_parse_list($value)); |
|
1043 | 1043 | } |
1044 | 1044 | |
1045 | 1045 | /** |
@@ -1048,8 +1048,8 @@ discard block |
||
1048 | 1048 | * @since 1.0.19 |
1049 | 1049 | * @param int|bool $value is recurring. |
1050 | 1050 | */ |
1051 | - public function set_is_recurring( $value ) { |
|
1052 | - $this->set_prop( 'is_recurring', (bool) $value ); |
|
1051 | + public function set_is_recurring($value) { |
|
1052 | + $this->set_prop('is_recurring', (bool) $value); |
|
1053 | 1053 | } |
1054 | 1054 | |
1055 | 1055 | /** |
@@ -1058,8 +1058,8 @@ discard block |
||
1058 | 1058 | * @since 1.0.19 |
1059 | 1059 | * @param float $value minimum total. |
1060 | 1060 | */ |
1061 | - public function set_min_total( $value ) { |
|
1062 | - $this->set_prop( 'min_total', (float) wpinv_sanitize_amount( $value ) ); |
|
1061 | + public function set_min_total($value) { |
|
1062 | + $this->set_prop('min_total', (float) wpinv_sanitize_amount($value)); |
|
1063 | 1063 | } |
1064 | 1064 | |
1065 | 1065 | /** |
@@ -1068,8 +1068,8 @@ discard block |
||
1068 | 1068 | * @since 1.0.19 |
1069 | 1069 | * @param float $value minimum total. |
1070 | 1070 | */ |
1071 | - public function set_minimum_total( $value ) { |
|
1072 | - $this->set_min_total( $value ); |
|
1071 | + public function set_minimum_total($value) { |
|
1072 | + $this->set_min_total($value); |
|
1073 | 1073 | } |
1074 | 1074 | |
1075 | 1075 | /** |
@@ -1078,8 +1078,8 @@ discard block |
||
1078 | 1078 | * @since 1.0.19 |
1079 | 1079 | * @param float $value maximum total. |
1080 | 1080 | */ |
1081 | - public function set_max_total( $value ) { |
|
1082 | - $this->set_prop( 'max_total', (float) wpinv_sanitize_amount( $value ) ); |
|
1081 | + public function set_max_total($value) { |
|
1082 | + $this->set_prop('max_total', (float) wpinv_sanitize_amount($value)); |
|
1083 | 1083 | } |
1084 | 1084 | |
1085 | 1085 | /** |
@@ -1088,23 +1088,23 @@ discard block |
||
1088 | 1088 | * @since 1.0.19 |
1089 | 1089 | * @param float $value maximum total. |
1090 | 1090 | */ |
1091 | - public function set_maximum_total( $value ) { |
|
1092 | - $this->set_max_total( $value ); |
|
1091 | + public function set_maximum_total($value) { |
|
1092 | + $this->set_max_total($value); |
|
1093 | 1093 | } |
1094 | 1094 | |
1095 | 1095 | /** |
1096 | 1096 | * @deprecated |
1097 | 1097 | */ |
1098 | - public function refresh(){} |
|
1098 | + public function refresh() {} |
|
1099 | 1099 | |
1100 | 1100 | /** |
1101 | 1101 | * @deprecated |
1102 | 1102 | * |
1103 | 1103 | */ |
1104 | - public function update_status( $status = 'publish' ){ |
|
1104 | + public function update_status($status = 'publish') { |
|
1105 | 1105 | |
1106 | - if ( $this->exists() && $this->get_status() != $status ) { |
|
1107 | - $this->set_status( $status ); |
|
1106 | + if ($this->exists() && $this->get_status() != $status) { |
|
1107 | + $this->set_status($status); |
|
1108 | 1108 | $this->save(); |
1109 | 1109 | } |
1110 | 1110 | |
@@ -1124,9 +1124,9 @@ discard block |
||
1124 | 1124 | * |
1125 | 1125 | * @since 1.0.15 |
1126 | 1126 | */ |
1127 | - public function exists(){ |
|
1127 | + public function exists() { |
|
1128 | 1128 | $id = $this->get_id(); |
1129 | - return ! empty( $id ); |
|
1129 | + return !empty($id); |
|
1130 | 1130 | } |
1131 | 1131 | |
1132 | 1132 | /** |
@@ -1137,7 +1137,7 @@ discard block |
||
1137 | 1137 | * @since 1.0.15 |
1138 | 1138 | * @return bool |
1139 | 1139 | */ |
1140 | - public function is_type( $type ) { |
|
1140 | + public function is_type($type) { |
|
1141 | 1141 | return $this->get_type() == $type; |
1142 | 1142 | } |
1143 | 1143 | |
@@ -1159,7 +1159,7 @@ discard block |
||
1159 | 1159 | */ |
1160 | 1160 | public function has_limit() { |
1161 | 1161 | $limit = $this->get_max_uses(); |
1162 | - return ! empty( $limit ); |
|
1162 | + return !empty($limit); |
|
1163 | 1163 | } |
1164 | 1164 | |
1165 | 1165 | /** |
@@ -1180,13 +1180,13 @@ discard block |
||
1180 | 1180 | */ |
1181 | 1181 | public function has_exceeded_limit() { |
1182 | 1182 | |
1183 | - if ( ! $this->has_limit() || ! $this->has_uses() ) { |
|
1184 | - $exceeded = false ; |
|
1183 | + if (!$this->has_limit() || !$this->has_uses()) { |
|
1184 | + $exceeded = false; |
|
1185 | 1185 | } else { |
1186 | - $exceeded = ! ( (int) $this->get_max_uses() < $this->get_uses() ); |
|
1186 | + $exceeded = !((int) $this->get_max_uses() < $this->get_uses()); |
|
1187 | 1187 | } |
1188 | 1188 | |
1189 | - return apply_filters( 'wpinv_is_discount_maxed_out', $exceeded, $this->get_id(), $this, $this->get_code() ); |
|
1189 | + return apply_filters('wpinv_is_discount_maxed_out', $exceeded, $this->get_id(), $this, $this->get_code()); |
|
1190 | 1190 | } |
1191 | 1191 | |
1192 | 1192 | /** |
@@ -1197,7 +1197,7 @@ discard block |
||
1197 | 1197 | */ |
1198 | 1198 | public function has_expiration_date() { |
1199 | 1199 | $date = $this->get_expiration_date(); |
1200 | - return ! empty( $date ); |
|
1200 | + return !empty($date); |
|
1201 | 1201 | } |
1202 | 1202 | |
1203 | 1203 | /** |
@@ -1207,8 +1207,8 @@ discard block |
||
1207 | 1207 | * @return bool |
1208 | 1208 | */ |
1209 | 1209 | public function is_expired() { |
1210 | - $expired = $this->has_expiration_date() ? current_time( 'timestamp' ) > strtotime( $this->get_expiration_date() ) : false; |
|
1211 | - return apply_filters( 'wpinv_is_discount_expired', $expired, $this->get_id(), $this, $this->get_code() ); |
|
1210 | + $expired = $this->has_expiration_date() ? current_time('timestamp') > strtotime($this->get_expiration_date()) : false; |
|
1211 | + return apply_filters('wpinv_is_discount_expired', $expired, $this->get_id(), $this, $this->get_code()); |
|
1212 | 1212 | } |
1213 | 1213 | |
1214 | 1214 | /** |
@@ -1219,7 +1219,7 @@ discard block |
||
1219 | 1219 | */ |
1220 | 1220 | public function has_start_date() { |
1221 | 1221 | $date = $this->get_start_date(); |
1222 | - return ! empty( $date ); |
|
1222 | + return !empty($date); |
|
1223 | 1223 | } |
1224 | 1224 | |
1225 | 1225 | /** |
@@ -1229,8 +1229,8 @@ discard block |
||
1229 | 1229 | * @return bool |
1230 | 1230 | */ |
1231 | 1231 | public function has_started() { |
1232 | - $started = $this->has_start_date() ? true : current_time( 'timestamp' ) > strtotime( $this->get_start_date() ); |
|
1233 | - return apply_filters( 'wpinv_is_discount_started', $started, $this->get_id(), $this, $this->get_code() ); |
|
1232 | + $started = $this->has_start_date() ? true : current_time('timestamp') > strtotime($this->get_start_date()); |
|
1233 | + return apply_filters('wpinv_is_discount_started', $started, $this->get_id(), $this, $this->get_code()); |
|
1234 | 1234 | } |
1235 | 1235 | |
1236 | 1236 | /** |
@@ -1241,7 +1241,7 @@ discard block |
||
1241 | 1241 | */ |
1242 | 1242 | public function has_allowed_items() { |
1243 | 1243 | $allowed_items = $this->get_allowed_items(); |
1244 | - return ! empty( $allowed_items ); |
|
1244 | + return !empty($allowed_items); |
|
1245 | 1245 | } |
1246 | 1246 | |
1247 | 1247 | /** |
@@ -1252,7 +1252,7 @@ discard block |
||
1252 | 1252 | */ |
1253 | 1253 | public function has_excluded_items() { |
1254 | 1254 | $excluded_items = $this->get_excluded_items(); |
1255 | - return ! empty( $excluded_items ); |
|
1255 | + return !empty($excluded_items); |
|
1256 | 1256 | } |
1257 | 1257 | |
1258 | 1258 | /** |
@@ -1262,17 +1262,17 @@ discard block |
||
1262 | 1262 | * @since 1.0.15 |
1263 | 1263 | * @return boolean |
1264 | 1264 | */ |
1265 | - public function is_valid_for_items( $item_ids ) { |
|
1265 | + public function is_valid_for_items($item_ids) { |
|
1266 | 1266 | |
1267 | - $item_ids = wp_parse_id_list( $item_ids ); |
|
1268 | - $included = array_intersect( $item_ids, $this->get_allowed_items() ); |
|
1269 | - $excluded = array_intersect( $item_ids, $this->get_excluded_items() ); |
|
1267 | + $item_ids = wp_parse_id_list($item_ids); |
|
1268 | + $included = array_intersect($item_ids, $this->get_allowed_items()); |
|
1269 | + $excluded = array_intersect($item_ids, $this->get_excluded_items()); |
|
1270 | 1270 | |
1271 | - if ( $this->has_excluded_items() && ! empty( $excluded ) ) { |
|
1271 | + if ($this->has_excluded_items() && !empty($excluded)) { |
|
1272 | 1272 | return false; |
1273 | 1273 | } |
1274 | 1274 | |
1275 | - if ( $this->has_allowed_items() && empty( $included ) ) { |
|
1275 | + if ($this->has_allowed_items() && empty($included)) { |
|
1276 | 1276 | return false; |
1277 | 1277 | } |
1278 | 1278 | |
@@ -1286,8 +1286,8 @@ discard block |
||
1286 | 1286 | * @since 1.0.15 |
1287 | 1287 | * @return boolean |
1288 | 1288 | */ |
1289 | - public function is_valid_for_amount( $amount ) { |
|
1290 | - return $this->is_minimum_amount_met( $amount ) && $this->is_maximum_amount_met( $amount ); |
|
1289 | + public function is_valid_for_amount($amount) { |
|
1290 | + return $this->is_minimum_amount_met($amount) && $this->is_maximum_amount_met($amount); |
|
1291 | 1291 | } |
1292 | 1292 | |
1293 | 1293 | /** |
@@ -1298,7 +1298,7 @@ discard block |
||
1298 | 1298 | */ |
1299 | 1299 | public function has_minimum_amount() { |
1300 | 1300 | $minimum = $this->get_minimum_total(); |
1301 | - return ! empty( $minimum ); |
|
1301 | + return !empty($minimum); |
|
1302 | 1302 | } |
1303 | 1303 | |
1304 | 1304 | /** |
@@ -1308,10 +1308,10 @@ discard block |
||
1308 | 1308 | * @since 1.0.15 |
1309 | 1309 | * @return boolean |
1310 | 1310 | */ |
1311 | - public function is_minimum_amount_met( $amount ) { |
|
1312 | - $amount = floatval( wpinv_sanitize_amount( $amount ) ); |
|
1313 | - $min_met= ! ( $this->has_minimum_amount() && $amount < floatval( wpinv_sanitize_amount( $this->get_minimum_total() ) ) ); |
|
1314 | - return apply_filters( 'wpinv_is_discount_min_met', $min_met, $this->get_id(), $this, $this->get_code(), $amount ); |
|
1311 | + public function is_minimum_amount_met($amount) { |
|
1312 | + $amount = floatval(wpinv_sanitize_amount($amount)); |
|
1313 | + $min_met = !($this->has_minimum_amount() && $amount < floatval(wpinv_sanitize_amount($this->get_minimum_total()))); |
|
1314 | + return apply_filters('wpinv_is_discount_min_met', $min_met, $this->get_id(), $this, $this->get_code(), $amount); |
|
1315 | 1315 | } |
1316 | 1316 | |
1317 | 1317 | /** |
@@ -1322,7 +1322,7 @@ discard block |
||
1322 | 1322 | */ |
1323 | 1323 | public function has_maximum_amount() { |
1324 | 1324 | $maximum = $this->get_maximum_total(); |
1325 | - return ! empty( $maximum ); |
|
1325 | + return !empty($maximum); |
|
1326 | 1326 | } |
1327 | 1327 | |
1328 | 1328 | /** |
@@ -1332,10 +1332,10 @@ discard block |
||
1332 | 1332 | * @since 1.0.15 |
1333 | 1333 | * @return boolean |
1334 | 1334 | */ |
1335 | - public function is_maximum_amount_met( $amount ) { |
|
1336 | - $amount = floatval( wpinv_sanitize_amount( $amount ) ); |
|
1337 | - $max_met= ! ( $this->has_maximum_amount() && $amount > floatval( wpinv_sanitize_amount( $this->get_maximum_total() ) ) ); |
|
1338 | - return apply_filters( 'wpinv_is_discount_max_met', $max_met, $this->get_id(), $this, $this->get_code(), $amount ); |
|
1335 | + public function is_maximum_amount_met($amount) { |
|
1336 | + $amount = floatval(wpinv_sanitize_amount($amount)); |
|
1337 | + $max_met = !($this->has_maximum_amount() && $amount > floatval(wpinv_sanitize_amount($this->get_maximum_total()))); |
|
1338 | + return apply_filters('wpinv_is_discount_max_met', $max_met, $this->get_id(), $this, $this->get_code(), $amount); |
|
1339 | 1339 | } |
1340 | 1340 | |
1341 | 1341 | /** |
@@ -1346,7 +1346,7 @@ discard block |
||
1346 | 1346 | */ |
1347 | 1347 | public function is_recurring() { |
1348 | 1348 | $recurring = $this->get_is_recurring(); |
1349 | - return ! empty( $recurring ); |
|
1349 | + return !empty($recurring); |
|
1350 | 1350 | } |
1351 | 1351 | |
1352 | 1352 | /** |
@@ -1357,7 +1357,7 @@ discard block |
||
1357 | 1357 | */ |
1358 | 1358 | public function is_single_use() { |
1359 | 1359 | $usage = $this->get_is_single_use(); |
1360 | - return ! empty( $usage ); |
|
1360 | + return !empty($usage); |
|
1361 | 1361 | } |
1362 | 1362 | |
1363 | 1363 | /** |
@@ -1367,37 +1367,37 @@ discard block |
||
1367 | 1367 | * @since 1.0.15 |
1368 | 1368 | * @return boolean |
1369 | 1369 | */ |
1370 | - public function is_valid_for_user( $user ) { |
|
1370 | + public function is_valid_for_user($user) { |
|
1371 | 1371 | |
1372 | 1372 | // Ensure that the discount is single use. |
1373 | - if ( empty( $user ) || ! $this->is_single_use() ) { |
|
1373 | + if (empty($user) || !$this->is_single_use()) { |
|
1374 | 1374 | return true; |
1375 | 1375 | } |
1376 | 1376 | |
1377 | 1377 | // Prepare the user id. |
1378 | 1378 | $user_id = 0; |
1379 | - if ( is_numeric( $user ) ) { |
|
1380 | - $user_id = absint( $user ); |
|
1381 | - } else if ( is_email( $user ) && $user_data = get_user_by( 'email', $user ) ) { |
|
1379 | + if (is_numeric($user)) { |
|
1380 | + $user_id = absint($user); |
|
1381 | + } else if (is_email($user) && $user_data = get_user_by('email', $user)) { |
|
1382 | 1382 | $user_id = $user_data->ID; |
1383 | - } else if ( $user_data = get_user_by( 'login', $user ) ) { |
|
1383 | + } else if ($user_data = get_user_by('login', $user)) { |
|
1384 | 1384 | $user_id = $user_data->ID; |
1385 | 1385 | } |
1386 | 1386 | |
1387 | 1387 | // Ensure that we have a user. |
1388 | - if ( empty( $user_id ) ) { |
|
1388 | + if (empty($user_id)) { |
|
1389 | 1389 | return true; |
1390 | 1390 | } |
1391 | 1391 | |
1392 | 1392 | // Get all payments with matching user id. |
1393 | - $payments = wpinv_get_invoices( array( 'user' => $user_id, 'limit' => false, 'paginate' => false ) ); |
|
1394 | - $code = strtolower( $this->get_code() ); |
|
1393 | + $payments = wpinv_get_invoices(array('user' => $user_id, 'limit' => false, 'paginate' => false)); |
|
1394 | + $code = strtolower($this->get_code()); |
|
1395 | 1395 | |
1396 | 1396 | // For each payment... |
1397 | - foreach ( $payments as $payment ) { |
|
1397 | + foreach ($payments as $payment) { |
|
1398 | 1398 | |
1399 | 1399 | // Only check for paid invoices. |
1400 | - if ( $payment->is_paid() && strtolower( $payment->get_discount_code() ) == $code ) { |
|
1400 | + if ($payment->is_paid() && strtolower($payment->get_discount_code()) == $code) { |
|
1401 | 1401 | return false; |
1402 | 1402 | } |
1403 | 1403 | |
@@ -1423,24 +1423,24 @@ discard block |
||
1423 | 1423 | * @param int $by The number of usages to increas by. |
1424 | 1424 | * @return int |
1425 | 1425 | */ |
1426 | - public function increase_usage( $by = 1 ) { |
|
1426 | + public function increase_usage($by = 1) { |
|
1427 | 1427 | |
1428 | 1428 | // Abort if zero. |
1429 | - if ( empty( $by ) ) { |
|
1429 | + if (empty($by)) { |
|
1430 | 1430 | return; |
1431 | 1431 | } |
1432 | 1432 | |
1433 | 1433 | // Increase the usage. |
1434 | - $this->set_uses( $this->get_uses() + (int) $by ); |
|
1434 | + $this->set_uses($this->get_uses() + (int) $by); |
|
1435 | 1435 | |
1436 | 1436 | // Save the discount. |
1437 | 1437 | $this->save(); |
1438 | 1438 | |
1439 | 1439 | // Fire relevant hooks. |
1440 | - if( (int) $by > 0 ) { |
|
1441 | - do_action( 'wpinv_discount_increase_use_count', $this->get_uses(), $this->get_id(), $this->get_code(), absint( $by ) ); |
|
1440 | + if ((int) $by > 0) { |
|
1441 | + do_action('wpinv_discount_increase_use_count', $this->get_uses(), $this->get_id(), $this->get_code(), absint($by)); |
|
1442 | 1442 | } else { |
1443 | - do_action( 'wpinv_discount_decrease_use_count', $this->get_uses(), $this->get_id(), $this->get_code(), absint( $by ) ); |
|
1443 | + do_action('wpinv_discount_decrease_use_count', $this->get_uses(), $this->get_id(), $this->get_code(), absint($by)); |
|
1444 | 1444 | } |
1445 | 1445 | |
1446 | 1446 | // Return the number of times the discount has been used. |
@@ -1464,7 +1464,7 @@ discard block |
||
1464 | 1464 | * @param float $amount |
1465 | 1465 | * @return float |
1466 | 1466 | */ |
1467 | - public function get_discounted_amount( $amount ) { |
|
1467 | + public function get_discounted_amount($amount) { |
|
1468 | 1468 | |
1469 | 1469 | // Convert amount to float. |
1470 | 1470 | $amount = (float) $amount; |
@@ -1472,29 +1472,29 @@ discard block |
||
1472 | 1472 | // Get discount amount. |
1473 | 1473 | $discount_amount = $this->get_amount(); |
1474 | 1474 | |
1475 | - if ( empty( $discount_amount ) ) { |
|
1475 | + if (empty($discount_amount)) { |
|
1476 | 1476 | return 0; |
1477 | 1477 | } |
1478 | 1478 | |
1479 | 1479 | // Format the amount. |
1480 | - $discount_amount = floatval( wpinv_sanitize_amount( $discount_amount ) ); |
|
1480 | + $discount_amount = floatval(wpinv_sanitize_amount($discount_amount)); |
|
1481 | 1481 | |
1482 | 1482 | // If this is a percentage discount. |
1483 | - if ( $this->is_type( 'percent' ) ) { |
|
1484 | - $discount_amount = $amount * ( $discount_amount / 100 ); |
|
1483 | + if ($this->is_type('percent')) { |
|
1484 | + $discount_amount = $amount * ($discount_amount / 100); |
|
1485 | 1485 | } |
1486 | 1486 | |
1487 | 1487 | // Discount can not be less than zero... |
1488 | - if ( $discount_amount < 0 ) { |
|
1488 | + if ($discount_amount < 0) { |
|
1489 | 1489 | $discount_amount = 0; |
1490 | 1490 | } |
1491 | 1491 | |
1492 | 1492 | // ... or more than the amount. |
1493 | - if ( $discount_amount > $amount ) { |
|
1493 | + if ($discount_amount > $amount) { |
|
1494 | 1494 | $discount_amount = $amount; |
1495 | 1495 | } |
1496 | 1496 | |
1497 | - return apply_filters( 'wpinv_discount_total_discount_amount', $discount_amount, $amount, $this ); |
|
1497 | + return apply_filters('wpinv_discount_total_discount_amount', $discount_amount, $amount, $this); |
|
1498 | 1498 | } |
1499 | 1499 | |
1500 | 1500 | } |
@@ -12,14 +12,14 @@ discard block |
||
12 | 12 | /** |
13 | 13 | * Bail if we are not in WP. |
14 | 14 | */ |
15 | -if ( ! defined( 'ABSPATH' ) ) { |
|
15 | +if (!defined('ABSPATH')) { |
|
16 | 16 | exit; |
17 | 17 | } |
18 | 18 | |
19 | 19 | /** |
20 | 20 | * Only add if the class does not already exist. |
21 | 21 | */ |
22 | -if ( ! class_exists( 'WP_Font_Awesome_Settings' ) ) { |
|
22 | +if (!class_exists('WP_Font_Awesome_Settings')) { |
|
23 | 23 | |
24 | 24 | /** |
25 | 25 | * A Class to be able to change settings for Font Awesome. |
@@ -87,17 +87,17 @@ discard block |
||
87 | 87 | * @return WP_Font_Awesome_Settings - Main instance. |
88 | 88 | */ |
89 | 89 | public static function instance() { |
90 | - if ( ! isset( self::$instance ) && ! ( self::$instance instanceof WP_Font_Awesome_Settings ) ) { |
|
90 | + if (!isset(self::$instance) && !(self::$instance instanceof WP_Font_Awesome_Settings)) { |
|
91 | 91 | self::$instance = new WP_Font_Awesome_Settings; |
92 | 92 | |
93 | - add_action( 'init', array( self::$instance, 'init' ) ); // set settings |
|
93 | + add_action('init', array(self::$instance, 'init')); // set settings |
|
94 | 94 | |
95 | - if ( is_admin() ) { |
|
96 | - add_action( 'admin_menu', array( self::$instance, 'menu_item' ) ); |
|
97 | - add_action( 'admin_init', array( self::$instance, 'register_settings' ) ); |
|
95 | + if (is_admin()) { |
|
96 | + add_action('admin_menu', array(self::$instance, 'menu_item')); |
|
97 | + add_action('admin_init', array(self::$instance, 'register_settings')); |
|
98 | 98 | } |
99 | 99 | |
100 | - do_action( 'wp_font_awesome_settings_loaded' ); |
|
100 | + do_action('wp_font_awesome_settings_loaded'); |
|
101 | 101 | } |
102 | 102 | |
103 | 103 | return self::$instance; |
@@ -111,30 +111,30 @@ discard block |
||
111 | 111 | public function init() { |
112 | 112 | $this->settings = $this->get_settings(); |
113 | 113 | |
114 | - if ( $this->settings['type'] == 'CSS' ) { |
|
114 | + if ($this->settings['type'] == 'CSS') { |
|
115 | 115 | |
116 | - if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'frontend' ) { |
|
117 | - add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ), 5000 ); |
|
116 | + if ($this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'frontend') { |
|
117 | + add_action('wp_enqueue_scripts', array($this, 'enqueue_style'), 5000); |
|
118 | 118 | } |
119 | 119 | |
120 | - if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'backend' ) { |
|
121 | - add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_style' ), 5000 ); |
|
120 | + if ($this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'backend') { |
|
121 | + add_action('admin_enqueue_scripts', array($this, 'enqueue_style'), 5000); |
|
122 | 122 | } |
123 | 123 | |
124 | 124 | } else { |
125 | 125 | |
126 | - if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'frontend' ) { |
|
127 | - add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), 5000 ); |
|
126 | + if ($this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'frontend') { |
|
127 | + add_action('wp_enqueue_scripts', array($this, 'enqueue_scripts'), 5000); |
|
128 | 128 | } |
129 | 129 | |
130 | - if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'backend' ) { |
|
131 | - add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 5000 ); |
|
130 | + if ($this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'backend') { |
|
131 | + add_action('admin_enqueue_scripts', array($this, 'enqueue_scripts'), 5000); |
|
132 | 132 | } |
133 | 133 | } |
134 | 134 | |
135 | 135 | // remove font awesome if set to do so |
136 | - if ( $this->settings['dequeue'] == '1' ) { |
|
137 | - add_action( 'clean_url', array( $this, 'remove_font_awesome' ), 5000, 3 ); |
|
136 | + if ($this->settings['dequeue'] == '1') { |
|
137 | + add_action('clean_url', array($this, 'remove_font_awesome'), 5000, 3); |
|
138 | 138 | } |
139 | 139 | |
140 | 140 | } |
@@ -146,15 +146,15 @@ discard block |
||
146 | 146 | // build url |
147 | 147 | $url = $this->get_url(); |
148 | 148 | |
149 | - wp_deregister_style( 'font-awesome' ); // deregister in case its already there |
|
150 | - wp_register_style( 'font-awesome', $url, array(), null ); |
|
151 | - wp_enqueue_style( 'font-awesome' ); |
|
149 | + wp_deregister_style('font-awesome'); // deregister in case its already there |
|
150 | + wp_register_style('font-awesome', $url, array(), null); |
|
151 | + wp_enqueue_style('font-awesome'); |
|
152 | 152 | |
153 | - if ( $this->settings['shims'] ) { |
|
154 | - $url = $this->get_url( true ); |
|
155 | - wp_deregister_style( 'font-awesome-shims' ); // deregister in case its already there |
|
156 | - wp_register_style( 'font-awesome-shims', $url, array(), null ); |
|
157 | - wp_enqueue_style( 'font-awesome-shims' ); |
|
153 | + if ($this->settings['shims']) { |
|
154 | + $url = $this->get_url(true); |
|
155 | + wp_deregister_style('font-awesome-shims'); // deregister in case its already there |
|
156 | + wp_register_style('font-awesome-shims', $url, array(), null); |
|
157 | + wp_enqueue_style('font-awesome-shims'); |
|
158 | 158 | } |
159 | 159 | } |
160 | 160 | |
@@ -166,15 +166,15 @@ discard block |
||
166 | 166 | $url = $this->get_url(); |
167 | 167 | |
168 | 168 | $deregister_function = 'wp' . '_' . 'deregister' . '_' . 'script'; |
169 | - call_user_func( $deregister_function, 'font-awesome' ); // deregister in case its already there |
|
170 | - wp_register_script( 'font-awesome', $url, array(), null ); |
|
171 | - wp_enqueue_script( 'font-awesome' ); |
|
172 | - |
|
173 | - if ( $this->settings['shims'] ) { |
|
174 | - $url = $this->get_url( true ); |
|
175 | - call_user_func( $deregister_function, 'font-awesome-shims' ); // deregister in case its already there |
|
176 | - wp_register_script( 'font-awesome-shims', $url, array(), null ); |
|
177 | - wp_enqueue_script( 'font-awesome-shims' ); |
|
169 | + call_user_func($deregister_function, 'font-awesome'); // deregister in case its already there |
|
170 | + wp_register_script('font-awesome', $url, array(), null); |
|
171 | + wp_enqueue_script('font-awesome'); |
|
172 | + |
|
173 | + if ($this->settings['shims']) { |
|
174 | + $url = $this->get_url(true); |
|
175 | + call_user_func($deregister_function, 'font-awesome-shims'); // deregister in case its already there |
|
176 | + wp_register_script('font-awesome-shims', $url, array(), null); |
|
177 | + wp_enqueue_script('font-awesome-shims'); |
|
178 | 178 | } |
179 | 179 | } |
180 | 180 | |
@@ -185,16 +185,16 @@ discard block |
||
185 | 185 | * |
186 | 186 | * @return string The url to the file. |
187 | 187 | */ |
188 | - public function get_url( $shims = false ) { |
|
188 | + public function get_url($shims = false) { |
|
189 | 189 | $script = $shims ? 'v4-shims' : 'all'; |
190 | 190 | $sub = $this->settings['pro'] ? 'pro' : 'use'; |
191 | 191 | $type = $this->settings['type']; |
192 | 192 | $version = $this->settings['version']; |
193 | - $kit_url = $this->settings['kit-url'] ? esc_url( $this->settings['kit-url'] ) : ''; |
|
193 | + $kit_url = $this->settings['kit-url'] ? esc_url($this->settings['kit-url']) : ''; |
|
194 | 194 | $url = ''; |
195 | 195 | |
196 | - if ( $type == 'KIT' && $kit_url ) { |
|
197 | - if ( $shims ) { |
|
196 | + if ($type == 'KIT' && $kit_url) { |
|
197 | + if ($shims) { |
|
198 | 198 | // if its a kit then we don't add shims here |
199 | 199 | return ''; |
200 | 200 | } |
@@ -202,7 +202,7 @@ discard block |
||
202 | 202 | $url .= "?wpfas=true"; // set our var so our version is not removed |
203 | 203 | } else { |
204 | 204 | $url .= "https://$sub.fontawesome.com/releases/"; // CDN |
205 | - $url .= ! empty( $version ) ? "v" . $version . '/' : "v" . $this->get_latest_version() . '/'; // version |
|
205 | + $url .= !empty($version) ? "v" . $version . '/' : "v" . $this->get_latest_version() . '/'; // version |
|
206 | 206 | $url .= $type == 'CSS' ? 'css/' : 'js/'; // type |
207 | 207 | $url .= $type == 'CSS' ? $script . '.css' : $script . '.js'; // type |
208 | 208 | $url .= "?wpfas=true"; // set our var so our version is not removed |
@@ -222,16 +222,16 @@ discard block |
||
222 | 222 | * |
223 | 223 | * @return string The filtered url. |
224 | 224 | */ |
225 | - public function remove_font_awesome( $url, $original_url, $_context ) { |
|
225 | + public function remove_font_awesome($url, $original_url, $_context) { |
|
226 | 226 | |
227 | - if ( $_context == 'display' |
|
228 | - && ( strstr( $url, "fontawesome" ) !== false || strstr( $url, "font-awesome" ) !== false ) |
|
229 | - && ( strstr( $url, ".js" ) !== false || strstr( $url, ".css" ) !== false ) |
|
227 | + if ($_context == 'display' |
|
228 | + && (strstr($url, "fontawesome") !== false || strstr($url, "font-awesome") !== false) |
|
229 | + && (strstr($url, ".js") !== false || strstr($url, ".css") !== false) |
|
230 | 230 | ) {// it's a font-awesome-url (probably) |
231 | 231 | |
232 | - if ( strstr( $url, "wpfas=true" ) !== false ) { |
|
233 | - if ( $this->settings['type'] == 'JS' ) { |
|
234 | - if ( $this->settings['js-pseudo'] ) { |
|
232 | + if (strstr($url, "wpfas=true") !== false) { |
|
233 | + if ($this->settings['type'] == 'JS') { |
|
234 | + if ($this->settings['js-pseudo']) { |
|
235 | 235 | $url .= "' data-search-pseudo-elements defer='defer"; |
236 | 236 | } else { |
237 | 237 | $url .= "' defer='defer"; |
@@ -250,7 +250,7 @@ discard block |
||
250 | 250 | * Register the database settings with WordPress. |
251 | 251 | */ |
252 | 252 | public function register_settings() { |
253 | - register_setting( 'wp-font-awesome-settings', 'wp-font-awesome-settings' ); |
|
253 | + register_setting('wp-font-awesome-settings', 'wp-font-awesome-settings'); |
|
254 | 254 | } |
255 | 255 | |
256 | 256 | /** |
@@ -259,10 +259,10 @@ discard block |
||
259 | 259 | */ |
260 | 260 | public function menu_item() { |
261 | 261 | $menu_function = 'add' . '_' . 'options' . '_' . 'page'; // won't pass theme check if function name present in theme |
262 | - call_user_func( $menu_function, $this->name, $this->name, 'manage_options', 'wp-font-awesome-settings', array( |
|
262 | + call_user_func($menu_function, $this->name, $this->name, 'manage_options', 'wp-font-awesome-settings', array( |
|
263 | 263 | $this, |
264 | 264 | 'settings_page' |
265 | - ) ); |
|
265 | + )); |
|
266 | 266 | } |
267 | 267 | |
268 | 268 | /** |
@@ -272,7 +272,7 @@ discard block |
||
272 | 272 | */ |
273 | 273 | public function get_settings() { |
274 | 274 | |
275 | - $db_settings = get_option( 'wp-font-awesome-settings' ); |
|
275 | + $db_settings = get_option('wp-font-awesome-settings'); |
|
276 | 276 | |
277 | 277 | $defaults = array( |
278 | 278 | 'type' => 'CSS', // type to use, CSS or JS or KIT |
@@ -285,14 +285,14 @@ discard block |
||
285 | 285 | 'kit-url' => '', // the kit url |
286 | 286 | ); |
287 | 287 | |
288 | - $settings = wp_parse_args( $db_settings, $defaults ); |
|
288 | + $settings = wp_parse_args($db_settings, $defaults); |
|
289 | 289 | |
290 | 290 | /** |
291 | 291 | * Filter the Font Awesome settings. |
292 | 292 | * |
293 | 293 | * @todo if we add this filer people might use it and then it defeates the purpose of this class :/ |
294 | 294 | */ |
295 | - return $this->settings = apply_filters( 'wp-font-awesome-settings', $settings, $db_settings, $defaults ); |
|
295 | + return $this->settings = apply_filters('wp-font-awesome-settings', $settings, $db_settings, $defaults); |
|
296 | 296 | } |
297 | 297 | |
298 | 298 | |
@@ -300,13 +300,13 @@ discard block |
||
300 | 300 | * The settings page html output. |
301 | 301 | */ |
302 | 302 | public function settings_page() { |
303 | - if ( ! current_user_can( 'manage_options' ) ) { |
|
304 | - wp_die( __( 'You do not have sufficient permissions to access this page.', 'font-awesome-settings' ) ); |
|
303 | + if (!current_user_can('manage_options')) { |
|
304 | + wp_die(__('You do not have sufficient permissions to access this page.', 'font-awesome-settings')); |
|
305 | 305 | } |
306 | 306 | |
307 | 307 | // a hidden way to force the update of the verison number vai api instead of waiting the 48 hours |
308 | - if ( isset( $_REQUEST['force-version-check'] ) ) { |
|
309 | - $this->get_latest_version( $force_api = true ); |
|
308 | + if (isset($_REQUEST['force-version-check'])) { |
|
309 | + $this->get_latest_version($force_api = true); |
|
310 | 310 | } |
311 | 311 | ?> |
312 | 312 | <style> |
@@ -326,37 +326,37 @@ discard block |
||
326 | 326 | <h1><?php echo $this->name; ?></h1> |
327 | 327 | <form method="post" action="options.php"> |
328 | 328 | <?php |
329 | - settings_fields( 'wp-font-awesome-settings' ); |
|
330 | - do_settings_sections( 'wp-font-awesome-settings' ); |
|
329 | + settings_fields('wp-font-awesome-settings'); |
|
330 | + do_settings_sections('wp-font-awesome-settings'); |
|
331 | 331 | $kit_set = $this->settings['type'] == 'KIT' ? 'wpfas-kit-set' : ''; |
332 | 332 | ?> |
333 | - <table class="form-table wpfas-table-settings <?php echo esc_attr( $kit_set ); ?>"> |
|
333 | + <table class="form-table wpfas-table-settings <?php echo esc_attr($kit_set); ?>"> |
|
334 | 334 | <tr valign="top"> |
335 | 335 | <th scope="row"><label |
336 | - for="wpfas-type"><?php _e( 'Type', 'font-awesome-settings' ); ?></label></th> |
|
336 | + for="wpfas-type"><?php _e('Type', 'font-awesome-settings'); ?></label></th> |
|
337 | 337 | <td> |
338 | 338 | <select name="wp-font-awesome-settings[type]" id="wpfas-type" |
339 | 339 | onchange="if(this.value=='KIT'){jQuery('.wpfas-table-settings').addClass('wpfas-kit-set');}else{jQuery('.wpfas-table-settings').removeClass('wpfas-kit-set');}"> |
340 | 340 | <option |
341 | - value="CSS" <?php selected( $this->settings['type'], 'CSS' ); ?>><?php _e( 'CSS (default)', 'font-awesome-settings' ); ?></option> |
|
342 | - <option value="JS" <?php selected( $this->settings['type'], 'JS' ); ?>>JS</option> |
|
341 | + value="CSS" <?php selected($this->settings['type'], 'CSS'); ?>><?php _e('CSS (default)', 'font-awesome-settings'); ?></option> |
|
342 | + <option value="JS" <?php selected($this->settings['type'], 'JS'); ?>>JS</option> |
|
343 | 343 | <option |
344 | - value="KIT" <?php selected( $this->settings['type'], 'KIT' ); ?>><?php _e( 'Kits (settings managed on fontawesome.com)', 'font-awesome-settings' ); ?></option> |
|
344 | + value="KIT" <?php selected($this->settings['type'], 'KIT'); ?>><?php _e('Kits (settings managed on fontawesome.com)', 'font-awesome-settings'); ?></option> |
|
345 | 345 | </select> |
346 | 346 | </td> |
347 | 347 | </tr> |
348 | 348 | |
349 | 349 | <tr valign="top" class="wpfas-kit-show"> |
350 | 350 | <th scope="row"><label |
351 | - for="wpfas-kit-url"><?php _e( 'Kit URL', 'font-awesome-settings' ); ?></label></th> |
|
351 | + for="wpfas-kit-url"><?php _e('Kit URL', 'font-awesome-settings'); ?></label></th> |
|
352 | 352 | <td> |
353 | 353 | <input class="regular-text" id="wpfas-kit-url" type="url" |
354 | 354 | name="wp-font-awesome-settings[kit-url]" |
355 | - value="<?php echo esc_attr( $this->settings['kit-url'] ); ?>" |
|
356 | - placeholder="<?php echo 'https://kit.font';echo 'awesome.com/123abc.js'; // this won't pass theme check :(?>"/> |
|
355 | + value="<?php echo esc_attr($this->settings['kit-url']); ?>" |
|
356 | + placeholder="<?php echo 'https://kit.font'; echo 'awesome.com/123abc.js'; // this won't pass theme check :(?>"/> |
|
357 | 357 | <span><?php |
358 | 358 | echo sprintf( |
359 | - __( 'Requires a free account with Font Awesome. %sGet kit url%s', 'font-awesome-settings' ), |
|
359 | + __('Requires a free account with Font Awesome. %sGet kit url%s', 'font-awesome-settings'), |
|
360 | 360 | '<a rel="noopener noreferrer" target="_blank" href="https://fontawesome.com/kits"><i class="fas fa-external-link-alt"></i>', |
361 | 361 | '</a>' |
362 | 362 | ); |
@@ -366,31 +366,31 @@ discard block |
||
366 | 366 | |
367 | 367 | <tr valign="top" class="wpfas-kit-hide"> |
368 | 368 | <th scope="row"><label |
369 | - for="wpfas-version"><?php _e( 'Version', 'font-awesome-settings' ); ?></label></th> |
|
369 | + for="wpfas-version"><?php _e('Version', 'font-awesome-settings'); ?></label></th> |
|
370 | 370 | <td> |
371 | 371 | <select name="wp-font-awesome-settings[version]" id="wpfas-version"> |
372 | 372 | <option |
373 | - value="" <?php selected( $this->settings['version'], '' ); ?>><?php echo sprintf( __( 'Latest - %s (default)', 'font-awesome-settings' ), $this->get_latest_version() ); ?> |
|
373 | + value="" <?php selected($this->settings['version'], ''); ?>><?php echo sprintf(__('Latest - %s (default)', 'font-awesome-settings'), $this->get_latest_version()); ?> |
|
374 | 374 | </option> |
375 | - <option value="5.6.0" <?php selected( $this->settings['version'], '5.6.0' ); ?>> |
|
375 | + <option value="5.6.0" <?php selected($this->settings['version'], '5.6.0'); ?>> |
|
376 | 376 | 5.6.0 |
377 | 377 | </option> |
378 | - <option value="5.5.0" <?php selected( $this->settings['version'], '5.5.0' ); ?>> |
|
378 | + <option value="5.5.0" <?php selected($this->settings['version'], '5.5.0'); ?>> |
|
379 | 379 | 5.5.0 |
380 | 380 | </option> |
381 | - <option value="5.4.0" <?php selected( $this->settings['version'], '5.4.0' ); ?>> |
|
381 | + <option value="5.4.0" <?php selected($this->settings['version'], '5.4.0'); ?>> |
|
382 | 382 | 5.4.0 |
383 | 383 | </option> |
384 | - <option value="5.3.0" <?php selected( $this->settings['version'], '5.3.0' ); ?>> |
|
384 | + <option value="5.3.0" <?php selected($this->settings['version'], '5.3.0'); ?>> |
|
385 | 385 | 5.3.0 |
386 | 386 | </option> |
387 | - <option value="5.2.0" <?php selected( $this->settings['version'], '5.2.0' ); ?>> |
|
387 | + <option value="5.2.0" <?php selected($this->settings['version'], '5.2.0'); ?>> |
|
388 | 388 | 5.2.0 |
389 | 389 | </option> |
390 | - <option value="5.1.0" <?php selected( $this->settings['version'], '5.1.0' ); ?>> |
|
390 | + <option value="5.1.0" <?php selected($this->settings['version'], '5.1.0'); ?>> |
|
391 | 391 | 5.1.0 |
392 | 392 | </option> |
393 | - <option value="4.7.0" <?php selected( $this->settings['version'], '4.7.0' ); ?>> |
|
393 | + <option value="4.7.0" <?php selected($this->settings['version'], '4.7.0'); ?>> |
|
394 | 394 | 4.7.1 (CSS only) |
395 | 395 | </option> |
396 | 396 | </select> |
@@ -399,29 +399,29 @@ discard block |
||
399 | 399 | |
400 | 400 | <tr valign="top"> |
401 | 401 | <th scope="row"><label |
402 | - for="wpfas-enqueue"><?php _e( 'Enqueue', 'font-awesome-settings' ); ?></label></th> |
|
402 | + for="wpfas-enqueue"><?php _e('Enqueue', 'font-awesome-settings'); ?></label></th> |
|
403 | 403 | <td> |
404 | 404 | <select name="wp-font-awesome-settings[enqueue]" id="wpfas-enqueue"> |
405 | 405 | <option |
406 | - value="" <?php selected( $this->settings['enqueue'], '' ); ?>><?php _e( 'Frontend + Backend (default)', 'font-awesome-settings' ); ?></option> |
|
406 | + value="" <?php selected($this->settings['enqueue'], ''); ?>><?php _e('Frontend + Backend (default)', 'font-awesome-settings'); ?></option> |
|
407 | 407 | <option |
408 | - value="frontend" <?php selected( $this->settings['enqueue'], 'frontend' ); ?>><?php _e( 'Frontend', 'font-awesome-settings' ); ?></option> |
|
408 | + value="frontend" <?php selected($this->settings['enqueue'], 'frontend'); ?>><?php _e('Frontend', 'font-awesome-settings'); ?></option> |
|
409 | 409 | <option |
410 | - value="backend" <?php selected( $this->settings['enqueue'], 'backend' ); ?>><?php _e( 'Backend', 'font-awesome-settings' ); ?></option> |
|
410 | + value="backend" <?php selected($this->settings['enqueue'], 'backend'); ?>><?php _e('Backend', 'font-awesome-settings'); ?></option> |
|
411 | 411 | </select> |
412 | 412 | </td> |
413 | 413 | </tr> |
414 | 414 | |
415 | 415 | <tr valign="top" class="wpfas-kit-hide"> |
416 | 416 | <th scope="row"><label |
417 | - for="wpfas-pro"><?php _e( 'Enable pro', 'font-awesome-settings' ); ?></label></th> |
|
417 | + for="wpfas-pro"><?php _e('Enable pro', 'font-awesome-settings'); ?></label></th> |
|
418 | 418 | <td> |
419 | 419 | <input type="hidden" name="wp-font-awesome-settings[pro]" value="0"/> |
420 | 420 | <input type="checkbox" name="wp-font-awesome-settings[pro]" |
421 | - value="1" <?php checked( $this->settings['pro'], '1' ); ?> id="wpfas-pro"/> |
|
421 | + value="1" <?php checked($this->settings['pro'], '1'); ?> id="wpfas-pro"/> |
|
422 | 422 | <span><?php |
423 | 423 | echo sprintf( |
424 | - __( 'Requires a subscription. %sLearn more%s %sManage my allowed domains%s', 'font-awesome-settings' ), |
|
424 | + __('Requires a subscription. %sLearn more%s %sManage my allowed domains%s', 'font-awesome-settings'), |
|
425 | 425 | '<a rel="noopener noreferrer" target="_blank" href="https://fontawesome.com/pro"><i class="fas fa-external-link-alt"></i>', |
426 | 426 | '</a>', |
427 | 427 | '<a rel="noopener noreferrer" target="_blank" href="https://fontawesome.com/account/cdn"><i class="fas fa-external-link-alt"></i>', |
@@ -433,38 +433,38 @@ discard block |
||
433 | 433 | |
434 | 434 | <tr valign="top" class="wpfas-kit-hide"> |
435 | 435 | <th scope="row"><label |
436 | - for="wpfas-shims"><?php _e( 'Enable v4 shims compatibility', 'font-awesome-settings' ); ?></label> |
|
436 | + for="wpfas-shims"><?php _e('Enable v4 shims compatibility', 'font-awesome-settings'); ?></label> |
|
437 | 437 | </th> |
438 | 438 | <td> |
439 | 439 | <input type="hidden" name="wp-font-awesome-settings[shims]" value="0"/> |
440 | 440 | <input type="checkbox" name="wp-font-awesome-settings[shims]" |
441 | - value="1" <?php checked( $this->settings['shims'], '1' ); ?> id="wpfas-shims"/> |
|
442 | - <span><?php _e( 'This enables v4 classes to work with v5, sort of like a band-aid until everyone has updated everything to v5.', 'font-awesome-settings' ); ?></span> |
|
441 | + value="1" <?php checked($this->settings['shims'], '1'); ?> id="wpfas-shims"/> |
|
442 | + <span><?php _e('This enables v4 classes to work with v5, sort of like a band-aid until everyone has updated everything to v5.', 'font-awesome-settings'); ?></span> |
|
443 | 443 | </td> |
444 | 444 | </tr> |
445 | 445 | |
446 | 446 | <tr valign="top" class="wpfas-kit-hide"> |
447 | 447 | <th scope="row"><label |
448 | - for="wpfas-js-pseudo"><?php _e( 'Enable JS pseudo elements (not recommended)', 'font-awesome-settings' ); ?></label> |
|
448 | + for="wpfas-js-pseudo"><?php _e('Enable JS pseudo elements (not recommended)', 'font-awesome-settings'); ?></label> |
|
449 | 449 | </th> |
450 | 450 | <td> |
451 | 451 | <input type="hidden" name="wp-font-awesome-settings[js-pseudo]" value="0"/> |
452 | 452 | <input type="checkbox" name="wp-font-awesome-settings[js-pseudo]" |
453 | - value="1" <?php checked( $this->settings['js-pseudo'], '1' ); ?> |
|
453 | + value="1" <?php checked($this->settings['js-pseudo'], '1'); ?> |
|
454 | 454 | id="wpfas-js-pseudo"/> |
455 | - <span><?php _e( 'Used only with the JS version, this will make pseudo-elements work but can be CPU intensive on some sites.', 'font-awesome-settings' ); ?></span> |
|
455 | + <span><?php _e('Used only with the JS version, this will make pseudo-elements work but can be CPU intensive on some sites.', 'font-awesome-settings'); ?></span> |
|
456 | 456 | </td> |
457 | 457 | </tr> |
458 | 458 | |
459 | 459 | <tr valign="top"> |
460 | 460 | <th scope="row"><label |
461 | - for="wpfas-dequeue"><?php _e( 'Dequeue', 'font-awesome-settings' ); ?></label></th> |
|
461 | + for="wpfas-dequeue"><?php _e('Dequeue', 'font-awesome-settings'); ?></label></th> |
|
462 | 462 | <td> |
463 | 463 | <input type="hidden" name="wp-font-awesome-settings[dequeue]" value="0"/> |
464 | 464 | <input type="checkbox" name="wp-font-awesome-settings[dequeue]" |
465 | - value="1" <?php checked( $this->settings['dequeue'], '1' ); ?> |
|
465 | + value="1" <?php checked($this->settings['dequeue'], '1'); ?> |
|
466 | 466 | id="wpfas-dequeue"/> |
467 | - <span><?php _e( 'This will try to dequeue any other Font Awesome versions loaded by other sources if they are added with `font-awesome` or `fontawesome` in the name.', 'font-awesome-settings' ); ?></span> |
|
467 | + <span><?php _e('This will try to dequeue any other Font Awesome versions loaded by other sources if they are added with `font-awesome` or `fontawesome` in the name.', 'font-awesome-settings'); ?></span> |
|
468 | 468 | </td> |
469 | 469 | </tr> |
470 | 470 | |
@@ -489,12 +489,12 @@ discard block |
||
489 | 489 | * |
490 | 490 | * @return string Either a valid version number or an empty string. |
491 | 491 | */ |
492 | - public function validate_version_number( $version ) { |
|
492 | + public function validate_version_number($version) { |
|
493 | 493 | |
494 | - if ( version_compare( $version, '0.0.1', '>=' ) >= 0 ) { |
|
494 | + if (version_compare($version, '0.0.1', '>=') >= 0) { |
|
495 | 495 | // valid |
496 | 496 | } else { |
497 | - $version = '';// not validated |
|
497 | + $version = ''; // not validated |
|
498 | 498 | } |
499 | 499 | |
500 | 500 | return $version; |
@@ -509,19 +509,19 @@ discard block |
||
509 | 509 | * @since 1.0.7 |
510 | 510 | * @return mixed|string The latest version number found. |
511 | 511 | */ |
512 | - public function get_latest_version( $force_api = false ) { |
|
512 | + public function get_latest_version($force_api = false) { |
|
513 | 513 | $latest_version = $this->latest; |
514 | 514 | |
515 | - $cache = get_transient( 'wp-font-awesome-settings-version' ); |
|
515 | + $cache = get_transient('wp-font-awesome-settings-version'); |
|
516 | 516 | |
517 | - if ( $cache === false || $force_api ) { // its not set |
|
517 | + if ($cache === false || $force_api) { // its not set |
|
518 | 518 | $api_ver = $this->get_latest_version_from_api(); |
519 | - if ( version_compare( $api_ver, $this->latest, '>=' ) >= 0 ) { |
|
519 | + if (version_compare($api_ver, $this->latest, '>=') >= 0) { |
|
520 | 520 | $latest_version = $api_ver; |
521 | - set_transient( 'wp-font-awesome-settings-version', $api_ver, 48 * HOUR_IN_SECONDS ); |
|
521 | + set_transient('wp-font-awesome-settings-version', $api_ver, 48 * HOUR_IN_SECONDS); |
|
522 | 522 | } |
523 | - } elseif ( $this->validate_version_number( $cache ) ) { |
|
524 | - if ( version_compare( $cache, $this->latest, '>=' ) >= 0 ) { |
|
523 | + } elseif ($this->validate_version_number($cache)) { |
|
524 | + if (version_compare($cache, $this->latest, '>=') >= 0) { |
|
525 | 525 | $latest_version = $cache; |
526 | 526 | } |
527 | 527 | } |
@@ -537,10 +537,10 @@ discard block |
||
537 | 537 | */ |
538 | 538 | public function get_latest_version_from_api() { |
539 | 539 | $version = "0"; |
540 | - $response = wp_remote_get( "https://api.github.com/repos/FortAwesome/Font-Awesome/releases/latest" ); |
|
541 | - if ( ! is_wp_error( $response ) && is_array( $response ) ) { |
|
542 | - $api_response = json_decode( wp_remote_retrieve_body( $response ), true ); |
|
543 | - if ( isset( $api_response['tag_name'] ) && version_compare( $api_response['tag_name'], $this->latest, '>=' ) >= 0 && empty( $api_response['prerelease'] ) ) { |
|
540 | + $response = wp_remote_get("https://api.github.com/repos/FortAwesome/Font-Awesome/releases/latest"); |
|
541 | + if (!is_wp_error($response) && is_array($response)) { |
|
542 | + $api_response = json_decode(wp_remote_retrieve_body($response), true); |
|
543 | + if (isset($api_response['tag_name']) && version_compare($api_response['tag_name'], $this->latest, '>=') >= 0 && empty($api_response['prerelease'])) { |
|
544 | 544 | $version = $api_response['tag_name']; |
545 | 545 | } |
546 | 546 | } |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if ( ! defined( 'ABSPATH' ) ) { |
|
3 | +if (!defined('ABSPATH')) { |
|
4 | 4 | exit; // Exit if accessed directly |
5 | 5 | } |
6 | 6 | |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | * |
19 | 19 | * @return string The rendered component. |
20 | 20 | */ |
21 | - public static function get( $args = array() ) { |
|
21 | + public static function get($args = array()) { |
|
22 | 22 | global $wp_query; |
23 | 23 | |
24 | 24 | $defaults = array( |
@@ -26,57 +26,57 @@ discard block |
||
26 | 26 | 'mid_size' => 2, |
27 | 27 | 'prev_text' => '<i class="fas fa-chevron-left"></i>', |
28 | 28 | 'next_text' => '<i class="fas fa-chevron-right"></i>', |
29 | - 'screen_reader_text' => __( 'Posts navigation','aui' ), |
|
29 | + 'screen_reader_text' => __('Posts navigation', 'aui'), |
|
30 | 30 | 'before_paging' => '', |
31 | 31 | 'after_paging' => '', |
32 | 32 | 'type' => 'array', |
33 | - 'total' => isset( $wp_query->max_num_pages ) ? $wp_query->max_num_pages : 1, |
|
33 | + 'total' => isset($wp_query->max_num_pages) ? $wp_query->max_num_pages : 1, |
|
34 | 34 | 'links' => array() // an array of links if using custom links, this includes the a tag. |
35 | 35 | ); |
36 | 36 | |
37 | 37 | /** |
38 | 38 | * Parse incoming $args into an array and merge it with $defaults |
39 | 39 | */ |
40 | - $args = wp_parse_args( $args, $defaults ); |
|
40 | + $args = wp_parse_args($args, $defaults); |
|
41 | 41 | |
42 | 42 | $output = ''; |
43 | 43 | |
44 | 44 | // Don't print empty markup if there's only one page. |
45 | - if ( $args['total'] > 1 ) { |
|
45 | + if ($args['total'] > 1) { |
|
46 | 46 | |
47 | 47 | // Set up paginated links. |
48 | - $links = !empty( $args['links'] ) ? $args['links'] : paginate_links( $args ); |
|
48 | + $links = !empty($args['links']) ? $args['links'] : paginate_links($args); |
|
49 | 49 | |
50 | 50 | $class = !empty($args['class']) ? $args['class'] : ''; |
51 | 51 | |
52 | 52 | // make the output bootstrap ready |
53 | 53 | $links_html = "<ul class='pagination m-0 p-0 $class'>"; |
54 | - if ( ! empty( $links ) ) { |
|
55 | - foreach ( $links as $link ) { |
|
56 | - $active = strpos( $link, 'current' ) !== false ? 'active' : ''; |
|
54 | + if (!empty($links)) { |
|
55 | + foreach ($links as $link) { |
|
56 | + $active = strpos($link, 'current') !== false ? 'active' : ''; |
|
57 | 57 | $links_html .= "<li class='page-item $active'>"; |
58 | - $links_html .= str_replace( "page-numbers", "page-link", $link ); |
|
58 | + $links_html .= str_replace("page-numbers", "page-link", $link); |
|
59 | 59 | $links_html .= "</li>"; |
60 | 60 | } |
61 | 61 | } |
62 | 62 | $links_html .= "</ul>"; |
63 | 63 | |
64 | - if ( $links ) { |
|
64 | + if ($links) { |
|
65 | 65 | $output .= '<section class="px-0 py-2 w-100">'; |
66 | - $output .= _navigation_markup( $links_html, 'aui-pagination', $args['screen_reader_text'] ); |
|
66 | + $output .= _navigation_markup($links_html, 'aui-pagination', $args['screen_reader_text']); |
|
67 | 67 | $output .= '</section>'; |
68 | 68 | } |
69 | 69 | |
70 | - $output = str_replace( "screen-reader-text", "screen-reader-text sr-only", $output ); |
|
71 | - $output = str_replace( "nav-links", "aui-nav-links", $output ); |
|
70 | + $output = str_replace("screen-reader-text", "screen-reader-text sr-only", $output); |
|
71 | + $output = str_replace("nav-links", "aui-nav-links", $output); |
|
72 | 72 | } |
73 | 73 | |
74 | - if ( $output ) { |
|
75 | - if ( ! empty( $args['before_paging'] ) ) { |
|
74 | + if ($output) { |
|
75 | + if (!empty($args['before_paging'])) { |
|
76 | 76 | $output = $args['before_paging'] . $output; |
77 | 77 | } |
78 | 78 | |
79 | - if ( ! empty( $args['after_paging'] ) ) { |
|
79 | + if (!empty($args['after_paging'])) { |
|
80 | 80 | $output = $output . $args['after_paging']; |
81 | 81 | } |
82 | 82 | } |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if ( ! defined( 'ABSPATH' ) ) { |
|
3 | +if (!defined('ABSPATH')) { |
|
4 | 4 | exit; // Exit if accessed directly |
5 | 5 | } |
6 | 6 | |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | * @return AUI|null |
36 | 36 | */ |
37 | 37 | public static function instance() { |
38 | - if ( self::$instance == null ) { |
|
38 | + if (self::$instance == null) { |
|
39 | 39 | self::$instance = new AUI(); |
40 | 40 | } |
41 | 41 | |
@@ -48,10 +48,10 @@ discard block |
||
48 | 48 | * @since 1.0.0 |
49 | 49 | */ |
50 | 50 | private function __construct() { |
51 | - if ( function_exists( "__autoload" ) ) { |
|
52 | - spl_autoload_register( "__autoload" ); |
|
51 | + if (function_exists("__autoload")) { |
|
52 | + spl_autoload_register("__autoload"); |
|
53 | 53 | } |
54 | - spl_autoload_register( array( $this, 'autoload' ) ); |
|
54 | + spl_autoload_register(array($this, 'autoload')); |
|
55 | 55 | |
56 | 56 | // load options |
57 | 57 | self::$options = get_option('aui_options'); |
@@ -64,11 +64,11 @@ discard block |
||
64 | 64 | * |
65 | 65 | * @param $classname |
66 | 66 | */ |
67 | - private function autoload( $classname ) { |
|
68 | - $class = str_replace( '_', '-', strtolower( $classname ) ); |
|
69 | - $file_path = trailingslashit( dirname( __FILE__ ) ) . "components/class-" . $class . '.php'; |
|
70 | - if ( $file_path && is_readable( $file_path ) ) { |
|
71 | - include_once( $file_path ); |
|
67 | + private function autoload($classname) { |
|
68 | + $class = str_replace('_', '-', strtolower($classname)); |
|
69 | + $file_path = trailingslashit(dirname(__FILE__)) . "components/class-" . $class . '.php'; |
|
70 | + if ($file_path && is_readable($file_path)) { |
|
71 | + include_once($file_path); |
|
72 | 72 | } |
73 | 73 | } |
74 | 74 | |
@@ -79,27 +79,27 @@ discard block |
||
79 | 79 | * |
80 | 80 | * @return string|void |
81 | 81 | */ |
82 | - public function get_option( $option ){ |
|
82 | + public function get_option($option) { |
|
83 | 83 | $result = isset(self::$options[$option]) ? esc_attr(self::$options[$option]) : ''; |
84 | 84 | |
85 | - if ( ! $result && $option) { |
|
86 | - if( $option == 'color_primary' ){ |
|
85 | + if (!$result && $option) { |
|
86 | + if ($option == 'color_primary') { |
|
87 | 87 | $result = AUI_PRIMARY_COLOR; |
88 | - }elseif( $option == 'color_secondary' ){ |
|
88 | + }elseif ($option == 'color_secondary') { |
|
89 | 89 | $result = AUI_SECONDARY_COLOR; |
90 | 90 | } |
91 | 91 | } |
92 | 92 | return $result; |
93 | 93 | } |
94 | 94 | |
95 | - public function render( $items = array() ) { |
|
95 | + public function render($items = array()) { |
|
96 | 96 | $output = ''; |
97 | 97 | |
98 | - if ( ! empty( $items ) ) { |
|
99 | - foreach ( $items as $args ) { |
|
100 | - $render = isset( $args['render'] ) ? $args['render'] : ''; |
|
101 | - if ( $render && method_exists( __CLASS__, $render ) ) { |
|
102 | - $output .= $this->$render( $args ); |
|
98 | + if (!empty($items)) { |
|
99 | + foreach ($items as $args) { |
|
100 | + $render = isset($args['render']) ? $args['render'] : ''; |
|
101 | + if ($render && method_exists(__CLASS__, $render)) { |
|
102 | + $output .= $this->$render($args); |
|
103 | 103 | } |
104 | 104 | } |
105 | 105 | } |
@@ -116,8 +116,8 @@ discard block |
||
116 | 116 | * |
117 | 117 | * @return string The rendered component. |
118 | 118 | */ |
119 | - public function alert( $args = array() ) { |
|
120 | - return AUI_Component_Alert::get( $args ); |
|
119 | + public function alert($args = array()) { |
|
120 | + return AUI_Component_Alert::get($args); |
|
121 | 121 | } |
122 | 122 | |
123 | 123 | /** |
@@ -129,8 +129,8 @@ discard block |
||
129 | 129 | * |
130 | 130 | * @return string The rendered component. |
131 | 131 | */ |
132 | - public function input( $args = array() ) { |
|
133 | - return AUI_Component_Input::input( $args ); |
|
132 | + public function input($args = array()) { |
|
133 | + return AUI_Component_Input::input($args); |
|
134 | 134 | } |
135 | 135 | |
136 | 136 | /** |
@@ -142,8 +142,8 @@ discard block |
||
142 | 142 | * |
143 | 143 | * @return string The rendered component. |
144 | 144 | */ |
145 | - public function textarea( $args = array() ) { |
|
146 | - return AUI_Component_Input::textarea( $args ); |
|
145 | + public function textarea($args = array()) { |
|
146 | + return AUI_Component_Input::textarea($args); |
|
147 | 147 | } |
148 | 148 | |
149 | 149 | /** |
@@ -155,8 +155,8 @@ discard block |
||
155 | 155 | * |
156 | 156 | * @return string The rendered component. |
157 | 157 | */ |
158 | - public function button( $args = array() ) { |
|
159 | - return AUI_Component_Button::get( $args ); |
|
158 | + public function button($args = array()) { |
|
159 | + return AUI_Component_Button::get($args); |
|
160 | 160 | } |
161 | 161 | |
162 | 162 | /** |
@@ -168,22 +168,22 @@ discard block |
||
168 | 168 | * |
169 | 169 | * @return string The rendered component. |
170 | 170 | */ |
171 | - public function badge( $args = array() ) { |
|
171 | + public function badge($args = array()) { |
|
172 | 172 | $defaults = array( |
173 | 173 | 'class' => 'badge badge-primary align-middle', |
174 | 174 | ); |
175 | 175 | |
176 | 176 | // maybe set type |
177 | - if ( empty( $args['href'] ) ) { |
|
177 | + if (empty($args['href'])) { |
|
178 | 178 | $defaults['type'] = 'badge'; |
179 | 179 | } |
180 | 180 | |
181 | 181 | /** |
182 | 182 | * Parse incoming $args into an array and merge it with $defaults |
183 | 183 | */ |
184 | - $args = wp_parse_args( $args, $defaults ); |
|
184 | + $args = wp_parse_args($args, $defaults); |
|
185 | 185 | |
186 | - return AUI_Component_Button::get( $args ); |
|
186 | + return AUI_Component_Button::get($args); |
|
187 | 187 | } |
188 | 188 | |
189 | 189 | /** |
@@ -195,8 +195,8 @@ discard block |
||
195 | 195 | * |
196 | 196 | * @return string The rendered component. |
197 | 197 | */ |
198 | - public function dropdown( $args = array() ) { |
|
199 | - return AUI_Component_Dropdown::get( $args ); |
|
198 | + public function dropdown($args = array()) { |
|
199 | + return AUI_Component_Dropdown::get($args); |
|
200 | 200 | } |
201 | 201 | |
202 | 202 | /** |
@@ -208,8 +208,8 @@ discard block |
||
208 | 208 | * |
209 | 209 | * @return string The rendered component. |
210 | 210 | */ |
211 | - public function select( $args = array() ) { |
|
212 | - return AUI_Component_Input::select( $args ); |
|
211 | + public function select($args = array()) { |
|
212 | + return AUI_Component_Input::select($args); |
|
213 | 213 | } |
214 | 214 | |
215 | 215 | /** |
@@ -221,8 +221,8 @@ discard block |
||
221 | 221 | * |
222 | 222 | * @return string The rendered component. |
223 | 223 | */ |
224 | - public function radio( $args = array() ) { |
|
225 | - return AUI_Component_Input::radio( $args ); |
|
224 | + public function radio($args = array()) { |
|
225 | + return AUI_Component_Input::radio($args); |
|
226 | 226 | } |
227 | 227 | |
228 | 228 | /** |
@@ -234,8 +234,8 @@ discard block |
||
234 | 234 | * |
235 | 235 | * @return string The rendered component. |
236 | 236 | */ |
237 | - public function pagination( $args = array() ) { |
|
238 | - return AUI_Component_Pagination::get( $args ); |
|
237 | + public function pagination($args = array()) { |
|
238 | + return AUI_Component_Pagination::get($args); |
|
239 | 239 | } |
240 | 240 | |
241 | 241 | } |
242 | 242 | \ No newline at end of file |
@@ -7,23 +7,23 @@ |
||
7 | 7 | * @version 1.0.19 |
8 | 8 | */ |
9 | 9 | |
10 | -defined( 'ABSPATH' ) || exit; |
|
10 | +defined('ABSPATH') || exit; |
|
11 | 11 | |
12 | -$label = empty( $label ) ? '' : wp_kses_post( $label ); |
|
12 | +$label = empty($label) ? '' : wp_kses_post($label); |
|
13 | 13 | |
14 | -if ( ! empty( $required ) ) { |
|
14 | +if (!empty($required)) { |
|
15 | 15 | $label .= "<span class='text-danger'> *</span>"; |
16 | 16 | } |
17 | 17 | |
18 | 18 | echo aui()->input( |
19 | 19 | array( |
20 | - 'name' => esc_attr( $id ), |
|
21 | - 'id' => esc_attr( $id ) . uniqid( '_' ), |
|
22 | - 'placeholder'=> empty( $placeholder ) ? '' : esc_attr( $placeholder ), |
|
23 | - 'required' => ! empty( $required ), |
|
20 | + 'name' => esc_attr($id), |
|
21 | + 'id' => esc_attr($id) . uniqid('_'), |
|
22 | + 'placeholder'=> empty($placeholder) ? '' : esc_attr($placeholder), |
|
23 | + 'required' => !empty($required), |
|
24 | 24 | 'label' => $label, |
25 | 25 | 'label_type' => 'vertical', |
26 | - 'help_text' => empty( $description ) ? '' : wp_kses_post( $description ), |
|
26 | + 'help_text' => empty($description) ? '' : wp_kses_post($description), |
|
27 | 27 | 'type' => 'datepicker', |
28 | 28 | ) |
29 | 29 | ); |