@@ -5,106 +5,106 @@ discard block |
||
| 5 | 5 | */ |
| 6 | 6 | |
| 7 | 7 | if ( ! defined( 'ABSPATH' ) ) { |
| 8 | - exit; // Exit if accessed directly |
|
| 8 | + exit; // Exit if accessed directly |
|
| 9 | 9 | } |
| 10 | 10 | |
| 11 | 11 | if ( ! class_exists( 'GetPaid_Admin_Profile', false ) ) : |
| 12 | 12 | |
| 13 | - /** |
|
| 14 | - * GetPaid_Admin_Profile Class. |
|
| 15 | - */ |
|
| 16 | - class GetPaid_Admin_Profile { |
|
| 17 | - |
|
| 18 | - /** |
|
| 19 | - * Hook in tabs. |
|
| 20 | - */ |
|
| 21 | - public function __construct() { |
|
| 22 | - add_action( 'show_user_profile', array( $this, 'add_customer_meta_fields' ), 100 ); |
|
| 23 | - add_action( 'edit_user_profile', array( $this, 'add_customer_meta_fields' ), 100 ); |
|
| 24 | - |
|
| 25 | - add_action( 'personal_options_update', array( $this, 'save_customer_meta_fields' ) ); |
|
| 26 | - add_action( 'edit_user_profile_update', array( $this, 'save_customer_meta_fields' ) ); |
|
| 27 | - } |
|
| 28 | - |
|
| 29 | - /** |
|
| 30 | - * Get Address Fields for the edit user pages. |
|
| 31 | - * |
|
| 32 | - * @return array Fields to display which are filtered through invoicing_customer_meta_fields before being returned |
|
| 33 | - */ |
|
| 34 | - public function get_customer_meta_fields() { |
|
| 35 | - |
|
| 36 | - $show_fields = apply_filters( |
|
| 37 | - 'getpaid_customer_meta_fields', |
|
| 38 | - array( |
|
| 39 | - 'billing' => array( |
|
| 40 | - 'title' => __( 'Billing Details (GetPaid)', 'invoicing' ), |
|
| 41 | - 'fields' => array( |
|
| 42 | - '_wpinv_first_name' => array( |
|
| 43 | - 'label' => __( 'First name', 'invoicing' ), |
|
| 44 | - 'description' => '', |
|
| 45 | - ), |
|
| 46 | - '_wpinv_last_name' => array( |
|
| 47 | - 'label' => __( 'Last name', 'invoicing' ), |
|
| 48 | - 'description' => '', |
|
| 49 | - ), |
|
| 50 | - '_wpinv_company' => array( |
|
| 51 | - 'label' => __( 'Company', 'invoicing' ), |
|
| 52 | - 'description' => '', |
|
| 53 | - ), |
|
| 54 | - '_wpinv_address' => array( |
|
| 55 | - 'label' => __( 'Address', 'invoicing' ), |
|
| 56 | - 'description' => '', |
|
| 57 | - ), |
|
| 58 | - '_wpinv_city' => array( |
|
| 59 | - 'label' => __( 'City', 'invoicing' ), |
|
| 60 | - 'description' => '', |
|
| 61 | - ), |
|
| 62 | - '_wpinv_zip' => array( |
|
| 63 | - 'label' => __( 'Postcode / ZIP', 'invoicing' ), |
|
| 64 | - 'description' => '', |
|
| 65 | - ), |
|
| 66 | - '_wpinv_country' => array( |
|
| 67 | - 'label' => __( 'Country / Region', 'invoicing' ), |
|
| 68 | - 'description' => '', |
|
| 69 | - 'class' => 'getpaid_js_field-country', |
|
| 70 | - 'type' => 'select', |
|
| 71 | - 'options' => array( '' => __( 'Select a country / region…', 'invoicing' ) ) + wpinv_get_country_list(), |
|
| 72 | - ), |
|
| 73 | - '_wpinv_state' => array( |
|
| 74 | - 'label' => __( 'State / County', 'invoicing' ), |
|
| 75 | - 'description' => __( 'State / County or state code', 'invoicing' ), |
|
| 76 | - 'class' => 'getpaid_js_field-state regular-text', |
|
| 77 | - ), |
|
| 78 | - '_wpinv_phone' => array( |
|
| 79 | - 'label' => __( 'Phone', 'invoicing' ), |
|
| 80 | - 'description' => '', |
|
| 81 | - ), |
|
| 82 | - '_wpinv_vat_number' => array( |
|
| 83 | - 'label' => __( 'VAT Number', 'invoicing' ), |
|
| 84 | - 'description' => '', |
|
| 85 | - ), |
|
| 86 | - ), |
|
| 87 | - ), |
|
| 88 | - ) |
|
| 89 | - ); |
|
| 90 | - return $show_fields; |
|
| 91 | - } |
|
| 92 | - |
|
| 93 | - /** |
|
| 94 | - * Show Address Fields on edit user pages. |
|
| 95 | - * |
|
| 96 | - * @param WP_User $user |
|
| 97 | - */ |
|
| 98 | - public function add_customer_meta_fields( $user ) { |
|
| 99 | - |
|
| 100 | - if ( ! apply_filters( 'getpaid_current_user_can_edit_customer_meta_fields', current_user_can( 'manage_options' ), $user->ID ) ) { |
|
| 101 | - return; |
|
| 102 | - } |
|
| 103 | - |
|
| 104 | - $show_fields = $this->get_customer_meta_fields(); |
|
| 105 | - |
|
| 106 | - foreach ( $show_fields as $fieldset_key => $fieldset ) : |
|
| 107 | - ?> |
|
| 13 | + /** |
|
| 14 | + * GetPaid_Admin_Profile Class. |
|
| 15 | + */ |
|
| 16 | + class GetPaid_Admin_Profile { |
|
| 17 | + |
|
| 18 | + /** |
|
| 19 | + * Hook in tabs. |
|
| 20 | + */ |
|
| 21 | + public function __construct() { |
|
| 22 | + add_action( 'show_user_profile', array( $this, 'add_customer_meta_fields' ), 100 ); |
|
| 23 | + add_action( 'edit_user_profile', array( $this, 'add_customer_meta_fields' ), 100 ); |
|
| 24 | + |
|
| 25 | + add_action( 'personal_options_update', array( $this, 'save_customer_meta_fields' ) ); |
|
| 26 | + add_action( 'edit_user_profile_update', array( $this, 'save_customer_meta_fields' ) ); |
|
| 27 | + } |
|
| 28 | + |
|
| 29 | + /** |
|
| 30 | + * Get Address Fields for the edit user pages. |
|
| 31 | + * |
|
| 32 | + * @return array Fields to display which are filtered through invoicing_customer_meta_fields before being returned |
|
| 33 | + */ |
|
| 34 | + public function get_customer_meta_fields() { |
|
| 35 | + |
|
| 36 | + $show_fields = apply_filters( |
|
| 37 | + 'getpaid_customer_meta_fields', |
|
| 38 | + array( |
|
| 39 | + 'billing' => array( |
|
| 40 | + 'title' => __( 'Billing Details (GetPaid)', 'invoicing' ), |
|
| 41 | + 'fields' => array( |
|
| 42 | + '_wpinv_first_name' => array( |
|
| 43 | + 'label' => __( 'First name', 'invoicing' ), |
|
| 44 | + 'description' => '', |
|
| 45 | + ), |
|
| 46 | + '_wpinv_last_name' => array( |
|
| 47 | + 'label' => __( 'Last name', 'invoicing' ), |
|
| 48 | + 'description' => '', |
|
| 49 | + ), |
|
| 50 | + '_wpinv_company' => array( |
|
| 51 | + 'label' => __( 'Company', 'invoicing' ), |
|
| 52 | + 'description' => '', |
|
| 53 | + ), |
|
| 54 | + '_wpinv_address' => array( |
|
| 55 | + 'label' => __( 'Address', 'invoicing' ), |
|
| 56 | + 'description' => '', |
|
| 57 | + ), |
|
| 58 | + '_wpinv_city' => array( |
|
| 59 | + 'label' => __( 'City', 'invoicing' ), |
|
| 60 | + 'description' => '', |
|
| 61 | + ), |
|
| 62 | + '_wpinv_zip' => array( |
|
| 63 | + 'label' => __( 'Postcode / ZIP', 'invoicing' ), |
|
| 64 | + 'description' => '', |
|
| 65 | + ), |
|
| 66 | + '_wpinv_country' => array( |
|
| 67 | + 'label' => __( 'Country / Region', 'invoicing' ), |
|
| 68 | + 'description' => '', |
|
| 69 | + 'class' => 'getpaid_js_field-country', |
|
| 70 | + 'type' => 'select', |
|
| 71 | + 'options' => array( '' => __( 'Select a country / region…', 'invoicing' ) ) + wpinv_get_country_list(), |
|
| 72 | + ), |
|
| 73 | + '_wpinv_state' => array( |
|
| 74 | + 'label' => __( 'State / County', 'invoicing' ), |
|
| 75 | + 'description' => __( 'State / County or state code', 'invoicing' ), |
|
| 76 | + 'class' => 'getpaid_js_field-state regular-text', |
|
| 77 | + ), |
|
| 78 | + '_wpinv_phone' => array( |
|
| 79 | + 'label' => __( 'Phone', 'invoicing' ), |
|
| 80 | + 'description' => '', |
|
| 81 | + ), |
|
| 82 | + '_wpinv_vat_number' => array( |
|
| 83 | + 'label' => __( 'VAT Number', 'invoicing' ), |
|
| 84 | + 'description' => '', |
|
| 85 | + ), |
|
| 86 | + ), |
|
| 87 | + ), |
|
| 88 | + ) |
|
| 89 | + ); |
|
| 90 | + return $show_fields; |
|
| 91 | + } |
|
| 92 | + |
|
| 93 | + /** |
|
| 94 | + * Show Address Fields on edit user pages. |
|
| 95 | + * |
|
| 96 | + * @param WP_User $user |
|
| 97 | + */ |
|
| 98 | + public function add_customer_meta_fields( $user ) { |
|
| 99 | + |
|
| 100 | + if ( ! apply_filters( 'getpaid_current_user_can_edit_customer_meta_fields', current_user_can( 'manage_options' ), $user->ID ) ) { |
|
| 101 | + return; |
|
| 102 | + } |
|
| 103 | + |
|
| 104 | + $show_fields = $this->get_customer_meta_fields(); |
|
| 105 | + |
|
| 106 | + foreach ( $show_fields as $fieldset_key => $fieldset ) : |
|
| 107 | + ?> |
|
| 108 | 108 | <h2><?php echo $fieldset['title']; ?></h2> |
| 109 | 109 | <table class="form-table" id="<?php echo esc_attr( 'getpaid-fieldset-' . $fieldset_key ); ?>"> |
| 110 | 110 | <?php foreach ( $fieldset['fields'] as $key => $field ) : ?> |
@@ -116,9 +116,9 @@ discard block |
||
| 116 | 116 | <?php if ( ! empty( $field['type'] ) && 'select' === $field['type'] ) : ?> |
| 117 | 117 | <select name="<?php echo esc_attr( $key ); ?>" id="<?php echo esc_attr( $key ); ?>" class="<?php echo esc_attr( $field['class'] ); ?> wpi_select2" style="width: 25em;"> |
| 118 | 118 | <?php |
| 119 | - $selected = esc_attr( get_user_meta( $user->ID, $key, true ) ); |
|
| 120 | - foreach ( $field['options'] as $option_key => $option_value ) : |
|
| 121 | - ?> |
|
| 119 | + $selected = esc_attr( get_user_meta( $user->ID, $key, true ) ); |
|
| 120 | + foreach ( $field['options'] as $option_key => $option_value ) : |
|
| 121 | + ?> |
|
| 122 | 122 | <option value="<?php echo esc_attr( $option_key ); ?>" <?php selected( $selected, $option_key, true ); ?>><?php echo esc_html( $option_value ); ?></option> |
| 123 | 123 | <?php endforeach; ?> |
| 124 | 124 | </select> |
@@ -133,52 +133,52 @@ discard block |
||
| 133 | 133 | <?php endforeach; ?> |
| 134 | 134 | </table> |
| 135 | 135 | <?php |
| 136 | - endforeach; |
|
| 137 | - } |
|
| 138 | - |
|
| 139 | - /** |
|
| 140 | - * Save Address Fields on edit user pages. |
|
| 141 | - * |
|
| 142 | - * @param int $user_id User ID of the user being saved |
|
| 143 | - */ |
|
| 144 | - public function save_customer_meta_fields( $user_id ) { |
|
| 145 | - if ( ! apply_filters( 'getpaid_current_user_can_edit_customer_meta_fields', current_user_can( 'manage_options' ), $user_id ) ) { |
|
| 146 | - return; |
|
| 147 | - } |
|
| 148 | - |
|
| 149 | - $save_fields = $this->get_customer_meta_fields(); |
|
| 150 | - |
|
| 151 | - foreach ( $save_fields as $fieldset ) { |
|
| 152 | - |
|
| 153 | - foreach ( $fieldset['fields'] as $key => $field ) { |
|
| 154 | - |
|
| 155 | - if ( isset( $field['type'] ) && 'checkbox' === $field['type'] ) { |
|
| 156 | - update_user_meta( $user_id, $key, isset( $_POST[ $key ] ) ); |
|
| 157 | - } elseif ( isset( $_POST[ $key ] ) ) { |
|
| 158 | - update_user_meta( $user_id, $key, wpinv_clean( $_POST[ $key ] ) ); |
|
| 159 | - } |
|
| 160 | - } |
|
| 161 | - } |
|
| 162 | - } |
|
| 163 | - |
|
| 164 | - /** |
|
| 165 | - * Get user meta for a given key, with fallbacks to core user info for pre-existing fields. |
|
| 166 | - * |
|
| 167 | - * @since 3.1.0 |
|
| 168 | - * @param int $user_id User ID of the user being edited |
|
| 169 | - * @param string $key Key for user meta field |
|
| 170 | - * @return string |
|
| 171 | - */ |
|
| 172 | - protected function get_user_meta( $user_id, $key ) { |
|
| 173 | - $value = get_user_meta( $user_id, $key, true ); |
|
| 174 | - $existing_fields = array( '_wpinv_first_name', '_wpinv_last_name' ); |
|
| 175 | - if ( ! $value && in_array( $key, $existing_fields ) ) { |
|
| 176 | - $value = get_user_meta( $user_id, str_replace( '_wpinv_', '', $key ), true ); |
|
| 177 | - } |
|
| 178 | - |
|
| 179 | - return $value; |
|
| 180 | - } |
|
| 181 | - } |
|
| 136 | + endforeach; |
|
| 137 | + } |
|
| 138 | + |
|
| 139 | + /** |
|
| 140 | + * Save Address Fields on edit user pages. |
|
| 141 | + * |
|
| 142 | + * @param int $user_id User ID of the user being saved |
|
| 143 | + */ |
|
| 144 | + public function save_customer_meta_fields( $user_id ) { |
|
| 145 | + if ( ! apply_filters( 'getpaid_current_user_can_edit_customer_meta_fields', current_user_can( 'manage_options' ), $user_id ) ) { |
|
| 146 | + return; |
|
| 147 | + } |
|
| 148 | + |
|
| 149 | + $save_fields = $this->get_customer_meta_fields(); |
|
| 150 | + |
|
| 151 | + foreach ( $save_fields as $fieldset ) { |
|
| 152 | + |
|
| 153 | + foreach ( $fieldset['fields'] as $key => $field ) { |
|
| 154 | + |
|
| 155 | + if ( isset( $field['type'] ) && 'checkbox' === $field['type'] ) { |
|
| 156 | + update_user_meta( $user_id, $key, isset( $_POST[ $key ] ) ); |
|
| 157 | + } elseif ( isset( $_POST[ $key ] ) ) { |
|
| 158 | + update_user_meta( $user_id, $key, wpinv_clean( $_POST[ $key ] ) ); |
|
| 159 | + } |
|
| 160 | + } |
|
| 161 | + } |
|
| 162 | + } |
|
| 163 | + |
|
| 164 | + /** |
|
| 165 | + * Get user meta for a given key, with fallbacks to core user info for pre-existing fields. |
|
| 166 | + * |
|
| 167 | + * @since 3.1.0 |
|
| 168 | + * @param int $user_id User ID of the user being edited |
|
| 169 | + * @param string $key Key for user meta field |
|
| 170 | + * @return string |
|
| 171 | + */ |
|
| 172 | + protected function get_user_meta( $user_id, $key ) { |
|
| 173 | + $value = get_user_meta( $user_id, $key, true ); |
|
| 174 | + $existing_fields = array( '_wpinv_first_name', '_wpinv_last_name' ); |
|
| 175 | + if ( ! $value && in_array( $key, $existing_fields ) ) { |
|
| 176 | + $value = get_user_meta( $user_id, str_replace( '_wpinv_', '', $key ), true ); |
|
| 177 | + } |
|
| 178 | + |
|
| 179 | + return $value; |
|
| 180 | + } |
|
| 181 | + } |
|
| 182 | 182 | |
| 183 | 183 | endif; |
| 184 | 184 | |
@@ -11,121 +11,121 @@ |
||
| 11 | 11 | */ |
| 12 | 12 | class GetPaid_Cache_Helper { |
| 13 | 13 | |
| 14 | - /** |
|
| 15 | - * Transients to delete on shutdown. |
|
| 16 | - * |
|
| 17 | - * @var array Array of transient keys. |
|
| 18 | - */ |
|
| 19 | - private static $delete_transients = array(); |
|
| 20 | - |
|
| 21 | - /** |
|
| 22 | - * Hook in methods. |
|
| 23 | - */ |
|
| 24 | - public static function init() { |
|
| 25 | - add_action( 'shutdown', array( __CLASS__, 'delete_transients_on_shutdown' ), 10 ); |
|
| 26 | - add_action( 'wp', array( __CLASS__, 'prevent_caching' ) ); |
|
| 27 | - } |
|
| 28 | - |
|
| 29 | - /** |
|
| 30 | - * Add a transient to delete on shutdown. |
|
| 31 | - * |
|
| 32 | - * @since 1.0.19 |
|
| 33 | - * @param string|array $keys Transient key or keys. |
|
| 34 | - */ |
|
| 35 | - public static function queue_delete_transient( $keys ) { |
|
| 36 | - self::$delete_transients = array_unique( array_merge( is_array( $keys ) ? $keys : array( $keys ), self::$delete_transients ) ); |
|
| 37 | - } |
|
| 38 | - |
|
| 39 | - /** |
|
| 40 | - * Transients that don't need to be cleaned right away can be deleted on shutdown to avoid repetition. |
|
| 41 | - * |
|
| 42 | - * @since 1.0.19 |
|
| 43 | - */ |
|
| 44 | - public static function delete_transients_on_shutdown() { |
|
| 45 | - if ( self::$delete_transients ) { |
|
| 46 | - foreach ( self::$delete_transients as $key ) { |
|
| 47 | - delete_transient( $key ); |
|
| 48 | - } |
|
| 49 | - self::$delete_transients = array(); |
|
| 50 | - } |
|
| 51 | - } |
|
| 52 | - |
|
| 53 | - /** |
|
| 54 | - * Get prefix for use with wp_cache_set. Allows all cache in a group to be invalidated at once. |
|
| 55 | - * |
|
| 56 | - * @param string $group Group of cache to get. |
|
| 57 | - * @return string |
|
| 58 | - */ |
|
| 59 | - public static function get_cache_prefix( $group ) { |
|
| 60 | - // Get cache key. |
|
| 61 | - $prefix = wp_cache_get( 'getpaid_' . $group . '_cache_prefix', $group ); |
|
| 62 | - |
|
| 63 | - if ( false === $prefix ) { |
|
| 64 | - $prefix = microtime(); |
|
| 65 | - wp_cache_set( 'getpaid_' . $group . '_cache_prefix', $prefix, $group ); |
|
| 66 | - } |
|
| 67 | - |
|
| 68 | - return 'getpaid_cache_' . $prefix . '_'; |
|
| 69 | - } |
|
| 70 | - |
|
| 71 | - /** |
|
| 72 | - * Invalidate cache group. |
|
| 73 | - * |
|
| 74 | - * @param string $group Group of cache to clear. |
|
| 75 | - * @since 1.0.19 |
|
| 76 | - */ |
|
| 77 | - public static function invalidate_cache_group( $group ) { |
|
| 78 | - wp_cache_set( 'getpaid_' . $group . '_cache_prefix', microtime(), $group ); |
|
| 79 | - } |
|
| 80 | - |
|
| 81 | - /** |
|
| 82 | - * Prevent caching on certain pages |
|
| 83 | - */ |
|
| 84 | - public static function prevent_caching() { |
|
| 85 | - if ( ! is_blog_installed() ) { |
|
| 86 | - return; |
|
| 87 | - } |
|
| 88 | - |
|
| 89 | - if ( wpinv_is_checkout() || wpinv_is_success_page() || wpinv_is_invoice_history_page() || wpinv_is_subscriptions_history_page() ) { |
|
| 90 | - self::set_nocache_constants(); |
|
| 91 | - nocache_headers(); |
|
| 92 | - } |
|
| 93 | - |
|
| 94 | - } |
|
| 95 | - |
|
| 96 | - /** |
|
| 97 | - * Get transient version. |
|
| 98 | - * |
|
| 99 | - * |
|
| 100 | - * @param string $group Name for the group of transients we need to invalidate. |
|
| 101 | - * @param boolean $refresh true to force a new version. |
|
| 102 | - * @return string transient version based on time(), 10 digits. |
|
| 103 | - */ |
|
| 104 | - public static function get_transient_version( $group, $refresh = false ) { |
|
| 105 | - $transient_name = $group . '-transient-version'; |
|
| 106 | - $transient_value = get_transient( $transient_name ); |
|
| 107 | - |
|
| 108 | - if ( false === $transient_value || true === $refresh ) { |
|
| 109 | - $transient_value = (string) time(); |
|
| 110 | - |
|
| 111 | - set_transient( $transient_name, $transient_value ); |
|
| 112 | - } |
|
| 113 | - |
|
| 114 | - return $transient_value; |
|
| 115 | - } |
|
| 116 | - |
|
| 117 | - /** |
|
| 118 | - * Set constants to prevent caching by some plugins. |
|
| 119 | - * |
|
| 120 | - * @param mixed $return Value to return. Previously hooked into a filter. |
|
| 121 | - * @return mixed |
|
| 122 | - */ |
|
| 123 | - public static function set_nocache_constants( $return = true ) { |
|
| 124 | - getpaid_maybe_define_constant( 'DONOTCACHEPAGE', true ); |
|
| 125 | - getpaid_maybe_define_constant( 'DONOTCACHEOBJECT', true ); |
|
| 126 | - getpaid_maybe_define_constant( 'DONOTCACHEDB', true ); |
|
| 127 | - return $return; |
|
| 128 | - } |
|
| 14 | + /** |
|
| 15 | + * Transients to delete on shutdown. |
|
| 16 | + * |
|
| 17 | + * @var array Array of transient keys. |
|
| 18 | + */ |
|
| 19 | + private static $delete_transients = array(); |
|
| 20 | + |
|
| 21 | + /** |
|
| 22 | + * Hook in methods. |
|
| 23 | + */ |
|
| 24 | + public static function init() { |
|
| 25 | + add_action( 'shutdown', array( __CLASS__, 'delete_transients_on_shutdown' ), 10 ); |
|
| 26 | + add_action( 'wp', array( __CLASS__, 'prevent_caching' ) ); |
|
| 27 | + } |
|
| 28 | + |
|
| 29 | + /** |
|
| 30 | + * Add a transient to delete on shutdown. |
|
| 31 | + * |
|
| 32 | + * @since 1.0.19 |
|
| 33 | + * @param string|array $keys Transient key or keys. |
|
| 34 | + */ |
|
| 35 | + public static function queue_delete_transient( $keys ) { |
|
| 36 | + self::$delete_transients = array_unique( array_merge( is_array( $keys ) ? $keys : array( $keys ), self::$delete_transients ) ); |
|
| 37 | + } |
|
| 38 | + |
|
| 39 | + /** |
|
| 40 | + * Transients that don't need to be cleaned right away can be deleted on shutdown to avoid repetition. |
|
| 41 | + * |
|
| 42 | + * @since 1.0.19 |
|
| 43 | + */ |
|
| 44 | + public static function delete_transients_on_shutdown() { |
|
| 45 | + if ( self::$delete_transients ) { |
|
| 46 | + foreach ( self::$delete_transients as $key ) { |
|
| 47 | + delete_transient( $key ); |
|
| 48 | + } |
|
| 49 | + self::$delete_transients = array(); |
|
| 50 | + } |
|
| 51 | + } |
|
| 52 | + |
|
| 53 | + /** |
|
| 54 | + * Get prefix for use with wp_cache_set. Allows all cache in a group to be invalidated at once. |
|
| 55 | + * |
|
| 56 | + * @param string $group Group of cache to get. |
|
| 57 | + * @return string |
|
| 58 | + */ |
|
| 59 | + public static function get_cache_prefix( $group ) { |
|
| 60 | + // Get cache key. |
|
| 61 | + $prefix = wp_cache_get( 'getpaid_' . $group . '_cache_prefix', $group ); |
|
| 62 | + |
|
| 63 | + if ( false === $prefix ) { |
|
| 64 | + $prefix = microtime(); |
|
| 65 | + wp_cache_set( 'getpaid_' . $group . '_cache_prefix', $prefix, $group ); |
|
| 66 | + } |
|
| 67 | + |
|
| 68 | + return 'getpaid_cache_' . $prefix . '_'; |
|
| 69 | + } |
|
| 70 | + |
|
| 71 | + /** |
|
| 72 | + * Invalidate cache group. |
|
| 73 | + * |
|
| 74 | + * @param string $group Group of cache to clear. |
|
| 75 | + * @since 1.0.19 |
|
| 76 | + */ |
|
| 77 | + public static function invalidate_cache_group( $group ) { |
|
| 78 | + wp_cache_set( 'getpaid_' . $group . '_cache_prefix', microtime(), $group ); |
|
| 79 | + } |
|
| 80 | + |
|
| 81 | + /** |
|
| 82 | + * Prevent caching on certain pages |
|
| 83 | + */ |
|
| 84 | + public static function prevent_caching() { |
|
| 85 | + if ( ! is_blog_installed() ) { |
|
| 86 | + return; |
|
| 87 | + } |
|
| 88 | + |
|
| 89 | + if ( wpinv_is_checkout() || wpinv_is_success_page() || wpinv_is_invoice_history_page() || wpinv_is_subscriptions_history_page() ) { |
|
| 90 | + self::set_nocache_constants(); |
|
| 91 | + nocache_headers(); |
|
| 92 | + } |
|
| 93 | + |
|
| 94 | + } |
|
| 95 | + |
|
| 96 | + /** |
|
| 97 | + * Get transient version. |
|
| 98 | + * |
|
| 99 | + * |
|
| 100 | + * @param string $group Name for the group of transients we need to invalidate. |
|
| 101 | + * @param boolean $refresh true to force a new version. |
|
| 102 | + * @return string transient version based on time(), 10 digits. |
|
| 103 | + */ |
|
| 104 | + public static function get_transient_version( $group, $refresh = false ) { |
|
| 105 | + $transient_name = $group . '-transient-version'; |
|
| 106 | + $transient_value = get_transient( $transient_name ); |
|
| 107 | + |
|
| 108 | + if ( false === $transient_value || true === $refresh ) { |
|
| 109 | + $transient_value = (string) time(); |
|
| 110 | + |
|
| 111 | + set_transient( $transient_name, $transient_value ); |
|
| 112 | + } |
|
| 113 | + |
|
| 114 | + return $transient_value; |
|
| 115 | + } |
|
| 116 | + |
|
| 117 | + /** |
|
| 118 | + * Set constants to prevent caching by some plugins. |
|
| 119 | + * |
|
| 120 | + * @param mixed $return Value to return. Previously hooked into a filter. |
|
| 121 | + * @return mixed |
|
| 122 | + */ |
|
| 123 | + public static function set_nocache_constants( $return = true ) { |
|
| 124 | + getpaid_maybe_define_constant( 'DONOTCACHEPAGE', true ); |
|
| 125 | + getpaid_maybe_define_constant( 'DONOTCACHEOBJECT', true ); |
|
| 126 | + getpaid_maybe_define_constant( 'DONOTCACHEDB', true ); |
|
| 127 | + return $return; |
|
| 128 | + } |
|
| 129 | 129 | |
| 130 | 130 | } |
| 131 | 131 | |
@@ -15,104 +15,104 @@ |
||
| 15 | 15 | */ |
| 16 | 16 | class GetPaid_Meta_Data implements JsonSerializable { |
| 17 | 17 | |
| 18 | - /** |
|
| 19 | - * Current data for metadata |
|
| 20 | - * |
|
| 21 | - * @since 1.0.19 |
|
| 22 | - * @var array |
|
| 23 | - */ |
|
| 24 | - protected $current_data; |
|
| 18 | + /** |
|
| 19 | + * Current data for metadata |
|
| 20 | + * |
|
| 21 | + * @since 1.0.19 |
|
| 22 | + * @var array |
|
| 23 | + */ |
|
| 24 | + protected $current_data; |
|
| 25 | 25 | |
| 26 | - /** |
|
| 27 | - * Metadata data |
|
| 28 | - * |
|
| 29 | - * @since 1.0.19 |
|
| 30 | - * @var array |
|
| 31 | - */ |
|
| 32 | - protected $data; |
|
| 26 | + /** |
|
| 27 | + * Metadata data |
|
| 28 | + * |
|
| 29 | + * @since 1.0.19 |
|
| 30 | + * @var array |
|
| 31 | + */ |
|
| 32 | + protected $data; |
|
| 33 | 33 | |
| 34 | - /** |
|
| 35 | - * Constructor. |
|
| 36 | - * |
|
| 37 | - * @param array $meta Data to wrap behind this function. |
|
| 38 | - */ |
|
| 39 | - public function __construct( $meta = array() ) { |
|
| 40 | - $this->current_data = $meta; |
|
| 41 | - $this->apply_changes(); |
|
| 42 | - } |
|
| 34 | + /** |
|
| 35 | + * Constructor. |
|
| 36 | + * |
|
| 37 | + * @param array $meta Data to wrap behind this function. |
|
| 38 | + */ |
|
| 39 | + public function __construct( $meta = array() ) { |
|
| 40 | + $this->current_data = $meta; |
|
| 41 | + $this->apply_changes(); |
|
| 42 | + } |
|
| 43 | 43 | |
| 44 | - /** |
|
| 45 | - * When converted to JSON. |
|
| 46 | - * |
|
| 47 | - * @return object|array |
|
| 48 | - */ |
|
| 49 | - public function jsonSerialize() { |
|
| 50 | - return $this->get_data(); |
|
| 51 | - } |
|
| 44 | + /** |
|
| 45 | + * When converted to JSON. |
|
| 46 | + * |
|
| 47 | + * @return object|array |
|
| 48 | + */ |
|
| 49 | + public function jsonSerialize() { |
|
| 50 | + return $this->get_data(); |
|
| 51 | + } |
|
| 52 | 52 | |
| 53 | - /** |
|
| 54 | - * Merge changes with data and clear. |
|
| 55 | - */ |
|
| 56 | - public function apply_changes() { |
|
| 57 | - $this->data = $this->current_data; |
|
| 58 | - } |
|
| 53 | + /** |
|
| 54 | + * Merge changes with data and clear. |
|
| 55 | + */ |
|
| 56 | + public function apply_changes() { |
|
| 57 | + $this->data = $this->current_data; |
|
| 58 | + } |
|
| 59 | 59 | |
| 60 | - /** |
|
| 61 | - * Creates or updates a property in the metadata object. |
|
| 62 | - * |
|
| 63 | - * @param string $key Key to set. |
|
| 64 | - * @param mixed $value Value to set. |
|
| 65 | - */ |
|
| 66 | - public function __set( $key, $value ) { |
|
| 67 | - $this->current_data[ $key ] = $value; |
|
| 68 | - } |
|
| 60 | + /** |
|
| 61 | + * Creates or updates a property in the metadata object. |
|
| 62 | + * |
|
| 63 | + * @param string $key Key to set. |
|
| 64 | + * @param mixed $value Value to set. |
|
| 65 | + */ |
|
| 66 | + public function __set( $key, $value ) { |
|
| 67 | + $this->current_data[ $key ] = $value; |
|
| 68 | + } |
|
| 69 | 69 | |
| 70 | - /** |
|
| 71 | - * Checks if a given key exists in our data. This is called internally |
|
| 72 | - * by `empty` and `isset`. |
|
| 73 | - * |
|
| 74 | - * @param string $key Key to check if set. |
|
| 75 | - * |
|
| 76 | - * @return bool |
|
| 77 | - */ |
|
| 78 | - public function __isset( $key ) { |
|
| 79 | - return array_key_exists( $key, $this->current_data ); |
|
| 80 | - } |
|
| 70 | + /** |
|
| 71 | + * Checks if a given key exists in our data. This is called internally |
|
| 72 | + * by `empty` and `isset`. |
|
| 73 | + * |
|
| 74 | + * @param string $key Key to check if set. |
|
| 75 | + * |
|
| 76 | + * @return bool |
|
| 77 | + */ |
|
| 78 | + public function __isset( $key ) { |
|
| 79 | + return array_key_exists( $key, $this->current_data ); |
|
| 80 | + } |
|
| 81 | 81 | |
| 82 | - /** |
|
| 83 | - * Returns the value of any property. |
|
| 84 | - * |
|
| 85 | - * @param string $key Key to get. |
|
| 86 | - * @return mixed Property value or NULL if it does not exists |
|
| 87 | - */ |
|
| 88 | - public function __get( $key ) { |
|
| 89 | - if ( array_key_exists( $key, $this->current_data ) ) { |
|
| 90 | - return $this->current_data[ $key ]; |
|
| 91 | - } |
|
| 92 | - return null; |
|
| 93 | - } |
|
| 82 | + /** |
|
| 83 | + * Returns the value of any property. |
|
| 84 | + * |
|
| 85 | + * @param string $key Key to get. |
|
| 86 | + * @return mixed Property value or NULL if it does not exists |
|
| 87 | + */ |
|
| 88 | + public function __get( $key ) { |
|
| 89 | + if ( array_key_exists( $key, $this->current_data ) ) { |
|
| 90 | + return $this->current_data[ $key ]; |
|
| 91 | + } |
|
| 92 | + return null; |
|
| 93 | + } |
|
| 94 | 94 | |
| 95 | - /** |
|
| 96 | - * Return data changes only. |
|
| 97 | - * |
|
| 98 | - * @return array |
|
| 99 | - */ |
|
| 100 | - public function get_changes() { |
|
| 101 | - $changes = array(); |
|
| 102 | - foreach ( $this->current_data as $id => $value ) { |
|
| 103 | - if ( ! array_key_exists( $id, $this->data ) || $value !== $this->data[ $id ] ) { |
|
| 104 | - $changes[ $id ] = $value; |
|
| 105 | - } |
|
| 106 | - } |
|
| 107 | - return $changes; |
|
| 108 | - } |
|
| 95 | + /** |
|
| 96 | + * Return data changes only. |
|
| 97 | + * |
|
| 98 | + * @return array |
|
| 99 | + */ |
|
| 100 | + public function get_changes() { |
|
| 101 | + $changes = array(); |
|
| 102 | + foreach ( $this->current_data as $id => $value ) { |
|
| 103 | + if ( ! array_key_exists( $id, $this->data ) || $value !== $this->data[ $id ] ) { |
|
| 104 | + $changes[ $id ] = $value; |
|
| 105 | + } |
|
| 106 | + } |
|
| 107 | + return $changes; |
|
| 108 | + } |
|
| 109 | 109 | |
| 110 | - /** |
|
| 111 | - * Return all data as an array. |
|
| 112 | - * |
|
| 113 | - * @return array |
|
| 114 | - */ |
|
| 115 | - public function get_data() { |
|
| 116 | - return $this->data; |
|
| 117 | - } |
|
| 110 | + /** |
|
| 111 | + * Return all data as an array. |
|
| 112 | + * |
|
| 113 | + * @return array |
|
| 114 | + */ |
|
| 115 | + public function get_data() { |
|
| 116 | + return $this->data; |
|
| 117 | + } |
|
| 118 | 118 | } |
@@ -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_Info { |
| 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. |
@@ -97,9 +97,9 @@ discard block |
||
| 97 | 97 | } |
| 98 | 98 | |
| 99 | 99 | /** |
| 100 | - * Returns item type tolltip. |
|
| 101 | - * |
|
| 102 | - */ |
|
| 100 | + * Returns item type tolltip. |
|
| 101 | + * |
|
| 102 | + */ |
|
| 103 | 103 | public static function get_tooltip( $post ) { |
| 104 | 104 | |
| 105 | 105 | ob_start(); |
@@ -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_Payment_Form_Info { |
| 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 form. |
@@ -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_Invoice_Items { |
| 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 invoice. |
@@ -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_Invoice_Payment_Meta { |
| 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 invoice. |
@@ -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_Invoice_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 invoice. |
@@ -6,7 +6,7 @@ discard block |
||
| 6 | 6 | */ |
| 7 | 7 | |
| 8 | 8 | if ( ! defined( 'ABSPATH' ) ) { |
| 9 | - exit; // Exit if accessed directly |
|
| 9 | + exit; // Exit if accessed directly |
|
| 10 | 10 | } |
| 11 | 11 | |
| 12 | 12 | /** |
@@ -15,10 +15,10 @@ discard block |
||
| 15 | 15 | class GetPaid_Meta_Box_Resend_Invoice { |
| 16 | 16 | |
| 17 | 17 | /** |
| 18 | - * Output the metabox. |
|
| 19 | - * |
|
| 20 | - * @param WP_Post $post |
|
| 21 | - */ |
|
| 18 | + * Output the metabox. |
|
| 19 | + * |
|
| 20 | + * @param WP_Post $post |
|
| 21 | + */ |
|
| 22 | 22 | public static function output( $post ) { |
| 23 | 23 | |
| 24 | 24 | // Fetch the invoice. |