@@ -8,7 +8,7 @@ discard block |
||
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | 10 | if ( ! defined( 'ABSPATH' ) ) { |
| 11 | - exit; // Exit if accessed directly |
|
| 11 | + exit; // Exit if accessed directly |
|
| 12 | 12 | } |
| 13 | 13 | |
| 14 | 14 | /** |
@@ -17,10 +17,10 @@ discard block |
||
| 17 | 17 | class GetPaid_Meta_Box_Item_Details { |
| 18 | 18 | |
| 19 | 19 | /** |
| 20 | - * Output the metabox. |
|
| 21 | - * |
|
| 22 | - * @param WP_Post $post |
|
| 23 | - */ |
|
| 20 | + * Output the metabox. |
|
| 21 | + * |
|
| 22 | + * @param WP_Post $post |
|
| 23 | + */ |
|
| 24 | 24 | public static function output( $post ) { |
| 25 | 25 | |
| 26 | 26 | // Prepare the item. |
@@ -114,23 +114,23 @@ discard block |
||
| 114 | 114 | // Dynamic pricing. |
| 115 | 115 | if ( $item->supports_dynamic_pricing() ) { |
| 116 | 116 | |
| 117 | - do_action( 'wpinv_item_details_metabox_before_dynamic_pricing_checkbox', $item ); |
|
| 117 | + do_action( 'wpinv_item_details_metabox_before_dynamic_pricing_checkbox', $item ); |
|
| 118 | 118 | |
| 119 | - // NYP toggle. |
|
| 120 | - aui()->input( |
|
| 119 | + // NYP toggle. |
|
| 120 | + aui()->input( |
|
| 121 | 121 | array( |
| 122 | - 'id' => 'wpinv_name_your_price', |
|
| 123 | - 'name' => 'wpinv_name_your_price', |
|
| 124 | - 'type' => 'checkbox', |
|
| 125 | - 'label' => apply_filters( 'wpinv_name_your_price_toggle_text', __( 'Let customers name their price', 'invoicing' ) ), |
|
| 126 | - 'value' => '1', |
|
| 127 | - 'checked' => $item->user_can_set_their_price(), |
|
| 128 | - 'no_wrap' => true, |
|
| 122 | + 'id' => 'wpinv_name_your_price', |
|
| 123 | + 'name' => 'wpinv_name_your_price', |
|
| 124 | + 'type' => 'checkbox', |
|
| 125 | + 'label' => apply_filters( 'wpinv_name_your_price_toggle_text', __( 'Let customers name their price', 'invoicing' ) ), |
|
| 126 | + 'value' => '1', |
|
| 127 | + 'checked' => $item->user_can_set_their_price(), |
|
| 128 | + 'no_wrap' => true, |
|
| 129 | 129 | ), |
| 130 | 130 | true |
| 131 | 131 | ); |
| 132 | 132 | |
| 133 | - do_action( 'wpinv_item_details_metabox_dynamic_pricing_checkbox', $item ); |
|
| 133 | + do_action( 'wpinv_item_details_metabox_dynamic_pricing_checkbox', $item ); |
|
| 134 | 134 | |
| 135 | 135 | } |
| 136 | 136 | |
@@ -274,35 +274,35 @@ discard block |
||
| 274 | 274 | } |
| 275 | 275 | |
| 276 | 276 | /** |
| 277 | - * Save meta box data. |
|
| 278 | - * |
|
| 279 | - * @param int $post_id |
|
| 280 | - */ |
|
| 281 | - public static function save( $post_id ) { |
|
| 277 | + * Save meta box data. |
|
| 278 | + * |
|
| 279 | + * @param int $post_id |
|
| 280 | + */ |
|
| 281 | + public static function save( $post_id ) { |
|
| 282 | 282 | |
| 283 | 283 | // Prepare the item. |
| 284 | 284 | $item = new WPInv_Item( $post_id ); |
| 285 | 285 | |
| 286 | 286 | // Load new data. |
| 287 | 287 | $item->set_props( |
| 288 | - array( |
|
| 289 | - 'price' => isset( $_POST['wpinv_item_price'] ) ? getpaid_standardize_amount( $_POST['wpinv_item_price'] ) : null, |
|
| 290 | - 'vat_rule' => isset( $_POST['wpinv_vat_rules'] ) ? wpinv_clean( $_POST['wpinv_vat_rules'] ) : null, |
|
| 291 | - 'vat_class' => isset( $_POST['wpinv_vat_class'] ) ? wpinv_clean( $_POST['wpinv_vat_class'] ) : null, |
|
| 292 | - 'type' => isset( $_POST['wpinv_item_type'] ) ? wpinv_clean( $_POST['wpinv_item_type'] ) : null, |
|
| 293 | - 'is_dynamic_pricing' => ! empty( $_POST['wpinv_name_your_price'] ), |
|
| 288 | + array( |
|
| 289 | + 'price' => isset( $_POST['wpinv_item_price'] ) ? getpaid_standardize_amount( $_POST['wpinv_item_price'] ) : null, |
|
| 290 | + 'vat_rule' => isset( $_POST['wpinv_vat_rules'] ) ? wpinv_clean( $_POST['wpinv_vat_rules'] ) : null, |
|
| 291 | + 'vat_class' => isset( $_POST['wpinv_vat_class'] ) ? wpinv_clean( $_POST['wpinv_vat_class'] ) : null, |
|
| 292 | + 'type' => isset( $_POST['wpinv_item_type'] ) ? wpinv_clean( $_POST['wpinv_item_type'] ) : null, |
|
| 293 | + 'is_dynamic_pricing' => ! empty( $_POST['wpinv_name_your_price'] ), |
|
| 294 | 294 | 'minimum_price' => isset( $_POST['wpinv_minimum_price'] ) ? getpaid_standardize_amount( $_POST['wpinv_minimum_price'] ) : null, |
| 295 | - 'is_recurring' => ! empty( $_POST['wpinv_is_recurring'] ), |
|
| 296 | - 'recurring_period' => isset( $_POST['wpinv_recurring_period'] ) ? wpinv_clean( $_POST['wpinv_recurring_period'] ) : null, |
|
| 297 | - 'recurring_interval' => isset( $_POST['wpinv_recurring_interval'] ) ? (int) $_POST['wpinv_recurring_interval'] : 1, |
|
| 298 | - 'recurring_limit' => isset( $_POST['wpinv_recurring_limit'] ) ? (int) $_POST['wpinv_recurring_limit'] : null, |
|
| 299 | - 'is_free_trial' => isset( $_POST['wpinv_trial_interval'] ) ? ( 0 != (int) $_POST['wpinv_trial_interval'] ) : null, |
|
| 300 | - 'trial_period' => isset( $_POST['wpinv_trial_period'] ) ? wpinv_clean( $_POST['wpinv_trial_period'] ) : null, |
|
| 301 | - 'trial_interval' => isset( $_POST['wpinv_trial_interval'] ) ? (int) $_POST['wpinv_trial_interval'] : null, |
|
| 302 | - ) |
|
| 295 | + 'is_recurring' => ! empty( $_POST['wpinv_is_recurring'] ), |
|
| 296 | + 'recurring_period' => isset( $_POST['wpinv_recurring_period'] ) ? wpinv_clean( $_POST['wpinv_recurring_period'] ) : null, |
|
| 297 | + 'recurring_interval' => isset( $_POST['wpinv_recurring_interval'] ) ? (int) $_POST['wpinv_recurring_interval'] : 1, |
|
| 298 | + 'recurring_limit' => isset( $_POST['wpinv_recurring_limit'] ) ? (int) $_POST['wpinv_recurring_limit'] : null, |
|
| 299 | + 'is_free_trial' => isset( $_POST['wpinv_trial_interval'] ) ? ( 0 != (int) $_POST['wpinv_trial_interval'] ) : null, |
|
| 300 | + 'trial_period' => isset( $_POST['wpinv_trial_period'] ) ? wpinv_clean( $_POST['wpinv_trial_period'] ) : null, |
|
| 301 | + 'trial_interval' => isset( $_POST['wpinv_trial_interval'] ) ? (int) $_POST['wpinv_trial_interval'] : null, |
|
| 302 | + ) |
|
| 303 | 303 | ); |
| 304 | 304 | |
| 305 | - $item->save(); |
|
| 306 | - do_action( 'getpaid_item_metabox_save', $post_id, $item ); |
|
| 307 | - } |
|
| 305 | + $item->save(); |
|
| 306 | + do_action( 'getpaid_item_metabox_save', $post_id, $item ); |
|
| 307 | + } |
|
| 308 | 308 | } |
@@ -7,7 +7,7 @@ discard block |
||
| 7 | 7 | * |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 10 | +if (!defined('ABSPATH')) { |
|
| 11 | 11 | exit; // Exit if accessed directly |
| 12 | 12 | } |
| 13 | 13 | |
@@ -21,27 +21,27 @@ discard block |
||
| 21 | 21 | * |
| 22 | 22 | * @param WP_Post $post |
| 23 | 23 | */ |
| 24 | - public static function output( $post ) { |
|
| 24 | + public static function output($post) { |
|
| 25 | 25 | |
| 26 | 26 | // Prepare the item. |
| 27 | - $item = new WPInv_Item( $post ); |
|
| 27 | + $item = new WPInv_Item($post); |
|
| 28 | 28 | |
| 29 | 29 | // Nonce field. |
| 30 | - wp_nonce_field( 'getpaid_meta_nonce', 'getpaid_meta_nonce' ); |
|
| 30 | + wp_nonce_field('getpaid_meta_nonce', 'getpaid_meta_nonce'); |
|
| 31 | 31 | |
| 32 | 32 | // Set the currency position. |
| 33 | 33 | $position = wpinv_currency_position(); |
| 34 | 34 | |
| 35 | - if ( $position == 'left_space' ) { |
|
| 35 | + if ($position == 'left_space') { |
|
| 36 | 36 | $position = 'left'; |
| 37 | 37 | } |
| 38 | 38 | |
| 39 | - if ( $position == 'right_space' ) { |
|
| 39 | + if ($position == 'right_space') { |
|
| 40 | 40 | $position = 'right'; |
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | ?> |
| 44 | - <input type="hidden" id="_wpi_current_type" value="<?php echo esc_attr( $item->get_type( 'edit' ) ); ?>" /> |
|
| 44 | + <input type="hidden" id="_wpi_current_type" value="<?php echo esc_attr($item->get_type('edit')); ?>" /> |
|
| 45 | 45 | <style> |
| 46 | 46 | #poststuff .input-group-text, |
| 47 | 47 | #poststuff .form-control { |
@@ -55,36 +55,36 @@ discard block |
||
| 55 | 55 | </style> |
| 56 | 56 | <div class='bsui' style='max-width: 600px;padding-top: 10px;'> |
| 57 | 57 | |
| 58 | - <?php do_action( 'wpinv_item_details_metabox_before_price', $item ); ?> |
|
| 58 | + <?php do_action('wpinv_item_details_metabox_before_price', $item); ?> |
|
| 59 | 59 | <div class="form-group mb-3 row"> |
| 60 | - <label class="col-sm-3 col-form-label" for="wpinv_item_price"><span><?php esc_html_e( 'Item Price', 'invoicing' ); ?></span></label> |
|
| 60 | + <label class="col-sm-3 col-form-label" for="wpinv_item_price"><span><?php esc_html_e('Item Price', 'invoicing'); ?></span></label> |
|
| 61 | 61 | <div class="col-sm-8"> |
| 62 | 62 | <div class="row"> |
| 63 | 63 | <div class="col-sm-4 getpaid-price-input"> |
| 64 | 64 | <div class="input-group input-group-sm"> |
| 65 | 65 | |
| 66 | - <?php if ( 'left' == $position ) : ?> |
|
| 67 | - <?php if ( empty( $GLOBALS['aui_bs5'] ) ) : ?> |
|
| 66 | + <?php if ('left' == $position) : ?> |
|
| 67 | + <?php if (empty($GLOBALS['aui_bs5'])) : ?> |
|
| 68 | 68 | <div class="input-group-prepend"> |
| 69 | - <span class="input-group-text"><?php echo wp_kses_post( wpinv_currency_symbol() ); ?></span> |
|
| 69 | + <span class="input-group-text"><?php echo wp_kses_post(wpinv_currency_symbol()); ?></span> |
|
| 70 | 70 | </div> |
| 71 | 71 | <?php else : ?> |
| 72 | 72 | <span class="input-group-text"> |
| 73 | - <?php echo wp_kses_post( wpinv_currency_symbol() ); ?> |
|
| 73 | + <?php echo wp_kses_post(wpinv_currency_symbol()); ?> |
|
| 74 | 74 | </span> |
| 75 | 75 | <?php endif; ?> |
| 76 | 76 | <?php endif; ?> |
| 77 | 77 | |
| 78 | - <input type="text" name="wpinv_item_price" id="wpinv_item_price" value="<?php echo esc_attr( getpaid_unstandardize_amount( $item->get_price( 'edit' ) ) ); ?>" placeholder="<?php echo esc_attr( wpinv_sanitize_amount( 0 ) ); ?>" class="form-control"> |
|
| 78 | + <input type="text" name="wpinv_item_price" id="wpinv_item_price" value="<?php echo esc_attr(getpaid_unstandardize_amount($item->get_price('edit'))); ?>" placeholder="<?php echo esc_attr(wpinv_sanitize_amount(0)); ?>" class="form-control"> |
|
| 79 | 79 | |
| 80 | - <?php if ( 'left' != $position ) : ?> |
|
| 81 | - <?php if ( empty( $GLOBALS['aui_bs5'] ) ) : ?> |
|
| 80 | + <?php if ('left' != $position) : ?> |
|
| 81 | + <?php if (empty($GLOBALS['aui_bs5'])) : ?> |
|
| 82 | 82 | <div class="input-group-append"> |
| 83 | - <span class="input-group-text"><?php echo wp_kses_post( wpinv_currency_symbol() ); ?></span> |
|
| 83 | + <span class="input-group-text"><?php echo wp_kses_post(wpinv_currency_symbol()); ?></span> |
|
| 84 | 84 | </div> |
| 85 | 85 | <?php else : ?> |
| 86 | 86 | <span class="input-group-text"> |
| 87 | - <?php echo wp_kses_post( wpinv_currency_symbol() ); ?> |
|
| 87 | + <?php echo wp_kses_post(wpinv_currency_symbol()); ?> |
|
| 88 | 88 | </span> |
| 89 | 89 | <?php endif; ?> |
| 90 | 90 | <?php endif; ?> |
@@ -93,10 +93,10 @@ discard block |
||
| 93 | 93 | </div> |
| 94 | 94 | <div class="col-sm-4 wpinv_show_if_recurring"> |
| 95 | 95 | <?php |
| 96 | - esc_html_e( 'every' ); |
|
| 96 | + esc_html_e('every'); |
|
| 97 | 97 | echo ' '; |
| 98 | 98 | ?> |
| 99 | - <input type="number" style="max-width: 60px;" value="<?php echo esc_attr( $item->get_recurring_interval( 'edit' ) ); ?>" placeholder="1" name="wpinv_recurring_interval" id="wpinv_recurring_interval" /> |
|
| 99 | + <input type="number" style="max-width: 60px;" value="<?php echo esc_attr($item->get_recurring_interval('edit')); ?>" placeholder="1" name="wpinv_recurring_interval" id="wpinv_recurring_interval" /> |
|
| 100 | 100 | </div> |
| 101 | 101 | <div class="col-sm-4 wpinv_show_if_recurring"> |
| 102 | 102 | <?php |
@@ -104,16 +104,16 @@ discard block |
||
| 104 | 104 | array( |
| 105 | 105 | 'id' => 'wpinv_recurring_period', |
| 106 | 106 | 'name' => 'wpinv_recurring_period', |
| 107 | - 'label' => __( 'Period', 'invoicing' ), |
|
| 108 | - 'placeholder' => __( 'Select Period', 'invoicing' ), |
|
| 109 | - 'value' => $item->get_recurring_period( 'edit' ), |
|
| 107 | + 'label' => __('Period', 'invoicing'), |
|
| 108 | + 'placeholder' => __('Select Period', 'invoicing'), |
|
| 109 | + 'value' => $item->get_recurring_period('edit'), |
|
| 110 | 110 | 'select2' => true, |
| 111 | 111 | 'data-allow-clear' => 'false', |
| 112 | 112 | 'options' => array( |
| 113 | - 'D' => __( 'day(s)', 'invoicing' ), |
|
| 114 | - 'W' => __( 'week(s)', 'invoicing' ), |
|
| 115 | - 'M' => __( 'month(s)', 'invoicing' ), |
|
| 116 | - 'Y' => __( 'year(s)', 'invoicing' ), |
|
| 113 | + 'D' => __('day(s)', 'invoicing'), |
|
| 114 | + 'W' => __('week(s)', 'invoicing'), |
|
| 115 | + 'M' => __('month(s)', 'invoicing'), |
|
| 116 | + 'Y' => __('year(s)', 'invoicing'), |
|
| 117 | 117 | ), |
| 118 | 118 | ), |
| 119 | 119 | true |
@@ -126,9 +126,9 @@ discard block |
||
| 126 | 126 | <?php |
| 127 | 127 | |
| 128 | 128 | // Dynamic pricing. |
| 129 | - if ( $item->supports_dynamic_pricing() ) { |
|
| 129 | + if ($item->supports_dynamic_pricing()) { |
|
| 130 | 130 | |
| 131 | - do_action( 'wpinv_item_details_metabox_before_dynamic_pricing_checkbox', $item ); |
|
| 131 | + do_action('wpinv_item_details_metabox_before_dynamic_pricing_checkbox', $item); |
|
| 132 | 132 | |
| 133 | 133 | // NYP toggle. |
| 134 | 134 | aui()->input( |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | 'id' => 'wpinv_name_your_price', |
| 137 | 137 | 'name' => 'wpinv_name_your_price', |
| 138 | 138 | 'type' => 'checkbox', |
| 139 | - 'label' => apply_filters( 'wpinv_name_your_price_toggle_text', __( 'Let customers name their price', 'invoicing' ) ), |
|
| 139 | + 'label' => apply_filters('wpinv_name_your_price_toggle_text', __('Let customers name their price', 'invoicing')), |
|
| 140 | 140 | 'value' => '1', |
| 141 | 141 | 'checked' => $item->user_can_set_their_price(), |
| 142 | 142 | 'no_wrap' => true, |
@@ -144,71 +144,71 @@ discard block |
||
| 144 | 144 | true |
| 145 | 145 | ); |
| 146 | 146 | |
| 147 | - do_action( 'wpinv_item_details_metabox_dynamic_pricing_checkbox', $item ); |
|
| 147 | + do_action('wpinv_item_details_metabox_dynamic_pricing_checkbox', $item); |
|
| 148 | 148 | |
| 149 | 149 | } |
| 150 | 150 | |
| 151 | 151 | // Subscriptions. |
| 152 | - do_action( 'wpinv_item_details_metabox_before_subscription_checkbox', $item ); |
|
| 152 | + do_action('wpinv_item_details_metabox_before_subscription_checkbox', $item); |
|
| 153 | 153 | aui()->input( |
| 154 | 154 | array( |
| 155 | 155 | 'id' => 'wpinv_is_recurring', |
| 156 | 156 | 'name' => 'wpinv_is_recurring', |
| 157 | 157 | 'type' => 'checkbox', |
| 158 | - 'label' => apply_filters( 'wpinv_is_recurring_toggle_text', __( 'Charge customers a recurring amount for this item', 'invoicing' ) ), |
|
| 158 | + 'label' => apply_filters('wpinv_is_recurring_toggle_text', __('Charge customers a recurring amount for this item', 'invoicing')), |
|
| 159 | 159 | 'value' => '1', |
| 160 | 160 | 'checked' => $item->is_recurring(), |
| 161 | 161 | 'no_wrap' => true, |
| 162 | 162 | ), |
| 163 | 163 | true |
| 164 | 164 | ); |
| 165 | - do_action( 'wpinv_item_details_metabox_subscription_checkbox', $item ); |
|
| 165 | + do_action('wpinv_item_details_metabox_subscription_checkbox', $item); |
|
| 166 | 166 | |
| 167 | 167 | ?> |
| 168 | 168 | <div class="wpinv_show_if_recurring"> |
| 169 | - <em><?php echo wp_kses_post( wpinv_get_recurring_gateways_text() ); ?></em> |
|
| 169 | + <em><?php echo wp_kses_post(wpinv_get_recurring_gateways_text()); ?></em> |
|
| 170 | 170 | </div> |
| 171 | 171 | </div> |
| 172 | 172 | </div> |
| 173 | 173 | </div> |
| 174 | 174 | <div class="col-sm-1 pt-2 pl-0"> |
| 175 | - <span class="wpi-help-tip dashicons dashicons-editor-help wpinv_show_if_recurring" title="<?php esc_attr_e( 'Set the subscription price, billing interval and period.', 'invoicing' ); ?>"></span> |
|
| 175 | + <span class="wpi-help-tip dashicons dashicons-editor-help wpinv_show_if_recurring" title="<?php esc_attr_e('Set the subscription price, billing interval and period.', 'invoicing'); ?>"></span> |
|
| 176 | 176 | </div> |
| 177 | 177 | </div> |
| 178 | - <?php do_action( 'wpinv_item_details_metabox_after_price', $item ); ?> |
|
| 178 | + <?php do_action('wpinv_item_details_metabox_after_price', $item); ?> |
|
| 179 | 179 | |
| 180 | - <?php if ( $item->supports_dynamic_pricing() ) : ?> |
|
| 181 | - <?php do_action( 'wpinv_item_details_metabox_before_minimum_price', $item ); ?> |
|
| 180 | + <?php if ($item->supports_dynamic_pricing()) : ?> |
|
| 181 | + <?php do_action('wpinv_item_details_metabox_before_minimum_price', $item); ?> |
|
| 182 | 182 | <div class="wpinv_show_if_dynamic wpinv_minimum_price"> |
| 183 | 183 | |
| 184 | 184 | <div class="form-group mb-3 row"> |
| 185 | 185 | <label for="wpinv_minimum_price" class="col-sm-3 col-form-label"> |
| 186 | - <?php esc_html_e( 'Minimum Price', 'invoicing' ); ?> |
|
| 186 | + <?php esc_html_e('Minimum Price', 'invoicing'); ?> |
|
| 187 | 187 | </label> |
| 188 | 188 | <div class="col-sm-8"> |
| 189 | 189 | <div class="input-group input-group-sm"> |
| 190 | - <?php if ( 'left' == $position ) : ?> |
|
| 191 | - <?php if ( empty( $GLOBALS['aui_bs5'] ) ) : ?> |
|
| 190 | + <?php if ('left' == $position) : ?> |
|
| 191 | + <?php if (empty($GLOBALS['aui_bs5'])) : ?> |
|
| 192 | 192 | <div class="input-group-prepend"> |
| 193 | - <span class="input-group-text"><?php echo wp_kses_post( wpinv_currency_symbol() ); ?></span> |
|
| 193 | + <span class="input-group-text"><?php echo wp_kses_post(wpinv_currency_symbol()); ?></span> |
|
| 194 | 194 | </div> |
| 195 | 195 | <?php else : ?> |
| 196 | 196 | <span class="input-group-text"> |
| 197 | - <?php echo wp_kses_post( wpinv_currency_symbol() ); ?> |
|
| 197 | + <?php echo wp_kses_post(wpinv_currency_symbol()); ?> |
|
| 198 | 198 | </span> |
| 199 | 199 | <?php endif; ?> |
| 200 | 200 | <?php endif; ?> |
| 201 | 201 | |
| 202 | - <input type="text" name="wpinv_minimum_price" id="wpinv_minimum_price" value="<?php echo esc_attr( getpaid_unstandardize_amount( $item->get_minimum_price( 'edit' ) ) ); ?>" placeholder="<?php echo esc_attr( wpinv_sanitize_amount( 0 ) ); ?>" class="form-control"> |
|
| 202 | + <input type="text" name="wpinv_minimum_price" id="wpinv_minimum_price" value="<?php echo esc_attr(getpaid_unstandardize_amount($item->get_minimum_price('edit'))); ?>" placeholder="<?php echo esc_attr(wpinv_sanitize_amount(0)); ?>" class="form-control"> |
|
| 203 | 203 | |
| 204 | - <?php if ( 'left' != $position ) : ?> |
|
| 205 | - <?php if ( empty( $GLOBALS['aui_bs5'] ) ) : ?> |
|
| 204 | + <?php if ('left' != $position) : ?> |
|
| 205 | + <?php if (empty($GLOBALS['aui_bs5'])) : ?> |
|
| 206 | 206 | <div class="input-group-append"> |
| 207 | - <span class="input-group-text"><?php echo wp_kses_post( wpinv_currency_symbol() ); ?></span> |
|
| 207 | + <span class="input-group-text"><?php echo wp_kses_post(wpinv_currency_symbol()); ?></span> |
|
| 208 | 208 | </div> |
| 209 | 209 | <?php else : ?> |
| 210 | 210 | <span class="input-group-text"> |
| 211 | - <?php echo wp_kses_post( wpinv_currency_symbol() ); ?> |
|
| 211 | + <?php echo wp_kses_post(wpinv_currency_symbol()); ?> |
|
| 212 | 212 | </span> |
| 213 | 213 | <?php endif; ?> |
| 214 | 214 | <?php endif; ?> |
@@ -216,45 +216,45 @@ discard block |
||
| 216 | 216 | </div> |
| 217 | 217 | |
| 218 | 218 | <div class="col-sm-1 pt-2 pl-0"> |
| 219 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Enter the minimum amount that users are allowed to set', 'invoicing' ); ?>"></span> |
|
| 219 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('Enter the minimum amount that users are allowed to set', 'invoicing'); ?>"></span> |
|
| 220 | 220 | </div> |
| 221 | 221 | </div> |
| 222 | 222 | |
| 223 | 223 | </div> |
| 224 | - <?php do_action( 'wpinv_item_details_metabox_minimum_price', $item ); ?> |
|
| 224 | + <?php do_action('wpinv_item_details_metabox_minimum_price', $item); ?> |
|
| 225 | 225 | <?php endif; ?> |
| 226 | 226 | |
| 227 | - <?php do_action( 'wpinv_item_details_metabox_before_maximum_renewals', $item ); ?> |
|
| 227 | + <?php do_action('wpinv_item_details_metabox_before_maximum_renewals', $item); ?> |
|
| 228 | 228 | <div class="wpinv_show_if_recurring wpinv_maximum_renewals"> |
| 229 | 229 | |
| 230 | 230 | <div class="form-group mb-3 row"> |
| 231 | 231 | <label for="wpinv_recurring_limit" class="col-sm-3 col-form-label"> |
| 232 | - <?php esc_html_e( 'Maximum Renewals', 'invoicing' ); ?> |
|
| 232 | + <?php esc_html_e('Maximum Renewals', 'invoicing'); ?> |
|
| 233 | 233 | </label> |
| 234 | 234 | <div class="col-sm-8"> |
| 235 | - <input type="number" value="<?php echo esc_attr( $item->get_recurring_limit( 'edit' ) ); ?>" placeholder="0" name="wpinv_recurring_limit" id="wpinv_recurring_limit" style="width: 100%;" /> |
|
| 235 | + <input type="number" value="<?php echo esc_attr($item->get_recurring_limit('edit')); ?>" placeholder="0" name="wpinv_recurring_limit" id="wpinv_recurring_limit" style="width: 100%;" /> |
|
| 236 | 236 | </div> |
| 237 | 237 | <div class="col-sm-1 pt-2 pl-0"> |
| 238 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Leave empty if you want the subscription to renew until it is cancelled.', 'invoicing' ); ?>"></span> |
|
| 238 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('Leave empty if you want the subscription to renew until it is cancelled.', 'invoicing'); ?>"></span> |
|
| 239 | 239 | </div> |
| 240 | 240 | </div> |
| 241 | 241 | |
| 242 | 242 | </div> |
| 243 | - <?php do_action( 'wpinv_item_details_metabox_maximum_renewals', $item ); ?> |
|
| 243 | + <?php do_action('wpinv_item_details_metabox_maximum_renewals', $item); ?> |
|
| 244 | 244 | |
| 245 | - <?php do_action( 'wpinv_item_details_metabox_before_free_trial', $item ); ?> |
|
| 245 | + <?php do_action('wpinv_item_details_metabox_before_free_trial', $item); ?> |
|
| 246 | 246 | <div class="wpinv_show_if_recurring wpinv_free_trial"> |
| 247 | 247 | |
| 248 | 248 | <div class="form-group mb-3 row"> |
| 249 | - <label class="col-sm-3 col-form-label" for="wpinv_trial_interval"><?php defined( 'GETPAID_PAID_TRIALS_VERSION' ) ? esc_html_e( 'Free/Paid Trial', 'invoicing' ) : esc_html_e( 'Free Trial', 'invoicing' ); ?></label> |
|
| 249 | + <label class="col-sm-3 col-form-label" for="wpinv_trial_interval"><?php defined('GETPAID_PAID_TRIALS_VERSION') ? esc_html_e('Free/Paid Trial', 'invoicing') : esc_html_e('Free Trial', 'invoicing'); ?></label> |
|
| 250 | 250 | |
| 251 | 251 | <div class="col-sm-8"> |
| 252 | 252 | <div class="row"> |
| 253 | 253 | <div class="col-sm-6"> |
| 254 | - <?php $value = $item->has_free_trial() ? $item->get_trial_interval( 'edit' ) : 0; ?> |
|
| 254 | + <?php $value = $item->has_free_trial() ? $item->get_trial_interval('edit') : 0; ?> |
|
| 255 | 255 | |
| 256 | 256 | <div> |
| 257 | - <input type="number" name="wpinv_trial_interval" style="width: 100%;" placeholder="0" id="wpinv_trial_interval" value="<?php echo esc_attr( $value ); ?>" > |
|
| 257 | + <input type="number" name="wpinv_trial_interval" style="width: 100%;" placeholder="0" id="wpinv_trial_interval" value="<?php echo esc_attr($value); ?>" > |
|
| 258 | 258 | </div> |
| 259 | 259 | </div> |
| 260 | 260 | <div class="col-sm-6"> |
@@ -263,17 +263,17 @@ discard block |
||
| 263 | 263 | array( |
| 264 | 264 | 'id' => 'wpinv_trial_period', |
| 265 | 265 | 'name' => 'wpinv_trial_period', |
| 266 | - 'label' => __( 'Trial Period', 'invoicing' ), |
|
| 267 | - 'placeholder' => __( 'Trial Period', 'invoicing' ), |
|
| 268 | - 'value' => $item->get_trial_period( 'edit' ), |
|
| 266 | + 'label' => __('Trial Period', 'invoicing'), |
|
| 267 | + 'placeholder' => __('Trial Period', 'invoicing'), |
|
| 268 | + 'value' => $item->get_trial_period('edit'), |
|
| 269 | 269 | 'select2' => true, |
| 270 | 270 | 'data-allow-clear' => 'false', |
| 271 | 271 | 'no_wrap' => true, |
| 272 | 272 | 'options' => array( |
| 273 | - 'D' => __( 'day(s)', 'invoicing' ), |
|
| 274 | - 'W' => __( 'week(s)', 'invoicing' ), |
|
| 275 | - 'M' => __( 'month(s)', 'invoicing' ), |
|
| 276 | - 'Y' => __( 'year(s)', 'invoicing' ), |
|
| 273 | + 'D' => __('day(s)', 'invoicing'), |
|
| 274 | + 'W' => __('week(s)', 'invoicing'), |
|
| 275 | + 'M' => __('month(s)', 'invoicing'), |
|
| 276 | + 'Y' => __('year(s)', 'invoicing'), |
|
| 277 | 277 | ), |
| 278 | 278 | ), |
| 279 | 279 | true |
@@ -285,15 +285,15 @@ discard block |
||
| 285 | 285 | </div> |
| 286 | 286 | |
| 287 | 287 | <div class="col-sm-1 pt-2 pl-0"> |
| 288 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'An optional period of time to wait before charging the first recurring payment.', 'invoicing' ); ?>"></span> |
|
| 288 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('An optional period of time to wait before charging the first recurring payment.', 'invoicing'); ?>"></span> |
|
| 289 | 289 | </div> |
| 290 | 290 | |
| 291 | 291 | </div> |
| 292 | 292 | |
| 293 | 293 | </div> |
| 294 | - <?php do_action( 'wpinv_item_details_metabox__free_trial', $item ); ?> |
|
| 294 | + <?php do_action('wpinv_item_details_metabox__free_trial', $item); ?> |
|
| 295 | 295 | |
| 296 | - <?php do_action( 'wpinv_item_details_metabox_item_details', $item ); ?> |
|
| 296 | + <?php do_action('wpinv_item_details_metabox_item_details', $item); ?> |
|
| 297 | 297 | </div> |
| 298 | 298 | <?php |
| 299 | 299 | |
@@ -304,31 +304,31 @@ discard block |
||
| 304 | 304 | * |
| 305 | 305 | * @param int $post_id |
| 306 | 306 | */ |
| 307 | - public static function save( $post_id ) { |
|
| 307 | + public static function save($post_id) { |
|
| 308 | 308 | |
| 309 | 309 | // Prepare the item. |
| 310 | - $item = new WPInv_Item( $post_id ); |
|
| 310 | + $item = new WPInv_Item($post_id); |
|
| 311 | 311 | |
| 312 | 312 | // Load new data. |
| 313 | 313 | $item->set_props( |
| 314 | 314 | array( |
| 315 | - 'price' => isset( $_POST['wpinv_item_price'] ) ? getpaid_standardize_amount( $_POST['wpinv_item_price'] ) : null, |
|
| 316 | - 'vat_rule' => isset( $_POST['wpinv_vat_rules'] ) ? wpinv_clean( $_POST['wpinv_vat_rules'] ) : null, |
|
| 317 | - 'vat_class' => isset( $_POST['wpinv_vat_class'] ) ? wpinv_clean( $_POST['wpinv_vat_class'] ) : null, |
|
| 318 | - 'type' => isset( $_POST['wpinv_item_type'] ) ? wpinv_clean( $_POST['wpinv_item_type'] ) : null, |
|
| 319 | - 'is_dynamic_pricing' => ! empty( $_POST['wpinv_name_your_price'] ), |
|
| 320 | - 'minimum_price' => isset( $_POST['wpinv_minimum_price'] ) ? getpaid_standardize_amount( $_POST['wpinv_minimum_price'] ) : null, |
|
| 321 | - 'is_recurring' => ! empty( $_POST['wpinv_is_recurring'] ), |
|
| 322 | - 'recurring_period' => isset( $_POST['wpinv_recurring_period'] ) ? wpinv_clean( $_POST['wpinv_recurring_period'] ) : null, |
|
| 323 | - 'recurring_interval' => isset( $_POST['wpinv_recurring_interval'] ) ? (int) $_POST['wpinv_recurring_interval'] : 1, |
|
| 324 | - 'recurring_limit' => isset( $_POST['wpinv_recurring_limit'] ) ? (int) $_POST['wpinv_recurring_limit'] : null, |
|
| 325 | - 'is_free_trial' => isset( $_POST['wpinv_trial_interval'] ) ? ( 0 != (int) $_POST['wpinv_trial_interval'] ) : null, |
|
| 326 | - 'trial_period' => isset( $_POST['wpinv_trial_period'] ) ? wpinv_clean( $_POST['wpinv_trial_period'] ) : null, |
|
| 327 | - 'trial_interval' => isset( $_POST['wpinv_trial_interval'] ) ? (int) $_POST['wpinv_trial_interval'] : null, |
|
| 315 | + 'price' => isset($_POST['wpinv_item_price']) ? getpaid_standardize_amount($_POST['wpinv_item_price']) : null, |
|
| 316 | + 'vat_rule' => isset($_POST['wpinv_vat_rules']) ? wpinv_clean($_POST['wpinv_vat_rules']) : null, |
|
| 317 | + 'vat_class' => isset($_POST['wpinv_vat_class']) ? wpinv_clean($_POST['wpinv_vat_class']) : null, |
|
| 318 | + 'type' => isset($_POST['wpinv_item_type']) ? wpinv_clean($_POST['wpinv_item_type']) : null, |
|
| 319 | + 'is_dynamic_pricing' => !empty($_POST['wpinv_name_your_price']), |
|
| 320 | + 'minimum_price' => isset($_POST['wpinv_minimum_price']) ? getpaid_standardize_amount($_POST['wpinv_minimum_price']) : null, |
|
| 321 | + 'is_recurring' => !empty($_POST['wpinv_is_recurring']), |
|
| 322 | + 'recurring_period' => isset($_POST['wpinv_recurring_period']) ? wpinv_clean($_POST['wpinv_recurring_period']) : null, |
|
| 323 | + 'recurring_interval' => isset($_POST['wpinv_recurring_interval']) ? (int) $_POST['wpinv_recurring_interval'] : 1, |
|
| 324 | + 'recurring_limit' => isset($_POST['wpinv_recurring_limit']) ? (int) $_POST['wpinv_recurring_limit'] : null, |
|
| 325 | + 'is_free_trial' => isset($_POST['wpinv_trial_interval']) ? (0 != (int) $_POST['wpinv_trial_interval']) : null, |
|
| 326 | + 'trial_period' => isset($_POST['wpinv_trial_period']) ? wpinv_clean($_POST['wpinv_trial_period']) : null, |
|
| 327 | + 'trial_interval' => isset($_POST['wpinv_trial_interval']) ? (int) $_POST['wpinv_trial_interval'] : null, |
|
| 328 | 328 | ) |
| 329 | 329 | ); |
| 330 | 330 | |
| 331 | 331 | $item->save(); |
| 332 | - do_action( 'getpaid_item_metabox_save', $post_id, $item ); |
|
| 332 | + do_action('getpaid_item_metabox_save', $post_id, $item); |
|
| 333 | 333 | } |
| 334 | 334 | } |
@@ -68,9 +68,12 @@ discard block |
||
| 68 | 68 | <div class="input-group-prepend"> |
| 69 | 69 | <span class="input-group-text"><?php echo wp_kses_post( wpinv_currency_symbol() ); ?></span> |
| 70 | 70 | </div> |
| 71 | - <?php else : ?> |
|
| 71 | + <?php else { |
|
| 72 | + : ?> |
|
| 72 | 73 | <span class="input-group-text"> |
| 73 | - <?php echo wp_kses_post( wpinv_currency_symbol() ); ?> |
|
| 74 | + <?php echo wp_kses_post( wpinv_currency_symbol() ); |
|
| 75 | +} |
|
| 76 | +?> |
|
| 74 | 77 | </span> |
| 75 | 78 | <?php endif; ?> |
| 76 | 79 | <?php endif; ?> |
@@ -82,9 +85,12 @@ discard block |
||
| 82 | 85 | <div class="input-group-append"> |
| 83 | 86 | <span class="input-group-text"><?php echo wp_kses_post( wpinv_currency_symbol() ); ?></span> |
| 84 | 87 | </div> |
| 85 | - <?php else : ?> |
|
| 88 | + <?php else { |
|
| 89 | + : ?> |
|
| 86 | 90 | <span class="input-group-text"> |
| 87 | - <?php echo wp_kses_post( wpinv_currency_symbol() ); ?> |
|
| 91 | + <?php echo wp_kses_post( wpinv_currency_symbol() ); |
|
| 92 | +} |
|
| 93 | +?> |
|
| 88 | 94 | </span> |
| 89 | 95 | <?php endif; ?> |
| 90 | 96 | <?php endif; ?> |
@@ -192,9 +198,12 @@ discard block |
||
| 192 | 198 | <div class="input-group-prepend"> |
| 193 | 199 | <span class="input-group-text"><?php echo wp_kses_post( wpinv_currency_symbol() ); ?></span> |
| 194 | 200 | </div> |
| 195 | - <?php else : ?> |
|
| 201 | + <?php else { |
|
| 202 | + : ?> |
|
| 196 | 203 | <span class="input-group-text"> |
| 197 | - <?php echo wp_kses_post( wpinv_currency_symbol() ); ?> |
|
| 204 | + <?php echo wp_kses_post( wpinv_currency_symbol() ); |
|
| 205 | +} |
|
| 206 | +?> |
|
| 198 | 207 | </span> |
| 199 | 208 | <?php endif; ?> |
| 200 | 209 | <?php endif; ?> |
@@ -206,9 +215,12 @@ discard block |
||
| 206 | 215 | <div class="input-group-append"> |
| 207 | 216 | <span class="input-group-text"><?php echo wp_kses_post( wpinv_currency_symbol() ); ?></span> |
| 208 | 217 | </div> |
| 209 | - <?php else : ?> |
|
| 218 | + <?php else { |
|
| 219 | + : ?> |
|
| 210 | 220 | <span class="input-group-text"> |
| 211 | - <?php echo wp_kses_post( wpinv_currency_symbol() ); ?> |
|
| 221 | + <?php echo wp_kses_post( wpinv_currency_symbol() ); |
|
| 222 | +} |
|
| 223 | +?> |
|
| 212 | 224 | </span> |
| 213 | 225 | <?php endif; ?> |
| 214 | 226 | <?php endif; ?> |
@@ -7,10 +7,10 @@ discard block |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 10 | +defined('ABSPATH') || exit; |
|
| 11 | 11 | |
| 12 | -$invoice = new WPInv_Invoice( $invoice ); |
|
| 13 | -$address_row = wpinv_get_invoice_address_markup( $invoice->get_user_info() ); |
|
| 12 | +$invoice = new WPInv_Invoice($invoice); |
|
| 13 | +$address_row = wpinv_get_invoice_address_markup($invoice->get_user_info()); |
|
| 14 | 14 | $phone = $invoice->get_phone(); |
| 15 | 15 | $email = $invoice->get_email(); |
| 16 | 16 | $vat_number = $invoice->get_vat_number(); |
@@ -22,47 +22,47 @@ discard block |
||
| 22 | 22 | |
| 23 | 23 | |
| 24 | 24 | <div class="invoice-billing-address-label col-2"> |
| 25 | - <strong><?php esc_html_e( 'To:', 'invoicing' ); ?></strong> |
|
| 25 | + <strong><?php esc_html_e('To:', 'invoicing'); ?></strong> |
|
| 26 | 26 | </div> |
| 27 | 27 | |
| 28 | 28 | |
| 29 | 29 | <div class="invoice-billing-address-value col-10"> |
| 30 | 30 | |
| 31 | - <?php do_action( 'getpaid_billing_address_top' ); ?> |
|
| 31 | + <?php do_action('getpaid_billing_address_top'); ?> |
|
| 32 | 32 | |
| 33 | - <?php if ( ! empty( $address_row ) ) : ?> |
|
| 33 | + <?php if (!empty($address_row)) : ?> |
|
| 34 | 34 | <div class="billing-address"> |
| 35 | - <?php echo wp_kses_post( $address_row ); ?> |
|
| 35 | + <?php echo wp_kses_post($address_row); ?> |
|
| 36 | 36 | </div> |
| 37 | 37 | <?php endif; ?> |
| 38 | 38 | |
| 39 | 39 | |
| 40 | - <?php if ( ! empty( $phone ) ) : ?> |
|
| 40 | + <?php if (!empty($phone)) : ?> |
|
| 41 | 41 | <div class="billing-phone"> |
| 42 | - <?php echo wp_sprintf( esc_html__( 'Phone: %s', 'invoicing' ), esc_html( $phone ) ); ?> |
|
| 42 | + <?php echo wp_sprintf(esc_html__('Phone: %s', 'invoicing'), esc_html($phone)); ?> |
|
| 43 | 43 | </div> |
| 44 | 44 | <?php endif; ?> |
| 45 | 45 | |
| 46 | 46 | |
| 47 | - <?php if ( ! empty( $email ) ) : ?> |
|
| 47 | + <?php if (!empty($email)) : ?> |
|
| 48 | 48 | <div class="billing-email"> |
| 49 | - <?php echo wp_sprintf( esc_html__( 'Email: %s', 'invoicing' ), esc_html( $email ) ); ?> |
|
| 49 | + <?php echo wp_sprintf(esc_html__('Email: %s', 'invoicing'), esc_html($email)); ?> |
|
| 50 | 50 | </div> |
| 51 | 51 | <?php endif; ?> |
| 52 | 52 | |
| 53 | - <?php if ( ! empty( $vat_number ) ) : ?> |
|
| 53 | + <?php if (!empty($vat_number)) : ?> |
|
| 54 | 54 | <div class="vat-number"> |
| 55 | - <?php echo wp_sprintf( esc_html__( 'Vat Number: %s', 'invoicing' ), esc_html( $vat_number ) ); ?> |
|
| 55 | + <?php echo wp_sprintf(esc_html__('Vat Number: %s', 'invoicing'), esc_html($vat_number)); ?> |
|
| 56 | 56 | </div> |
| 57 | 57 | <?php endif; ?> |
| 58 | 58 | |
| 59 | - <?php if ( ! empty( $company_id ) ) : ?> |
|
| 59 | + <?php if (!empty($company_id)) : ?> |
|
| 60 | 60 | <div class="company-id"> |
| 61 | - <?php echo wp_sprintf( esc_html__( 'Company ID: %s', 'invoicing' ), esc_html( $company_id ) ); ?> |
|
| 61 | + <?php echo wp_sprintf(esc_html__('Company ID: %s', 'invoicing'), esc_html($company_id)); ?> |
|
| 62 | 62 | </div> |
| 63 | 63 | <?php endif; ?> |
| 64 | 64 | |
| 65 | - <?php do_action( 'getpaid_billing_address_bottom' ); ?> |
|
| 65 | + <?php do_action('getpaid_billing_address_bottom'); ?> |
|
| 66 | 66 | |
| 67 | 67 | </div> |
| 68 | 68 | |
@@ -8,7 +8,7 @@ discard block |
||
| 8 | 8 | * @var WPInv_Invoice $invoice |
| 9 | 9 | */ |
| 10 | 10 | |
| 11 | -defined( 'ABSPATH' ) || exit; |
|
| 11 | +defined('ABSPATH') || exit; |
|
| 12 | 12 | |
| 13 | 13 | ?> |
| 14 | 14 | |
@@ -16,48 +16,48 @@ discard block |
||
| 16 | 16 | |
| 17 | 17 | <?php |
| 18 | 18 | |
| 19 | - $actions = array(); |
|
| 19 | + $actions = array(); |
|
| 20 | 20 | |
| 21 | 21 | echo sprintf( |
| 22 | 22 | '<a href="javascript:void(0)" class="btn btn-sm m-1 d-inline-block btn-secondary invoice-action-print d-none d-lg-inline-block" onclick="window.print();">%s</a>', |
| 23 | 23 | sprintf( |
| 24 | - esc_html__( 'Print %s', 'invoicing' ), |
|
| 25 | - esc_html( ucfirst( $invoice->get_invoice_quote_type() ) ) |
|
| 24 | + esc_html__('Print %s', 'invoicing'), |
|
| 25 | + esc_html(ucfirst($invoice->get_invoice_quote_type())) |
|
| 26 | 26 | ) |
| 27 | 27 | ); |
| 28 | 28 | |
| 29 | - if ( is_user_logged_in() ) { |
|
| 29 | + if (is_user_logged_in()) { |
|
| 30 | 30 | |
| 31 | 31 | $actions[] = sprintf( |
| 32 | 32 | '<a href="%s" class="btn btn-sm btn-secondary m-1 d-inline-block invoice-action-history">%s</a>', |
| 33 | - esc_url( wpinv_get_history_page_uri( $invoice->get_post_type() ) ), |
|
| 33 | + esc_url(wpinv_get_history_page_uri($invoice->get_post_type())), |
|
| 34 | 34 | sprintf( |
| 35 | - __( '%s History', 'invoicing' ), |
|
| 36 | - esc_html( ucfirst( $invoice->get_invoice_quote_type() ) ) |
|
| 35 | + __('%s History', 'invoicing'), |
|
| 36 | + esc_html(ucfirst($invoice->get_invoice_quote_type())) |
|
| 37 | 37 | ) |
| 38 | 38 | ); |
| 39 | 39 | |
| 40 | 40 | } |
| 41 | 41 | |
| 42 | - if ( wpinv_current_user_can_manage_invoicing() ) { |
|
| 42 | + if (wpinv_current_user_can_manage_invoicing()) { |
|
| 43 | 43 | |
| 44 | 44 | $actions[] = sprintf( |
| 45 | 45 | '<a href="%s" class="btn btn-sm btn-secondary m-1 d-inline-block invoice-action-edit">%s</a>', |
| 46 | - esc_url( get_edit_post_link( $invoice->get_id() ) ), |
|
| 46 | + esc_url(get_edit_post_link($invoice->get_id())), |
|
| 47 | 47 | sprintf( |
| 48 | - __( 'Edit %s', 'invoicing' ), |
|
| 49 | - esc_html( ucfirst( $invoice->get_invoice_quote_type() ) ) |
|
| 48 | + __('Edit %s', 'invoicing'), |
|
| 49 | + esc_html(ucfirst($invoice->get_invoice_quote_type())) |
|
| 50 | 50 | ) |
| 51 | 51 | ); |
| 52 | 52 | |
| 53 | 53 | } |
| 54 | 54 | |
| 55 | - $actions = apply_filters( 'getpaid_invoice_header_right_actions_array', $actions, $invoice ); |
|
| 56 | - echo wp_kses_post( implode( '', $actions ) ); |
|
| 55 | + $actions = apply_filters('getpaid_invoice_header_right_actions_array', $actions, $invoice); |
|
| 56 | + echo wp_kses_post(implode('', $actions)); |
|
| 57 | 57 | |
| 58 | 58 | ?> |
| 59 | 59 | |
| 60 | - <?php do_action( 'wpinv_invoice_display_right_actions', $invoice ); ?> |
|
| 60 | + <?php do_action('wpinv_invoice_display_right_actions', $invoice); ?> |
|
| 61 | 61 | </div> |
| 62 | 62 | |
| 63 | 63 | <?php |
@@ -7,11 +7,11 @@ |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 10 | +defined('ABSPATH') || exit; |
|
| 11 | 11 | |
| 12 | 12 | ?> |
| 13 | 13 | <h2 class="h3 text-dark"> |
| 14 | - <?php echo esc_html( apply_filters( 'getpaid_invoice_type_label', esc_html( ucfirst( $invoice->get_invoice_quote_type() ) ), $invoice ) ); ?> |
|
| 14 | + <?php echo esc_html(apply_filters('getpaid_invoice_type_label', esc_html(ucfirst($invoice->get_invoice_quote_type())), $invoice)); ?> |
|
| 15 | 15 | </h2> |
| 16 | 16 | |
| 17 | 17 | <?php |
@@ -31,21 +31,21 @@ discard block |
||
| 31 | 31 | // Item name. |
| 32 | 32 | if ( 'name' == $column ) { |
| 33 | 33 | |
| 34 | - // Display the name. |
|
| 35 | - echo '<div class="mb-1">' . esc_html( $fee['name'] ) . '</div>'; |
|
| 34 | + // Display the name. |
|
| 35 | + echo '<div class="mb-1">' . esc_html( $fee['name'] ) . '</div>'; |
|
| 36 | 36 | |
| 37 | - // And an optional description. |
|
| 38 | - $description = empty( $fee['description'] ) ? esc_html__( 'Fee', 'invoicing' ) : esc_html( $fee['description'] ); |
|
| 39 | - echo wp_kses_post( "<small class='form-text text-muted pr-2 m-0'>$description</small>" ); |
|
| 37 | + // And an optional description. |
|
| 38 | + $description = empty( $fee['description'] ) ? esc_html__( 'Fee', 'invoicing' ) : esc_html( $fee['description'] ); |
|
| 39 | + echo wp_kses_post( "<small class='form-text text-muted pr-2 m-0'>$description</small>" ); |
|
| 40 | 40 | |
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | // Item price. |
| 44 | 44 | if ( 'price' == $column ) { |
| 45 | 45 | |
| 46 | - // Display the item price (or recurring price if this is a renewal invoice) |
|
| 47 | - if ( $invoice->is_recurring() && $invoice->is_renewal() ) { |
|
| 48 | - wpinv_the_price( $fee['recurring_fee'], $invoice->get_currency() ); |
|
| 46 | + // Display the item price (or recurring price if this is a renewal invoice) |
|
| 47 | + if ( $invoice->is_recurring() && $invoice->is_renewal() ) { |
|
| 48 | + wpinv_the_price( $fee['recurring_fee'], $invoice->get_currency() ); |
|
| 49 | 49 | } else { |
| 50 | 50 | wpinv_the_price( $fee['initial_fee'], $invoice->get_currency() ); |
| 51 | 51 | } |
@@ -53,20 +53,20 @@ discard block |
||
| 53 | 53 | |
| 54 | 54 | // Item quantity. |
| 55 | 55 | if ( 'quantity' == $column ) { |
| 56 | - echo '—'; |
|
| 56 | + echo '—'; |
|
| 57 | 57 | } |
| 58 | 58 | |
| 59 | 59 | // Item tax. |
| 60 | 60 | if ( 'tax_rate' == $column ) { |
| 61 | - echo '—'; |
|
| 61 | + echo '—'; |
|
| 62 | 62 | } |
| 63 | 63 | |
| 64 | 64 | // Item sub total. |
| 65 | 65 | if ( 'subtotal' == $column ) { |
| 66 | 66 | |
| 67 | - // Display the item price (or recurring price if this is a renewal invoice) |
|
| 68 | - if ( $invoice->is_recurring() && $invoice->is_renewal() ) { |
|
| 69 | - wpinv_the_price( $fee['recurring_fee'], $invoice->get_currency() ); |
|
| 67 | + // Display the item price (or recurring price if this is a renewal invoice) |
|
| 68 | + if ( $invoice->is_recurring() && $invoice->is_renewal() ) { |
|
| 69 | + wpinv_the_price( $fee['recurring_fee'], $invoice->get_currency() ); |
|
| 70 | 70 | } else { |
| 71 | 71 | wpinv_the_price( $fee['initial_fee'], $invoice->get_currency() ); |
| 72 | 72 | } |
@@ -9,9 +9,9 @@ discard block |
||
| 9 | 9 | * @var array $fee |
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | -defined( 'ABSPATH' ) || exit; |
|
| 12 | +defined('ABSPATH') || exit; |
|
| 13 | 13 | |
| 14 | -do_action( 'getpaid_before_invoice_fee_item', $invoice, $fee ); |
|
| 14 | +do_action('getpaid_before_invoice_fee_item', $invoice, $fee); |
|
| 15 | 15 | |
| 16 | 16 | ?> |
| 17 | 17 | |
@@ -19,64 +19,64 @@ discard block |
||
| 19 | 19 | |
| 20 | 20 | <div class="form-row row"> |
| 21 | 21 | |
| 22 | - <?php foreach ( array_keys( $columns ) as $column ) : ?> |
|
| 22 | + <?php foreach (array_keys($columns) as $column) : ?> |
|
| 23 | 23 | |
| 24 | - <div class="<?php echo 'name' == $column ? 'col-12 col-sm-6' : 'col-12 col-sm'; ?> getpaid-invoice-item-<?php echo esc_attr( $column ); ?>"> |
|
| 24 | + <div class="<?php echo 'name' == $column ? 'col-12 col-sm-6' : 'col-12 col-sm'; ?> getpaid-invoice-item-<?php echo esc_attr($column); ?>"> |
|
| 25 | 25 | |
| 26 | 26 | <?php |
| 27 | 27 | |
| 28 | 28 | // Fires before printing a fee item column. |
| 29 | - do_action( "getpaid_invoice_fee_item_before_$column", $fee, $invoice ); |
|
| 29 | + do_action("getpaid_invoice_fee_item_before_$column", $fee, $invoice); |
|
| 30 | 30 | |
| 31 | 31 | // Item name. |
| 32 | - if ( 'name' == $column ) { |
|
| 32 | + if ('name' == $column) { |
|
| 33 | 33 | |
| 34 | 34 | // Display the name. |
| 35 | - echo '<div class="mb-1">' . esc_html( $fee['name'] ) . '</div>'; |
|
| 35 | + echo '<div class="mb-1">' . esc_html($fee['name']) . '</div>'; |
|
| 36 | 36 | |
| 37 | 37 | // And an optional description. |
| 38 | - $description = empty( $fee['description'] ) ? esc_html__( 'Fee', 'invoicing' ) : esc_html( $fee['description'] ); |
|
| 39 | - echo wp_kses_post( "<small class='form-text text-muted pr-2 m-0'>$description</small>" ); |
|
| 38 | + $description = empty($fee['description']) ? esc_html__('Fee', 'invoicing') : esc_html($fee['description']); |
|
| 39 | + echo wp_kses_post("<small class='form-text text-muted pr-2 m-0'>$description</small>"); |
|
| 40 | 40 | |
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | // Item price. |
| 44 | - if ( 'price' == $column ) { |
|
| 44 | + if ('price' == $column) { |
|
| 45 | 45 | |
| 46 | 46 | // Display the item price (or recurring price if this is a renewal invoice) |
| 47 | - if ( $invoice->is_recurring() && $invoice->is_renewal() ) { |
|
| 48 | - wpinv_the_price( $fee['recurring_fee'], $invoice->get_currency() ); |
|
| 47 | + if ($invoice->is_recurring() && $invoice->is_renewal()) { |
|
| 48 | + wpinv_the_price($fee['recurring_fee'], $invoice->get_currency()); |
|
| 49 | 49 | } else { |
| 50 | - wpinv_the_price( $fee['initial_fee'], $invoice->get_currency() ); |
|
| 50 | + wpinv_the_price($fee['initial_fee'], $invoice->get_currency()); |
|
| 51 | 51 | } |
| 52 | 52 | } |
| 53 | 53 | |
| 54 | 54 | // Item quantity. |
| 55 | - if ( 'quantity' == $column ) { |
|
| 55 | + if ('quantity' == $column) { |
|
| 56 | 56 | echo '—'; |
| 57 | 57 | } |
| 58 | 58 | |
| 59 | 59 | // Item tax. |
| 60 | - if ( 'tax_rate' == $column ) { |
|
| 60 | + if ('tax_rate' == $column) { |
|
| 61 | 61 | echo '—'; |
| 62 | 62 | } |
| 63 | 63 | |
| 64 | 64 | // Item sub total. |
| 65 | - if ( 'subtotal' == $column ) { |
|
| 65 | + if ('subtotal' == $column) { |
|
| 66 | 66 | |
| 67 | 67 | // Display the item price (or recurring price if this is a renewal invoice) |
| 68 | - if ( $invoice->is_recurring() && $invoice->is_renewal() ) { |
|
| 69 | - wpinv_the_price( $fee['recurring_fee'], $invoice->get_currency() ); |
|
| 68 | + if ($invoice->is_recurring() && $invoice->is_renewal()) { |
|
| 69 | + wpinv_the_price($fee['recurring_fee'], $invoice->get_currency()); |
|
| 70 | 70 | } else { |
| 71 | - wpinv_the_price( $fee['initial_fee'], $invoice->get_currency() ); |
|
| 71 | + wpinv_the_price($fee['initial_fee'], $invoice->get_currency()); |
|
| 72 | 72 | } |
| 73 | 73 | } |
| 74 | 74 | |
| 75 | 75 | // Fires when printing a fee item column. |
| 76 | - do_action( "getpaid_invoice_fee_item_$column", $fee, $invoice ); |
|
| 76 | + do_action("getpaid_invoice_fee_item_$column", $fee, $invoice); |
|
| 77 | 77 | |
| 78 | 78 | // Fires after printing a fee item column. |
| 79 | - do_action( "getpaid_invoice_fee_item_after_$column", $fee, $invoice ); |
|
| 79 | + do_action("getpaid_invoice_fee_item_after_$column", $fee, $invoice); |
|
| 80 | 80 | |
| 81 | 81 | ?> |
| 82 | 82 | |
@@ -64,8 +64,8 @@ |
||
| 64 | 64 | $description = wpinv_get_gateway_description( $gateway ); |
| 65 | 65 | |
| 66 | 66 | if ( wpinv_is_test_mode( $gateway ) ) { |
| 67 | - $sandbox_notice = apply_filters( "getpaid_{$gateway}_sandbox_notice", __( 'SANDBOX ENABLED: No real payments will occur.', 'invoicing' ) ); |
|
| 68 | - $description = "$description $sandbox_notice"; |
|
| 67 | + $sandbox_notice = apply_filters( "getpaid_{$gateway}_sandbox_notice", __( 'SANDBOX ENABLED: No real payments will occur.', 'invoicing' ) ); |
|
| 68 | + $description = "$description $sandbox_notice"; |
|
| 69 | 69 | } |
| 70 | 70 | |
| 71 | 71 | echo wp_kses_post( wpautop( $description ) ); |
@@ -7,45 +7,45 @@ discard block |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 10 | +defined('ABSPATH') || exit; |
|
| 11 | 11 | |
| 12 | 12 | // The payment methods select title. |
| 13 | -if ( empty( $text ) ) { |
|
| 14 | - $text = __( 'Select Payment Method', 'invoicing' ); |
|
| 13 | +if (empty($text)) { |
|
| 14 | + $text = __('Select Payment Method', 'invoicing'); |
|
| 15 | 15 | } |
| 16 | 16 | |
| 17 | 17 | // An array of active payment methods. |
| 18 | -$gateways = wpinv_get_enabled_payment_gateways( true ); |
|
| 18 | +$gateways = wpinv_get_enabled_payment_gateways(true); |
|
| 19 | 19 | |
| 20 | 20 | // The current invoice id. |
| 21 | 21 | $invoice_id = 0; |
| 22 | 22 | $chosen_gateway = wpinv_get_default_gateway(); |
| 23 | 23 | |
| 24 | -if ( ! empty( $form->invoice ) ) { |
|
| 24 | +if (!empty($form->invoice)) { |
|
| 25 | 25 | $invoice_id = $form->invoice->get_id(); |
| 26 | 26 | $chosen_gateway = $form->invoice->get_gateway(); |
| 27 | 27 | } |
| 28 | 28 | |
| 29 | 29 | ?> |
| 30 | 30 | |
| 31 | - <?php do_action( 'getpaid_before_payment_form_gateway_select', $form ); ?> |
|
| 31 | + <?php do_action('getpaid_before_payment_form_gateway_select', $form); ?> |
|
| 32 | 32 | <div class="mt-4 mb-4 getpaid-gateways"> |
| 33 | 33 | |
| 34 | - <?php do_action( 'wpinv_payment_mode_top', $invoice_id, $chosen_gateway, $gateways, $form ); ?> |
|
| 34 | + <?php do_action('wpinv_payment_mode_top', $invoice_id, $chosen_gateway, $gateways, $form); ?> |
|
| 35 | 35 | |
| 36 | 36 | <div class="getpaid-select-gateway-title-div"> |
| 37 | - <h6><?php echo esc_html( $text ); ?></h6> |
|
| 37 | + <h6><?php echo esc_html($text); ?></h6> |
|
| 38 | 38 | </div> |
| 39 | 39 | |
| 40 | 40 | <div class="getpaid-available-gateways-div"> |
| 41 | 41 | |
| 42 | - <?php foreach ( array_keys( $gateways ) as $gateway ) : ?> |
|
| 42 | + <?php foreach (array_keys($gateways) as $gateway) : ?> |
|
| 43 | 43 | |
| 44 | - <div class="pt-1 pb-1 getpaid-gateway getpaid-gateway-<?php echo esc_attr( $gateway ); ?>" data-checkout-label='<?php echo esc_attr( apply_filters( "getpaid_gateway_{$gateway}_checkout_button_label", '' ) ); ?>'> |
|
| 44 | + <div class="pt-1 pb-1 getpaid-gateway getpaid-gateway-<?php echo esc_attr($gateway); ?>" data-checkout-label='<?php echo esc_attr(apply_filters("getpaid_gateway_{$gateway}_checkout_button_label", '')); ?>'> |
|
| 45 | 45 | |
| 46 | 46 | <label class="form-label d-block w-100 getpaid-gateway-radio"> |
| 47 | - <input type="radio" value="<?php echo esc_attr( $gateway ); ?>" <?php checked( $gateway, $chosen_gateway ); ?> name="wpi-gateway"> |
|
| 48 | - <span><?php echo esc_html( wpinv_get_gateway_checkout_label( $gateway ) ); ?></span> |
|
| 47 | + <input type="radio" value="<?php echo esc_attr($gateway); ?>" <?php checked($gateway, $chosen_gateway); ?> name="wpi-gateway"> |
|
| 48 | + <span><?php echo esc_html(wpinv_get_gateway_checkout_label($gateway)); ?></span> |
|
| 49 | 49 | </label> |
| 50 | 50 | |
| 51 | 51 | </div> |
@@ -56,22 +56,22 @@ discard block |
||
| 56 | 56 | |
| 57 | 57 | <div class="getpaid-gateway-descriptions-div"> |
| 58 | 58 | |
| 59 | - <?php foreach ( array_keys( $gateways ) as $gateway ) : ?> |
|
| 59 | + <?php foreach (array_keys($gateways) as $gateway) : ?> |
|
| 60 | 60 | |
| 61 | - <div class="my-2 p-3 bg-light border getpaid-gateway-description getpaid-description-<?php echo esc_attr( $gateway ); ?>" style="display: none;"> |
|
| 61 | + <div class="my-2 p-3 bg-light border getpaid-gateway-description getpaid-description-<?php echo esc_attr($gateway); ?>" style="display: none;"> |
|
| 62 | 62 | <?php |
| 63 | 63 | |
| 64 | - $description = wpinv_get_gateway_description( $gateway ); |
|
| 64 | + $description = wpinv_get_gateway_description($gateway); |
|
| 65 | 65 | |
| 66 | - if ( wpinv_is_test_mode( $gateway ) ) { |
|
| 67 | - $sandbox_notice = apply_filters( "getpaid_{$gateway}_sandbox_notice", __( 'SANDBOX ENABLED: No real payments will occur.', 'invoicing' ) ); |
|
| 66 | + if (wpinv_is_test_mode($gateway)) { |
|
| 67 | + $sandbox_notice = apply_filters("getpaid_{$gateway}_sandbox_notice", __('SANDBOX ENABLED: No real payments will occur.', 'invoicing')); |
|
| 68 | 68 | $description = "$description $sandbox_notice"; |
| 69 | 69 | } |
| 70 | 70 | |
| 71 | - echo wp_kses_post( wpautop( $description ) ); |
|
| 71 | + echo wp_kses_post(wpautop($description)); |
|
| 72 | 72 | |
| 73 | - do_action( 'wpinv_' . $gateway . '_checkout_fields', $invoice_id ); |
|
| 74 | - do_action( 'wpinv_' . $gateway . '_cc_form', $invoice_id, $form ); |
|
| 73 | + do_action('wpinv_' . $gateway . '_checkout_fields', $invoice_id); |
|
| 74 | + do_action('wpinv_' . $gateway . '_cc_form', $invoice_id, $form); |
|
| 75 | 75 | |
| 76 | 76 | ?> |
| 77 | 77 | </div> |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | <?php |
| 85 | 85 | aui()->alert( |
| 86 | 86 | array( |
| 87 | - 'content' => __( 'None of the available payment gateways support purchasing recurring items.', 'invoicing' ), |
|
| 87 | + 'content' => __('None of the available payment gateways support purchasing recurring items.', 'invoicing'), |
|
| 88 | 88 | 'type' => 'danger', |
| 89 | 89 | ), |
| 90 | 90 | true |
@@ -96,7 +96,7 @@ discard block |
||
| 96 | 96 | <?php |
| 97 | 97 | aui()->alert( |
| 98 | 98 | array( |
| 99 | - 'content' => __( 'None of the available payment gateways support purchasing multiple subscriptions in a single order.', 'invoicing' ), |
|
| 99 | + 'content' => __('None of the available payment gateways support purchasing multiple subscriptions in a single order.', 'invoicing'), |
|
| 100 | 100 | 'type' => 'danger', |
| 101 | 101 | ), |
| 102 | 102 | true |
@@ -108,7 +108,7 @@ discard block |
||
| 108 | 108 | <?php |
| 109 | 109 | aui()->alert( |
| 110 | 110 | array( |
| 111 | - 'content' => __( 'None of the available payment gateways support purchasing multiple subscriptions with different billing schedules in a single order.', 'invoicing' ), |
|
| 111 | + 'content' => __('None of the available payment gateways support purchasing multiple subscriptions with different billing schedules in a single order.', 'invoicing'), |
|
| 112 | 112 | 'type' => 'danger', |
| 113 | 113 | ), |
| 114 | 114 | true |
@@ -120,7 +120,7 @@ discard block |
||
| 120 | 120 | <?php |
| 121 | 121 | aui()->alert( |
| 122 | 122 | array( |
| 123 | - 'content' => __( 'There is no active payment gateway available to process your request.', 'invoicing' ), |
|
| 123 | + 'content' => __('There is no active payment gateway available to process your request.', 'invoicing'), |
|
| 124 | 124 | 'type' => 'danger', |
| 125 | 125 | ), |
| 126 | 126 | true |
@@ -128,7 +128,7 @@ discard block |
||
| 128 | 128 | ?> |
| 129 | 129 | </div> |
| 130 | 130 | |
| 131 | - <?php do_action( 'wpinv_payment_mode_bottom', $invoice_id, $chosen_gateway, $gateways, $form ); ?> |
|
| 131 | + <?php do_action('wpinv_payment_mode_bottom', $invoice_id, $chosen_gateway, $gateways, $form); ?> |
|
| 132 | 132 | |
| 133 | 133 | </div> |
| 134 | - <?php do_action( 'getpaid_after_payment_form_gateway_select', $form ); ?> |
|
| 134 | + <?php do_action('getpaid_after_payment_form_gateway_select', $form); ?> |
|
@@ -7,8 +7,8 @@ |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 10 | +defined('ABSPATH') || exit; |
|
| 11 | 11 | |
| 12 | -if ( ! empty( $element['text'] ) ) { |
|
| 13 | - echo '<p>' . wp_kses_post( trim( $element['text'] ) ) . '</p>'; |
|
| 12 | +if (!empty($element['text'])) { |
|
| 13 | + echo '<p>' . wp_kses_post(trim($element['text'])) . '</p>'; |
|
| 14 | 14 | } |
@@ -7,11 +7,11 @@ |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 10 | +defined('ABSPATH') || exit; |
|
| 11 | 11 | |
| 12 | -$heading_tag = isset( $element['level'] ) ? trim( sanitize_key( $element['level'] ) ) : 'h3'; |
|
| 13 | -$text = isset( $element['text'] ) ? trim( $element['text'] ) : ''; |
|
| 12 | +$heading_tag = isset($element['level']) ? trim(sanitize_key($element['level'])) : 'h3'; |
|
| 13 | +$text = isset($element['text']) ? trim($element['text']) : ''; |
|
| 14 | 14 | |
| 15 | -if ( ! empty( $text ) ) { |
|
| 16 | - echo wp_kses_post( "<$heading_tag>$text</$heading_tag>" ); |
|
| 15 | +if (!empty($text)) { |
|
| 16 | + echo wp_kses_post("<$heading_tag>$text</$heading_tag>"); |
|
| 17 | 17 | } |
@@ -1,11 +1,11 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | // don't load directly |
| 3 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 4 | - die( '-1' ); |
|
| 3 | +if (!defined('ABSPATH')) { |
|
| 4 | + die('-1'); |
|
| 5 | 5 | } |
| 6 | 6 | |
| 7 | -$email_footer = apply_filters( 'wpinv_email_footer_text', wpinv_get_option( 'email_footer_text', get_bloginfo( 'name', 'display' ) . ' - ' . __( 'Powered by GetPaid', 'invoicing' ) ) ); |
|
| 8 | -$email_footer = $email_footer ? wp_kses_post( wpautop( wptexturize( $email_footer ) ) ) : ''; |
|
| 7 | +$email_footer = apply_filters('wpinv_email_footer_text', wpinv_get_option('email_footer_text', get_bloginfo('name', 'display') . ' - ' . __('Powered by GetPaid', 'invoicing'))); |
|
| 8 | +$email_footer = $email_footer ? wp_kses_post(wpautop(wptexturize($email_footer))) : ''; |
|
| 9 | 9 | ?> |
| 10 | 10 | </div> |
| 11 | 11 | </td> |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | <table border="0" cellpadding="10" cellspacing="0" width="100%"> |
| 28 | 28 | <tr> |
| 29 | 29 | <td colspan="2" valign="middle" id="credit"> |
| 30 | - <?php echo wp_kses_post( $email_footer ); ?> |
|
| 30 | + <?php echo wp_kses_post($email_footer); ?> |
|
| 31 | 31 | </td> |
| 32 | 32 | </tr> |
| 33 | 33 | </table> |