@@ -239,7 +239,7 @@ |
||
| 239 | 239 | do_action( 'getpaid_checkout_invoice_exception', $invoice ); |
| 240 | 240 | } |
| 241 | 241 | |
| 242 | - // Do we have any errors? |
|
| 242 | + // Do we have any errors? |
|
| 243 | 243 | if ( wpinv_get_errors() ) { |
| 244 | 244 | $response['data'] = getpaid_get_errors_html( true, false ); |
| 245 | 245 | } else { |
@@ -16,165 +16,165 @@ |
||
| 16 | 16 | */ |
| 17 | 17 | class GetPaid_MaxMind_Geolocation { |
| 18 | 18 | |
| 19 | - /** |
|
| 20 | - * The service responsible for interacting with the MaxMind database. |
|
| 21 | - * |
|
| 22 | - * @var GetPaid_MaxMind_Database_Service |
|
| 23 | - */ |
|
| 24 | - private $database_service; |
|
| 25 | - |
|
| 26 | - /** |
|
| 27 | - * Initialize the integration. |
|
| 28 | - */ |
|
| 29 | - public function __construct() { |
|
| 30 | - |
|
| 31 | - /** |
|
| 32 | - * Supports overriding the database service to be used. |
|
| 33 | - * |
|
| 34 | - * @since 1.0.19 |
|
| 35 | - * @return mixed|null The geolocation database service. |
|
| 36 | - */ |
|
| 37 | - $this->database_service = apply_filters( 'getpaid_maxmind_geolocation_database_service', null ); |
|
| 38 | - if ( null === $this->database_service ) { |
|
| 39 | - $this->database_service = new GetPaid_MaxMind_Database_Service( $this->get_database_prefix() ); |
|
| 40 | - } |
|
| 41 | - |
|
| 42 | - // Bind to the scheduled updater action. |
|
| 43 | - add_action( 'getpaid_update_geoip_databases', array( $this, 'update_database' ) ); |
|
| 44 | - |
|
| 45 | - // Bind to the geolocation filter for MaxMind database lookups. |
|
| 46 | - add_filter( 'getpaid_get_geolocation', array( $this, 'get_geolocation' ), 10, 2 ); |
|
| 47 | - |
|
| 48 | - // Handle maxmind key updates. |
|
| 49 | - add_filter( 'wpinv_settings_sanitize_maxmind_license_key', array( $this, 'handle_key_updates' ) ); |
|
| 50 | - |
|
| 51 | - } |
|
| 52 | - |
|
| 53 | - /** |
|
| 54 | - * Get database service. |
|
| 55 | - * |
|
| 56 | - * @return GetPaid_MaxMind_Database_Service|null |
|
| 57 | - */ |
|
| 58 | - public function get_database_service() { |
|
| 59 | - return $this->database_service; |
|
| 60 | - } |
|
| 61 | - |
|
| 62 | - /** |
|
| 63 | - * Checks to make sure that the license key is valid. |
|
| 64 | - * |
|
| 65 | - * @param string $license_key The new license key. |
|
| 66 | - * @return string |
|
| 67 | - */ |
|
| 68 | - public function handle_key_updates( $license_key ) { |
|
| 69 | - |
|
| 70 | - // Trim whitespaces and strip slashes. |
|
| 71 | - $license_key = trim( $license_key ); |
|
| 72 | - |
|
| 73 | - // Abort if the license key is empty or unchanged. |
|
| 74 | - if ( empty( $license_key ) ) { |
|
| 75 | - return $license_key; |
|
| 76 | - } |
|
| 77 | - |
|
| 78 | - // Abort if a database exists and the license key is unchaged. |
|
| 79 | - if ( file_exists( $this->database_service->get_database_path() && $license_key == wpinv_get_option( 'maxmind_license_key' ) ) ) { |
|
| 80 | - return $license_key; |
|
| 81 | - } |
|
| 82 | - |
|
| 83 | - // Check the license key by attempting to download the Geolocation database. |
|
| 84 | - $tmp_database_path = $this->database_service->download_database( $license_key ); |
|
| 85 | - if ( is_wp_error( $tmp_database_path ) ) { |
|
| 86 | - getpaid_admin()->show_error( $tmp_database_path->get_error_message() ); |
|
| 87 | - return $license_key; |
|
| 88 | - } |
|
| 89 | - |
|
| 90 | - $this->update_database( /** @scrutinizer ignore-type */ $tmp_database_path ); |
|
| 91 | - |
|
| 92 | - return $license_key; |
|
| 93 | - } |
|
| 94 | - |
|
| 95 | - /** |
|
| 96 | - * Updates the database used for geolocation queries. |
|
| 97 | - * |
|
| 98 | - * @param string $tmp_database_path Temporary database path. |
|
| 99 | - */ |
|
| 100 | - public function update_database( $tmp_database_path = null ) { |
|
| 101 | - |
|
| 102 | - // Allow us to easily interact with the filesystem. |
|
| 103 | - require_once ABSPATH . 'wp-admin/includes/file.php'; |
|
| 104 | - WP_Filesystem(); |
|
| 105 | - global $wp_filesystem; |
|
| 106 | - |
|
| 107 | - // Remove any existing archives to comply with the MaxMind TOS. |
|
| 108 | - $target_database_path = $this->database_service->get_database_path(); |
|
| 109 | - |
|
| 110 | - // If there's no database path, we can't store the database. |
|
| 111 | - if ( empty( $target_database_path ) ) { |
|
| 112 | - return; |
|
| 113 | - } |
|
| 114 | - |
|
| 115 | - if ( $wp_filesystem->exists( $target_database_path ) ) { |
|
| 116 | - $wp_filesystem->delete( $target_database_path ); |
|
| 117 | - } |
|
| 118 | - |
|
| 119 | - // We can't download a database if there's no license key configured. |
|
| 120 | - $license_key = wpinv_get_option( 'maxmind_license_key' ); |
|
| 121 | - if ( empty( $license_key ) ) { |
|
| 122 | - return; |
|
| 123 | - } |
|
| 124 | - |
|
| 125 | - if ( empty( $tmp_database_path ) ) { |
|
| 126 | - $tmp_database_path = $this->database_service->download_database( $license_key ); |
|
| 127 | - } |
|
| 128 | - |
|
| 129 | - if ( is_wp_error( $tmp_database_path ) ) { |
|
| 130 | - wpinv_error_log( $tmp_database_path->get_error_message() ); |
|
| 131 | - return; |
|
| 132 | - } |
|
| 133 | - |
|
| 134 | - // Move the new database into position. |
|
| 135 | - $wp_filesystem->move( $tmp_database_path, $target_database_path, true ); |
|
| 136 | - $wp_filesystem->delete( dirname( $tmp_database_path ) ); |
|
| 137 | - } |
|
| 138 | - |
|
| 139 | - /** |
|
| 140 | - * Performs a geolocation lookup against the MaxMind database for the given IP address. |
|
| 141 | - * |
|
| 142 | - * @param array $data Geolocation data. |
|
| 143 | - * @param string $ip_address The IP address to geolocate. |
|
| 144 | - * @return array Geolocation including country code, state, city and postcode based on an IP address. |
|
| 145 | - */ |
|
| 146 | - public function get_geolocation( $data, $ip_address ) { |
|
| 147 | - |
|
| 148 | - if ( ! empty( $data['country'] ) || empty( $ip_address ) ) { |
|
| 149 | - return $data; |
|
| 150 | - } |
|
| 151 | - |
|
| 152 | - $country_code = $this->database_service->get_iso_country_code_for_ip( $ip_address ); |
|
| 153 | - |
|
| 154 | - return array( |
|
| 155 | - 'country' => $country_code, |
|
| 156 | - 'state' => '', |
|
| 157 | - 'city' => '', |
|
| 158 | - 'postcode' => '', |
|
| 159 | - ); |
|
| 160 | - |
|
| 161 | - } |
|
| 162 | - |
|
| 163 | - /** |
|
| 164 | - * Fetches the prefix for the MaxMind database file. |
|
| 165 | - * |
|
| 166 | - * @return string |
|
| 167 | - */ |
|
| 168 | - private function get_database_prefix() { |
|
| 169 | - |
|
| 170 | - $prefix = get_option( 'wpinv_maxmind_database_prefix' ); |
|
| 171 | - |
|
| 172 | - if ( empty( $prefix ) ) { |
|
| 173 | - $prefix = md5( uniqid( 'wpinv' ) ); |
|
| 174 | - update_option( 'wpinv_maxmind_database_prefix', $prefix ); |
|
| 175 | - } |
|
| 176 | - |
|
| 177 | - return $prefix; |
|
| 178 | - } |
|
| 19 | + /** |
|
| 20 | + * The service responsible for interacting with the MaxMind database. |
|
| 21 | + * |
|
| 22 | + * @var GetPaid_MaxMind_Database_Service |
|
| 23 | + */ |
|
| 24 | + private $database_service; |
|
| 25 | + |
|
| 26 | + /** |
|
| 27 | + * Initialize the integration. |
|
| 28 | + */ |
|
| 29 | + public function __construct() { |
|
| 30 | + |
|
| 31 | + /** |
|
| 32 | + * Supports overriding the database service to be used. |
|
| 33 | + * |
|
| 34 | + * @since 1.0.19 |
|
| 35 | + * @return mixed|null The geolocation database service. |
|
| 36 | + */ |
|
| 37 | + $this->database_service = apply_filters( 'getpaid_maxmind_geolocation_database_service', null ); |
|
| 38 | + if ( null === $this->database_service ) { |
|
| 39 | + $this->database_service = new GetPaid_MaxMind_Database_Service( $this->get_database_prefix() ); |
|
| 40 | + } |
|
| 41 | + |
|
| 42 | + // Bind to the scheduled updater action. |
|
| 43 | + add_action( 'getpaid_update_geoip_databases', array( $this, 'update_database' ) ); |
|
| 44 | + |
|
| 45 | + // Bind to the geolocation filter for MaxMind database lookups. |
|
| 46 | + add_filter( 'getpaid_get_geolocation', array( $this, 'get_geolocation' ), 10, 2 ); |
|
| 47 | + |
|
| 48 | + // Handle maxmind key updates. |
|
| 49 | + add_filter( 'wpinv_settings_sanitize_maxmind_license_key', array( $this, 'handle_key_updates' ) ); |
|
| 50 | + |
|
| 51 | + } |
|
| 52 | + |
|
| 53 | + /** |
|
| 54 | + * Get database service. |
|
| 55 | + * |
|
| 56 | + * @return GetPaid_MaxMind_Database_Service|null |
|
| 57 | + */ |
|
| 58 | + public function get_database_service() { |
|
| 59 | + return $this->database_service; |
|
| 60 | + } |
|
| 61 | + |
|
| 62 | + /** |
|
| 63 | + * Checks to make sure that the license key is valid. |
|
| 64 | + * |
|
| 65 | + * @param string $license_key The new license key. |
|
| 66 | + * @return string |
|
| 67 | + */ |
|
| 68 | + public function handle_key_updates( $license_key ) { |
|
| 69 | + |
|
| 70 | + // Trim whitespaces and strip slashes. |
|
| 71 | + $license_key = trim( $license_key ); |
|
| 72 | + |
|
| 73 | + // Abort if the license key is empty or unchanged. |
|
| 74 | + if ( empty( $license_key ) ) { |
|
| 75 | + return $license_key; |
|
| 76 | + } |
|
| 77 | + |
|
| 78 | + // Abort if a database exists and the license key is unchaged. |
|
| 79 | + if ( file_exists( $this->database_service->get_database_path() && $license_key == wpinv_get_option( 'maxmind_license_key' ) ) ) { |
|
| 80 | + return $license_key; |
|
| 81 | + } |
|
| 82 | + |
|
| 83 | + // Check the license key by attempting to download the Geolocation database. |
|
| 84 | + $tmp_database_path = $this->database_service->download_database( $license_key ); |
|
| 85 | + if ( is_wp_error( $tmp_database_path ) ) { |
|
| 86 | + getpaid_admin()->show_error( $tmp_database_path->get_error_message() ); |
|
| 87 | + return $license_key; |
|
| 88 | + } |
|
| 89 | + |
|
| 90 | + $this->update_database( /** @scrutinizer ignore-type */ $tmp_database_path ); |
|
| 91 | + |
|
| 92 | + return $license_key; |
|
| 93 | + } |
|
| 94 | + |
|
| 95 | + /** |
|
| 96 | + * Updates the database used for geolocation queries. |
|
| 97 | + * |
|
| 98 | + * @param string $tmp_database_path Temporary database path. |
|
| 99 | + */ |
|
| 100 | + public function update_database( $tmp_database_path = null ) { |
|
| 101 | + |
|
| 102 | + // Allow us to easily interact with the filesystem. |
|
| 103 | + require_once ABSPATH . 'wp-admin/includes/file.php'; |
|
| 104 | + WP_Filesystem(); |
|
| 105 | + global $wp_filesystem; |
|
| 106 | + |
|
| 107 | + // Remove any existing archives to comply with the MaxMind TOS. |
|
| 108 | + $target_database_path = $this->database_service->get_database_path(); |
|
| 109 | + |
|
| 110 | + // If there's no database path, we can't store the database. |
|
| 111 | + if ( empty( $target_database_path ) ) { |
|
| 112 | + return; |
|
| 113 | + } |
|
| 114 | + |
|
| 115 | + if ( $wp_filesystem->exists( $target_database_path ) ) { |
|
| 116 | + $wp_filesystem->delete( $target_database_path ); |
|
| 117 | + } |
|
| 118 | + |
|
| 119 | + // We can't download a database if there's no license key configured. |
|
| 120 | + $license_key = wpinv_get_option( 'maxmind_license_key' ); |
|
| 121 | + if ( empty( $license_key ) ) { |
|
| 122 | + return; |
|
| 123 | + } |
|
| 124 | + |
|
| 125 | + if ( empty( $tmp_database_path ) ) { |
|
| 126 | + $tmp_database_path = $this->database_service->download_database( $license_key ); |
|
| 127 | + } |
|
| 128 | + |
|
| 129 | + if ( is_wp_error( $tmp_database_path ) ) { |
|
| 130 | + wpinv_error_log( $tmp_database_path->get_error_message() ); |
|
| 131 | + return; |
|
| 132 | + } |
|
| 133 | + |
|
| 134 | + // Move the new database into position. |
|
| 135 | + $wp_filesystem->move( $tmp_database_path, $target_database_path, true ); |
|
| 136 | + $wp_filesystem->delete( dirname( $tmp_database_path ) ); |
|
| 137 | + } |
|
| 138 | + |
|
| 139 | + /** |
|
| 140 | + * Performs a geolocation lookup against the MaxMind database for the given IP address. |
|
| 141 | + * |
|
| 142 | + * @param array $data Geolocation data. |
|
| 143 | + * @param string $ip_address The IP address to geolocate. |
|
| 144 | + * @return array Geolocation including country code, state, city and postcode based on an IP address. |
|
| 145 | + */ |
|
| 146 | + public function get_geolocation( $data, $ip_address ) { |
|
| 147 | + |
|
| 148 | + if ( ! empty( $data['country'] ) || empty( $ip_address ) ) { |
|
| 149 | + return $data; |
|
| 150 | + } |
|
| 151 | + |
|
| 152 | + $country_code = $this->database_service->get_iso_country_code_for_ip( $ip_address ); |
|
| 153 | + |
|
| 154 | + return array( |
|
| 155 | + 'country' => $country_code, |
|
| 156 | + 'state' => '', |
|
| 157 | + 'city' => '', |
|
| 158 | + 'postcode' => '', |
|
| 159 | + ); |
|
| 160 | + |
|
| 161 | + } |
|
| 162 | + |
|
| 163 | + /** |
|
| 164 | + * Fetches the prefix for the MaxMind database file. |
|
| 165 | + * |
|
| 166 | + * @return string |
|
| 167 | + */ |
|
| 168 | + private function get_database_prefix() { |
|
| 169 | + |
|
| 170 | + $prefix = get_option( 'wpinv_maxmind_database_prefix' ); |
|
| 171 | + |
|
| 172 | + if ( empty( $prefix ) ) { |
|
| 173 | + $prefix = md5( uniqid( 'wpinv' ) ); |
|
| 174 | + update_option( 'wpinv_maxmind_database_prefix', $prefix ); |
|
| 175 | + } |
|
| 176 | + |
|
| 177 | + return $prefix; |
|
| 178 | + } |
|
| 179 | 179 | |
| 180 | 180 | } |
@@ -20,13 +20,13 @@ |
||
| 20 | 20 | <title><?php esc_html_e( 'GetPaid › Setup Wizard', 'invoicing' ); ?></title> |
| 21 | 21 | <?php |
| 22 | 22 | getpaid_admin()->enqeue_scripts(); |
| 23 | - wp_enqueue_style( 'font-awesome', 'https://use.fontawesome.com/releases/v5.13.0/css/all.css', array(), 'v5.13.0' ); |
|
| 24 | - wp_print_styles( 'select2' ); |
|
| 23 | + wp_enqueue_style( 'font-awesome', 'https://use.fontawesome.com/releases/v5.13.0/css/all.css', array(), 'v5.13.0' ); |
|
| 24 | + wp_print_styles( 'select2' ); |
|
| 25 | 25 | wp_print_scripts( 'select2' ); |
| 26 | - wp_print_scripts( 'wpinv-admin-script' ); |
|
| 26 | + wp_print_scripts( 'wpinv-admin-script' ); |
|
| 27 | 27 | do_action( 'admin_print_styles' ); |
| 28 | 28 | do_action( 'admin_head' ); |
| 29 | - ?> |
|
| 29 | + ?> |
|
| 30 | 30 | <style> |
| 31 | 31 | body, p{ |
| 32 | 32 | font-size: 16px; |
@@ -8,7 +8,7 @@ discard block |
||
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | 10 | if ( ! defined( 'ABSPATH' ) ) { |
| 11 | - exit; // Exit if accessed directly |
|
| 11 | + exit; // Exit if accessed directly |
|
| 12 | 12 | } |
| 13 | 13 | |
| 14 | 14 | /** |
@@ -319,10 +319,10 @@ discard block |
||
| 319 | 319 | } |
| 320 | 320 | |
| 321 | 321 | /** |
| 322 | - * Output the metabox. |
|
| 323 | - * |
|
| 324 | - * @param WP_Post $post |
|
| 325 | - */ |
|
| 322 | + * Output the metabox. |
|
| 323 | + * |
|
| 324 | + * @param WP_Post $post |
|
| 325 | + */ |
|
| 326 | 326 | public static function output2( $post ) { |
| 327 | 327 | |
| 328 | 328 | // Prepare the invoice. |
@@ -15,12 +15,12 @@ discard block |
||
| 15 | 15 | */ |
| 16 | 16 | |
| 17 | 17 | if ( ! defined( 'ABSPATH' ) ) { |
| 18 | - exit; |
|
| 18 | + exit; |
|
| 19 | 19 | } |
| 20 | 20 | |
| 21 | 21 | if ( ! class_exists( 'AyeCode_Deactivation_Survey' ) ) { |
| 22 | - // include the class if needed |
|
| 23 | - include_once( dirname( __FILE__ ) . "/wp-deactivation-survey.php" ); |
|
| 22 | + // include the class if needed |
|
| 23 | + include_once( dirname( __FILE__ ) . "/wp-deactivation-survey.php" ); |
|
| 24 | 24 | } |
| 25 | 25 | |
| 26 | 26 | |
@@ -36,6 +36,6 @@ discard block |
||
| 36 | 36 | //}); |
| 37 | 37 | |
| 38 | 38 | AyeCode_Deactivation_Survey::instance(array( |
| 39 | - 'slug' => 'ayecode-deactivation-survey-testing', |
|
| 40 | - 'version' => '1.0.0' |
|
| 39 | + 'slug' => 'ayecode-deactivation-survey-testing', |
|
| 40 | + 'version' => '1.0.0' |
|
| 41 | 41 | )); |
| 42 | 42 | \ No newline at end of file |
@@ -1,103 +1,103 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | if ( ! defined( 'ABSPATH' ) ) { |
| 4 | - exit; |
|
| 4 | + exit; |
|
| 5 | 5 | } |
| 6 | 6 | |
| 7 | 7 | if ( ! class_exists( 'AyeCode_Deactivation_Survey' ) ) { |
| 8 | 8 | |
| 9 | - class AyeCode_Deactivation_Survey { |
|
| 9 | + class AyeCode_Deactivation_Survey { |
|
| 10 | 10 | |
| 11 | - /** |
|
| 12 | - * AyeCode_Deactivation_Survey instance. |
|
| 13 | - * |
|
| 14 | - * @access private |
|
| 15 | - * @since 1.0.0 |
|
| 16 | - * @var AyeCode_Deactivation_Survey There can be only one! |
|
| 17 | - */ |
|
| 18 | - private static $instance = null; |
|
| 11 | + /** |
|
| 12 | + * AyeCode_Deactivation_Survey instance. |
|
| 13 | + * |
|
| 14 | + * @access private |
|
| 15 | + * @since 1.0.0 |
|
| 16 | + * @var AyeCode_Deactivation_Survey There can be only one! |
|
| 17 | + */ |
|
| 18 | + private static $instance = null; |
|
| 19 | 19 | |
| 20 | - public static $plugins; |
|
| 20 | + public static $plugins; |
|
| 21 | 21 | |
| 22 | - public $version = "1.0.4"; |
|
| 22 | + public $version = "1.0.4"; |
|
| 23 | 23 | |
| 24 | - public static function instance( $plugin = array() ) { |
|
| 25 | - if ( ! isset( self::$instance ) && ! ( self::$instance instanceof AyeCode_Deactivation_Survey ) ) { |
|
| 26 | - self::$instance = new AyeCode_Deactivation_Survey; |
|
| 27 | - self::$plugins = array(); |
|
| 24 | + public static function instance( $plugin = array() ) { |
|
| 25 | + if ( ! isset( self::$instance ) && ! ( self::$instance instanceof AyeCode_Deactivation_Survey ) ) { |
|
| 26 | + self::$instance = new AyeCode_Deactivation_Survey; |
|
| 27 | + self::$plugins = array(); |
|
| 28 | 28 | |
| 29 | - add_action( 'admin_enqueue_scripts', array( self::$instance, 'scripts' ) ); |
|
| 29 | + add_action( 'admin_enqueue_scripts', array( self::$instance, 'scripts' ) ); |
|
| 30 | 30 | |
| 31 | - do_action( 'ayecode_deactivation_survey_loaded' ); |
|
| 32 | - } |
|
| 31 | + do_action( 'ayecode_deactivation_survey_loaded' ); |
|
| 32 | + } |
|
| 33 | 33 | |
| 34 | - if(!empty($plugin)){ |
|
| 35 | - self::$plugins[] = (object)$plugin; |
|
| 36 | - } |
|
| 34 | + if(!empty($plugin)){ |
|
| 35 | + self::$plugins[] = (object)$plugin; |
|
| 36 | + } |
|
| 37 | 37 | |
| 38 | - return self::$instance; |
|
| 39 | - } |
|
| 38 | + return self::$instance; |
|
| 39 | + } |
|
| 40 | 40 | |
| 41 | - public function scripts() { |
|
| 42 | - global $pagenow; |
|
| 41 | + public function scripts() { |
|
| 42 | + global $pagenow; |
|
| 43 | 43 | |
| 44 | - // Bail if we are not on the plugins page |
|
| 45 | - if ( $pagenow != "plugins.php" ) { |
|
| 46 | - return; |
|
| 47 | - } |
|
| 44 | + // Bail if we are not on the plugins page |
|
| 45 | + if ( $pagenow != "plugins.php" ) { |
|
| 46 | + return; |
|
| 47 | + } |
|
| 48 | 48 | |
| 49 | - // Enqueue scripts |
|
| 50 | - add_thickbox(); |
|
| 51 | - wp_enqueue_script('ayecode-deactivation-survey', plugin_dir_url(__FILE__) . 'ayecode-ds.js'); |
|
| 49 | + // Enqueue scripts |
|
| 50 | + add_thickbox(); |
|
| 51 | + wp_enqueue_script('ayecode-deactivation-survey', plugin_dir_url(__FILE__) . 'ayecode-ds.js'); |
|
| 52 | 52 | |
| 53 | - /* |
|
| 53 | + /* |
|
| 54 | 54 | * Localized strings. Strings can be localised by plugins using this class. |
| 55 | 55 | * We deliberately don't add textdomains here so that double textdomain warning is not given in theme review. |
| 56 | 56 | */ |
| 57 | - wp_localize_script('ayecode-deactivation-survey', 'ayecodeds_deactivate_feedback_form_strings', array( |
|
| 58 | - 'quick_feedback' => 'Quick Feedback', |
|
| 59 | - 'foreword' => 'If you would be kind enough, please tell us why you\'re deactivating?', |
|
| 60 | - 'better_plugins_name' => 'Please tell us which plugin?', |
|
| 61 | - 'please_tell_us' => 'Please tell us the reason so we can improve the plugin', |
|
| 62 | - 'do_not_attach_email' => 'Do not send my e-mail address with this feedback', |
|
| 63 | - 'brief_description' => 'Please give us any feedback that could help us improve', |
|
| 64 | - 'cancel' => 'Cancel', |
|
| 65 | - 'skip_and_deactivate' => 'Skip & Deactivate', |
|
| 66 | - 'submit_and_deactivate' => 'Submit & Deactivate', |
|
| 67 | - 'please_wait' => 'Please wait', |
|
| 68 | - 'get_support' => 'Get Support', |
|
| 69 | - 'documentation' => 'Documentation', |
|
| 70 | - 'thank_you' => 'Thank you!', |
|
| 71 | - )); |
|
| 72 | - |
|
| 73 | - // Plugins |
|
| 74 | - $plugins = apply_filters('ayecode_deactivation_survey_plugins', self::$plugins); |
|
| 75 | - |
|
| 76 | - // Reasons |
|
| 77 | - $defaultReasons = array( |
|
| 78 | - 'suddenly-stopped-working' => 'The plugin suddenly stopped working', |
|
| 79 | - 'plugin-broke-site' => 'The plugin broke my site', |
|
| 80 | - 'plugin-setup-difficult' => 'Too difficult to setup', |
|
| 81 | - 'plugin-design-difficult' => 'Too difficult to get the design i want', |
|
| 82 | - 'no-longer-needed' => 'I don\'t need this plugin any more', |
|
| 83 | - 'found-better-plugin' => 'I found a better plugin', |
|
| 84 | - 'temporary-deactivation' => 'It\'s a temporary deactivation, I\'m troubleshooting', |
|
| 85 | - 'other' => 'Other', |
|
| 86 | - ); |
|
| 87 | - |
|
| 88 | - foreach($plugins as $plugin) |
|
| 89 | - { |
|
| 90 | - $plugin->reasons = apply_filters('ayecode_deactivation_survey_reasons', $defaultReasons, $plugin); |
|
| 91 | - $plugin->url = home_url(); |
|
| 92 | - $plugin->activated = 0; |
|
| 93 | - } |
|
| 94 | - |
|
| 95 | - // Send plugin data |
|
| 96 | - wp_localize_script('ayecode-deactivation-survey', 'ayecodeds_deactivate_feedback_form_plugins', $plugins); |
|
| 97 | - |
|
| 98 | - } |
|
| 57 | + wp_localize_script('ayecode-deactivation-survey', 'ayecodeds_deactivate_feedback_form_strings', array( |
|
| 58 | + 'quick_feedback' => 'Quick Feedback', |
|
| 59 | + 'foreword' => 'If you would be kind enough, please tell us why you\'re deactivating?', |
|
| 60 | + 'better_plugins_name' => 'Please tell us which plugin?', |
|
| 61 | + 'please_tell_us' => 'Please tell us the reason so we can improve the plugin', |
|
| 62 | + 'do_not_attach_email' => 'Do not send my e-mail address with this feedback', |
|
| 63 | + 'brief_description' => 'Please give us any feedback that could help us improve', |
|
| 64 | + 'cancel' => 'Cancel', |
|
| 65 | + 'skip_and_deactivate' => 'Skip & Deactivate', |
|
| 66 | + 'submit_and_deactivate' => 'Submit & Deactivate', |
|
| 67 | + 'please_wait' => 'Please wait', |
|
| 68 | + 'get_support' => 'Get Support', |
|
| 69 | + 'documentation' => 'Documentation', |
|
| 70 | + 'thank_you' => 'Thank you!', |
|
| 71 | + )); |
|
| 72 | + |
|
| 73 | + // Plugins |
|
| 74 | + $plugins = apply_filters('ayecode_deactivation_survey_plugins', self::$plugins); |
|
| 75 | + |
|
| 76 | + // Reasons |
|
| 77 | + $defaultReasons = array( |
|
| 78 | + 'suddenly-stopped-working' => 'The plugin suddenly stopped working', |
|
| 79 | + 'plugin-broke-site' => 'The plugin broke my site', |
|
| 80 | + 'plugin-setup-difficult' => 'Too difficult to setup', |
|
| 81 | + 'plugin-design-difficult' => 'Too difficult to get the design i want', |
|
| 82 | + 'no-longer-needed' => 'I don\'t need this plugin any more', |
|
| 83 | + 'found-better-plugin' => 'I found a better plugin', |
|
| 84 | + 'temporary-deactivation' => 'It\'s a temporary deactivation, I\'m troubleshooting', |
|
| 85 | + 'other' => 'Other', |
|
| 86 | + ); |
|
| 87 | + |
|
| 88 | + foreach($plugins as $plugin) |
|
| 89 | + { |
|
| 90 | + $plugin->reasons = apply_filters('ayecode_deactivation_survey_reasons', $defaultReasons, $plugin); |
|
| 91 | + $plugin->url = home_url(); |
|
| 92 | + $plugin->activated = 0; |
|
| 93 | + } |
|
| 94 | + |
|
| 95 | + // Send plugin data |
|
| 96 | + wp_localize_script('ayecode-deactivation-survey', 'ayecodeds_deactivate_feedback_form_plugins', $plugins); |
|
| 97 | + |
|
| 98 | + } |
|
| 99 | 99 | |
| 100 | 100 | |
| 101 | - } |
|
| 101 | + } |
|
| 102 | 102 | |
| 103 | 103 | } |
| 104 | 104 | \ No newline at end of file |
@@ -14,133 +14,133 @@ |
||
| 14 | 14 | */ |
| 15 | 15 | class GetPaid_WP_All_Import { |
| 16 | 16 | |
| 17 | - /** |
|
| 18 | - * @var RapidAddon[] |
|
| 19 | - */ |
|
| 20 | - protected $add_ons; |
|
| 21 | - |
|
| 22 | - /** |
|
| 23 | - * @var array |
|
| 24 | - */ |
|
| 25 | - protected $datastores = array( |
|
| 26 | - 'item' =>'WPInv_Item', |
|
| 27 | - 'invoice' =>'WPInv_Invoice', |
|
| 28 | - 'discount' =>'WPInv_Discount', |
|
| 29 | - ); |
|
| 17 | + /** |
|
| 18 | + * @var RapidAddon[] |
|
| 19 | + */ |
|
| 20 | + protected $add_ons; |
|
| 21 | + |
|
| 22 | + /** |
|
| 23 | + * @var array |
|
| 24 | + */ |
|
| 25 | + protected $datastores = array( |
|
| 26 | + 'item' =>'WPInv_Item', |
|
| 27 | + 'invoice' =>'WPInv_Invoice', |
|
| 28 | + 'discount' =>'WPInv_Discount', |
|
| 29 | + ); |
|
| 30 | 30 | |
| 31 | 31 | /** |
| 32 | - * Class constructor. |
|
| 33 | - */ |
|
| 32 | + * Class constructor. |
|
| 33 | + */ |
|
| 34 | 34 | public function __construct() { |
| 35 | 35 | |
| 36 | - // Init each store separately. |
|
| 37 | - foreach ( array_keys( $this->datastores ) as $key ) { |
|
| 38 | - $this->init_store( $key ); |
|
| 39 | - } |
|
| 36 | + // Init each store separately. |
|
| 37 | + foreach ( array_keys( $this->datastores ) as $key ) { |
|
| 38 | + $this->init_store( $key ); |
|
| 39 | + } |
|
| 40 | 40 | |
| 41 | - } |
|
| 41 | + } |
|
| 42 | 42 | |
| 43 | - /** |
|
| 44 | - * Inits a store. |
|
| 45 | - */ |
|
| 43 | + /** |
|
| 44 | + * Inits a store. |
|
| 45 | + */ |
|
| 46 | 46 | public function init_store( $key ) { |
| 47 | 47 | |
| 48 | - // Register the add-on. |
|
| 49 | - $this->add_ons[ $key ] = new RapidAddon( 'GetPaid', 'getpaid_wp_al_import_' . $key ); |
|
| 48 | + // Register the add-on. |
|
| 49 | + $this->add_ons[ $key ] = new RapidAddon( 'GetPaid', 'getpaid_wp_al_import_' . $key ); |
|
| 50 | 50 | |
| 51 | - // Create import function. |
|
| 52 | - $import_function = function ( $post_id, $data, $import_options, $_post ) use ( $key ) { |
|
| 53 | - $this->import_store( $key, $post_id, $data, $import_options, $_post ); |
|
| 51 | + // Create import function. |
|
| 52 | + $import_function = function ( $post_id, $data, $import_options, $_post ) use ( $key ) { |
|
| 53 | + $this->import_store( $key, $post_id, $data, $import_options, $_post ); |
|
| 54 | 54 | }; |
| 55 | 55 | |
| 56 | - $this->add_ons[ $key ]->set_import_function( $import_function ); |
|
| 56 | + $this->add_ons[ $key ]->set_import_function( $import_function ); |
|
| 57 | 57 | |
| 58 | - // Register store fields. |
|
| 59 | - $this->add_store_fields( $key ); |
|
| 58 | + // Register store fields. |
|
| 59 | + $this->add_store_fields( $key ); |
|
| 60 | 60 | |
| 61 | - // Only load on the correct post type. |
|
| 62 | - $this->add_ons[ $key ]->run( array( 'post_types' => array( 'wpi_' . $key ) ) ); |
|
| 61 | + // Only load on the correct post type. |
|
| 62 | + $this->add_ons[ $key ]->run( array( 'post_types' => array( 'wpi_' . $key ) ) ); |
|
| 63 | 63 | |
| 64 | - // Disable images. |
|
| 65 | - $this->add_ons[ $key ]->disable_default_images(); |
|
| 64 | + // Disable images. |
|
| 65 | + $this->add_ons[ $key ]->disable_default_images(); |
|
| 66 | 66 | |
| 67 | - } |
|
| 67 | + } |
|
| 68 | 68 | |
| 69 | - /** |
|
| 70 | - * Retrieves store fields. |
|
| 71 | - */ |
|
| 69 | + /** |
|
| 70 | + * Retrieves store fields. |
|
| 71 | + */ |
|
| 72 | 72 | public function get_store_fields( $key ) { |
| 73 | 73 | |
| 74 | - // Fetch from data/invoice-schema.php, from data/discount-schema.php, from data/item-schema.php |
|
| 75 | - $fields = wpinv_get_data( $key . '-schema' ); |
|
| 74 | + // Fetch from data/invoice-schema.php, from data/discount-schema.php, from data/item-schema.php |
|
| 75 | + $fields = wpinv_get_data( $key . '-schema' ); |
|
| 76 | 76 | |
| 77 | - if ( empty( $fields ) ) { |
|
| 78 | - return array(); |
|
| 79 | - } |
|
| 77 | + if ( empty( $fields ) ) { |
|
| 78 | + return array(); |
|
| 79 | + } |
|
| 80 | 80 | |
| 81 | - // Clean the fields. |
|
| 82 | - $prepared = array(); |
|
| 83 | - foreach ( $fields as $id => $field ) { |
|
| 81 | + // Clean the fields. |
|
| 82 | + $prepared = array(); |
|
| 83 | + foreach ( $fields as $id => $field ) { |
|
| 84 | 84 | |
| 85 | - // Skip read only fields. |
|
| 86 | - if ( ! empty( $field['readonly'] ) ) { |
|
| 87 | - continue; |
|
| 88 | - } |
|
| 85 | + // Skip read only fields. |
|
| 86 | + if ( ! empty( $field['readonly'] ) ) { |
|
| 87 | + continue; |
|
| 88 | + } |
|
| 89 | 89 | |
| 90 | - $prepared[ $id ] = $field; |
|
| 90 | + $prepared[ $id ] = $field; |
|
| 91 | 91 | |
| 92 | - } |
|
| 92 | + } |
|
| 93 | 93 | |
| 94 | - return $prepared; |
|
| 94 | + return $prepared; |
|
| 95 | 95 | |
| 96 | - } |
|
| 96 | + } |
|
| 97 | 97 | |
| 98 | - /** |
|
| 99 | - * Registers store fields. |
|
| 100 | - */ |
|
| 98 | + /** |
|
| 99 | + * Registers store fields. |
|
| 100 | + */ |
|
| 101 | 101 | public function add_store_fields( $key ) { |
| 102 | 102 | |
| 103 | - foreach ( $this->get_store_fields( $key ) as $field_id => $data ) { |
|
| 104 | - $this->add_ons[ $key ]->add_field( $field_id, $data['description'], 'text' ); |
|
| 105 | - } |
|
| 103 | + foreach ( $this->get_store_fields( $key ) as $field_id => $data ) { |
|
| 104 | + $this->add_ons[ $key ]->add_field( $field_id, $data['description'], 'text' ); |
|
| 105 | + } |
|
| 106 | 106 | |
| 107 | 107 | } |
| 108 | 108 | |
| 109 | - /** |
|
| 110 | - * Handles store imports. |
|
| 111 | - */ |
|
| 109 | + /** |
|
| 110 | + * Handles store imports. |
|
| 111 | + */ |
|
| 112 | 112 | public function import_store( $key, $post_id, $data, $import_options, $_post ) { |
| 113 | 113 | |
| 114 | - // Is the store class set? |
|
| 115 | - if ( ! isset( $this->datastores[ $key ] ) ) { |
|
| 116 | - return; |
|
| 117 | - } |
|
| 114 | + // Is the store class set? |
|
| 115 | + if ( ! isset( $this->datastores[ $key ] ) ) { |
|
| 116 | + return; |
|
| 117 | + } |
|
| 118 | 118 | |
| 119 | - /**@var GetPaid_Data */ |
|
| 120 | - $data_store = new $this->datastores[ $key ]( $post_id ); |
|
| 119 | + /**@var GetPaid_Data */ |
|
| 120 | + $data_store = new $this->datastores[ $key ]( $post_id ); |
|
| 121 | 121 | |
| 122 | - // Abort if the invoice/item/discount does not exist. |
|
| 123 | - if ( ! $data_store->exists() ) { |
|
| 124 | - return; |
|
| 125 | - } |
|
| 122 | + // Abort if the invoice/item/discount does not exist. |
|
| 123 | + if ( ! $data_store->exists() ) { |
|
| 124 | + return; |
|
| 125 | + } |
|
| 126 | 126 | |
| 127 | - // Prepare data props. |
|
| 128 | - $prepared = array(); |
|
| 127 | + // Prepare data props. |
|
| 128 | + $prepared = array(); |
|
| 129 | 129 | |
| 130 | - foreach ( array_keys( $this->get_store_fields( $key ) ) as $field ) { |
|
| 131 | - // Make sure the user has allowed this field to be updated. |
|
| 132 | - if ( empty( $_post['ID'] ) || $this->add_ons[ $key ]->can_update_meta( $field, $import_options ) ) { |
|
| 130 | + foreach ( array_keys( $this->get_store_fields( $key ) ) as $field ) { |
|
| 131 | + // Make sure the user has allowed this field to be updated. |
|
| 132 | + if ( empty( $_post['ID'] ) || $this->add_ons[ $key ]->can_update_meta( $field, $import_options ) ) { |
|
| 133 | 133 | |
| 134 | - // Update the custom field with the imported data. |
|
| 135 | - $prepared[ $field ] = $data[ $field ]; |
|
| 136 | - } |
|
| 137 | - } |
|
| 138 | - |
|
| 139 | - // Only update if we have something to update. |
|
| 140 | - if ( ! empty( $prepared ) ) { |
|
| 141 | - $data_store->set_props( $prepared ); |
|
| 142 | - $data_store->save(); |
|
| 143 | - } |
|
| 134 | + // Update the custom field with the imported data. |
|
| 135 | + $prepared[ $field ] = $data[ $field ]; |
|
| 136 | + } |
|
| 137 | + } |
|
| 138 | + |
|
| 139 | + // Only update if we have something to update. |
|
| 140 | + if ( ! empty( $prepared ) ) { |
|
| 141 | + $data_store->set_props( $prepared ); |
|
| 142 | + $data_store->save(); |
|
| 143 | + } |
|
| 144 | 144 | |
| 145 | 145 | } |
| 146 | 146 | |
@@ -13,36 +13,36 @@ discard block |
||
| 13 | 13 | class GetPaid_Notification_Email { |
| 14 | 14 | |
| 15 | 15 | /** |
| 16 | - * Contains the type of this notification email. |
|
| 17 | - * |
|
| 18 | - * @var string |
|
| 19 | - */ |
|
| 16 | + * Contains the type of this notification email. |
|
| 17 | + * |
|
| 18 | + * @var string |
|
| 19 | + */ |
|
| 20 | 20 | public $id; |
| 21 | 21 | |
| 22 | 22 | /** |
| 23 | - * Contains any object to use in filters. |
|
| 24 | - * |
|
| 25 | - * @var false|WPInv_Invoice|WPInv_Item|WPInv_Subscription |
|
| 26 | - */ |
|
| 23 | + * Contains any object to use in filters. |
|
| 24 | + * |
|
| 25 | + * @var false|WPInv_Invoice|WPInv_Item|WPInv_Subscription |
|
| 26 | + */ |
|
| 27 | 27 | public $object; |
| 28 | 28 | |
| 29 | 29 | /** |
| 30 | - * Class constructor. |
|
| 31 | - * |
|
| 30 | + * Class constructor. |
|
| 31 | + * |
|
| 32 | 32 | * @param string $id Email Type. |
| 33 | 33 | * @param mixed $object Optional. Associated object. |
| 34 | - */ |
|
| 35 | - public function __construct( $id, $object = false ) { |
|
| 34 | + */ |
|
| 35 | + public function __construct( $id, $object = false ) { |
|
| 36 | 36 | $this->id = $id; |
| 37 | 37 | $this->object = $object; |
| 38 | 38 | } |
| 39 | 39 | |
| 40 | 40 | /** |
| 41 | - * Retrieves an option |
|
| 42 | - * |
|
| 41 | + * Retrieves an option |
|
| 42 | + * |
|
| 43 | 43 | * @return mixed |
| 44 | - */ |
|
| 45 | - public function get_option( $key ) { |
|
| 44 | + */ |
|
| 45 | + public function get_option( $key ) { |
|
| 46 | 46 | |
| 47 | 47 | $key = "email_{$this->id}_$key"; |
| 48 | 48 | $value = wpinv_get_option( $key, null ); |
@@ -60,80 +60,80 @@ discard block |
||
| 60 | 60 | } |
| 61 | 61 | |
| 62 | 62 | /** |
| 63 | - * Retrieves the email body. |
|
| 64 | - * |
|
| 63 | + * Retrieves the email body. |
|
| 64 | + * |
|
| 65 | 65 | * @return string |
| 66 | - */ |
|
| 67 | - public function get_body() { |
|
| 66 | + */ |
|
| 67 | + public function get_body() { |
|
| 68 | 68 | $body = $this->get_option( 'body' ); |
| 69 | 69 | return apply_filters( 'getpaid_get_email_body', $body, $this->id, $this->object ); |
| 70 | 70 | } |
| 71 | 71 | |
| 72 | 72 | /** |
| 73 | - * Retrieves the email subject. |
|
| 74 | - * |
|
| 73 | + * Retrieves the email subject. |
|
| 74 | + * |
|
| 75 | 75 | * @return string |
| 76 | - */ |
|
| 77 | - public function get_subject() { |
|
| 76 | + */ |
|
| 77 | + public function get_subject() { |
|
| 78 | 78 | $subject = $this->get_option( 'subject' ); |
| 79 | 79 | return apply_filters( 'getpaid_get_email_subject', $subject, $this->id, $this->object ); |
| 80 | 80 | } |
| 81 | 81 | |
| 82 | 82 | /** |
| 83 | - * Retrieves the email heading. |
|
| 84 | - * |
|
| 83 | + * Retrieves the email heading. |
|
| 84 | + * |
|
| 85 | 85 | * @return string |
| 86 | - */ |
|
| 87 | - public function get_heading() { |
|
| 86 | + */ |
|
| 87 | + public function get_heading() { |
|
| 88 | 88 | $heading = $this->get_option( 'heading' ); |
| 89 | 89 | return apply_filters( 'getpaid_get_email_heading', $heading, $this->id, $this->object ); |
| 90 | 90 | } |
| 91 | 91 | |
| 92 | 92 | /** |
| 93 | - * Checks if an email is active. |
|
| 94 | - * |
|
| 93 | + * Checks if an email is active. |
|
| 94 | + * |
|
| 95 | 95 | * @return bool |
| 96 | - */ |
|
| 97 | - public function is_active() { |
|
| 96 | + */ |
|
| 97 | + public function is_active() { |
|
| 98 | 98 | $is_active = ! empty( $this->get_option( 'active' ) ); |
| 99 | 99 | return apply_filters( 'getpaid_email_type_is_active', $is_active, $this->id, $this->object ); |
| 100 | 100 | } |
| 101 | 101 | |
| 102 | 102 | /** |
| 103 | - * Checks if the site's admin should receive email notifications. |
|
| 104 | - * |
|
| 103 | + * Checks if the site's admin should receive email notifications. |
|
| 104 | + * |
|
| 105 | 105 | * @return bool |
| 106 | - */ |
|
| 107 | - public function include_admin_bcc() { |
|
| 106 | + */ |
|
| 107 | + public function include_admin_bcc() { |
|
| 108 | 108 | $include_admin_bcc = ! empty( $this->get_option( 'admin_bcc' ) ); |
| 109 | 109 | return apply_filters( 'getpaid_email_type_include_admin_bcc', $include_admin_bcc, $this->id, $this->object ); |
| 110 | 110 | } |
| 111 | 111 | |
| 112 | 112 | /** |
| 113 | - * Checks whether this email should be sent to the customer or admin. |
|
| 114 | - * |
|
| 113 | + * Checks whether this email should be sent to the customer or admin. |
|
| 114 | + * |
|
| 115 | 115 | * @return bool |
| 116 | - */ |
|
| 117 | - public function is_admin_email() { |
|
| 116 | + */ |
|
| 117 | + public function is_admin_email() { |
|
| 118 | 118 | $is_admin_email = in_array( $this->id, array( 'new_invoice', 'failed_invoice' ) ); |
| 119 | 119 | return apply_filters( 'getpaid_email_type_is_admin_email', $is_admin_email, $this->id, $this->object ); |
| 120 | 120 | } |
| 121 | 121 | |
| 122 | 122 | /** |
| 123 | - * Returns email attachments. |
|
| 124 | - * |
|
| 123 | + * Returns email attachments. |
|
| 124 | + * |
|
| 125 | 125 | * @return array |
| 126 | - */ |
|
| 127 | - public function get_attachments() { |
|
| 126 | + */ |
|
| 127 | + public function get_attachments() { |
|
| 128 | 128 | return apply_filters( 'getpaid_get_email_attachments', array(), $this->id, $this->object ); |
| 129 | 129 | } |
| 130 | 130 | |
| 131 | 131 | /** |
| 132 | - * Returns an array of merge tags. |
|
| 133 | - * |
|
| 132 | + * Returns an array of merge tags. |
|
| 133 | + * |
|
| 134 | 134 | * @return array |
| 135 | - */ |
|
| 136 | - public function get_merge_tags() { |
|
| 135 | + */ |
|
| 136 | + public function get_merge_tags() { |
|
| 137 | 137 | |
| 138 | 138 | $merge_tags = array( |
| 139 | 139 | '{site_title}' => wpinv_get_blogname(), |
@@ -144,13 +144,13 @@ discard block |
||
| 144 | 144 | } |
| 145 | 145 | |
| 146 | 146 | /** |
| 147 | - * Adds merge tags to a text. |
|
| 148 | - * |
|
| 147 | + * Adds merge tags to a text. |
|
| 148 | + * |
|
| 149 | 149 | * @param string string $text |
| 150 | 150 | * @param array $merge_tags |
| 151 | 151 | * @return string |
| 152 | - */ |
|
| 153 | - public function add_merge_tags( $text, $merge_tags = array() ) { |
|
| 152 | + */ |
|
| 153 | + public function add_merge_tags( $text, $merge_tags = array() ) { |
|
| 154 | 154 | |
| 155 | 155 | foreach ( $merge_tags as $key => $value ) { |
| 156 | 156 | $text = str_replace( $key, $value, $text ); |
@@ -160,13 +160,13 @@ discard block |
||
| 160 | 160 | } |
| 161 | 161 | |
| 162 | 162 | /** |
| 163 | - * Returns the email content |
|
| 164 | - * |
|
| 163 | + * Returns the email content |
|
| 164 | + * |
|
| 165 | 165 | * @param array $merge_tags |
| 166 | 166 | * @param array $extra_args Extra template args |
| 167 | 167 | * @return string |
| 168 | - */ |
|
| 169 | - public function get_content( $merge_tags = array(), $extra_args = array() ) { |
|
| 168 | + */ |
|
| 169 | + public function get_content( $merge_tags = array(), $extra_args = array() ) { |
|
| 170 | 170 | |
| 171 | 171 | $content = wpinv_get_template_html( |
| 172 | 172 | "emails/wpinv-email-{$this->id}.php", |
@@ -12,294 +12,294 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | class GetPaid_Reports_Helper { |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * Get report totals such as invoice totals and discount amounts. |
|
| 17 | - * |
|
| 18 | - * Data example: |
|
| 19 | - * |
|
| 20 | - * 'subtotal' => array( |
|
| 21 | - * 'type' => 'invoice_data', |
|
| 22 | - * 'function' => 'SUM', |
|
| 23 | - * 'name' => 'subtotal' |
|
| 24 | - * ) |
|
| 25 | - * |
|
| 26 | - * @param array $args |
|
| 27 | - * @return mixed depending on query_type |
|
| 28 | - */ |
|
| 29 | - public static function get_invoice_report_data( $args = array() ) { |
|
| 30 | - global $wpdb; |
|
| 31 | - |
|
| 32 | - $default_args = array( |
|
| 33 | - 'data' => array(), // The data to retrieve. |
|
| 34 | - 'where' => array(), // An array of where queries. |
|
| 35 | - 'query_type' => 'get_row', // wpdb query to run. |
|
| 36 | - 'group_by' => '', // What to group results by. |
|
| 37 | - 'order_by' => '', // What to order by. |
|
| 38 | - 'limit' => '', // Results limit. |
|
| 39 | - 'filter_range' => array(), // An array of before and after dates to limit results by. |
|
| 40 | - 'invoice_types' => array( 'wpi_invoice' ), // An array of post types to retrieve. |
|
| 41 | - 'invoice_status' => array( 'publish', 'wpi-processing', 'wpi-onhold' ), |
|
| 42 | - 'parent_invoice_status' => false, // Optionally filter by parent invoice status. |
|
| 43 | - ); |
|
| 44 | - |
|
| 45 | - $args = apply_filters( 'getpaid_reports_get_invoice_report_data_args', $args ); |
|
| 46 | - $args = wp_parse_args( $args, $default_args ); |
|
| 47 | - |
|
| 48 | - extract( $args ); |
|
| 49 | - |
|
| 50 | - if ( empty( $data ) ) { |
|
| 51 | - return ''; |
|
| 52 | - } |
|
| 53 | - |
|
| 54 | - $query = array(); |
|
| 55 | - $query['select'] = 'SELECT ' . implode( ',', self::prepare_invoice_data( $data ) ); |
|
| 56 | - $query['from'] = "FROM {$wpdb->posts} AS posts"; |
|
| 57 | - $query['join'] = implode( ' ', self::prepare_invoice_joins( $data + $where, ! empty( $parent_invoice_status ) ) ); |
|
| 58 | - |
|
| 59 | - $query['where'] = " |
|
| 15 | + /** |
|
| 16 | + * Get report totals such as invoice totals and discount amounts. |
|
| 17 | + * |
|
| 18 | + * Data example: |
|
| 19 | + * |
|
| 20 | + * 'subtotal' => array( |
|
| 21 | + * 'type' => 'invoice_data', |
|
| 22 | + * 'function' => 'SUM', |
|
| 23 | + * 'name' => 'subtotal' |
|
| 24 | + * ) |
|
| 25 | + * |
|
| 26 | + * @param array $args |
|
| 27 | + * @return mixed depending on query_type |
|
| 28 | + */ |
|
| 29 | + public static function get_invoice_report_data( $args = array() ) { |
|
| 30 | + global $wpdb; |
|
| 31 | + |
|
| 32 | + $default_args = array( |
|
| 33 | + 'data' => array(), // The data to retrieve. |
|
| 34 | + 'where' => array(), // An array of where queries. |
|
| 35 | + 'query_type' => 'get_row', // wpdb query to run. |
|
| 36 | + 'group_by' => '', // What to group results by. |
|
| 37 | + 'order_by' => '', // What to order by. |
|
| 38 | + 'limit' => '', // Results limit. |
|
| 39 | + 'filter_range' => array(), // An array of before and after dates to limit results by. |
|
| 40 | + 'invoice_types' => array( 'wpi_invoice' ), // An array of post types to retrieve. |
|
| 41 | + 'invoice_status' => array( 'publish', 'wpi-processing', 'wpi-onhold' ), |
|
| 42 | + 'parent_invoice_status' => false, // Optionally filter by parent invoice status. |
|
| 43 | + ); |
|
| 44 | + |
|
| 45 | + $args = apply_filters( 'getpaid_reports_get_invoice_report_data_args', $args ); |
|
| 46 | + $args = wp_parse_args( $args, $default_args ); |
|
| 47 | + |
|
| 48 | + extract( $args ); |
|
| 49 | + |
|
| 50 | + if ( empty( $data ) ) { |
|
| 51 | + return ''; |
|
| 52 | + } |
|
| 53 | + |
|
| 54 | + $query = array(); |
|
| 55 | + $query['select'] = 'SELECT ' . implode( ',', self::prepare_invoice_data( $data ) ); |
|
| 56 | + $query['from'] = "FROM {$wpdb->posts} AS posts"; |
|
| 57 | + $query['join'] = implode( ' ', self::prepare_invoice_joins( $data + $where, ! empty( $parent_invoice_status ) ) ); |
|
| 58 | + |
|
| 59 | + $query['where'] = " |
|
| 60 | 60 | WHERE posts.post_type IN ( '" . implode( "','", $invoice_types ) . "' ) |
| 61 | 61 | "; |
| 62 | 62 | |
| 63 | - if ( ! empty( $invoice_status ) ) { |
|
| 64 | - $query['where'] .= " |
|
| 63 | + if ( ! empty( $invoice_status ) ) { |
|
| 64 | + $query['where'] .= " |
|
| 65 | 65 | AND posts.post_status IN ( '" . implode( "','", $invoice_status ) . "' ) |
| 66 | 66 | "; |
| 67 | - } |
|
| 68 | - |
|
| 69 | - if ( ! empty( $parent_invoice_status ) ) { |
|
| 70 | - if ( ! empty( $invoice_status ) ) { |
|
| 71 | - $query['where'] .= " AND ( parent.post_status IN ( '" . implode( "','", $parent_invoice_status ) . "' ) OR parent.ID IS NULL ) "; |
|
| 72 | - } else { |
|
| 73 | - $query['where'] .= " AND parent.post_status IN ( '" . implode( "','", $parent_invoice_status ) . "' ) "; |
|
| 74 | - } |
|
| 75 | - } |
|
| 76 | - |
|
| 77 | - if ( ! empty( $filter_range['before'] ) ) { |
|
| 78 | - $query['where'] .= " |
|
| 67 | + } |
|
| 68 | + |
|
| 69 | + if ( ! empty( $parent_invoice_status ) ) { |
|
| 70 | + if ( ! empty( $invoice_status ) ) { |
|
| 71 | + $query['where'] .= " AND ( parent.post_status IN ( '" . implode( "','", $parent_invoice_status ) . "' ) OR parent.ID IS NULL ) "; |
|
| 72 | + } else { |
|
| 73 | + $query['where'] .= " AND parent.post_status IN ( '" . implode( "','", $parent_invoice_status ) . "' ) "; |
|
| 74 | + } |
|
| 75 | + } |
|
| 76 | + |
|
| 77 | + if ( ! empty( $filter_range['before'] ) ) { |
|
| 78 | + $query['where'] .= " |
|
| 79 | 79 | AND posts.post_date < '" . date( 'Y-m-d 23:59:59', strtotime( $filter_range['before'] ) ) . "' |
| 80 | 80 | "; |
| 81 | - } |
|
| 81 | + } |
|
| 82 | 82 | |
| 83 | - if ( ! empty( $filter_range['after'] ) ) { |
|
| 84 | - $query['where'] .= " |
|
| 83 | + if ( ! empty( $filter_range['after'] ) ) { |
|
| 84 | + $query['where'] .= " |
|
| 85 | 85 | AND posts.post_date > '" . date( 'Y-m-d H:i:s', strtotime( $filter_range['after'] ) ) . "' |
| 86 | 86 | "; |
| 87 | - } |
|
| 87 | + } |
|
| 88 | 88 | |
| 89 | - if ( ! empty( $where ) ) { |
|
| 89 | + if ( ! empty( $where ) ) { |
|
| 90 | 90 | |
| 91 | - foreach ( $where as $value ) { |
|
| 91 | + foreach ( $where as $value ) { |
|
| 92 | 92 | |
| 93 | - if ( strtolower( $value['operator'] ) == 'in' || strtolower( $value['operator'] ) == 'not in' ) { |
|
| 94 | - |
|
| 95 | - if ( is_array( $value['value'] ) ) { |
|
| 96 | - $value['value'] = implode( "','", $value['value'] ); |
|
| 97 | - } |
|
| 98 | - |
|
| 99 | - if ( ! empty( $value['value'] ) ) { |
|
| 100 | - $where_value = "{$value['operator']} ('{$value['value']}')"; |
|
| 101 | - } |
|
| 102 | - } else { |
|
| 103 | - $where_value = "{$value['operator']} '{$value['value']}'"; |
|
| 104 | - } |
|
| 105 | - |
|
| 106 | - if ( ! empty( $where_value ) ) { |
|
| 107 | - $query['where'] .= " AND {$value['key']} {$where_value}"; |
|
| 108 | - } |
|
| 109 | - } |
|
| 110 | - } |
|
| 111 | - |
|
| 112 | - if ( $group_by ) { |
|
| 113 | - $query['group_by'] = "GROUP BY {$group_by}"; |
|
| 114 | - } |
|
| 115 | - |
|
| 116 | - if ( $order_by ) { |
|
| 117 | - $query['order_by'] = "ORDER BY {$order_by}"; |
|
| 118 | - } |
|
| 119 | - |
|
| 120 | - if ( $limit ) { |
|
| 121 | - $query['limit'] = "LIMIT {$limit}"; |
|
| 122 | - } |
|
| 123 | - |
|
| 124 | - $query = apply_filters( 'getpaid_reports_get_invoice_report_query', $query, $data ); |
|
| 125 | - $query = implode( ' ', $query ); |
|
| 126 | - |
|
| 127 | - return self::execute( $query_type, $query ); |
|
| 128 | - |
|
| 129 | - } |
|
| 130 | - |
|
| 131 | - /** |
|
| 132 | - * Prepares the data to select. |
|
| 133 | - * |
|
| 134 | - * |
|
| 135 | - * @param array $data |
|
| 136 | - * @return array |
|
| 137 | - */ |
|
| 138 | - public static function prepare_invoice_data( $data ) { |
|
| 139 | - |
|
| 140 | - $prepared = array(); |
|
| 141 | - |
|
| 142 | - foreach ( $data as $raw_key => $value ) { |
|
| 143 | - $key = sanitize_key( $raw_key ); |
|
| 144 | - $distinct = ''; |
|
| 145 | - |
|
| 146 | - if ( isset( $value['distinct'] ) ) { |
|
| 147 | - $distinct = 'DISTINCT'; |
|
| 148 | - } |
|
| 149 | - |
|
| 150 | - $get_key = self::get_invoice_table_key( $key, $value['type'] ); |
|
| 151 | - |
|
| 152 | - if ( false === $get_key ) { |
|
| 153 | - // Skip to the next foreach iteration else the query will be invalid. |
|
| 154 | - continue; |
|
| 155 | - } |
|
| 156 | - |
|
| 157 | - if ( ! empty( $value['function'] ) ) { |
|
| 158 | - $get = "{$value['function']}({$distinct} {$get_key})"; |
|
| 159 | - } else { |
|
| 160 | - $get = "{$distinct} {$get_key}"; |
|
| 161 | - } |
|
| 162 | - |
|
| 163 | - $prepared[] = "{$get} as {$value['name']}"; |
|
| 164 | - } |
|
| 165 | - |
|
| 166 | - return $prepared; |
|
| 167 | - |
|
| 168 | - } |
|
| 169 | - |
|
| 170 | - /** |
|
| 171 | - * Prepares the joins to use. |
|
| 172 | - * |
|
| 173 | - * |
|
| 174 | - * @param array $data |
|
| 175 | - * @param bool $with_parent |
|
| 176 | - * @return array |
|
| 177 | - */ |
|
| 178 | - public static function prepare_invoice_joins( $data, $with_parent ) { |
|
| 179 | - global $wpdb; |
|
| 180 | - |
|
| 181 | - $prepared = array(); |
|
| 182 | - |
|
| 183 | - foreach ( $data as $raw_key => $value ) { |
|
| 184 | - $join_type = isset( $value['join_type'] ) ? $value['join_type'] : 'INNER'; |
|
| 185 | - $type = isset( $value['type'] ) ? $value['type'] : false; |
|
| 186 | - $key = sanitize_key( $raw_key ); |
|
| 187 | - |
|
| 188 | - switch ( $type ) { |
|
| 189 | - case 'meta': |
|
| 190 | - $prepared[ "meta_{$key}" ] = "{$join_type} JOIN {$wpdb->postmeta} AS meta_{$key} ON ( posts.ID = meta_{$key}.post_id AND meta_{$key}.meta_key = '{$raw_key}' )"; |
|
| 191 | - break; |
|
| 192 | - case 'parent_meta': |
|
| 193 | - $prepared[ "parent_meta_{$key}" ] = "{$join_type} JOIN {$wpdb->postmeta} AS parent_meta_{$key} ON (posts.post_parent = parent_meta_{$key}.post_id) AND (parent_meta_{$key}.meta_key = '{$raw_key}')"; |
|
| 194 | - break; |
|
| 195 | - case 'invoice_data': |
|
| 196 | - $prepared['invoices'] = "{$join_type} JOIN {$wpdb->prefix}getpaid_invoices AS invoices ON posts.ID = invoices.post_id"; |
|
| 197 | - break; |
|
| 198 | - case 'invoice_item': |
|
| 199 | - $prepared['invoice_items'] = "{$join_type} JOIN {$wpdb->prefix}getpaid_invoice_items AS invoice_items ON posts.ID = invoice_items.post_id"; |
|
| 200 | - break; |
|
| 201 | - } |
|
| 202 | - } |
|
| 203 | - |
|
| 204 | - if ( $with_parent ) { |
|
| 205 | - $prepared['parent'] = "LEFT JOIN {$wpdb->posts} AS parent ON posts.post_parent = parent.ID"; |
|
| 206 | - } |
|
| 207 | - |
|
| 208 | - return $prepared; |
|
| 209 | - |
|
| 210 | - } |
|
| 211 | - |
|
| 212 | - /** |
|
| 213 | - * Retrieves the appropriate table key to use. |
|
| 214 | - * |
|
| 215 | - * |
|
| 216 | - * @param string $key |
|
| 217 | - * @param string $table |
|
| 218 | - * @return string|false |
|
| 219 | - */ |
|
| 220 | - public static function get_invoice_table_key( $key, $table ) { |
|
| 221 | - |
|
| 222 | - $keys = array( |
|
| 223 | - 'meta' => "meta_{$key}.meta_value", |
|
| 224 | - 'parent_meta' => "parent_meta_{$key}.meta_value", |
|
| 225 | - 'post_data' => "posts.{$key}", |
|
| 226 | - 'invoice_data' => "invoices.{$key}", |
|
| 227 | - 'invoice_item' => "invoice_items.{$key}", |
|
| 228 | - ); |
|
| 229 | - |
|
| 230 | - return isset( $keys[ $table ] ) ? $keys[ $table ] : false; |
|
| 231 | - |
|
| 232 | - } |
|
| 233 | - |
|
| 234 | - /** |
|
| 235 | - * Executes a query and caches the result for a minute. |
|
| 236 | - * |
|
| 237 | - * |
|
| 238 | - * @param string $query_type |
|
| 239 | - * @param string $query |
|
| 240 | - * @return mixed depending on query_type |
|
| 241 | - */ |
|
| 242 | - public static function execute( $query_type, $query ) { |
|
| 243 | - global $wpdb; |
|
| 244 | - |
|
| 245 | - $query_hash = md5( $query_type . $query ); |
|
| 246 | - $result = self::get_cached_query( $query_hash ); |
|
| 247 | - if ( $result === false ) { |
|
| 248 | - self::enable_big_selects(); |
|
| 249 | - |
|
| 250 | - $result = $wpdb->$query_type( $query ); |
|
| 251 | - self::set_cached_query( $query_hash, $result ); |
|
| 252 | - } |
|
| 253 | - |
|
| 254 | - return $result; |
|
| 255 | - |
|
| 256 | - } |
|
| 257 | - |
|
| 258 | - /** |
|
| 259 | - * Enables big mysql selects for reports, just once for this session. |
|
| 260 | - */ |
|
| 261 | - protected static function enable_big_selects() { |
|
| 262 | - static $big_selects = false; |
|
| 263 | - |
|
| 264 | - global $wpdb; |
|
| 265 | - |
|
| 266 | - if ( ! $big_selects ) { |
|
| 267 | - $wpdb->query( 'SET SESSION SQL_BIG_SELECTS=1' ); |
|
| 268 | - $big_selects = true; |
|
| 269 | - } |
|
| 270 | - } |
|
| 271 | - |
|
| 272 | - /** |
|
| 273 | - * Get the cached query result or null if it's not in the cache. |
|
| 274 | - * |
|
| 275 | - * @param string $query_hash The query hash. |
|
| 276 | - * |
|
| 277 | - * @return mixed|false The cache contents on success, false on failure to retrieve contents. |
|
| 278 | - */ |
|
| 279 | - protected static function get_cached_query( $query_hash ) { |
|
| 280 | - |
|
| 281 | - return wp_cache_get( |
|
| 282 | - $query_hash, |
|
| 283 | - strtolower( __CLASS__ ) |
|
| 284 | - ); |
|
| 285 | - |
|
| 286 | - } |
|
| 287 | - |
|
| 288 | - /** |
|
| 289 | - * Set the cached query result. |
|
| 290 | - * |
|
| 291 | - * @param string $query_hash The query hash. |
|
| 292 | - * @param mixed $data The data to cache. |
|
| 293 | - */ |
|
| 294 | - protected static function set_cached_query( $query_hash, $data ) { |
|
| 295 | - |
|
| 296 | - wp_cache_set( |
|
| 297 | - $query_hash, |
|
| 298 | - $data, |
|
| 299 | - strtolower( __CLASS__ ), |
|
| 300 | - MINUTE_IN_SECONDS |
|
| 301 | - ); |
|
| 302 | - |
|
| 303 | - } |
|
| 93 | + if ( strtolower( $value['operator'] ) == 'in' || strtolower( $value['operator'] ) == 'not in' ) { |
|
| 94 | + |
|
| 95 | + if ( is_array( $value['value'] ) ) { |
|
| 96 | + $value['value'] = implode( "','", $value['value'] ); |
|
| 97 | + } |
|
| 98 | + |
|
| 99 | + if ( ! empty( $value['value'] ) ) { |
|
| 100 | + $where_value = "{$value['operator']} ('{$value['value']}')"; |
|
| 101 | + } |
|
| 102 | + } else { |
|
| 103 | + $where_value = "{$value['operator']} '{$value['value']}'"; |
|
| 104 | + } |
|
| 105 | + |
|
| 106 | + if ( ! empty( $where_value ) ) { |
|
| 107 | + $query['where'] .= " AND {$value['key']} {$where_value}"; |
|
| 108 | + } |
|
| 109 | + } |
|
| 110 | + } |
|
| 111 | + |
|
| 112 | + if ( $group_by ) { |
|
| 113 | + $query['group_by'] = "GROUP BY {$group_by}"; |
|
| 114 | + } |
|
| 115 | + |
|
| 116 | + if ( $order_by ) { |
|
| 117 | + $query['order_by'] = "ORDER BY {$order_by}"; |
|
| 118 | + } |
|
| 119 | + |
|
| 120 | + if ( $limit ) { |
|
| 121 | + $query['limit'] = "LIMIT {$limit}"; |
|
| 122 | + } |
|
| 123 | + |
|
| 124 | + $query = apply_filters( 'getpaid_reports_get_invoice_report_query', $query, $data ); |
|
| 125 | + $query = implode( ' ', $query ); |
|
| 126 | + |
|
| 127 | + return self::execute( $query_type, $query ); |
|
| 128 | + |
|
| 129 | + } |
|
| 130 | + |
|
| 131 | + /** |
|
| 132 | + * Prepares the data to select. |
|
| 133 | + * |
|
| 134 | + * |
|
| 135 | + * @param array $data |
|
| 136 | + * @return array |
|
| 137 | + */ |
|
| 138 | + public static function prepare_invoice_data( $data ) { |
|
| 139 | + |
|
| 140 | + $prepared = array(); |
|
| 141 | + |
|
| 142 | + foreach ( $data as $raw_key => $value ) { |
|
| 143 | + $key = sanitize_key( $raw_key ); |
|
| 144 | + $distinct = ''; |
|
| 145 | + |
|
| 146 | + if ( isset( $value['distinct'] ) ) { |
|
| 147 | + $distinct = 'DISTINCT'; |
|
| 148 | + } |
|
| 149 | + |
|
| 150 | + $get_key = self::get_invoice_table_key( $key, $value['type'] ); |
|
| 151 | + |
|
| 152 | + if ( false === $get_key ) { |
|
| 153 | + // Skip to the next foreach iteration else the query will be invalid. |
|
| 154 | + continue; |
|
| 155 | + } |
|
| 156 | + |
|
| 157 | + if ( ! empty( $value['function'] ) ) { |
|
| 158 | + $get = "{$value['function']}({$distinct} {$get_key})"; |
|
| 159 | + } else { |
|
| 160 | + $get = "{$distinct} {$get_key}"; |
|
| 161 | + } |
|
| 162 | + |
|
| 163 | + $prepared[] = "{$get} as {$value['name']}"; |
|
| 164 | + } |
|
| 165 | + |
|
| 166 | + return $prepared; |
|
| 167 | + |
|
| 168 | + } |
|
| 169 | + |
|
| 170 | + /** |
|
| 171 | + * Prepares the joins to use. |
|
| 172 | + * |
|
| 173 | + * |
|
| 174 | + * @param array $data |
|
| 175 | + * @param bool $with_parent |
|
| 176 | + * @return array |
|
| 177 | + */ |
|
| 178 | + public static function prepare_invoice_joins( $data, $with_parent ) { |
|
| 179 | + global $wpdb; |
|
| 180 | + |
|
| 181 | + $prepared = array(); |
|
| 182 | + |
|
| 183 | + foreach ( $data as $raw_key => $value ) { |
|
| 184 | + $join_type = isset( $value['join_type'] ) ? $value['join_type'] : 'INNER'; |
|
| 185 | + $type = isset( $value['type'] ) ? $value['type'] : false; |
|
| 186 | + $key = sanitize_key( $raw_key ); |
|
| 187 | + |
|
| 188 | + switch ( $type ) { |
|
| 189 | + case 'meta': |
|
| 190 | + $prepared[ "meta_{$key}" ] = "{$join_type} JOIN {$wpdb->postmeta} AS meta_{$key} ON ( posts.ID = meta_{$key}.post_id AND meta_{$key}.meta_key = '{$raw_key}' )"; |
|
| 191 | + break; |
|
| 192 | + case 'parent_meta': |
|
| 193 | + $prepared[ "parent_meta_{$key}" ] = "{$join_type} JOIN {$wpdb->postmeta} AS parent_meta_{$key} ON (posts.post_parent = parent_meta_{$key}.post_id) AND (parent_meta_{$key}.meta_key = '{$raw_key}')"; |
|
| 194 | + break; |
|
| 195 | + case 'invoice_data': |
|
| 196 | + $prepared['invoices'] = "{$join_type} JOIN {$wpdb->prefix}getpaid_invoices AS invoices ON posts.ID = invoices.post_id"; |
|
| 197 | + break; |
|
| 198 | + case 'invoice_item': |
|
| 199 | + $prepared['invoice_items'] = "{$join_type} JOIN {$wpdb->prefix}getpaid_invoice_items AS invoice_items ON posts.ID = invoice_items.post_id"; |
|
| 200 | + break; |
|
| 201 | + } |
|
| 202 | + } |
|
| 203 | + |
|
| 204 | + if ( $with_parent ) { |
|
| 205 | + $prepared['parent'] = "LEFT JOIN {$wpdb->posts} AS parent ON posts.post_parent = parent.ID"; |
|
| 206 | + } |
|
| 207 | + |
|
| 208 | + return $prepared; |
|
| 209 | + |
|
| 210 | + } |
|
| 211 | + |
|
| 212 | + /** |
|
| 213 | + * Retrieves the appropriate table key to use. |
|
| 214 | + * |
|
| 215 | + * |
|
| 216 | + * @param string $key |
|
| 217 | + * @param string $table |
|
| 218 | + * @return string|false |
|
| 219 | + */ |
|
| 220 | + public static function get_invoice_table_key( $key, $table ) { |
|
| 221 | + |
|
| 222 | + $keys = array( |
|
| 223 | + 'meta' => "meta_{$key}.meta_value", |
|
| 224 | + 'parent_meta' => "parent_meta_{$key}.meta_value", |
|
| 225 | + 'post_data' => "posts.{$key}", |
|
| 226 | + 'invoice_data' => "invoices.{$key}", |
|
| 227 | + 'invoice_item' => "invoice_items.{$key}", |
|
| 228 | + ); |
|
| 229 | + |
|
| 230 | + return isset( $keys[ $table ] ) ? $keys[ $table ] : false; |
|
| 231 | + |
|
| 232 | + } |
|
| 233 | + |
|
| 234 | + /** |
|
| 235 | + * Executes a query and caches the result for a minute. |
|
| 236 | + * |
|
| 237 | + * |
|
| 238 | + * @param string $query_type |
|
| 239 | + * @param string $query |
|
| 240 | + * @return mixed depending on query_type |
|
| 241 | + */ |
|
| 242 | + public static function execute( $query_type, $query ) { |
|
| 243 | + global $wpdb; |
|
| 244 | + |
|
| 245 | + $query_hash = md5( $query_type . $query ); |
|
| 246 | + $result = self::get_cached_query( $query_hash ); |
|
| 247 | + if ( $result === false ) { |
|
| 248 | + self::enable_big_selects(); |
|
| 249 | + |
|
| 250 | + $result = $wpdb->$query_type( $query ); |
|
| 251 | + self::set_cached_query( $query_hash, $result ); |
|
| 252 | + } |
|
| 253 | + |
|
| 254 | + return $result; |
|
| 255 | + |
|
| 256 | + } |
|
| 257 | + |
|
| 258 | + /** |
|
| 259 | + * Enables big mysql selects for reports, just once for this session. |
|
| 260 | + */ |
|
| 261 | + protected static function enable_big_selects() { |
|
| 262 | + static $big_selects = false; |
|
| 263 | + |
|
| 264 | + global $wpdb; |
|
| 265 | + |
|
| 266 | + if ( ! $big_selects ) { |
|
| 267 | + $wpdb->query( 'SET SESSION SQL_BIG_SELECTS=1' ); |
|
| 268 | + $big_selects = true; |
|
| 269 | + } |
|
| 270 | + } |
|
| 271 | + |
|
| 272 | + /** |
|
| 273 | + * Get the cached query result or null if it's not in the cache. |
|
| 274 | + * |
|
| 275 | + * @param string $query_hash The query hash. |
|
| 276 | + * |
|
| 277 | + * @return mixed|false The cache contents on success, false on failure to retrieve contents. |
|
| 278 | + */ |
|
| 279 | + protected static function get_cached_query( $query_hash ) { |
|
| 280 | + |
|
| 281 | + return wp_cache_get( |
|
| 282 | + $query_hash, |
|
| 283 | + strtolower( __CLASS__ ) |
|
| 284 | + ); |
|
| 285 | + |
|
| 286 | + } |
|
| 287 | + |
|
| 288 | + /** |
|
| 289 | + * Set the cached query result. |
|
| 290 | + * |
|
| 291 | + * @param string $query_hash The query hash. |
|
| 292 | + * @param mixed $data The data to cache. |
|
| 293 | + */ |
|
| 294 | + protected static function set_cached_query( $query_hash, $data ) { |
|
| 295 | + |
|
| 296 | + wp_cache_set( |
|
| 297 | + $query_hash, |
|
| 298 | + $data, |
|
| 299 | + strtolower( __CLASS__ ), |
|
| 300 | + MINUTE_IN_SECONDS |
|
| 301 | + ); |
|
| 302 | + |
|
| 303 | + } |
|
| 304 | 304 | |
| 305 | 305 | } |