@@ -49,7 +49,7 @@ |
||
| 49 | 49 | * |
| 50 | 50 | * @since: 1.4 |
| 51 | 51 | * |
| 52 | - * @return bool |
|
| 52 | + * @return boolean|null |
|
| 53 | 53 | */ |
| 54 | 54 | function give_allow_sessions_for_sysinfo() { |
| 55 | 55 | if ( is_admin() && ( isset( $_GET['page'] ) && isset( $_GET['tab'] ) ) && ( $_GET['tab'] == 'system_info' && $_GET['page'] == 'give-settings' ) ) { |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | */ |
| 12 | 12 | |
| 13 | 13 | // Exit if accessed directly |
| 14 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 14 | +if ( ! defined('ABSPATH')) { |
|
| 15 | 15 | exit; |
| 16 | 16 | } |
| 17 | 17 | |
@@ -24,14 +24,14 @@ discard block |
||
| 24 | 24 | */ |
| 25 | 25 | function give_system_info_callback() { |
| 26 | 26 | |
| 27 | - if ( ! current_user_can( 'manage_give_settings' ) ) { |
|
| 27 | + if ( ! current_user_can('manage_give_settings')) { |
|
| 28 | 28 | return; |
| 29 | 29 | } |
| 30 | 30 | ?> |
| 31 | 31 | <textarea readonly="readonly" onclick="this.focus(); this.select()" id="system-info-textarea" name="give-sysinfo" title="To copy the system info, click below then press Ctrl + C (PC) or Cmd + C (Mac)."><?php echo give_tools_sysinfo_get(); ?></textarea> |
| 32 | 32 | <p class="submit"> |
| 33 | 33 | <input type="hidden" name="give-action" value="download_sysinfo"/> |
| 34 | - <?php submit_button( 'Download System Info File', 'secondary', 'give-download-sysinfo', false ); ?> |
|
| 34 | + <?php submit_button('Download System Info File', 'secondary', 'give-download-sysinfo', false); ?> |
|
| 35 | 35 | </p> |
| 36 | 36 | <style> |
| 37 | 37 | .give_forms_page_give-settings .give-submit-wrap { |
@@ -52,12 +52,12 @@ discard block |
||
| 52 | 52 | * @return bool |
| 53 | 53 | */ |
| 54 | 54 | function give_allow_sessions_for_sysinfo() { |
| 55 | - if ( is_admin() && ( isset( $_GET['page'] ) && isset( $_GET['tab'] ) ) && ( $_GET['tab'] == 'system_info' && $_GET['page'] == 'give-settings' ) ) { |
|
| 55 | + if (is_admin() && (isset($_GET['page']) && isset($_GET['tab'])) && ($_GET['tab'] == 'system_info' && $_GET['page'] == 'give-settings')) { |
|
| 56 | 56 | return true; |
| 57 | 57 | } |
| 58 | 58 | } |
| 59 | 59 | |
| 60 | -add_filter( 'give_start_session', 'give_allow_sessions_for_sysinfo' ); |
|
| 60 | +add_filter('give_start_session', 'give_allow_sessions_for_sysinfo'); |
|
| 61 | 61 | |
| 62 | 62 | |
| 63 | 63 | /** |
@@ -72,63 +72,63 @@ discard block |
||
| 72 | 72 | function give_tools_sysinfo_get() { |
| 73 | 73 | global $wpdb, $give_options; |
| 74 | 74 | |
| 75 | - if ( ! class_exists( 'Browser' ) ) { |
|
| 76 | - require_once GIVE_PLUGIN_DIR . 'includes/libraries/browser.php'; |
|
| 75 | + if ( ! class_exists('Browser')) { |
|
| 76 | + require_once GIVE_PLUGIN_DIR.'includes/libraries/browser.php'; |
|
| 77 | 77 | } |
| 78 | 78 | |
| 79 | 79 | $browser = new Browser(); |
| 80 | 80 | |
| 81 | 81 | // Get theme info |
| 82 | - if ( get_bloginfo( 'version' ) < '3.4' ) { |
|
| 83 | - $theme_data = wp_get_theme( get_stylesheet_directory() . '/style.css' ); |
|
| 84 | - $theme = $theme_data['Name'] . ' ' . $theme_data['Version']; |
|
| 82 | + if (get_bloginfo('version') < '3.4') { |
|
| 83 | + $theme_data = wp_get_theme(get_stylesheet_directory().'/style.css'); |
|
| 84 | + $theme = $theme_data['Name'].' '.$theme_data['Version']; |
|
| 85 | 85 | } else { |
| 86 | 86 | $theme_data = wp_get_theme(); |
| 87 | - $theme = $theme_data->Name . ' ' . $theme_data->Version; |
|
| 87 | + $theme = $theme_data->Name.' '.$theme_data->Version; |
|
| 88 | 88 | } |
| 89 | 89 | |
| 90 | 90 | // Try to identify the hosting provider |
| 91 | 91 | $host = give_get_host(); |
| 92 | 92 | |
| 93 | - $return = '### Begin System Info ###' . "\n\n"; |
|
| 93 | + $return = '### Begin System Info ###'."\n\n"; |
|
| 94 | 94 | |
| 95 | 95 | // Start with the basics... |
| 96 | - $return .= '-- Site Info' . "\n\n"; |
|
| 97 | - $return .= 'Site URL: ' . site_url() . "\n"; |
|
| 98 | - $return .= 'Home URL: ' . home_url() . "\n"; |
|
| 99 | - $return .= 'Multisite: ' . ( is_multisite() ? 'Yes' : 'No' ) . "\n"; |
|
| 96 | + $return .= '-- Site Info'."\n\n"; |
|
| 97 | + $return .= 'Site URL: '.site_url()."\n"; |
|
| 98 | + $return .= 'Home URL: '.home_url()."\n"; |
|
| 99 | + $return .= 'Multisite: '.(is_multisite() ? 'Yes' : 'No')."\n"; |
|
| 100 | 100 | |
| 101 | - $return = apply_filters( 'give_sysinfo_after_site_info', $return ); |
|
| 101 | + $return = apply_filters('give_sysinfo_after_site_info', $return); |
|
| 102 | 102 | |
| 103 | 103 | // Can we determine the site's host? |
| 104 | - if ( $host ) { |
|
| 105 | - $return .= "\n" . '-- Hosting Provider' . "\n\n"; |
|
| 106 | - $return .= 'Host: ' . $host . "\n"; |
|
| 104 | + if ($host) { |
|
| 105 | + $return .= "\n".'-- Hosting Provider'."\n\n"; |
|
| 106 | + $return .= 'Host: '.$host."\n"; |
|
| 107 | 107 | |
| 108 | - $return = apply_filters( 'give_sysinfo_after_host_info', $return ); |
|
| 108 | + $return = apply_filters('give_sysinfo_after_host_info', $return); |
|
| 109 | 109 | } |
| 110 | 110 | |
| 111 | 111 | // The local users' browser information, handled by the Browser class |
| 112 | - $return .= "\n" . '-- User Browser' . "\n\n"; |
|
| 112 | + $return .= "\n".'-- User Browser'."\n\n"; |
|
| 113 | 113 | $return .= $browser; |
| 114 | 114 | |
| 115 | - $return = apply_filters( 'give_sysinfo_after_user_browser', $return ); |
|
| 115 | + $return = apply_filters('give_sysinfo_after_user_browser', $return); |
|
| 116 | 116 | |
| 117 | 117 | // WordPress configuration |
| 118 | - $return .= "\n" . '-- WordPress Configuration' . "\n\n"; |
|
| 119 | - $return .= 'Version: ' . get_bloginfo( 'version' ) . "\n"; |
|
| 120 | - $return .= 'Language: ' . ( defined( 'WPLANG' ) && WPLANG ? WPLANG : 'en_US' ) . "\n"; |
|
| 121 | - $return .= 'Permalink Structure: ' . ( get_option( 'permalink_structure' ) ? get_option( 'permalink_structure' ) : 'Default' ) . "\n"; |
|
| 122 | - $return .= 'Active Theme: ' . $theme . "\n"; |
|
| 123 | - $return .= 'Show On Front: ' . get_option( 'show_on_front' ) . "\n"; |
|
| 118 | + $return .= "\n".'-- WordPress Configuration'."\n\n"; |
|
| 119 | + $return .= 'Version: '.get_bloginfo('version')."\n"; |
|
| 120 | + $return .= 'Language: '.(defined('WPLANG') && WPLANG ? WPLANG : 'en_US')."\n"; |
|
| 121 | + $return .= 'Permalink Structure: '.(get_option('permalink_structure') ? get_option('permalink_structure') : 'Default')."\n"; |
|
| 122 | + $return .= 'Active Theme: '.$theme."\n"; |
|
| 123 | + $return .= 'Show On Front: '.get_option('show_on_front')."\n"; |
|
| 124 | 124 | |
| 125 | 125 | // Only show page specs if frontpage is set to 'page' |
| 126 | - if ( get_option( 'show_on_front' ) == 'page' ) { |
|
| 127 | - $front_page_id = get_option( 'page_on_front' ); |
|
| 128 | - $blog_page_id = get_option( 'page_for_posts' ); |
|
| 126 | + if (get_option('show_on_front') == 'page') { |
|
| 127 | + $front_page_id = get_option('page_on_front'); |
|
| 128 | + $blog_page_id = get_option('page_for_posts'); |
|
| 129 | 129 | |
| 130 | - $return .= 'Page On Front: ' . ( $front_page_id != 0 ? get_the_title( $front_page_id ) . ' (#' . $front_page_id . ')' : 'Unset' ) . "\n"; |
|
| 131 | - $return .= 'Page For Posts: ' . ( $blog_page_id != 0 ? get_the_title( $blog_page_id ) . ' (#' . $blog_page_id . ')' : 'Unset' ) . "\n"; |
|
| 130 | + $return .= 'Page On Front: '.($front_page_id != 0 ? get_the_title($front_page_id).' (#'.$front_page_id.')' : 'Unset')."\n"; |
|
| 131 | + $return .= 'Page For Posts: '.($blog_page_id != 0 ? get_the_title($blog_page_id).' (#'.$blog_page_id.')' : 'Unset')."\n"; |
|
| 132 | 132 | } |
| 133 | 133 | |
| 134 | 134 | // Make sure wp_remote_post() is working |
@@ -137,205 +137,205 @@ discard block |
||
| 137 | 137 | $params = array( |
| 138 | 138 | 'sslverify' => false, |
| 139 | 139 | 'timeout' => 60, |
| 140 | - 'user-agent' => 'Give/' . GIVE_VERSION, |
|
| 140 | + 'user-agent' => 'Give/'.GIVE_VERSION, |
|
| 141 | 141 | 'body' => $request |
| 142 | 142 | ); |
| 143 | 143 | |
| 144 | - $response = wp_remote_post( 'https://www.paypal.com/cgi-bin/webscr', $params ); |
|
| 144 | + $response = wp_remote_post('https://www.paypal.com/cgi-bin/webscr', $params); |
|
| 145 | 145 | |
| 146 | - if ( ! is_wp_error( $response ) && $response['response']['code'] >= 200 && $response['response']['code'] < 300 ) { |
|
| 146 | + if ( ! is_wp_error($response) && $response['response']['code'] >= 200 && $response['response']['code'] < 300) { |
|
| 147 | 147 | $WP_REMOTE_POST = 'wp_remote_post() works'; |
| 148 | 148 | } else { |
| 149 | 149 | $WP_REMOTE_POST = 'wp_remote_post() does not work'; |
| 150 | 150 | } |
| 151 | 151 | |
| 152 | - $return .= 'Remote Post: ' . $WP_REMOTE_POST . "\n"; |
|
| 153 | - $return .= 'Table Prefix: ' . 'Length: ' . strlen( $wpdb->prefix ) . ' Status: ' . ( strlen( $wpdb->prefix ) > 16 ? 'ERROR: Too long' : 'Acceptable' ) . "\n"; |
|
| 154 | - $return .= 'Admin AJAX: ' . ( give_test_ajax_works() ? 'Accessible' : 'Inaccessible' ) . "\n"; |
|
| 155 | - $return .= 'WP_DEBUG: ' . ( defined( 'WP_DEBUG' ) ? WP_DEBUG ? 'Enabled' : 'Disabled' : 'Not set' ) . "\n"; |
|
| 156 | - $return .= 'Memory Limit: ' . WP_MEMORY_LIMIT . "\n"; |
|
| 157 | - $return .= 'Registered Post Stati: ' . implode( ', ', get_post_stati() ) . "\n"; |
|
| 152 | + $return .= 'Remote Post: '.$WP_REMOTE_POST."\n"; |
|
| 153 | + $return .= 'Table Prefix: '.'Length: '.strlen($wpdb->prefix).' Status: '.(strlen($wpdb->prefix) > 16 ? 'ERROR: Too long' : 'Acceptable')."\n"; |
|
| 154 | + $return .= 'Admin AJAX: '.(give_test_ajax_works() ? 'Accessible' : 'Inaccessible')."\n"; |
|
| 155 | + $return .= 'WP_DEBUG: '.(defined('WP_DEBUG') ? WP_DEBUG ? 'Enabled' : 'Disabled' : 'Not set')."\n"; |
|
| 156 | + $return .= 'Memory Limit: '.WP_MEMORY_LIMIT."\n"; |
|
| 157 | + $return .= 'Registered Post Stati: '.implode(', ', get_post_stati())."\n"; |
|
| 158 | 158 | |
| 159 | - $return = apply_filters( 'give_sysinfo_after_wordpress_config', $return ); |
|
| 159 | + $return = apply_filters('give_sysinfo_after_wordpress_config', $return); |
|
| 160 | 160 | |
| 161 | 161 | // GIVE configuration |
| 162 | - $return .= "\n" . '-- Give Configuration' . "\n\n"; |
|
| 163 | - $return .= 'Version: ' . GIVE_VERSION . "\n"; |
|
| 164 | - $return .= 'Upgraded From: ' . get_option( 'give_version_upgraded_from', 'None' ) . "\n"; |
|
| 165 | - $return .= 'Test Mode: ' . ( give_is_test_mode() ? "Enabled\n" : "Disabled\n" ); |
|
| 166 | - $return .= 'Currency Code: ' . give_get_currency() . "\n"; |
|
| 167 | - $return .= 'Currency Position: ' . give_get_option( 'currency_position', 'before' ) . "\n"; |
|
| 168 | - $return .= 'Decimal Separator: ' . give_get_option( 'decimal_separator', '.' ) . "\n"; |
|
| 169 | - $return .= 'Thousands Separator: ' . give_get_option( 'thousands_separator', ',' ) . "\n"; |
|
| 162 | + $return .= "\n".'-- Give Configuration'."\n\n"; |
|
| 163 | + $return .= 'Version: '.GIVE_VERSION."\n"; |
|
| 164 | + $return .= 'Upgraded From: '.get_option('give_version_upgraded_from', 'None')."\n"; |
|
| 165 | + $return .= 'Test Mode: '.(give_is_test_mode() ? "Enabled\n" : "Disabled\n"); |
|
| 166 | + $return .= 'Currency Code: '.give_get_currency()."\n"; |
|
| 167 | + $return .= 'Currency Position: '.give_get_option('currency_position', 'before')."\n"; |
|
| 168 | + $return .= 'Decimal Separator: '.give_get_option('decimal_separator', '.')."\n"; |
|
| 169 | + $return .= 'Thousands Separator: '.give_get_option('thousands_separator', ',')."\n"; |
|
| 170 | 170 | |
| 171 | - $return = apply_filters( 'give_sysinfo_after_give_config', $return ); |
|
| 171 | + $return = apply_filters('give_sysinfo_after_give_config', $return); |
|
| 172 | 172 | |
| 173 | 173 | // GIVE pages |
| 174 | - $return .= "\n" . '-- Give Page Configuration' . "\n\n"; |
|
| 175 | - $return .= 'Success Page: ' . ( ! empty( $give_options['success_page'] ) ? get_permalink( $give_options['success_page'] ) . "\n" : "Unset\n" ); |
|
| 176 | - $return .= 'Failure Page: ' . ( ! empty( $give_options['failure_page'] ) ? get_permalink( $give_options['failure_page'] ) . "\n" : "Unset\n" ); |
|
| 177 | - $return .= 'Give Forms Slug: ' . ( defined( 'GIVE_SLUG' ) ? '/' . GIVE_SLUG . "\n" : "/donations\n" ); |
|
| 174 | + $return .= "\n".'-- Give Page Configuration'."\n\n"; |
|
| 175 | + $return .= 'Success Page: '.( ! empty($give_options['success_page']) ? get_permalink($give_options['success_page'])."\n" : "Unset\n"); |
|
| 176 | + $return .= 'Failure Page: '.( ! empty($give_options['failure_page']) ? get_permalink($give_options['failure_page'])."\n" : "Unset\n"); |
|
| 177 | + $return .= 'Give Forms Slug: '.(defined('GIVE_SLUG') ? '/'.GIVE_SLUG."\n" : "/donations\n"); |
|
| 178 | 178 | |
| 179 | - $return = apply_filters( 'give_sysinfo_after_give_pages', $return ); |
|
| 179 | + $return = apply_filters('give_sysinfo_after_give_pages', $return); |
|
| 180 | 180 | |
| 181 | 181 | // GIVE gateways |
| 182 | - $return .= "\n" . '-- Give Gateway Configuration' . "\n\n"; |
|
| 182 | + $return .= "\n".'-- Give Gateway Configuration'."\n\n"; |
|
| 183 | 183 | |
| 184 | 184 | $active_gateways = give_get_enabled_payment_gateways(); |
| 185 | - if ( $active_gateways ) { |
|
| 186 | - $default_gateway_is_active = give_is_gateway_active( give_get_default_gateway( null ) ); |
|
| 187 | - if ( $default_gateway_is_active ) { |
|
| 188 | - $default_gateway = give_get_default_gateway( null ); |
|
| 189 | - $default_gateway = $active_gateways[ $default_gateway ]['admin_label']; |
|
| 185 | + if ($active_gateways) { |
|
| 186 | + $default_gateway_is_active = give_is_gateway_active(give_get_default_gateway(null)); |
|
| 187 | + if ($default_gateway_is_active) { |
|
| 188 | + $default_gateway = give_get_default_gateway(null); |
|
| 189 | + $default_gateway = $active_gateways[$default_gateway]['admin_label']; |
|
| 190 | 190 | } else { |
| 191 | 191 | $default_gateway = 'Test Payment'; |
| 192 | 192 | } |
| 193 | 193 | |
| 194 | 194 | $gateways = array(); |
| 195 | - foreach ( $active_gateways as $gateway ) { |
|
| 195 | + foreach ($active_gateways as $gateway) { |
|
| 196 | 196 | $gateways[] = $gateway['admin_label']; |
| 197 | 197 | } |
| 198 | 198 | |
| 199 | - $return .= 'Enabled Gateways: ' . implode( ', ', $gateways ) . "\n"; |
|
| 200 | - $return .= 'Default Gateway: ' . $default_gateway . "\n"; |
|
| 199 | + $return .= 'Enabled Gateways: '.implode(', ', $gateways)."\n"; |
|
| 200 | + $return .= 'Default Gateway: '.$default_gateway."\n"; |
|
| 201 | 201 | } else { |
| 202 | - $return .= 'Enabled Gateways: None' . "\n"; |
|
| 202 | + $return .= 'Enabled Gateways: None'."\n"; |
|
| 203 | 203 | } |
| 204 | 204 | |
| 205 | - $return = apply_filters( 'give_sysinfo_after_give_gateways', $return ); |
|
| 205 | + $return = apply_filters('give_sysinfo_after_give_gateways', $return); |
|
| 206 | 206 | |
| 207 | 207 | // GIVE Templates |
| 208 | - $dir = get_stylesheet_directory() . '/give_templates/*'; |
|
| 209 | - if ( is_dir( $dir ) && ( count( glob( "$dir/*" ) ) !== 0 ) ) { |
|
| 210 | - $return .= "\n" . '-- Give Template Overrides' . "\n\n"; |
|
| 208 | + $dir = get_stylesheet_directory().'/give_templates/*'; |
|
| 209 | + if (is_dir($dir) && (count(glob("$dir/*")) !== 0)) { |
|
| 210 | + $return .= "\n".'-- Give Template Overrides'."\n\n"; |
|
| 211 | 211 | |
| 212 | - foreach ( glob( $dir ) as $file ) { |
|
| 213 | - $return .= 'Filename: ' . basename( $file ) . "\n"; |
|
| 212 | + foreach (glob($dir) as $file) { |
|
| 213 | + $return .= 'Filename: '.basename($file)."\n"; |
|
| 214 | 214 | } |
| 215 | 215 | |
| 216 | - $return = apply_filters( 'give_sysinfo_after_give_templates', $return ); |
|
| 216 | + $return = apply_filters('give_sysinfo_after_give_templates', $return); |
|
| 217 | 217 | } |
| 218 | 218 | |
| 219 | 219 | // Must-use plugins |
| 220 | 220 | $muplugins = get_mu_plugins(); |
| 221 | - if ( count( $muplugins > 0 ) ) { |
|
| 222 | - $return .= "\n" . '-- Must-Use Plugins' . "\n\n"; |
|
| 221 | + if (count($muplugins > 0)) { |
|
| 222 | + $return .= "\n".'-- Must-Use Plugins'."\n\n"; |
|
| 223 | 223 | |
| 224 | - foreach ( $muplugins as $plugin => $plugin_data ) { |
|
| 225 | - $return .= $plugin_data['Name'] . ': ' . $plugin_data['Version'] . "\n"; |
|
| 224 | + foreach ($muplugins as $plugin => $plugin_data) { |
|
| 225 | + $return .= $plugin_data['Name'].': '.$plugin_data['Version']."\n"; |
|
| 226 | 226 | } |
| 227 | 227 | |
| 228 | - $return = apply_filters( 'give_sysinfo_after_wordpress_mu_plugins', $return ); |
|
| 228 | + $return = apply_filters('give_sysinfo_after_wordpress_mu_plugins', $return); |
|
| 229 | 229 | } |
| 230 | 230 | |
| 231 | 231 | // WordPress active plugins |
| 232 | - $return .= "\n" . '-- WordPress Active Plugins' . "\n\n"; |
|
| 232 | + $return .= "\n".'-- WordPress Active Plugins'."\n\n"; |
|
| 233 | 233 | |
| 234 | 234 | $plugins = get_plugins(); |
| 235 | - $active_plugins = get_option( 'active_plugins', array() ); |
|
| 235 | + $active_plugins = get_option('active_plugins', array()); |
|
| 236 | 236 | |
| 237 | - foreach ( $plugins as $plugin_path => $plugin ) { |
|
| 238 | - if ( ! in_array( $plugin_path, $active_plugins ) ) { |
|
| 237 | + foreach ($plugins as $plugin_path => $plugin) { |
|
| 238 | + if ( ! in_array($plugin_path, $active_plugins)) { |
|
| 239 | 239 | continue; |
| 240 | 240 | } |
| 241 | 241 | |
| 242 | - $return .= $plugin['Name'] . ': ' . $plugin['Version'] . "\n"; |
|
| 242 | + $return .= $plugin['Name'].': '.$plugin['Version']."\n"; |
|
| 243 | 243 | } |
| 244 | 244 | |
| 245 | - $return = apply_filters( 'give_sysinfo_after_wordpress_plugins', $return ); |
|
| 245 | + $return = apply_filters('give_sysinfo_after_wordpress_plugins', $return); |
|
| 246 | 246 | |
| 247 | 247 | // WordPress inactive plugins |
| 248 | - $return .= "\n" . '-- WordPress Inactive Plugins' . "\n\n"; |
|
| 248 | + $return .= "\n".'-- WordPress Inactive Plugins'."\n\n"; |
|
| 249 | 249 | |
| 250 | - foreach ( $plugins as $plugin_path => $plugin ) { |
|
| 251 | - if ( in_array( $plugin_path, $active_plugins ) ) { |
|
| 250 | + foreach ($plugins as $plugin_path => $plugin) { |
|
| 251 | + if (in_array($plugin_path, $active_plugins)) { |
|
| 252 | 252 | continue; |
| 253 | 253 | } |
| 254 | 254 | |
| 255 | - $return .= $plugin['Name'] . ': ' . $plugin['Version'] . "\n"; |
|
| 255 | + $return .= $plugin['Name'].': '.$plugin['Version']."\n"; |
|
| 256 | 256 | } |
| 257 | 257 | |
| 258 | - $return = apply_filters( 'give_sysinfo_after_wordpress_plugins_inactive', $return ); |
|
| 258 | + $return = apply_filters('give_sysinfo_after_wordpress_plugins_inactive', $return); |
|
| 259 | 259 | |
| 260 | - if ( is_multisite() ) { |
|
| 260 | + if (is_multisite()) { |
|
| 261 | 261 | // WordPress Multisite active plugins |
| 262 | - $return .= "\n" . '-- Network Active Plugins' . "\n\n"; |
|
| 262 | + $return .= "\n".'-- Network Active Plugins'."\n\n"; |
|
| 263 | 263 | |
| 264 | 264 | $plugins = wp_get_active_network_plugins(); |
| 265 | - $active_plugins = get_site_option( 'active_sitewide_plugins', array() ); |
|
| 265 | + $active_plugins = get_site_option('active_sitewide_plugins', array()); |
|
| 266 | 266 | |
| 267 | - foreach ( $plugins as $plugin_path ) { |
|
| 268 | - $plugin_base = plugin_basename( $plugin_path ); |
|
| 267 | + foreach ($plugins as $plugin_path) { |
|
| 268 | + $plugin_base = plugin_basename($plugin_path); |
|
| 269 | 269 | |
| 270 | - if ( ! array_key_exists( $plugin_base, $active_plugins ) ) { |
|
| 270 | + if ( ! array_key_exists($plugin_base, $active_plugins)) { |
|
| 271 | 271 | continue; |
| 272 | 272 | } |
| 273 | 273 | |
| 274 | - $plugin = get_plugin_data( $plugin_path ); |
|
| 275 | - $return .= $plugin['Name'] . ': ' . $plugin['Version'] . "\n"; |
|
| 274 | + $plugin = get_plugin_data($plugin_path); |
|
| 275 | + $return .= $plugin['Name'].': '.$plugin['Version']."\n"; |
|
| 276 | 276 | } |
| 277 | 277 | |
| 278 | - $return = apply_filters( 'give_sysinfo_after_wordpress_ms_plugins', $return ); |
|
| 278 | + $return = apply_filters('give_sysinfo_after_wordpress_ms_plugins', $return); |
|
| 279 | 279 | } |
| 280 | 280 | |
| 281 | 281 | // Server configuration (really just versioning) |
| 282 | - $return .= "\n" . '-- Webserver Configuration' . "\n\n"; |
|
| 283 | - $return .= 'PHP Version: ' . PHP_VERSION . "\n"; |
|
| 284 | - $return .= 'MySQL Version: ' . $wpdb->db_version() . "\n"; |
|
| 285 | - $return .= 'Webserver Info: ' . $_SERVER['SERVER_SOFTWARE'] . "\n"; |
|
| 282 | + $return .= "\n".'-- Webserver Configuration'."\n\n"; |
|
| 283 | + $return .= 'PHP Version: '.PHP_VERSION."\n"; |
|
| 284 | + $return .= 'MySQL Version: '.$wpdb->db_version()."\n"; |
|
| 285 | + $return .= 'Webserver Info: '.$_SERVER['SERVER_SOFTWARE']."\n"; |
|
| 286 | 286 | |
| 287 | - $return = apply_filters( 'give_sysinfo_after_webserver_config', $return ); |
|
| 287 | + $return = apply_filters('give_sysinfo_after_webserver_config', $return); |
|
| 288 | 288 | |
| 289 | 289 | // PHP configs... now we're getting to the important stuff |
| 290 | - $return .= "\n" . '-- PHP Configuration' . "\n\n"; |
|
| 291 | - $return .= 'Safe Mode: ' . ( ini_get( 'safe_mode' ) ? 'Enabled' : 'Disabled' . "\n" ); |
|
| 292 | - $return .= 'Memory Limit: ' . ini_get( 'memory_limit' ) . "\n"; |
|
| 293 | - $return .= 'Upload Max Size: ' . ini_get( 'upload_max_filesize' ) . "\n"; |
|
| 294 | - $return .= 'Post Max Size: ' . ini_get( 'post_max_size' ) . "\n"; |
|
| 295 | - $return .= 'Upload Max Filesize: ' . ini_get( 'upload_max_filesize' ) . "\n"; |
|
| 296 | - $return .= 'Time Limit: ' . ini_get( 'max_execution_time' ) . "\n"; |
|
| 297 | - $return .= 'Max Input Vars: ' . ini_get( 'max_input_vars' ) . "\n"; |
|
| 298 | - $return .= 'URL-aware fopen: ' . ( ini_get( 'allow_url_fopen' ) ? 'On (' . ini_get( 'allow_url_fopen' ) . ')' : 'N/A' ) . "\n"; |
|
| 299 | - $return .= 'Display Errors: ' . ( ini_get( 'display_errors' ) ? 'On (' . ini_get( 'display_errors' ) . ')' : 'N/A' ) . "\n"; |
|
| 300 | - |
|
| 301 | - $return = apply_filters( 'give_sysinfo_after_php_config', $return ); |
|
| 290 | + $return .= "\n".'-- PHP Configuration'."\n\n"; |
|
| 291 | + $return .= 'Safe Mode: '.(ini_get('safe_mode') ? 'Enabled' : 'Disabled'."\n"); |
|
| 292 | + $return .= 'Memory Limit: '.ini_get('memory_limit')."\n"; |
|
| 293 | + $return .= 'Upload Max Size: '.ini_get('upload_max_filesize')."\n"; |
|
| 294 | + $return .= 'Post Max Size: '.ini_get('post_max_size')."\n"; |
|
| 295 | + $return .= 'Upload Max Filesize: '.ini_get('upload_max_filesize')."\n"; |
|
| 296 | + $return .= 'Time Limit: '.ini_get('max_execution_time')."\n"; |
|
| 297 | + $return .= 'Max Input Vars: '.ini_get('max_input_vars')."\n"; |
|
| 298 | + $return .= 'URL-aware fopen: '.(ini_get('allow_url_fopen') ? 'On ('.ini_get('allow_url_fopen').')' : 'N/A')."\n"; |
|
| 299 | + $return .= 'Display Errors: '.(ini_get('display_errors') ? 'On ('.ini_get('display_errors').')' : 'N/A')."\n"; |
|
| 300 | + |
|
| 301 | + $return = apply_filters('give_sysinfo_after_php_config', $return); |
|
| 302 | 302 | |
| 303 | 303 | // PHP extensions and such |
| 304 | - $return .= "\n" . '-- PHP Extensions' . "\n\n"; |
|
| 305 | - $return .= 'cURL: ' . ( function_exists( 'curl_init' ) ? 'Supported' : 'Not Supported' ) . "\n"; |
|
| 304 | + $return .= "\n".'-- PHP Extensions'."\n\n"; |
|
| 305 | + $return .= 'cURL: '.(function_exists('curl_init') ? 'Supported' : 'Not Supported')."\n"; |
|
| 306 | 306 | |
| 307 | 307 | //cURL version |
| 308 | - if ( function_exists( 'curl_init' ) && function_exists( 'curl_version' ) ) { |
|
| 308 | + if (function_exists('curl_init') && function_exists('curl_version')) { |
|
| 309 | 309 | $curl_values = curl_version(); |
| 310 | - $return .= 'cURL Version: ' . $curl_values["version"] . "\n"; |
|
| 310 | + $return .= 'cURL Version: '.$curl_values["version"]."\n"; |
|
| 311 | 311 | } |
| 312 | - $return .= 'zlib: ' . ( function_exists( 'gzcompress' ) ? 'Supported' : 'Not Supported' ) . "\n"; |
|
| 313 | - $return .= 'GD: ' . ( ( extension_loaded( 'gd' ) && function_exists( 'gd_info' ) ) ? 'Supported' : 'Not Supported' ) . "\n"; |
|
| 314 | - $return .= 'fsockopen: ' . ( function_exists( 'fsockopen' ) ? 'Supported' : 'Not Supported' ) . "\n"; |
|
| 315 | - $return .= 'SOAP Client: ' . ( class_exists( 'SoapClient' ) ? 'Installed' : 'Not Installed' ) . "\n"; |
|
| 316 | - $return .= 'Suhosin: ' . ( extension_loaded( 'suhosin' ) ? 'Installed' : 'Not Installed' ) . "\n"; |
|
| 317 | - $return .= 'DOM: ' . ( extension_loaded( 'dom' ) ? 'Installed' : 'Not Installed' ) . "\n"; |
|
| 318 | - $return .= 'MBString: ' . ( extension_loaded( 'mbstring' ) ? 'Installed' : 'Not Installed' ) . "\n"; |
|
| 312 | + $return .= 'zlib: '.(function_exists('gzcompress') ? 'Supported' : 'Not Supported')."\n"; |
|
| 313 | + $return .= 'GD: '.((extension_loaded('gd') && function_exists('gd_info')) ? 'Supported' : 'Not Supported')."\n"; |
|
| 314 | + $return .= 'fsockopen: '.(function_exists('fsockopen') ? 'Supported' : 'Not Supported')."\n"; |
|
| 315 | + $return .= 'SOAP Client: '.(class_exists('SoapClient') ? 'Installed' : 'Not Installed')."\n"; |
|
| 316 | + $return .= 'Suhosin: '.(extension_loaded('suhosin') ? 'Installed' : 'Not Installed')."\n"; |
|
| 317 | + $return .= 'DOM: '.(extension_loaded('dom') ? 'Installed' : 'Not Installed')."\n"; |
|
| 318 | + $return .= 'MBString: '.(extension_loaded('mbstring') ? 'Installed' : 'Not Installed')."\n"; |
|
| 319 | 319 | |
| 320 | - $return = apply_filters( 'give_sysinfo_after_php_ext', $return ); |
|
| 320 | + $return = apply_filters('give_sysinfo_after_php_ext', $return); |
|
| 321 | 321 | |
| 322 | 322 | // Session stuff |
| 323 | - $return .= "\n" . '-- Session Configuration' . "\n\n"; |
|
| 324 | - $return .= 'Give Use Sessions: ' . ( defined( 'GIVE_USE_PHP_SESSIONS' ) && GIVE_USE_PHP_SESSIONS ? 'Enforced' : ( Give()->session->use_php_sessions() ? 'Enabled' : 'Disabled' ) ) . "\n"; |
|
| 325 | - $return .= 'Session: ' . ( isset( $_SESSION ) ? 'Enabled' : 'Disabled' ) . "\n"; |
|
| 323 | + $return .= "\n".'-- Session Configuration'."\n\n"; |
|
| 324 | + $return .= 'Give Use Sessions: '.(defined('GIVE_USE_PHP_SESSIONS') && GIVE_USE_PHP_SESSIONS ? 'Enforced' : (Give()->session->use_php_sessions() ? 'Enabled' : 'Disabled'))."\n"; |
|
| 325 | + $return .= 'Session: '.(isset($_SESSION) ? 'Enabled' : 'Disabled')."\n"; |
|
| 326 | 326 | |
| 327 | 327 | // The rest of this is only relevant is session is enabled |
| 328 | - if ( isset( $_SESSION ) ) { |
|
| 329 | - $return .= 'Session Name: ' . esc_html( ini_get( 'session.name' ) ) . "\n"; |
|
| 330 | - $return .= 'Cookie Path: ' . esc_html( ini_get( 'session.cookie_path' ) ) . "\n"; |
|
| 331 | - $return .= 'Save Path: ' . esc_html( ini_get( 'session.save_path' ) ) . "\n"; |
|
| 332 | - $return .= 'Use Cookies: ' . ( ini_get( 'session.use_cookies' ) ? 'On' : 'Off' ) . "\n"; |
|
| 333 | - $return .= 'Use Only Cookies: ' . ( ini_get( 'session.use_only_cookies' ) ? 'On' : 'Off' ) . "\n"; |
|
| 328 | + if (isset($_SESSION)) { |
|
| 329 | + $return .= 'Session Name: '.esc_html(ini_get('session.name'))."\n"; |
|
| 330 | + $return .= 'Cookie Path: '.esc_html(ini_get('session.cookie_path'))."\n"; |
|
| 331 | + $return .= 'Save Path: '.esc_html(ini_get('session.save_path'))."\n"; |
|
| 332 | + $return .= 'Use Cookies: '.(ini_get('session.use_cookies') ? 'On' : 'Off')."\n"; |
|
| 333 | + $return .= 'Use Only Cookies: '.(ini_get('session.use_only_cookies') ? 'On' : 'Off')."\n"; |
|
| 334 | 334 | } |
| 335 | 335 | |
| 336 | - $return = apply_filters( 'give_sysinfo_after_session_config', $return ); |
|
| 336 | + $return = apply_filters('give_sysinfo_after_session_config', $return); |
|
| 337 | 337 | |
| 338 | - $return .= "\n" . '### End System Info ###'; |
|
| 338 | + $return .= "\n".'### End System Info ###'; |
|
| 339 | 339 | |
| 340 | 340 | return $return; |
| 341 | 341 | } |
@@ -349,17 +349,17 @@ discard block |
||
| 349 | 349 | */ |
| 350 | 350 | function give_tools_sysinfo_download() { |
| 351 | 351 | |
| 352 | - if ( ! current_user_can( 'manage_give_settings' ) ) { |
|
| 352 | + if ( ! current_user_can('manage_give_settings')) { |
|
| 353 | 353 | return; |
| 354 | 354 | } |
| 355 | 355 | |
| 356 | 356 | nocache_headers(); |
| 357 | 357 | |
| 358 | - header( 'Content-Type: text/plain' ); |
|
| 359 | - header( 'Content-Disposition: attachment; filename="give-system-info.txt"' ); |
|
| 358 | + header('Content-Type: text/plain'); |
|
| 359 | + header('Content-Disposition: attachment; filename="give-system-info.txt"'); |
|
| 360 | 360 | |
| 361 | - echo wp_strip_all_tags( $_POST['give-sysinfo'] ); |
|
| 361 | + echo wp_strip_all_tags($_POST['give-sysinfo']); |
|
| 362 | 362 | give_die(); |
| 363 | 363 | } |
| 364 | 364 | |
| 365 | -add_action( 'give_download_sysinfo', 'give_tools_sysinfo_download' ); |
|
| 366 | 365 | \ No newline at end of file |
| 366 | +add_action('give_download_sysinfo', 'give_tools_sysinfo_download'); |
|
| 367 | 367 | \ No newline at end of file |
@@ -10,7 +10,7 @@ discard block |
||
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | 12 | // Exit if accessed directly |
| 13 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 13 | +if ( ! defined('ABSPATH')) { |
|
| 14 | 14 | exit; |
| 15 | 15 | } |
| 16 | 16 | |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | * @return void |
| 24 | 24 | */ |
| 25 | 25 | function give_logs_view_sales() { |
| 26 | - include( dirname( __FILE__ ) . '/class-sales-logs-list-table.php' ); |
|
| 26 | + include(dirname(__FILE__).'/class-sales-logs-list-table.php'); |
|
| 27 | 27 | |
| 28 | 28 | $logs_table = new Give_Sales_Log_Table(); |
| 29 | 29 | $logs_table->prepare_items(); |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | |
| 32 | 32 | } |
| 33 | 33 | |
| 34 | -add_action( 'give_logs_view_sales', 'give_logs_view_sales' ); |
|
| 34 | +add_action('give_logs_view_sales', 'give_logs_view_sales'); |
|
| 35 | 35 | |
| 36 | 36 | |
| 37 | 37 | /** |
@@ -43,14 +43,14 @@ discard block |
||
| 43 | 43 | * @return void |
| 44 | 44 | */ |
| 45 | 45 | function give_logs_view_gateway_errors() { |
| 46 | - include( dirname( __FILE__ ) . '/class-gateway-error-logs-list-table.php' ); |
|
| 46 | + include(dirname(__FILE__).'/class-gateway-error-logs-list-table.php'); |
|
| 47 | 47 | |
| 48 | 48 | $logs_table = new Give_Gateway_Error_Log_Table(); |
| 49 | 49 | $logs_table->prepare_items(); |
| 50 | 50 | $logs_table->display(); |
| 51 | 51 | } |
| 52 | 52 | |
| 53 | -add_action( 'give_logs_view_gateway_errors', 'give_logs_view_gateway_errors' ); |
|
| 53 | +add_action('give_logs_view_gateway_errors', 'give_logs_view_gateway_errors'); |
|
| 54 | 54 | |
| 55 | 55 | /** |
| 56 | 56 | * API Request Logs |
@@ -62,28 +62,28 @@ discard block |
||
| 62 | 62 | * @return void |
| 63 | 63 | */ |
| 64 | 64 | function give_logs_view_api_requests() { |
| 65 | - include( dirname( __FILE__ ) . '/class-api-requests-logs-list-table.php' ); |
|
| 65 | + include(dirname(__FILE__).'/class-api-requests-logs-list-table.php'); |
|
| 66 | 66 | |
| 67 | 67 | $logs_table = new Give_API_Request_Log_Table(); |
| 68 | 68 | $logs_table->prepare_items(); |
| 69 | 69 | ?> |
| 70 | 70 | <div class="wrap"> |
| 71 | - <?php do_action( 'give_logs_api_requests_top' ); ?> |
|
| 72 | - <form id="give-logs-filter" method="get" action="<?php echo admin_url( 'edit.php?post_type=give_forms&page=give-reports&tab=logs' ); ?>"> |
|
| 71 | + <?php do_action('give_logs_api_requests_top'); ?> |
|
| 72 | + <form id="give-logs-filter" method="get" action="<?php echo admin_url('edit.php?post_type=give_forms&page=give-reports&tab=logs'); ?>"> |
|
| 73 | 73 | <?php |
| 74 | - $logs_table->search_box( __( 'Search', 'give' ), 'give-api-requests' ); |
|
| 74 | + $logs_table->search_box(__('Search', 'give'), 'give-api-requests'); |
|
| 75 | 75 | $logs_table->display(); |
| 76 | 76 | ?> |
| 77 | 77 | <input type="hidden" name="post_type" value="give_forms"/> |
| 78 | 78 | <input type="hidden" name="page" value="give-reports"/> |
| 79 | 79 | <input type="hidden" name="tab" value="logs"/> |
| 80 | 80 | </form> |
| 81 | - <?php do_action( 'give_logs_api_requests_bottom' ); ?> |
|
| 81 | + <?php do_action('give_logs_api_requests_bottom'); ?> |
|
| 82 | 82 | </div> |
| 83 | 83 | <?php |
| 84 | 84 | } |
| 85 | 85 | |
| 86 | -add_action( 'give_logs_view_api_requests', 'give_logs_view_api_requests' ); |
|
| 86 | +add_action('give_logs_view_api_requests', 'give_logs_view_api_requests'); |
|
| 87 | 87 | |
| 88 | 88 | |
| 89 | 89 | /** |
@@ -94,12 +94,12 @@ discard block |
||
| 94 | 94 | */ |
| 95 | 95 | function give_log_default_views() { |
| 96 | 96 | $views = array( |
| 97 | - 'sales' => __( 'Donations', 'give' ), |
|
| 98 | - 'gateway_errors' => __( 'Payment Errors', 'give' ), |
|
| 99 | - 'api_requests' => __( 'API Requests', 'give' ) |
|
| 97 | + 'sales' => __('Donations', 'give'), |
|
| 98 | + 'gateway_errors' => __('Payment Errors', 'give'), |
|
| 99 | + 'api_requests' => __('API Requests', 'give') |
|
| 100 | 100 | ); |
| 101 | 101 | |
| 102 | - $views = apply_filters( 'give_log_views', $views ); |
|
| 102 | + $views = apply_filters('give_log_views', $views); |
|
| 103 | 103 | |
| 104 | 104 | return $views; |
| 105 | 105 | } |
@@ -112,24 +112,24 @@ discard block |
||
| 112 | 112 | */ |
| 113 | 113 | function give_log_views() { |
| 114 | 114 | $views = give_log_default_views(); |
| 115 | - $current_view = isset( $_GET['view'] ) && array_key_exists( $_GET['view'], give_log_default_views() ) ? sanitize_text_field( $_GET['view'] ) : 'sales'; |
|
| 115 | + $current_view = isset($_GET['view']) && array_key_exists($_GET['view'], give_log_default_views()) ? sanitize_text_field($_GET['view']) : 'sales'; |
|
| 116 | 116 | ?> |
| 117 | 117 | <form id="give-logs-filter" method="get" action="edit.php"> |
| 118 | 118 | <select id="give-logs-view" name="view"> |
| 119 | 119 | <optgroup label="Log Type:"> |
| 120 | - <?php foreach ( $views as $view_id => $label ): ?> |
|
| 121 | - <option value="<?php echo esc_attr( $view_id ); ?>" <?php selected( $view_id, $current_view ); ?>><?php echo $label; ?></option> |
|
| 120 | + <?php foreach ($views as $view_id => $label): ?> |
|
| 121 | + <option value="<?php echo esc_attr($view_id); ?>" <?php selected($view_id, $current_view); ?>><?php echo $label; ?></option> |
|
| 122 | 122 | <?php endforeach; ?> |
| 123 | 123 | </optgroup> |
| 124 | 124 | </select> |
| 125 | 125 | |
| 126 | - <?php do_action( 'give_log_view_actions' ); ?> |
|
| 126 | + <?php do_action('give_log_view_actions'); ?> |
|
| 127 | 127 | |
| 128 | 128 | <input type="hidden" name="post_type" value="give_forms"/> |
| 129 | 129 | <input type="hidden" name="page" value="give-reports"/> |
| 130 | 130 | <input type="hidden" name="tab" value="logs"/> |
| 131 | 131 | |
| 132 | - <?php submit_button( __( 'Apply', 'give' ), 'secondary', 'submit', false ); ?> |
|
| 132 | + <?php submit_button(__('Apply', 'give'), 'secondary', 'submit', false); ?> |
|
| 133 | 133 | </form> |
| 134 | 134 | <?php |
| 135 | 135 | } |
| 136 | 136 | \ No newline at end of file |
@@ -282,7 +282,7 @@ discard block |
||
| 282 | 282 | * @param int $user_id |
| 283 | 283 | * @param $old_user_data |
| 284 | 284 | * |
| 285 | - * @return bool |
|
| 285 | + * @return false|null |
|
| 286 | 286 | */ |
| 287 | 287 | public function update_customer_email_on_user_update( $user_id = 0, $old_user_data ) { |
| 288 | 288 | |
@@ -331,7 +331,7 @@ discard block |
||
| 331 | 331 | * @since 1.0 |
| 332 | 332 | * |
| 333 | 333 | * @param string $field id or email |
| 334 | - * @param mixed $value The Customer ID or email to search |
|
| 334 | + * @param integer $value The Customer ID or email to search |
|
| 335 | 335 | * |
| 336 | 336 | * @return mixed Upon success, an object of the customer. Upon failure, NULL |
| 337 | 337 | */ |
@@ -12,7 +12,7 @@ discard block |
||
| 12 | 12 | */ |
| 13 | 13 | |
| 14 | 14 | // Exit if accessed directly |
| 15 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 15 | +if ( ! defined('ABSPATH')) { |
|
| 16 | 16 | exit; |
| 17 | 17 | } |
| 18 | 18 | |
@@ -33,11 +33,11 @@ discard block |
||
| 33 | 33 | |
| 34 | 34 | global $wpdb; |
| 35 | 35 | |
| 36 | - $this->table_name = $wpdb->prefix . 'give_customers'; |
|
| 36 | + $this->table_name = $wpdb->prefix.'give_customers'; |
|
| 37 | 37 | $this->primary_key = 'id'; |
| 38 | 38 | $this->version = '1.0'; |
| 39 | 39 | |
| 40 | - add_action( 'profile_update', array( $this, 'update_customer_email_on_user_update' ), 10, 2 ); |
|
| 40 | + add_action('profile_update', array($this, 'update_customer_email_on_user_update'), 10, 2); |
|
| 41 | 41 | |
| 42 | 42 | } |
| 43 | 43 | |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | 'purchase_value' => 0.00, |
| 77 | 77 | 'purchase_count' => 0, |
| 78 | 78 | 'notes' => '', |
| 79 | - 'date_created' => date( 'Y-m-d H:i:s' ), |
|
| 79 | + 'date_created' => date('Y-m-d H:i:s'), |
|
| 80 | 80 | ); |
| 81 | 81 | } |
| 82 | 82 | |
@@ -86,40 +86,40 @@ discard block |
||
| 86 | 86 | * @access public |
| 87 | 87 | * @since 1.0 |
| 88 | 88 | */ |
| 89 | - public function add( $data = array() ) { |
|
| 89 | + public function add($data = array()) { |
|
| 90 | 90 | |
| 91 | 91 | $defaults = array( |
| 92 | 92 | 'payment_ids' => '' |
| 93 | 93 | ); |
| 94 | 94 | |
| 95 | - $args = wp_parse_args( $data, $defaults ); |
|
| 95 | + $args = wp_parse_args($data, $defaults); |
|
| 96 | 96 | |
| 97 | - if ( empty( $args['email'] ) ) { |
|
| 97 | + if (empty($args['email'])) { |
|
| 98 | 98 | return false; |
| 99 | 99 | } |
| 100 | 100 | |
| 101 | - if ( ! empty( $args['payment_ids'] ) && is_array( $args['payment_ids'] ) ) { |
|
| 102 | - $args['payment_ids'] = implode( ',', array_unique( array_values( $args['payment_ids'] ) ) ); |
|
| 101 | + if ( ! empty($args['payment_ids']) && is_array($args['payment_ids'])) { |
|
| 102 | + $args['payment_ids'] = implode(',', array_unique(array_values($args['payment_ids']))); |
|
| 103 | 103 | } |
| 104 | 104 | |
| 105 | - $customer = $this->get_customer_by( 'email', $args['email'] ); |
|
| 105 | + $customer = $this->get_customer_by('email', $args['email']); |
|
| 106 | 106 | |
| 107 | - if ( $customer ) { |
|
| 107 | + if ($customer) { |
|
| 108 | 108 | // update an existing customer |
| 109 | 109 | |
| 110 | 110 | // Update the payment IDs attached to the customer |
| 111 | - if ( ! empty( $args['payment_ids'] ) ) { |
|
| 111 | + if ( ! empty($args['payment_ids'])) { |
|
| 112 | 112 | |
| 113 | - if ( empty( $customer->payment_ids ) ) { |
|
| 113 | + if (empty($customer->payment_ids)) { |
|
| 114 | 114 | |
| 115 | 115 | $customer->payment_ids = $args['payment_ids']; |
| 116 | 116 | |
| 117 | 117 | } else { |
| 118 | 118 | |
| 119 | - $existing_ids = array_map( 'absint', explode( ',', $customer->payment_ids ) ); |
|
| 120 | - $payment_ids = array_map( 'absint', explode( ',', $args['payment_ids'] ) ); |
|
| 121 | - $payment_ids = array_merge( $payment_ids, $existing_ids ); |
|
| 122 | - $customer->payment_ids = implode( ',', array_unique( array_values( $payment_ids ) ) ); |
|
| 119 | + $existing_ids = array_map('absint', explode(',', $customer->payment_ids)); |
|
| 120 | + $payment_ids = array_map('absint', explode(',', $args['payment_ids'])); |
|
| 121 | + $payment_ids = array_merge($payment_ids, $existing_ids); |
|
| 122 | + $customer->payment_ids = implode(',', array_unique(array_values($payment_ids))); |
|
| 123 | 123 | |
| 124 | 124 | } |
| 125 | 125 | |
@@ -127,13 +127,13 @@ discard block |
||
| 127 | 127 | |
| 128 | 128 | } |
| 129 | 129 | |
| 130 | - $this->update( $customer->id, $args ); |
|
| 130 | + $this->update($customer->id, $args); |
|
| 131 | 131 | |
| 132 | 132 | return $customer->id; |
| 133 | 133 | |
| 134 | 134 | } else { |
| 135 | 135 | |
| 136 | - return $this->insert( $args, 'customer' ); |
|
| 136 | + return $this->insert($args, 'customer'); |
|
| 137 | 137 | |
| 138 | 138 | } |
| 139 | 139 | |
@@ -152,20 +152,20 @@ discard block |
||
| 152 | 152 | * |
| 153 | 153 | * @return bool|false|int |
| 154 | 154 | */ |
| 155 | - public function delete( $_id_or_email = false ) { |
|
| 155 | + public function delete($_id_or_email = false) { |
|
| 156 | 156 | |
| 157 | - if ( empty( $_id_or_email ) ) { |
|
| 157 | + if (empty($_id_or_email)) { |
|
| 158 | 158 | return false; |
| 159 | 159 | } |
| 160 | 160 | |
| 161 | - $column = is_email( $_id_or_email ) ? 'email' : 'id'; |
|
| 162 | - $customer = $this->get_customer_by( $column, $_id_or_email ); |
|
| 161 | + $column = is_email($_id_or_email) ? 'email' : 'id'; |
|
| 162 | + $customer = $this->get_customer_by($column, $_id_or_email); |
|
| 163 | 163 | |
| 164 | - if ( $customer->id > 0 ) { |
|
| 164 | + if ($customer->id > 0) { |
|
| 165 | 165 | |
| 166 | 166 | global $wpdb; |
| 167 | 167 | |
| 168 | - return $wpdb->delete( $this->table_name, array( 'id' => $customer->id ), array( '%d' ) ); |
|
| 168 | + return $wpdb->delete($this->table_name, array('id' => $customer->id), array('%d')); |
|
| 169 | 169 | |
| 170 | 170 | } else { |
| 171 | 171 | return false; |
@@ -179,14 +179,14 @@ discard block |
||
| 179 | 179 | * @access public |
| 180 | 180 | * @since 1.0 |
| 181 | 181 | */ |
| 182 | - public function exists( $value = '', $field = 'email' ) { |
|
| 182 | + public function exists($value = '', $field = 'email') { |
|
| 183 | 183 | |
| 184 | 184 | $columns = $this->get_columns(); |
| 185 | - if ( ! array_key_exists( $field, $columns ) ) { |
|
| 185 | + if ( ! array_key_exists($field, $columns)) { |
|
| 186 | 186 | return false; |
| 187 | 187 | } |
| 188 | 188 | |
| 189 | - return (bool) $this->get_column_by( 'id', $field, $value ); |
|
| 189 | + return (bool) $this->get_column_by('id', $field, $value); |
|
| 190 | 190 | |
| 191 | 191 | } |
| 192 | 192 | |
@@ -196,16 +196,16 @@ discard block |
||
| 196 | 196 | * @access public |
| 197 | 197 | * @since 1.0 |
| 198 | 198 | */ |
| 199 | - public function attach_payment( $customer_id = 0, $payment_id = 0 ) { |
|
| 199 | + public function attach_payment($customer_id = 0, $payment_id = 0) { |
|
| 200 | 200 | |
| 201 | - $customer = new Give_Customer( $customer_id ); |
|
| 201 | + $customer = new Give_Customer($customer_id); |
|
| 202 | 202 | |
| 203 | - if ( empty( $customer->id ) ) { |
|
| 203 | + if (empty($customer->id)) { |
|
| 204 | 204 | return false; |
| 205 | 205 | } |
| 206 | 206 | |
| 207 | 207 | // Attach the payment, but don't increment stats, as this function previously did not |
| 208 | - return $customer->attach_payment( $payment_id, false ); |
|
| 208 | + return $customer->attach_payment($payment_id, false); |
|
| 209 | 209 | |
| 210 | 210 | } |
| 211 | 211 | |
@@ -215,16 +215,16 @@ discard block |
||
| 215 | 215 | * @access public |
| 216 | 216 | * @since 1.0 |
| 217 | 217 | */ |
| 218 | - public function remove_payment( $customer_id = 0, $payment_id = 0 ) { |
|
| 218 | + public function remove_payment($customer_id = 0, $payment_id = 0) { |
|
| 219 | 219 | |
| 220 | - $customer = new Give_Customer( $customer_id ); |
|
| 220 | + $customer = new Give_Customer($customer_id); |
|
| 221 | 221 | |
| 222 | - if ( ! $customer ) { |
|
| 222 | + if ( ! $customer) { |
|
| 223 | 223 | return false; |
| 224 | 224 | } |
| 225 | 225 | |
| 226 | 226 | // Remove the payment, but don't decrease stats, as this function previously did not |
| 227 | - return $customer->remove_payment( $payment_id, false ); |
|
| 227 | + return $customer->remove_payment($payment_id, false); |
|
| 228 | 228 | |
| 229 | 229 | } |
| 230 | 230 | |
@@ -236,18 +236,18 @@ discard block |
||
| 236 | 236 | * |
| 237 | 237 | * @return bool |
| 238 | 238 | */ |
| 239 | - public function increment_stats( $customer_id = 0, $amount = 0.00 ) { |
|
| 239 | + public function increment_stats($customer_id = 0, $amount = 0.00) { |
|
| 240 | 240 | |
| 241 | - $customer = new Give_Customer( $customer_id ); |
|
| 241 | + $customer = new Give_Customer($customer_id); |
|
| 242 | 242 | |
| 243 | - if ( empty( $customer->id ) ) { |
|
| 243 | + if (empty($customer->id)) { |
|
| 244 | 244 | return false; |
| 245 | 245 | } |
| 246 | 246 | |
| 247 | 247 | $increased_count = $customer->increase_purchase_count(); |
| 248 | - $increased_value = $customer->increase_value( $amount ); |
|
| 248 | + $increased_value = $customer->increase_value($amount); |
|
| 249 | 249 | |
| 250 | - return ( $increased_count && $increased_value ) ? true : false; |
|
| 250 | + return ($increased_count && $increased_value) ? true : false; |
|
| 251 | 251 | |
| 252 | 252 | } |
| 253 | 253 | |
@@ -257,18 +257,18 @@ discard block |
||
| 257 | 257 | * @access public |
| 258 | 258 | * @since 1.0 |
| 259 | 259 | */ |
| 260 | - public function decrement_stats( $customer_id = 0, $amount = 0.00 ) { |
|
| 260 | + public function decrement_stats($customer_id = 0, $amount = 0.00) { |
|
| 261 | 261 | |
| 262 | - $customer = new Give_Customer( $customer_id ); |
|
| 262 | + $customer = new Give_Customer($customer_id); |
|
| 263 | 263 | |
| 264 | - if ( ! $customer ) { |
|
| 264 | + if ( ! $customer) { |
|
| 265 | 265 | return false; |
| 266 | 266 | } |
| 267 | 267 | |
| 268 | 268 | $decreased_count = $customer->decrease_purchase_count(); |
| 269 | - $decreased_value = $customer->decrease_value( $amount ); |
|
| 269 | + $decreased_value = $customer->decrease_value($amount); |
|
| 270 | 270 | |
| 271 | - return ( $decreased_count && $decreased_value ) ? true : false; |
|
| 271 | + return ($decreased_count && $decreased_value) ? true : false; |
|
| 272 | 272 | |
| 273 | 273 | } |
| 274 | 274 | |
@@ -284,37 +284,37 @@ discard block |
||
| 284 | 284 | * |
| 285 | 285 | * @return bool |
| 286 | 286 | */ |
| 287 | - public function update_customer_email_on_user_update( $user_id = 0, $old_user_data ) { |
|
| 287 | + public function update_customer_email_on_user_update($user_id = 0, $old_user_data) { |
|
| 288 | 288 | |
| 289 | - $customer = new Give_Customer( $user_id, true ); |
|
| 289 | + $customer = new Give_Customer($user_id, true); |
|
| 290 | 290 | |
| 291 | - if( ! $customer ) { |
|
| 291 | + if ( ! $customer) { |
|
| 292 | 292 | return false; |
| 293 | 293 | } |
| 294 | 294 | |
| 295 | - $user = get_userdata( $user_id ); |
|
| 295 | + $user = get_userdata($user_id); |
|
| 296 | 296 | |
| 297 | - if( ! empty( $user ) && $user->user_email !== $customer->email ) { |
|
| 297 | + if ( ! empty($user) && $user->user_email !== $customer->email) { |
|
| 298 | 298 | |
| 299 | - if( ! $this->get_customer_by( 'email', $user->user_email ) ) { |
|
| 299 | + if ( ! $this->get_customer_by('email', $user->user_email)) { |
|
| 300 | 300 | |
| 301 | - $success = $this->update( $customer->id, array( 'email' => $user->user_email ) ); |
|
| 301 | + $success = $this->update($customer->id, array('email' => $user->user_email)); |
|
| 302 | 302 | |
| 303 | - if( $success ) { |
|
| 303 | + if ($success) { |
|
| 304 | 304 | // Update some payment meta if we need to |
| 305 | - $payments_array = explode( ',', $customer->payment_ids ); |
|
| 305 | + $payments_array = explode(',', $customer->payment_ids); |
|
| 306 | 306 | |
| 307 | - if( ! empty( $payments_array ) ) { |
|
| 307 | + if ( ! empty($payments_array)) { |
|
| 308 | 308 | |
| 309 | - foreach ( $payments_array as $payment_id ) { |
|
| 309 | + foreach ($payments_array as $payment_id) { |
|
| 310 | 310 | |
| 311 | - give_update_payment_meta( $payment_id, 'email', $user->user_email ); |
|
| 311 | + give_update_payment_meta($payment_id, 'email', $user->user_email); |
|
| 312 | 312 | |
| 313 | 313 | } |
| 314 | 314 | |
| 315 | 315 | } |
| 316 | 316 | |
| 317 | - do_action( 'give_update_customer_email_on_user_update', $user, $customer ); |
|
| 317 | + do_action('give_update_customer_email_on_user_update', $user, $customer); |
|
| 318 | 318 | |
| 319 | 319 | } |
| 320 | 320 | |
@@ -335,45 +335,45 @@ discard block |
||
| 335 | 335 | * |
| 336 | 336 | * @return mixed Upon success, an object of the customer. Upon failure, NULL |
| 337 | 337 | */ |
| 338 | - public function get_customer_by( $field = 'id', $value = 0 ) { |
|
| 338 | + public function get_customer_by($field = 'id', $value = 0) { |
|
| 339 | 339 | global $wpdb; |
| 340 | 340 | |
| 341 | - if ( empty( $field ) || empty( $value ) ) { |
|
| 341 | + if (empty($field) || empty($value)) { |
|
| 342 | 342 | return null; |
| 343 | 343 | } |
| 344 | 344 | |
| 345 | - if ( 'id' == $field || 'user_id' == $field ) { |
|
| 345 | + if ('id' == $field || 'user_id' == $field) { |
|
| 346 | 346 | // Make sure the value is numeric to avoid casting objects, for example, |
| 347 | 347 | // to int 1. |
| 348 | - if ( ! is_numeric( $value ) ) { |
|
| 348 | + if ( ! is_numeric($value)) { |
|
| 349 | 349 | return false; |
| 350 | 350 | } |
| 351 | 351 | |
| 352 | - $value = intval( $value ); |
|
| 352 | + $value = intval($value); |
|
| 353 | 353 | |
| 354 | - if ( $value < 1 ) { |
|
| 354 | + if ($value < 1) { |
|
| 355 | 355 | return false; |
| 356 | 356 | } |
| 357 | 357 | |
| 358 | - } elseif ( 'email' === $field ) { |
|
| 358 | + } elseif ('email' === $field) { |
|
| 359 | 359 | |
| 360 | - if ( ! is_email( $value ) ) { |
|
| 360 | + if ( ! is_email($value)) { |
|
| 361 | 361 | return false; |
| 362 | 362 | } |
| 363 | 363 | |
| 364 | - $value = trim( $value ); |
|
| 364 | + $value = trim($value); |
|
| 365 | 365 | } |
| 366 | 366 | |
| 367 | - if ( ! $value ) { |
|
| 367 | + if ( ! $value) { |
|
| 368 | 368 | return false; |
| 369 | 369 | } |
| 370 | 370 | |
| 371 | - switch ( $field ) { |
|
| 371 | + switch ($field) { |
|
| 372 | 372 | case 'id': |
| 373 | 373 | $db_field = 'id'; |
| 374 | 374 | break; |
| 375 | 375 | case 'email': |
| 376 | - $value = sanitize_text_field( $value ); |
|
| 376 | + $value = sanitize_text_field($value); |
|
| 377 | 377 | $db_field = 'email'; |
| 378 | 378 | break; |
| 379 | 379 | case 'user_id': |
@@ -383,7 +383,7 @@ discard block |
||
| 383 | 383 | return false; |
| 384 | 384 | } |
| 385 | 385 | |
| 386 | - if ( ! $customer = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $this->table_name WHERE $db_field = %s LIMIT 1", $value ) ) ) { |
|
| 386 | + if ( ! $customer = $wpdb->get_row($wpdb->prepare("SELECT * FROM $this->table_name WHERE $db_field = %s LIMIT 1", $value))) { |
|
| 387 | 387 | return false; |
| 388 | 388 | } |
| 389 | 389 | |
@@ -396,7 +396,7 @@ discard block |
||
| 396 | 396 | * @access public |
| 397 | 397 | * @since 1.0 |
| 398 | 398 | */ |
| 399 | - public function get_customers( $args = array() ) { |
|
| 399 | + public function get_customers($args = array()) { |
|
| 400 | 400 | |
| 401 | 401 | global $wpdb; |
| 402 | 402 | |
@@ -408,21 +408,21 @@ discard block |
||
| 408 | 408 | 'order' => 'DESC' |
| 409 | 409 | ); |
| 410 | 410 | |
| 411 | - $args = wp_parse_args( $args, $defaults ); |
|
| 411 | + $args = wp_parse_args($args, $defaults); |
|
| 412 | 412 | |
| 413 | - if ( $args['number'] < 1 ) { |
|
| 413 | + if ($args['number'] < 1) { |
|
| 414 | 414 | $args['number'] = 999999999999; |
| 415 | 415 | } |
| 416 | 416 | |
| 417 | 417 | $where = ' WHERE 1=1 '; |
| 418 | 418 | |
| 419 | 419 | // specific customers |
| 420 | - if ( ! empty( $args['id'] ) ) { |
|
| 420 | + if ( ! empty($args['id'])) { |
|
| 421 | 421 | |
| 422 | - if ( is_array( $args['id'] ) ) { |
|
| 423 | - $ids = implode( ',', array_map( 'intval', $args['id'] ) ); |
|
| 422 | + if (is_array($args['id'])) { |
|
| 423 | + $ids = implode(',', array_map('intval', $args['id'])); |
|
| 424 | 424 | } else { |
| 425 | - $ids = intval( $args['id'] ); |
|
| 425 | + $ids = intval($args['id']); |
|
| 426 | 426 | } |
| 427 | 427 | |
| 428 | 428 | $where .= " AND `id` IN( {$ids} ) "; |
@@ -430,12 +430,12 @@ discard block |
||
| 430 | 430 | } |
| 431 | 431 | |
| 432 | 432 | // customers for specific user accounts |
| 433 | - if ( ! empty( $args['user_id'] ) ) { |
|
| 433 | + if ( ! empty($args['user_id'])) { |
|
| 434 | 434 | |
| 435 | - if ( is_array( $args['user_id'] ) ) { |
|
| 436 | - $user_ids = implode( ',', array_map( 'intval', $args['user_id'] ) ); |
|
| 435 | + if (is_array($args['user_id'])) { |
|
| 436 | + $user_ids = implode(',', array_map('intval', $args['user_id'])); |
|
| 437 | 437 | } else { |
| 438 | - $user_ids = intval( $args['user_id'] ); |
|
| 438 | + $user_ids = intval($args['user_id']); |
|
| 439 | 439 | } |
| 440 | 440 | |
| 441 | 441 | $where .= " AND `user_id` IN( {$user_ids} ) "; |
@@ -443,41 +443,41 @@ discard block |
||
| 443 | 443 | } |
| 444 | 444 | |
| 445 | 445 | //specific customers by email |
| 446 | - if( ! empty( $args['email'] ) ) { |
|
| 446 | + if ( ! empty($args['email'])) { |
|
| 447 | 447 | |
| 448 | - if( is_array( $args['email'] ) ) { |
|
| 448 | + if (is_array($args['email'])) { |
|
| 449 | 449 | |
| 450 | - $emails_count = count( $args['email'] ); |
|
| 451 | - $emails_placeholder = array_fill( 0, $emails_count, '%s' ); |
|
| 452 | - $emails = implode( ', ', $emails_placeholder ); |
|
| 450 | + $emails_count = count($args['email']); |
|
| 451 | + $emails_placeholder = array_fill(0, $emails_count, '%s'); |
|
| 452 | + $emails = implode(', ', $emails_placeholder); |
|
| 453 | 453 | |
| 454 | - $where .= $wpdb->prepare( " AND `email` IN( $emails ) ", $args['email'] ); |
|
| 454 | + $where .= $wpdb->prepare(" AND `email` IN( $emails ) ", $args['email']); |
|
| 455 | 455 | } else { |
| 456 | - $where .= $wpdb->prepare( " AND `email` = %s ", $args['email'] ); |
|
| 456 | + $where .= $wpdb->prepare(" AND `email` = %s ", $args['email']); |
|
| 457 | 457 | } |
| 458 | 458 | } |
| 459 | 459 | |
| 460 | 460 | // specific customers by name |
| 461 | - if( ! empty( $args['name'] ) ) { |
|
| 462 | - $where .= $wpdb->prepare( " AND `name` LIKE '%%%%" . '%s' . "%%%%' ", $args['name'] ); |
|
| 461 | + if ( ! empty($args['name'])) { |
|
| 462 | + $where .= $wpdb->prepare(" AND `name` LIKE '%%%%".'%s'."%%%%' ", $args['name']); |
|
| 463 | 463 | } |
| 464 | 464 | |
| 465 | 465 | // Customers created for a specific date or in a date range |
| 466 | - if ( ! empty( $args['date'] ) ) { |
|
| 466 | + if ( ! empty($args['date'])) { |
|
| 467 | 467 | |
| 468 | - if ( is_array( $args['date'] ) ) { |
|
| 468 | + if (is_array($args['date'])) { |
|
| 469 | 469 | |
| 470 | - if ( ! empty( $args['date']['start'] ) ) { |
|
| 470 | + if ( ! empty($args['date']['start'])) { |
|
| 471 | 471 | |
| 472 | - $start = date( 'Y-m-d H:i:s', strtotime( $args['date']['start'] ) ); |
|
| 472 | + $start = date('Y-m-d H:i:s', strtotime($args['date']['start'])); |
|
| 473 | 473 | |
| 474 | 474 | $where .= " AND `date_created` >= '{$start}'"; |
| 475 | 475 | |
| 476 | 476 | } |
| 477 | 477 | |
| 478 | - if ( ! empty( $args['date']['end'] ) ) { |
|
| 478 | + if ( ! empty($args['date']['end'])) { |
|
| 479 | 479 | |
| 480 | - $end = date( 'Y-m-d H:i:s', strtotime( $args['date']['end'] ) ); |
|
| 480 | + $end = date('Y-m-d H:i:s', strtotime($args['date']['end'])); |
|
| 481 | 481 | |
| 482 | 482 | $where .= " AND `date_created` <= '{$end}'"; |
| 483 | 483 | |
@@ -485,31 +485,31 @@ discard block |
||
| 485 | 485 | |
| 486 | 486 | } else { |
| 487 | 487 | |
| 488 | - $year = date( 'Y', strtotime( $args['date'] ) ); |
|
| 489 | - $month = date( 'm', strtotime( $args['date'] ) ); |
|
| 490 | - $day = date( 'd', strtotime( $args['date'] ) ); |
|
| 488 | + $year = date('Y', strtotime($args['date'])); |
|
| 489 | + $month = date('m', strtotime($args['date'])); |
|
| 490 | + $day = date('d', strtotime($args['date'])); |
|
| 491 | 491 | |
| 492 | 492 | $where .= " AND $year = YEAR ( date_created ) AND $month = MONTH ( date_created ) AND $day = DAY ( date_created )"; |
| 493 | 493 | } |
| 494 | 494 | |
| 495 | 495 | } |
| 496 | 496 | |
| 497 | - $args['orderby'] = ! array_key_exists( $args['orderby'], $this->get_columns() ) ? 'id' : $args['orderby']; |
|
| 497 | + $args['orderby'] = ! array_key_exists($args['orderby'], $this->get_columns()) ? 'id' : $args['orderby']; |
|
| 498 | 498 | |
| 499 | - if ( 'purchase_value' == $args['orderby'] ) { |
|
| 499 | + if ('purchase_value' == $args['orderby']) { |
|
| 500 | 500 | $args['orderby'] = 'purchase_value+0'; |
| 501 | 501 | } |
| 502 | 502 | |
| 503 | - $cache_key = md5( 'give_customers_' . serialize( $args ) ); |
|
| 503 | + $cache_key = md5('give_customers_'.serialize($args)); |
|
| 504 | 504 | |
| 505 | - $customers = wp_cache_get( $cache_key, 'customers' ); |
|
| 505 | + $customers = wp_cache_get($cache_key, 'customers'); |
|
| 506 | 506 | |
| 507 | - $args['orderby'] = esc_sql( $args['orderby'] ); |
|
| 508 | - $args['order'] = esc_sql( $args['order'] ); |
|
| 507 | + $args['orderby'] = esc_sql($args['orderby']); |
|
| 508 | + $args['order'] = esc_sql($args['order']); |
|
| 509 | 509 | |
| 510 | - if ( $customers === false ) { |
|
| 511 | - $customers = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $this->table_name $where ORDER BY {$args['orderby']} {$args['order']} LIMIT %d,%d;", absint( $args['offset'] ), absint( $args['number'] ) ) ); |
|
| 512 | - wp_cache_set( $cache_key, $customers, 'customers', 3600 ); |
|
| 510 | + if ($customers === false) { |
|
| 511 | + $customers = $wpdb->get_results($wpdb->prepare("SELECT * FROM $this->table_name $where ORDER BY {$args['orderby']} {$args['order']} LIMIT %d,%d;", absint($args['offset']), absint($args['number']))); |
|
| 512 | + wp_cache_set($cache_key, $customers, 'customers', 3600); |
|
| 513 | 513 | } |
| 514 | 514 | |
| 515 | 515 | return $customers; |
@@ -523,26 +523,26 @@ discard block |
||
| 523 | 523 | * @access public |
| 524 | 524 | * @since 1.0 |
| 525 | 525 | */ |
| 526 | - public function count( $args = array() ) { |
|
| 526 | + public function count($args = array()) { |
|
| 527 | 527 | |
| 528 | 528 | global $wpdb; |
| 529 | 529 | |
| 530 | 530 | $where = ' WHERE 1=1 '; |
| 531 | 531 | |
| 532 | - if ( ! empty( $args['date'] ) ) { |
|
| 532 | + if ( ! empty($args['date'])) { |
|
| 533 | 533 | |
| 534 | - if ( is_array( $args['date'] ) ) { |
|
| 534 | + if (is_array($args['date'])) { |
|
| 535 | 535 | |
| 536 | - $start = date( 'Y-m-d H:i:s', strtotime( $args['date']['start'] ) ); |
|
| 537 | - $end = date( 'Y-m-d H:i:s', strtotime( $args['date']['end'] ) ); |
|
| 536 | + $start = date('Y-m-d H:i:s', strtotime($args['date']['start'])); |
|
| 537 | + $end = date('Y-m-d H:i:s', strtotime($args['date']['end'])); |
|
| 538 | 538 | |
| 539 | 539 | $where .= " AND `date_created` >= '{$start}' AND `date_created` <= '{$end}'"; |
| 540 | 540 | |
| 541 | 541 | } else { |
| 542 | 542 | |
| 543 | - $year = date( 'Y', strtotime( $args['date'] ) ); |
|
| 544 | - $month = date( 'm', strtotime( $args['date'] ) ); |
|
| 545 | - $day = date( 'd', strtotime( $args['date'] ) ); |
|
| 543 | + $year = date('Y', strtotime($args['date'])); |
|
| 544 | + $month = date('m', strtotime($args['date'])); |
|
| 545 | + $day = date('d', strtotime($args['date'])); |
|
| 546 | 546 | |
| 547 | 547 | $where .= " AND $year = YEAR ( date_created ) AND $month = MONTH ( date_created ) AND $day = DAY ( date_created )"; |
| 548 | 548 | } |
@@ -550,16 +550,16 @@ discard block |
||
| 550 | 550 | } |
| 551 | 551 | |
| 552 | 552 | |
| 553 | - $cache_key = md5( 'give_customers_count' . serialize( $args ) ); |
|
| 553 | + $cache_key = md5('give_customers_count'.serialize($args)); |
|
| 554 | 554 | |
| 555 | - $count = wp_cache_get( $cache_key, 'customers' ); |
|
| 555 | + $count = wp_cache_get($cache_key, 'customers'); |
|
| 556 | 556 | |
| 557 | - if ( $count === false ) { |
|
| 558 | - $count = $wpdb->get_var( "SELECT COUNT($this->primary_key) FROM " . $this->table_name . "{$where};" ); |
|
| 559 | - wp_cache_set( $cache_key, $count, 'customers', 3600 ); |
|
| 557 | + if ($count === false) { |
|
| 558 | + $count = $wpdb->get_var("SELECT COUNT($this->primary_key) FROM ".$this->table_name."{$where};"); |
|
| 559 | + wp_cache_set($cache_key, $count, 'customers', 3600); |
|
| 560 | 560 | } |
| 561 | 561 | |
| 562 | - return absint( $count ); |
|
| 562 | + return absint($count); |
|
| 563 | 563 | |
| 564 | 564 | } |
| 565 | 565 | |
@@ -571,9 +571,9 @@ discard block |
||
| 571 | 571 | */ |
| 572 | 572 | public function create_table() { |
| 573 | 573 | |
| 574 | - require_once( ABSPATH . 'wp-admin/includes/upgrade.php' ); |
|
| 574 | + require_once(ABSPATH.'wp-admin/includes/upgrade.php'); |
|
| 575 | 575 | |
| 576 | - $sql = "CREATE TABLE " . $this->table_name . " ( |
|
| 576 | + $sql = "CREATE TABLE ".$this->table_name." ( |
|
| 577 | 577 | id bigint(20) NOT NULL AUTO_INCREMENT, |
| 578 | 578 | user_id bigint(20) NOT NULL, |
| 579 | 579 | email varchar(50) NOT NULL, |
@@ -588,9 +588,9 @@ discard block |
||
| 588 | 588 | KEY user (user_id) |
| 589 | 589 | ) CHARACTER SET utf8 COLLATE utf8_general_ci;"; |
| 590 | 590 | |
| 591 | - dbDelta( $sql ); |
|
| 591 | + dbDelta($sql); |
|
| 592 | 592 | |
| 593 | - update_option( $this->table_name . '_db_version', $this->version ); |
|
| 593 | + update_option($this->table_name.'_db_version', $this->version); |
|
| 594 | 594 | } |
| 595 | 595 | |
| 596 | 596 | /** |
@@ -600,6 +600,6 @@ discard block |
||
| 600 | 600 | * @return bool Returns if the customers table was installed and upgrade routine run |
| 601 | 601 | */ |
| 602 | 602 | public function installed() { |
| 603 | - return $this->table_exists( $this->table_name ); |
|
| 603 | + return $this->table_exists($this->table_name); |
|
| 604 | 604 | } |
| 605 | 605 | } |
@@ -10,7 +10,7 @@ discard block |
||
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | 12 | // Exit if accessed directly |
| 13 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 13 | +if ( ! defined('ABSPATH')) { |
|
| 14 | 14 | exit; |
| 15 | 15 | } |
| 16 | 16 | |
@@ -24,15 +24,15 @@ discard block |
||
| 24 | 24 | * @global $wp_version |
| 25 | 25 | * @return void |
| 26 | 26 | */ |
| 27 | -function give_install( $network_wide = false ) { |
|
| 27 | +function give_install($network_wide = false) { |
|
| 28 | 28 | |
| 29 | 29 | global $wpdb; |
| 30 | 30 | |
| 31 | - if ( is_multisite() && $network_wide ) { |
|
| 31 | + if (is_multisite() && $network_wide) { |
|
| 32 | 32 | |
| 33 | - foreach ( $wpdb->get_col( "SELECT blog_id FROM $wpdb->blogs LIMIT 100" ) as $blog_id ) { |
|
| 33 | + foreach ($wpdb->get_col("SELECT blog_id FROM $wpdb->blogs LIMIT 100") as $blog_id) { |
|
| 34 | 34 | |
| 35 | - switch_to_blog( $blog_id ); |
|
| 35 | + switch_to_blog($blog_id); |
|
| 36 | 36 | give_run_install(); |
| 37 | 37 | restore_current_blog(); |
| 38 | 38 | |
@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | |
| 47 | 47 | } |
| 48 | 48 | |
| 49 | -register_activation_hook( GIVE_PLUGIN_FILE, 'give_install' ); |
|
| 49 | +register_activation_hook(GIVE_PLUGIN_FILE, 'give_install'); |
|
| 50 | 50 | |
| 51 | 51 | /** |
| 52 | 52 | * Run the Give Install process |
@@ -62,25 +62,25 @@ discard block |
||
| 62 | 62 | give_setup_post_types(); |
| 63 | 63 | |
| 64 | 64 | // Clear the permalinks |
| 65 | - flush_rewrite_rules( false ); |
|
| 65 | + flush_rewrite_rules(false); |
|
| 66 | 66 | |
| 67 | 67 | // Add Upgraded From Option |
| 68 | - $current_version = get_option( 'give_version' ); |
|
| 69 | - if ( $current_version ) { |
|
| 70 | - update_option( 'give_version_upgraded_from', $current_version ); |
|
| 68 | + $current_version = get_option('give_version'); |
|
| 69 | + if ($current_version) { |
|
| 70 | + update_option('give_version_upgraded_from', $current_version); |
|
| 71 | 71 | } |
| 72 | 72 | |
| 73 | 73 | // Setup some default options |
| 74 | 74 | $options = array(); |
| 75 | 75 | |
| 76 | 76 | // Checks if the Success Page option exists AND that the page exists |
| 77 | - if ( ! get_post( give_get_option( 'success_page' ) ) ) { |
|
| 77 | + if ( ! get_post(give_get_option('success_page'))) { |
|
| 78 | 78 | |
| 79 | 79 | // Purchase Confirmation (Success) Page |
| 80 | 80 | $success = wp_insert_post( |
| 81 | 81 | array( |
| 82 | - 'post_title' => __( 'Donation Confirmation', 'give' ), |
|
| 83 | - 'post_content' => __( '[give_receipt]', 'give' ), |
|
| 82 | + 'post_title' => __('Donation Confirmation', 'give'), |
|
| 83 | + 'post_content' => __('[give_receipt]', 'give'), |
|
| 84 | 84 | 'post_status' => 'publish', |
| 85 | 85 | 'post_author' => 1, |
| 86 | 86 | 'post_type' => 'page', |
@@ -93,13 +93,13 @@ discard block |
||
| 93 | 93 | } |
| 94 | 94 | |
| 95 | 95 | // Checks if the Failure Page option exists AND that the page exists |
| 96 | - if ( ! get_post( give_get_option( 'failure_page' ) ) ) { |
|
| 96 | + if ( ! get_post(give_get_option('failure_page'))) { |
|
| 97 | 97 | |
| 98 | 98 | // Failed Purchase Page |
| 99 | 99 | $failed = wp_insert_post( |
| 100 | 100 | array( |
| 101 | - 'post_title' => __( 'Transaction Failed', 'give' ), |
|
| 102 | - 'post_content' => __( 'We\'re sorry, your transaction failed to process. Please try again or contact site support.', 'give' ), |
|
| 101 | + 'post_title' => __('Transaction Failed', 'give'), |
|
| 102 | + 'post_content' => __('We\'re sorry, your transaction failed to process. Please try again or contact site support.', 'give'), |
|
| 103 | 103 | 'post_status' => 'publish', |
| 104 | 104 | 'post_author' => 1, |
| 105 | 105 | 'post_type' => 'page', |
@@ -111,11 +111,11 @@ discard block |
||
| 111 | 111 | } |
| 112 | 112 | |
| 113 | 113 | // Checks if the History Page option exists AND that the page exists |
| 114 | - if ( ! get_post( give_get_option( 'history_page' ) ) ) { |
|
| 114 | + if ( ! get_post(give_get_option('history_page'))) { |
|
| 115 | 115 | // Purchase History (History) Page |
| 116 | 116 | $history = wp_insert_post( |
| 117 | 117 | array( |
| 118 | - 'post_title' => __( 'Donation History', 'give' ), |
|
| 118 | + 'post_title' => __('Donation History', 'give'), |
|
| 119 | 119 | 'post_content' => '[donation_history]', |
| 120 | 120 | 'post_status' => 'publish', |
| 121 | 121 | 'post_author' => 1, |
@@ -128,7 +128,7 @@ discard block |
||
| 128 | 128 | } |
| 129 | 129 | |
| 130 | 130 | //Fresh Install? Setup Test Mode, Base Country (US), Test Gateway, Currency |
| 131 | - if ( empty( $current_version ) ) { |
|
| 131 | + if (empty($current_version)) { |
|
| 132 | 132 | $options['base_country'] = 'US'; |
| 133 | 133 | $options['test_mode'] = 1; |
| 134 | 134 | $options['currency'] = 'USD'; |
@@ -145,12 +145,12 @@ discard block |
||
| 145 | 145 | } |
| 146 | 146 | |
| 147 | 147 | // Populate some default values |
| 148 | - update_option( 'give_settings', array_merge( $give_options, $options ) ); |
|
| 149 | - update_option( 'give_version', GIVE_VERSION ); |
|
| 148 | + update_option('give_settings', array_merge($give_options, $options)); |
|
| 149 | + update_option('give_version', GIVE_VERSION); |
|
| 150 | 150 | |
| 151 | 151 | //Update Version Number |
| 152 | - if ( $current_version ) { |
|
| 153 | - update_option( 'give_version_upgraded_from', $current_version ); |
|
| 152 | + if ($current_version) { |
|
| 153 | + update_option('give_version_upgraded_from', $current_version); |
|
| 154 | 154 | } |
| 155 | 155 | |
| 156 | 156 | // Create Give roles |
@@ -159,7 +159,7 @@ discard block |
||
| 159 | 159 | $roles->add_caps(); |
| 160 | 160 | |
| 161 | 161 | $api = new Give_API(); |
| 162 | - update_option( 'give_default_api_version', 'v' . $api->get_version() ); |
|
| 162 | + update_option('give_default_api_version', 'v'.$api->get_version()); |
|
| 163 | 163 | |
| 164 | 164 | // Create the customers database |
| 165 | 165 | @Give()->customers->create_table(); |
@@ -168,11 +168,11 @@ discard block |
||
| 168 | 168 | Give()->session->use_php_sessions(); |
| 169 | 169 | |
| 170 | 170 | // Add a temporary option to note that Give pages have been created |
| 171 | - set_transient( '_give_installed', $options, 30 ); |
|
| 171 | + set_transient('_give_installed', $options, 30); |
|
| 172 | 172 | |
| 173 | - if ( ! $current_version ) { |
|
| 173 | + if ( ! $current_version) { |
|
| 174 | 174 | |
| 175 | - require_once GIVE_PLUGIN_DIR . 'includes/admin/upgrades/upgrade-functions.php'; |
|
| 175 | + require_once GIVE_PLUGIN_DIR.'includes/admin/upgrades/upgrade-functions.php'; |
|
| 176 | 176 | |
| 177 | 177 | // When new upgrade routines are added, mark them as complete on fresh install |
| 178 | 178 | $upgrade_routines = array( |
@@ -180,22 +180,22 @@ discard block |
||
| 180 | 180 | 'upgrade_give_offline_status' |
| 181 | 181 | ); |
| 182 | 182 | |
| 183 | - foreach ( $upgrade_routines as $upgrade ) { |
|
| 184 | - give_set_upgrade_complete( $upgrade ); |
|
| 183 | + foreach ($upgrade_routines as $upgrade) { |
|
| 184 | + give_set_upgrade_complete($upgrade); |
|
| 185 | 185 | } |
| 186 | 186 | } |
| 187 | 187 | |
| 188 | 188 | // Bail if activating from network, or bulk |
| 189 | - if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) { |
|
| 189 | + if (is_network_admin() || isset($_GET['activate-multi'])) { |
|
| 190 | 190 | return; |
| 191 | 191 | } |
| 192 | 192 | |
| 193 | 193 | // Add the transient to redirect |
| 194 | - set_transient( '_give_activation_redirect', true, 30 ); |
|
| 194 | + set_transient('_give_activation_redirect', true, 30); |
|
| 195 | 195 | |
| 196 | 196 | } |
| 197 | 197 | |
| 198 | -register_activation_hook( GIVE_PLUGIN_FILE, 'give_install' ); |
|
| 198 | +register_activation_hook(GIVE_PLUGIN_FILE, 'give_install'); |
|
| 199 | 199 | |
| 200 | 200 | /** |
| 201 | 201 | * Network Activated New Site Setup |
@@ -211,11 +211,11 @@ discard block |
||
| 211 | 211 | * @param int $site_id The Site ID |
| 212 | 212 | * @param array $meta Blog Meta |
| 213 | 213 | */ |
| 214 | -function on_create_blog( $blog_id, $user_id, $domain, $path, $site_id, $meta ) { |
|
| 214 | +function on_create_blog($blog_id, $user_id, $domain, $path, $site_id, $meta) { |
|
| 215 | 215 | |
| 216 | - if ( is_plugin_active_for_network( GIVE_PLUGIN_BASENAME ) ) { |
|
| 216 | + if (is_plugin_active_for_network(GIVE_PLUGIN_BASENAME)) { |
|
| 217 | 217 | |
| 218 | - switch_to_blog( $blog_id ); |
|
| 218 | + switch_to_blog($blog_id); |
|
| 219 | 219 | give_install(); |
| 220 | 220 | restore_current_blog(); |
| 221 | 221 | |
@@ -223,7 +223,7 @@ discard block |
||
| 223 | 223 | |
| 224 | 224 | } |
| 225 | 225 | |
| 226 | -add_action( 'wpmu_new_blog', 'on_create_blog', 10, 6 ); |
|
| 226 | +add_action('wpmu_new_blog', 'on_create_blog', 10, 6); |
|
| 227 | 227 | |
| 228 | 228 | |
| 229 | 229 | /** |
@@ -236,11 +236,11 @@ discard block |
||
| 236 | 236 | * |
| 237 | 237 | * @return array The tables to drop |
| 238 | 238 | */ |
| 239 | -function give_wpmu_drop_tables( $tables, $blog_id ) { |
|
| 239 | +function give_wpmu_drop_tables($tables, $blog_id) { |
|
| 240 | 240 | |
| 241 | - switch_to_blog( $blog_id ); |
|
| 241 | + switch_to_blog($blog_id); |
|
| 242 | 242 | $customers_db = new Give_DB_Customers(); |
| 243 | - if ( $customers_db->installed() ) { |
|
| 243 | + if ($customers_db->installed()) { |
|
| 244 | 244 | $tables[] = $customers_db->table_name; |
| 245 | 245 | } |
| 246 | 246 | restore_current_blog(); |
@@ -249,7 +249,7 @@ discard block |
||
| 249 | 249 | |
| 250 | 250 | } |
| 251 | 251 | |
| 252 | -add_filter( 'wpmu_drop_tables', 'give_wpmu_drop_tables', 10, 2 ); |
|
| 252 | +add_filter('wpmu_drop_tables', 'give_wpmu_drop_tables', 10, 2); |
|
| 253 | 253 | |
| 254 | 254 | /** |
| 255 | 255 | * Post-installation |
@@ -261,35 +261,35 @@ discard block |
||
| 261 | 261 | */ |
| 262 | 262 | function give_after_install() { |
| 263 | 263 | |
| 264 | - if ( ! is_admin() ) { |
|
| 264 | + if ( ! is_admin()) { |
|
| 265 | 265 | return; |
| 266 | 266 | } |
| 267 | 267 | |
| 268 | - $give_options = get_transient( '_give_installed' ); |
|
| 269 | - $give_table_check = get_option( '_give_table_check', false ); |
|
| 268 | + $give_options = get_transient('_give_installed'); |
|
| 269 | + $give_table_check = get_option('_give_table_check', false); |
|
| 270 | 270 | |
| 271 | - if ( false === $give_table_check || current_time( 'timestamp' ) > $give_table_check ) { |
|
| 271 | + if (false === $give_table_check || current_time('timestamp') > $give_table_check) { |
|
| 272 | 272 | |
| 273 | - if ( ! @Give()->customers->installed() ) { |
|
| 273 | + if ( ! @Give()->customers->installed()) { |
|
| 274 | 274 | // Create the customers database (this ensures it creates it on multisite instances where it is network activated) |
| 275 | 275 | @Give()->customers->create_table(); |
| 276 | 276 | |
| 277 | - do_action( 'give_after_install', $give_options ); |
|
| 277 | + do_action('give_after_install', $give_options); |
|
| 278 | 278 | } |
| 279 | 279 | |
| 280 | - update_option( '_give_table_check', ( current_time( 'timestamp' ) + WEEK_IN_SECONDS ) ); |
|
| 280 | + update_option('_give_table_check', (current_time('timestamp') + WEEK_IN_SECONDS)); |
|
| 281 | 281 | |
| 282 | 282 | } |
| 283 | 283 | |
| 284 | 284 | // Delete the transient |
| 285 | - if ( false !== $give_options ) { |
|
| 286 | - delete_transient( '_give_installed' ); |
|
| 285 | + if (false !== $give_options) { |
|
| 286 | + delete_transient('_give_installed'); |
|
| 287 | 287 | } |
| 288 | 288 | |
| 289 | 289 | |
| 290 | 290 | } |
| 291 | 291 | |
| 292 | -add_action( 'admin_init', 'give_after_install' ); |
|
| 292 | +add_action('admin_init', 'give_after_install'); |
|
| 293 | 293 | |
| 294 | 294 | |
| 295 | 295 | /** |
@@ -304,11 +304,11 @@ discard block |
||
| 304 | 304 | |
| 305 | 305 | global $wp_roles; |
| 306 | 306 | |
| 307 | - if ( ! is_object( $wp_roles ) ) { |
|
| 307 | + if ( ! is_object($wp_roles)) { |
|
| 308 | 308 | return; |
| 309 | 309 | } |
| 310 | 310 | |
| 311 | - if ( ! array_key_exists( 'give_manager', $wp_roles->roles ) ) { |
|
| 311 | + if ( ! array_key_exists('give_manager', $wp_roles->roles)) { |
|
| 312 | 312 | |
| 313 | 313 | // Create Give plugin roles |
| 314 | 314 | $roles = new Give_Roles; |
@@ -319,4 +319,4 @@ discard block |
||
| 319 | 319 | |
| 320 | 320 | } |
| 321 | 321 | |
| 322 | -add_action( 'admin_init', 'give_install_roles_on_network' ); |
|
| 323 | 322 | \ No newline at end of file |
| 323 | +add_action('admin_init', 'give_install_roles_on_network'); |
|
| 324 | 324 | \ No newline at end of file |
@@ -304,7 +304,6 @@ |
||
| 304 | 304 | * @access public |
| 305 | 305 | * @since 1.0 |
| 306 | 306 | * |
| 307 | - * @param array $item Contains all the data of the discount code |
|
| 308 | 307 | * @param string $column_name The name of the column |
| 309 | 308 | * |
| 310 | 309 | * @return string Column Name |
@@ -10,13 +10,13 @@ discard block |
||
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | 12 | // Exit if accessed directly |
| 13 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 13 | +if ( ! defined('ABSPATH')) { |
|
| 14 | 14 | exit; |
| 15 | 15 | } |
| 16 | 16 | |
| 17 | 17 | // Load WP_List_Table if not loaded |
| 18 | -if ( ! class_exists( 'WP_List_Table' ) ) { |
|
| 19 | - require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
|
| 18 | +if ( ! class_exists('WP_List_Table')) { |
|
| 19 | + require_once ABSPATH.'wp-admin/includes/class-wp-list-table.php'; |
|
| 20 | 20 | } |
| 21 | 21 | |
| 22 | 22 | /** |
@@ -120,37 +120,37 @@ discard block |
||
| 120 | 120 | global $status, $page; |
| 121 | 121 | |
| 122 | 122 | // Set parent defaults |
| 123 | - parent::__construct( array( |
|
| 124 | - 'singular' => give_get_forms_label_singular(), // Singular name of the listed records |
|
| 125 | - 'plural' => give_get_forms_label_plural(), // Plural name of the listed records |
|
| 123 | + parent::__construct(array( |
|
| 124 | + 'singular' => give_get_forms_label_singular(), // Singular name of the listed records |
|
| 125 | + 'plural' => give_get_forms_label_plural(), // Plural name of the listed records |
|
| 126 | 126 | 'ajax' => false // Does this table support ajax? |
| 127 | - ) ); |
|
| 127 | + )); |
|
| 128 | 128 | |
| 129 | 129 | $this->get_payment_counts(); |
| 130 | 130 | $this->process_bulk_action(); |
| 131 | - $this->base_url = admin_url( 'edit.php?post_type=give_forms&page=give-payment-history' ); |
|
| 131 | + $this->base_url = admin_url('edit.php?post_type=give_forms&page=give-payment-history'); |
|
| 132 | 132 | } |
| 133 | 133 | |
| 134 | 134 | public function advanced_filters() { |
| 135 | - $start_date = isset( $_GET['start-date'] ) ? sanitize_text_field( $_GET['start-date'] ) : null; |
|
| 136 | - $end_date = isset( $_GET['end-date'] ) ? sanitize_text_field( $_GET['end-date'] ) : null; |
|
| 137 | - $status = isset( $_GET['status'] ) ? $_GET['status'] : ''; |
|
| 135 | + $start_date = isset($_GET['start-date']) ? sanitize_text_field($_GET['start-date']) : null; |
|
| 136 | + $end_date = isset($_GET['end-date']) ? sanitize_text_field($_GET['end-date']) : null; |
|
| 137 | + $status = isset($_GET['status']) ? $_GET['status'] : ''; |
|
| 138 | 138 | ?> |
| 139 | 139 | <div id="give-payment-filters"> |
| 140 | 140 | <span id="give-payment-date-filters"> |
| 141 | - <label for="start-date" class="give-start-date-label"><?php _e( 'Start Date:', 'give' ); ?></label> |
|
| 141 | + <label for="start-date" class="give-start-date-label"><?php _e('Start Date:', 'give'); ?></label> |
|
| 142 | 142 | <input type="text" id="start-date" name="start-date" class="give_datepicker" value="<?php echo $start_date; ?>" placeholder="mm/dd/yyyy"/> |
| 143 | - <label for="end-date" class="give-end-date-label"><?php _e( 'End Date:', 'give' ); ?></label> |
|
| 143 | + <label for="end-date" class="give-end-date-label"><?php _e('End Date:', 'give'); ?></label> |
|
| 144 | 144 | <input type="text" id="end-date" name="end-date" class="give_datepicker" value="<?php echo $end_date; ?>" placeholder="mm/dd/yyyy"/> |
| 145 | - <input type="submit" class="button-secondary" value="<?php _e( 'Apply', 'give' ); ?>"/> |
|
| 145 | + <input type="submit" class="button-secondary" value="<?php _e('Apply', 'give'); ?>"/> |
|
| 146 | 146 | </span> |
| 147 | - <?php if ( ! empty( $status ) ) : ?> |
|
| 148 | - <input type="hidden" name="status" value="<?php echo esc_attr( $status ); ?>"/> |
|
| 147 | + <?php if ( ! empty($status)) : ?> |
|
| 148 | + <input type="hidden" name="status" value="<?php echo esc_attr($status); ?>"/> |
|
| 149 | 149 | <?php endif; ?> |
| 150 | - <?php if ( ! empty( $start_date ) || ! empty( $end_date ) ) : ?> |
|
| 151 | - <a href="<?php echo admin_url( 'edit.php?post_type=give_forms&page=give-payment-history' ); ?>" class="button-secondary"><?php _e( 'Clear Filter', 'give' ); ?></a> |
|
| 150 | + <?php if ( ! empty($start_date) || ! empty($end_date)) : ?> |
|
| 151 | + <a href="<?php echo admin_url('edit.php?post_type=give_forms&page=give-payment-history'); ?>" class="button-secondary"><?php _e('Clear Filter', 'give'); ?></a> |
|
| 152 | 152 | <?php endif; ?> |
| 153 | - <?php $this->search_box( __( 'Search', 'give' ), 'give-payments' ); ?> |
|
| 153 | + <?php $this->search_box(__('Search', 'give'), 'give-payments'); ?> |
|
| 154 | 154 | </div> |
| 155 | 155 | |
| 156 | 156 | <?php |
@@ -167,25 +167,25 @@ discard block |
||
| 167 | 167 | * |
| 168 | 168 | * @return void |
| 169 | 169 | */ |
| 170 | - public function search_box( $text, $input_id ) { |
|
| 171 | - if ( empty( $_REQUEST['s'] ) && ! $this->has_items() ) { |
|
| 170 | + public function search_box($text, $input_id) { |
|
| 171 | + if (empty($_REQUEST['s']) && ! $this->has_items()) { |
|
| 172 | 172 | return; |
| 173 | 173 | } |
| 174 | 174 | |
| 175 | - $input_id = $input_id . '-search-input'; |
|
| 175 | + $input_id = $input_id.'-search-input'; |
|
| 176 | 176 | |
| 177 | - if ( ! empty( $_REQUEST['orderby'] ) ) { |
|
| 178 | - echo '<input type="hidden" name="orderby" value="' . esc_attr( $_REQUEST['orderby'] ) . '" />'; |
|
| 177 | + if ( ! empty($_REQUEST['orderby'])) { |
|
| 178 | + echo '<input type="hidden" name="orderby" value="'.esc_attr($_REQUEST['orderby']).'" />'; |
|
| 179 | 179 | } |
| 180 | - if ( ! empty( $_REQUEST['order'] ) ) { |
|
| 181 | - echo '<input type="hidden" name="order" value="' . esc_attr( $_REQUEST['order'] ) . '" />'; |
|
| 180 | + if ( ! empty($_REQUEST['order'])) { |
|
| 181 | + echo '<input type="hidden" name="order" value="'.esc_attr($_REQUEST['order']).'" />'; |
|
| 182 | 182 | } |
| 183 | 183 | ?> |
| 184 | 184 | <p class="search-box"> |
| 185 | - <?php do_action( 'give_payment_history_search' ); ?> |
|
| 185 | + <?php do_action('give_payment_history_search'); ?> |
|
| 186 | 186 | <label class="screen-reader-text" for="<?php echo $input_id ?>"><?php echo $text; ?>:</label> |
| 187 | 187 | <input type="search" id="<?php echo $input_id ?>" name="s" value="<?php _admin_search_query(); ?>"/> |
| 188 | - <?php submit_button( $text, 'button', false, false, array( 'ID' => 'search-submit' ) ); ?><br/> |
|
| 188 | + <?php submit_button($text, 'button', false, false, array('ID' => 'search-submit')); ?><br/> |
|
| 189 | 189 | </p> |
| 190 | 190 | <?php |
| 191 | 191 | } |
@@ -199,52 +199,52 @@ discard block |
||
| 199 | 199 | */ |
| 200 | 200 | public function get_views() { |
| 201 | 201 | |
| 202 | - $current = isset( $_GET['status'] ) ? $_GET['status'] : ''; |
|
| 203 | - $total_count = ' <span class="count">(' . $this->total_count . ')</span>'; |
|
| 204 | - $complete_count = ' <span class="count">(' . $this->complete_count . ')</span>'; |
|
| 205 | - $cancelled_count = ' <span class="count">(' . $this->cancelled_count . ')</span>'; |
|
| 206 | - $pending_count = ' <span class="count">(' . $this->pending_count . ')</span>'; |
|
| 207 | - $refunded_count = ' <span class="count">(' . $this->refunded_count . ')</span>'; |
|
| 208 | - $failed_count = ' <span class="count">(' . $this->failed_count . ')</span>'; |
|
| 209 | - $abandoned_count = ' <span class="count">(' . $this->abandoned_count . ')</span>'; |
|
| 210 | - $revoked_count = ' <span class="count">(' . $this->revoked_count . ')</span>'; |
|
| 202 | + $current = isset($_GET['status']) ? $_GET['status'] : ''; |
|
| 203 | + $total_count = ' <span class="count">('.$this->total_count.')</span>'; |
|
| 204 | + $complete_count = ' <span class="count">('.$this->complete_count.')</span>'; |
|
| 205 | + $cancelled_count = ' <span class="count">('.$this->cancelled_count.')</span>'; |
|
| 206 | + $pending_count = ' <span class="count">('.$this->pending_count.')</span>'; |
|
| 207 | + $refunded_count = ' <span class="count">('.$this->refunded_count.')</span>'; |
|
| 208 | + $failed_count = ' <span class="count">('.$this->failed_count.')</span>'; |
|
| 209 | + $abandoned_count = ' <span class="count">('.$this->abandoned_count.')</span>'; |
|
| 210 | + $revoked_count = ' <span class="count">('.$this->revoked_count.')</span>'; |
|
| 211 | 211 | |
| 212 | 212 | $views = array( |
| 213 | - 'all' => sprintf( '<a href="%s"%s>%s</a>', remove_query_arg( array( |
|
| 213 | + 'all' => sprintf('<a href="%s"%s>%s</a>', remove_query_arg(array( |
|
| 214 | 214 | 'status', |
| 215 | 215 | 'paged' |
| 216 | - ) ), $current === 'all' || $current == '' ? ' class="current"' : '', __( 'All', 'give' ) . $total_count ), |
|
| 217 | - 'publish' => sprintf( '<a href="%s"%s>%s</a>', esc_url( add_query_arg( array( |
|
| 216 | + )), $current === 'all' || $current == '' ? ' class="current"' : '', __('All', 'give').$total_count), |
|
| 217 | + 'publish' => sprintf('<a href="%s"%s>%s</a>', esc_url(add_query_arg(array( |
|
| 218 | 218 | 'status' => 'publish', |
| 219 | 219 | 'paged' => false |
| 220 | - ) ) ), $current === 'publish' ? ' class="current"' : '', __( 'Completed', 'give' ) . $complete_count ), |
|
| 221 | - 'pending' => sprintf( '<a href="%s"%s>%s</a>', esc_url( add_query_arg( array( |
|
| 220 | + ))), $current === 'publish' ? ' class="current"' : '', __('Completed', 'give').$complete_count), |
|
| 221 | + 'pending' => sprintf('<a href="%s"%s>%s</a>', esc_url(add_query_arg(array( |
|
| 222 | 222 | 'status' => 'pending', |
| 223 | 223 | 'paged' => false |
| 224 | - ) ) ), $current === 'pending' ? ' class="current"' : '', __( 'Pending', 'give' ) . $pending_count ), |
|
| 225 | - 'refunded' => sprintf( '<a href="%s"%s>%s</a>', esc_url( add_query_arg( array( |
|
| 224 | + ))), $current === 'pending' ? ' class="current"' : '', __('Pending', 'give').$pending_count), |
|
| 225 | + 'refunded' => sprintf('<a href="%s"%s>%s</a>', esc_url(add_query_arg(array( |
|
| 226 | 226 | 'status' => 'refunded', |
| 227 | 227 | 'paged' => false |
| 228 | - ) ) ), $current === 'refunded' ? ' class="current"' : '', __( 'Refunded', 'give' ) . $refunded_count ), |
|
| 229 | - 'revoked' => sprintf( '<a href="%s"%s>%s</a>', esc_url( add_query_arg( array( |
|
| 228 | + ))), $current === 'refunded' ? ' class="current"' : '', __('Refunded', 'give').$refunded_count), |
|
| 229 | + 'revoked' => sprintf('<a href="%s"%s>%s</a>', esc_url(add_query_arg(array( |
|
| 230 | 230 | 'status' => 'revoked', |
| 231 | 231 | 'paged' => false |
| 232 | - ) ) ), $current === 'revoked' ? ' class="current"' : '', __( 'Revoked', 'give' ) . $revoked_count ), |
|
| 233 | - 'failed' => sprintf( '<a href="%s"%s>%s</a>', esc_url( add_query_arg( array( |
|
| 232 | + ))), $current === 'revoked' ? ' class="current"' : '', __('Revoked', 'give').$revoked_count), |
|
| 233 | + 'failed' => sprintf('<a href="%s"%s>%s</a>', esc_url(add_query_arg(array( |
|
| 234 | 234 | 'status' => 'failed', |
| 235 | 235 | 'paged' => false |
| 236 | - ) ) ), $current === 'failed' ? ' class="current"' : '', __( 'Failed', 'give' ) . $failed_count ), |
|
| 237 | - 'cancelled' => sprintf( '<a href="%s"%s>%s</a>', esc_url( add_query_arg( array( |
|
| 236 | + ))), $current === 'failed' ? ' class="current"' : '', __('Failed', 'give').$failed_count), |
|
| 237 | + 'cancelled' => sprintf('<a href="%s"%s>%s</a>', esc_url(add_query_arg(array( |
|
| 238 | 238 | 'status' => 'cancelled', |
| 239 | 239 | 'paged' => false |
| 240 | - ) ) ), $current === 'cancelled' ? ' class="current"' : '', __( 'Cancelled', 'give' ) . $cancelled_count ), |
|
| 241 | - 'abandoned' => sprintf( '<a href="%s"%s>%s</a>', esc_url( add_query_arg( array( |
|
| 240 | + ))), $current === 'cancelled' ? ' class="current"' : '', __('Cancelled', 'give').$cancelled_count), |
|
| 241 | + 'abandoned' => sprintf('<a href="%s"%s>%s</a>', esc_url(add_query_arg(array( |
|
| 242 | 242 | 'status' => 'abandoned', |
| 243 | 243 | 'paged' => false |
| 244 | - ) ) ), $current === 'abandoned' ? ' class="current"' : '', __( 'Abandoned', 'give' ) . $abandoned_count ) |
|
| 244 | + ))), $current === 'abandoned' ? ' class="current"' : '', __('Abandoned', 'give').$abandoned_count) |
|
| 245 | 245 | ); |
| 246 | 246 | |
| 247 | - return apply_filters( 'give_payments_table_views', $views ); |
|
| 247 | + return apply_filters('give_payments_table_views', $views); |
|
| 248 | 248 | } |
| 249 | 249 | |
| 250 | 250 | /** |
@@ -257,17 +257,17 @@ discard block |
||
| 257 | 257 | public function get_columns() { |
| 258 | 258 | $columns = array( |
| 259 | 259 | 'cb' => '<input type="checkbox" />', //Render a checkbox instead of text |
| 260 | - 'email' => __( 'Email', 'give' ), |
|
| 261 | - 'details' => __( 'Details', 'give' ), |
|
| 262 | - 'amount' => __( 'Amount', 'give' ), |
|
| 263 | - 'donation' => __( 'Donation', 'give' ), |
|
| 264 | - 'status' => __( 'Status', 'give' ), |
|
| 265 | - 'date' => __( 'Date', 'give' ), |
|
| 266 | - 'donor' => __( 'Donor', 'give' ), |
|
| 267 | - 'ID' => __( 'ID', 'give' ), |
|
| 260 | + 'email' => __('Email', 'give'), |
|
| 261 | + 'details' => __('Details', 'give'), |
|
| 262 | + 'amount' => __('Amount', 'give'), |
|
| 263 | + 'donation' => __('Donation', 'give'), |
|
| 264 | + 'status' => __('Status', 'give'), |
|
| 265 | + 'date' => __('Date', 'give'), |
|
| 266 | + 'donor' => __('Donor', 'give'), |
|
| 267 | + 'ID' => __('ID', 'give'), |
|
| 268 | 268 | ); |
| 269 | 269 | |
| 270 | - return apply_filters( 'give_payments_table_columns', $columns ); |
|
| 270 | + return apply_filters('give_payments_table_columns', $columns); |
|
| 271 | 271 | } |
| 272 | 272 | |
| 273 | 273 | /** |
@@ -279,12 +279,12 @@ discard block |
||
| 279 | 279 | */ |
| 280 | 280 | public function get_sortable_columns() { |
| 281 | 281 | $columns = array( |
| 282 | - 'ID' => array( 'ID', true ), |
|
| 283 | - 'amount' => array( 'amount', false ), |
|
| 284 | - 'date' => array( 'date', false ) |
|
| 282 | + 'ID' => array('ID', true), |
|
| 283 | + 'amount' => array('amount', false), |
|
| 284 | + 'date' => array('date', false) |
|
| 285 | 285 | ); |
| 286 | 286 | |
| 287 | - return apply_filters( 'give_payments_table_sortable_columns', $columns ); |
|
| 287 | + return apply_filters('give_payments_table_sortable_columns', $columns); |
|
| 288 | 288 | } |
| 289 | 289 | |
| 290 | 290 | /** |
@@ -310,41 +310,41 @@ discard block |
||
| 310 | 310 | * |
| 311 | 311 | * @return string Column Name |
| 312 | 312 | */ |
| 313 | - public function column_default( $payment, $column_name ) { |
|
| 314 | - switch ( $column_name ) { |
|
| 313 | + public function column_default($payment, $column_name) { |
|
| 314 | + switch ($column_name) { |
|
| 315 | 315 | case 'amount' : |
| 316 | - $amount = ! empty( $payment->total ) ? $payment->total : 0; |
|
| 317 | - $value = give_currency_filter( give_format_amount( $amount ), give_get_payment_currency_code( $payment->ID ) ); |
|
| 316 | + $amount = ! empty($payment->total) ? $payment->total : 0; |
|
| 317 | + $value = give_currency_filter(give_format_amount($amount), give_get_payment_currency_code($payment->ID)); |
|
| 318 | 318 | break; |
| 319 | 319 | case 'donation' : |
| 320 | - $value = '<a href="' . get_permalink( $payment->form_id ) . '">' . $payment->form_title . '</a>'; |
|
| 321 | - $level = give_get_payment_form_title( $payment->meta, true ); |
|
| 320 | + $value = '<a href="'.get_permalink($payment->form_id).'">'.$payment->form_title.'</a>'; |
|
| 321 | + $level = give_get_payment_form_title($payment->meta, true); |
|
| 322 | 322 | |
| 323 | - if ( ! empty( $level ) ) { |
|
| 323 | + if ( ! empty($level)) { |
|
| 324 | 324 | $value .= $level; |
| 325 | 325 | } |
| 326 | 326 | |
| 327 | 327 | break; |
| 328 | 328 | case 'date' : |
| 329 | - $date = strtotime( $payment->date ); |
|
| 330 | - $value = date_i18n( get_option( 'date_format' ), $date ); |
|
| 329 | + $date = strtotime($payment->date); |
|
| 330 | + $value = date_i18n(get_option('date_format'), $date); |
|
| 331 | 331 | break; |
| 332 | 332 | case 'status' : |
| 333 | - $value = '<div class="give-donation-status status-' . sanitize_title( give_get_payment_status( $payment, true ) ) . '"><span class="give-donation-status-icon"></span> ' . give_get_payment_status( $payment, true ) . '</div>'; |
|
| 334 | - if ( $payment->mode == 'test' ) { |
|
| 335 | - $value .= ' <span class="give-item-label give-item-label-orange give-test-mode-transactions-label" data-tooltip="' . __( 'This payment was made in test mode', 'give' ) . '">' . __( 'Test', 'give' ) . '</span>'; |
|
| 333 | + $value = '<div class="give-donation-status status-'.sanitize_title(give_get_payment_status($payment, true)).'"><span class="give-donation-status-icon"></span> '.give_get_payment_status($payment, true).'</div>'; |
|
| 334 | + if ($payment->mode == 'test') { |
|
| 335 | + $value .= ' <span class="give-item-label give-item-label-orange give-test-mode-transactions-label" data-tooltip="'.__('This payment was made in test mode', 'give').'">'.__('Test', 'give').'</span>'; |
|
| 336 | 336 | } |
| 337 | 337 | break; |
| 338 | 338 | case 'details' : |
| 339 | - $value = '<div class="give-payment-details-link-wrap"><a href="' . esc_url( add_query_arg( 'id', $payment->ID, admin_url( 'edit.php?post_type=give_forms&page=give-payment-history&view=view-order-details' ) ) ) . '" class="give-payment-details-link button button-small">' . __( 'View Details', 'give' ) . '</a></div>'; |
|
| 339 | + $value = '<div class="give-payment-details-link-wrap"><a href="'.esc_url(add_query_arg('id', $payment->ID, admin_url('edit.php?post_type=give_forms&page=give-payment-history&view=view-order-details'))).'" class="give-payment-details-link button button-small">'.__('View Details', 'give').'</a></div>'; |
|
| 340 | 340 | break; |
| 341 | 341 | default: |
| 342 | - $value = isset( $payment->$column_name ) ? $payment->$column_name : ''; |
|
| 342 | + $value = isset($payment->$column_name) ? $payment->$column_name : ''; |
|
| 343 | 343 | break; |
| 344 | 344 | |
| 345 | 345 | } |
| 346 | 346 | |
| 347 | - return apply_filters( 'give_payments_table_column', $value, $payment->ID, $column_name ); |
|
| 347 | + return apply_filters('give_payments_table_column', $value, $payment->ID, $column_name); |
|
| 348 | 348 | } |
| 349 | 349 | |
| 350 | 350 | /** |
@@ -357,40 +357,40 @@ discard block |
||
| 357 | 357 | * |
| 358 | 358 | * @return string Data shown in the Email column |
| 359 | 359 | */ |
| 360 | - public function column_email( $payment ) { |
|
| 360 | + public function column_email($payment) { |
|
| 361 | 361 | |
| 362 | 362 | $row_actions = array(); |
| 363 | 363 | |
| 364 | - $email = give_get_payment_user_email( $payment->ID ); |
|
| 364 | + $email = give_get_payment_user_email($payment->ID); |
|
| 365 | 365 | |
| 366 | 366 | // Add search term string back to base URL |
| 367 | - $search_terms = ( isset( $_GET['s'] ) ? trim( $_GET['s'] ) : '' ); |
|
| 368 | - if ( ! empty( $search_terms ) ) { |
|
| 369 | - $this->base_url = add_query_arg( 's', $search_terms, $this->base_url ); |
|
| 367 | + $search_terms = (isset($_GET['s']) ? trim($_GET['s']) : ''); |
|
| 368 | + if ( ! empty($search_terms)) { |
|
| 369 | + $this->base_url = add_query_arg('s', $search_terms, $this->base_url); |
|
| 370 | 370 | } |
| 371 | 371 | |
| 372 | - if ( give_is_payment_complete( $payment->ID ) && ! empty( $email ) ) { |
|
| 373 | - $row_actions['email_links'] = '<a href="' . add_query_arg( array( |
|
| 372 | + if (give_is_payment_complete($payment->ID) && ! empty($email)) { |
|
| 373 | + $row_actions['email_links'] = '<a href="'.add_query_arg(array( |
|
| 374 | 374 | 'give-action' => 'email_links', |
| 375 | 375 | 'purchase_id' => $payment->ID |
| 376 | - ), $this->base_url ) . '">' . __( 'Resend Donation Receipt', 'give' ) . '</a>'; |
|
| 376 | + ), $this->base_url).'">'.__('Resend Donation Receipt', 'give').'</a>'; |
|
| 377 | 377 | |
| 378 | 378 | } |
| 379 | 379 | |
| 380 | - $row_actions['delete'] = '<a href="' . wp_nonce_url( add_query_arg( array( |
|
| 380 | + $row_actions['delete'] = '<a href="'.wp_nonce_url(add_query_arg(array( |
|
| 381 | 381 | 'give-action' => 'delete_payment', |
| 382 | 382 | 'purchase_id' => $payment->ID |
| 383 | - ), $this->base_url ), 'give_payment_nonce' ) . '">' . __( 'Delete', 'give' ) . '</a>'; |
|
| 383 | + ), $this->base_url), 'give_payment_nonce').'">'.__('Delete', 'give').'</a>'; |
|
| 384 | 384 | |
| 385 | - $row_actions = apply_filters( 'give_payment_row_actions', $row_actions, $payment ); |
|
| 385 | + $row_actions = apply_filters('give_payment_row_actions', $row_actions, $payment); |
|
| 386 | 386 | |
| 387 | - if ( empty( $email ) ) { |
|
| 388 | - $email = __( '(unknown)', 'give' ); |
|
| 387 | + if (empty($email)) { |
|
| 388 | + $email = __('(unknown)', 'give'); |
|
| 389 | 389 | } |
| 390 | 390 | |
| 391 | - $value = '<span class="give-email-column-value">' . $email . '</span>' . $this->row_actions( $row_actions ); |
|
| 391 | + $value = '<span class="give-email-column-value">'.$email.'</span>'.$this->row_actions($row_actions); |
|
| 392 | 392 | |
| 393 | - return apply_filters( 'give_payments_table_column', $value, $payment->ID, 'email' ); |
|
| 393 | + return apply_filters('give_payments_table_column', $value, $payment->ID, 'email'); |
|
| 394 | 394 | } |
| 395 | 395 | |
| 396 | 396 | /** |
@@ -403,7 +403,7 @@ discard block |
||
| 403 | 403 | * |
| 404 | 404 | * @return string Displays a checkbox |
| 405 | 405 | */ |
| 406 | - public function column_cb( $payment ) { |
|
| 406 | + public function column_cb($payment) { |
|
| 407 | 407 | return sprintf( |
| 408 | 408 | '<input type="checkbox" name="%1$s[]" value="%2$s" />', |
| 409 | 409 | 'payment', |
@@ -421,8 +421,8 @@ discard block |
||
| 421 | 421 | * |
| 422 | 422 | * @return string Displays a checkbox |
| 423 | 423 | */ |
| 424 | - public function column_ID( $payment ) { |
|
| 425 | - return '<span class="give-payment-id">' . give_get_payment_number( $payment->ID ) . '</span>'; |
|
| 424 | + public function column_ID($payment) { |
|
| 425 | + return '<span class="give-payment-id">'.give_get_payment_number($payment->ID).'</span>'; |
|
| 426 | 426 | } |
| 427 | 427 | |
| 428 | 428 | /** |
@@ -435,19 +435,19 @@ discard block |
||
| 435 | 435 | * |
| 436 | 436 | * @return string Data shown in the User column |
| 437 | 437 | */ |
| 438 | - public function column_donor( $payment ) { |
|
| 438 | + public function column_donor($payment) { |
|
| 439 | 439 | |
| 440 | - $customer_id = give_get_payment_customer_id( $payment->ID ); |
|
| 440 | + $customer_id = give_get_payment_customer_id($payment->ID); |
|
| 441 | 441 | |
| 442 | - if ( ! empty( $customer_id ) ) { |
|
| 443 | - $customer = new Give_Customer( $customer_id ); |
|
| 444 | - $value = '<a href="' . esc_url( admin_url( "edit.php?post_type=give_forms&page=give-donors&view=overview&id=$customer_id" ) ) . '">' . $customer->name . '</a>'; |
|
| 442 | + if ( ! empty($customer_id)) { |
|
| 443 | + $customer = new Give_Customer($customer_id); |
|
| 444 | + $value = '<a href="'.esc_url(admin_url("edit.php?post_type=give_forms&page=give-donors&view=overview&id=$customer_id")).'">'.$customer->name.'</a>'; |
|
| 445 | 445 | } else { |
| 446 | - $email = give_get_payment_user_email( $payment->ID ); |
|
| 447 | - $value = '<a href="' . esc_url( admin_url( "edit.php?post_type=give_forms&page=give-payment-history&s=$email" ) ) . '">' . __( '(donor missing)', 'give' ) . '</a>'; |
|
| 446 | + $email = give_get_payment_user_email($payment->ID); |
|
| 447 | + $value = '<a href="'.esc_url(admin_url("edit.php?post_type=give_forms&page=give-payment-history&s=$email")).'">'.__('(donor missing)', 'give').'</a>'; |
|
| 448 | 448 | } |
| 449 | 449 | |
| 450 | - return apply_filters( 'give_payments_table_column', $value, $payment->ID, 'donor' ); |
|
| 450 | + return apply_filters('give_payments_table_column', $value, $payment->ID, 'donor'); |
|
| 451 | 451 | } |
| 452 | 452 | |
| 453 | 453 | /** |
@@ -459,18 +459,18 @@ discard block |
||
| 459 | 459 | */ |
| 460 | 460 | public function get_bulk_actions() { |
| 461 | 461 | $actions = array( |
| 462 | - 'delete' => __( 'Delete', 'give' ), |
|
| 463 | - 'set-status-publish' => __( 'Set To Completed', 'give' ), |
|
| 464 | - 'set-status-pending' => __( 'Set To Pending', 'give' ), |
|
| 465 | - 'set-status-refunded' => __( 'Set To Refunded', 'give' ), |
|
| 466 | - 'set-status-revoked' => __( 'Set To Revoked', 'give' ), |
|
| 467 | - 'set-status-failed' => __( 'Set To Failed', 'give' ), |
|
| 468 | - 'set-status-cancelled' => __( 'Set To Cancelled', 'give' ), |
|
| 469 | - 'set-status-abandoned' => __( 'Set To Abandoned', 'give' ), |
|
| 470 | - 'resend-receipt' => __( 'Resend Email Receipts', 'give' ) |
|
| 462 | + 'delete' => __('Delete', 'give'), |
|
| 463 | + 'set-status-publish' => __('Set To Completed', 'give'), |
|
| 464 | + 'set-status-pending' => __('Set To Pending', 'give'), |
|
| 465 | + 'set-status-refunded' => __('Set To Refunded', 'give'), |
|
| 466 | + 'set-status-revoked' => __('Set To Revoked', 'give'), |
|
| 467 | + 'set-status-failed' => __('Set To Failed', 'give'), |
|
| 468 | + 'set-status-cancelled' => __('Set To Cancelled', 'give'), |
|
| 469 | + 'set-status-abandoned' => __('Set To Abandoned', 'give'), |
|
| 470 | + 'resend-receipt' => __('Resend Email Receipts', 'give') |
|
| 471 | 471 | ); |
| 472 | 472 | |
| 473 | - return apply_filters( 'give_payments_table_bulk_actions', $actions ); |
|
| 473 | + return apply_filters('give_payments_table_bulk_actions', $actions); |
|
| 474 | 474 | } |
| 475 | 475 | |
| 476 | 476 | /** |
@@ -481,61 +481,61 @@ discard block |
||
| 481 | 481 | * @return void |
| 482 | 482 | */ |
| 483 | 483 | public function process_bulk_action() { |
| 484 | - $ids = isset( $_GET['payment'] ) ? $_GET['payment'] : false; |
|
| 484 | + $ids = isset($_GET['payment']) ? $_GET['payment'] : false; |
|
| 485 | 485 | $action = $this->current_action(); |
| 486 | 486 | |
| 487 | - if ( ! is_array( $ids ) ) { |
|
| 488 | - $ids = array( $ids ); |
|
| 487 | + if ( ! is_array($ids)) { |
|
| 488 | + $ids = array($ids); |
|
| 489 | 489 | } |
| 490 | 490 | |
| 491 | - if ( empty( $action ) ) { |
|
| 491 | + if (empty($action)) { |
|
| 492 | 492 | return; |
| 493 | 493 | } |
| 494 | 494 | |
| 495 | - foreach ( $ids as $id ) { |
|
| 495 | + foreach ($ids as $id) { |
|
| 496 | 496 | |
| 497 | 497 | // Detect when a bulk action is being triggered... |
| 498 | - if ( 'delete' === $this->current_action() ) { |
|
| 499 | - give_delete_purchase( $id ); |
|
| 498 | + if ('delete' === $this->current_action()) { |
|
| 499 | + give_delete_purchase($id); |
|
| 500 | 500 | } |
| 501 | 501 | |
| 502 | - if ( 'set-status-publish' === $this->current_action() ) { |
|
| 503 | - give_update_payment_status( $id, 'publish' ); |
|
| 502 | + if ('set-status-publish' === $this->current_action()) { |
|
| 503 | + give_update_payment_status($id, 'publish'); |
|
| 504 | 504 | } |
| 505 | 505 | |
| 506 | - if ( 'set-status-pending' === $this->current_action() ) { |
|
| 507 | - give_update_payment_status( $id, 'pending' ); |
|
| 506 | + if ('set-status-pending' === $this->current_action()) { |
|
| 507 | + give_update_payment_status($id, 'pending'); |
|
| 508 | 508 | } |
| 509 | 509 | |
| 510 | - if ( 'set-status-refunded' === $this->current_action() ) { |
|
| 511 | - give_update_payment_status( $id, 'refunded' ); |
|
| 510 | + if ('set-status-refunded' === $this->current_action()) { |
|
| 511 | + give_update_payment_status($id, 'refunded'); |
|
| 512 | 512 | } |
| 513 | 513 | |
| 514 | - if ( 'set-status-revoked' === $this->current_action() ) { |
|
| 515 | - give_update_payment_status( $id, 'revoked' ); |
|
| 514 | + if ('set-status-revoked' === $this->current_action()) { |
|
| 515 | + give_update_payment_status($id, 'revoked'); |
|
| 516 | 516 | } |
| 517 | 517 | |
| 518 | - if ( 'set-status-failed' === $this->current_action() ) { |
|
| 519 | - give_update_payment_status( $id, 'failed' ); |
|
| 518 | + if ('set-status-failed' === $this->current_action()) { |
|
| 519 | + give_update_payment_status($id, 'failed'); |
|
| 520 | 520 | } |
| 521 | 521 | |
| 522 | - if ( 'set-status-cancelled' === $this->current_action() ) { |
|
| 523 | - give_update_payment_status( $id, 'cancelled' ); |
|
| 522 | + if ('set-status-cancelled' === $this->current_action()) { |
|
| 523 | + give_update_payment_status($id, 'cancelled'); |
|
| 524 | 524 | } |
| 525 | 525 | |
| 526 | - if ( 'set-status-abandoned' === $this->current_action() ) { |
|
| 527 | - give_update_payment_status( $id, 'abandoned' ); |
|
| 526 | + if ('set-status-abandoned' === $this->current_action()) { |
|
| 527 | + give_update_payment_status($id, 'abandoned'); |
|
| 528 | 528 | } |
| 529 | 529 | |
| 530 | - if ( 'set-status-preapproval' === $this->current_action() ) { |
|
| 531 | - give_update_payment_status( $id, 'preapproval' ); |
|
| 530 | + if ('set-status-preapproval' === $this->current_action()) { |
|
| 531 | + give_update_payment_status($id, 'preapproval'); |
|
| 532 | 532 | } |
| 533 | 533 | |
| 534 | - if ( 'resend-receipt' === $this->current_action() ) { |
|
| 535 | - give_email_donation_receipt( $id, false ); |
|
| 534 | + if ('resend-receipt' === $this->current_action()) { |
|
| 535 | + give_email_donation_receipt($id, false); |
|
| 536 | 536 | } |
| 537 | 537 | |
| 538 | - do_action( 'give_payments_table_do_bulk_action', $id, $this->current_action() ); |
|
| 538 | + do_action('give_payments_table_do_bulk_action', $id, $this->current_action()); |
|
| 539 | 539 | } |
| 540 | 540 | |
| 541 | 541 | } |
@@ -553,27 +553,27 @@ discard block |
||
| 553 | 553 | |
| 554 | 554 | $args = array(); |
| 555 | 555 | |
| 556 | - if ( isset( $_GET['user'] ) ) { |
|
| 557 | - $args['user'] = urldecode( $_GET['user'] ); |
|
| 558 | - } elseif ( isset( $_GET['s'] ) ) { |
|
| 559 | - $is_user = strpos( $_GET['s'], strtolower( 'user:' ) ) !== false; |
|
| 560 | - if ( $is_user ) { |
|
| 561 | - $args['user'] = absint( trim( str_replace( 'user:', '', strtolower( $_GET['s'] ) ) ) ); |
|
| 562 | - unset( $args['s'] ); |
|
| 556 | + if (isset($_GET['user'])) { |
|
| 557 | + $args['user'] = urldecode($_GET['user']); |
|
| 558 | + } elseif (isset($_GET['s'])) { |
|
| 559 | + $is_user = strpos($_GET['s'], strtolower('user:')) !== false; |
|
| 560 | + if ($is_user) { |
|
| 561 | + $args['user'] = absint(trim(str_replace('user:', '', strtolower($_GET['s'])))); |
|
| 562 | + unset($args['s']); |
|
| 563 | 563 | } else { |
| 564 | - $args['s'] = sanitize_text_field( $_GET['s'] ); |
|
| 564 | + $args['s'] = sanitize_text_field($_GET['s']); |
|
| 565 | 565 | } |
| 566 | 566 | } |
| 567 | 567 | |
| 568 | - if ( ! empty( $_GET['start-date'] ) ) { |
|
| 569 | - $args['start-date'] = urldecode( $_GET['start-date'] ); |
|
| 568 | + if ( ! empty($_GET['start-date'])) { |
|
| 569 | + $args['start-date'] = urldecode($_GET['start-date']); |
|
| 570 | 570 | } |
| 571 | 571 | |
| 572 | - if ( ! empty( $_GET['end-date'] ) ) { |
|
| 573 | - $args['end-date'] = urldecode( $_GET['end-date'] ); |
|
| 572 | + if ( ! empty($_GET['end-date'])) { |
|
| 573 | + $args['end-date'] = urldecode($_GET['end-date']); |
|
| 574 | 574 | } |
| 575 | 575 | |
| 576 | - $payment_count = give_count_payments( $args ); |
|
| 576 | + $payment_count = give_count_payments($args); |
|
| 577 | 577 | $this->complete_count = $payment_count->publish; |
| 578 | 578 | $this->pending_count = $payment_count->pending; |
| 579 | 579 | $this->refunded_count = $payment_count->refunded; |
@@ -582,7 +582,7 @@ discard block |
||
| 582 | 582 | $this->cancelled_count = $payment_count->cancelled; |
| 583 | 583 | $this->abandoned_count = $payment_count->abandoned; |
| 584 | 584 | |
| 585 | - foreach ( $payment_count as $count ) { |
|
| 585 | + foreach ($payment_count as $count) { |
|
| 586 | 586 | $this->total_count += $count; |
| 587 | 587 | } |
| 588 | 588 | } |
@@ -597,26 +597,26 @@ discard block |
||
| 597 | 597 | public function payments_data() { |
| 598 | 598 | |
| 599 | 599 | $per_page = $this->per_page; |
| 600 | - $orderby = isset( $_GET['orderby'] ) ? urldecode( $_GET['orderby'] ) : 'ID'; |
|
| 601 | - $order = isset( $_GET['order'] ) ? $_GET['order'] : 'DESC'; |
|
| 602 | - $user = isset( $_GET['user'] ) ? $_GET['user'] : null; |
|
| 603 | - $status = isset( $_GET['status'] ) ? $_GET['status'] : give_get_payment_status_keys(); |
|
| 604 | - $meta_key = isset( $_GET['meta_key'] ) ? $_GET['meta_key'] : null; |
|
| 605 | - $year = isset( $_GET['year'] ) ? $_GET['year'] : null; |
|
| 606 | - $month = isset( $_GET['m'] ) ? $_GET['m'] : null; |
|
| 607 | - $day = isset( $_GET['day'] ) ? $_GET['day'] : null; |
|
| 608 | - $search = isset( $_GET['s'] ) ? sanitize_text_field( $_GET['s'] ) : null; |
|
| 609 | - $start_date = isset( $_GET['start-date'] ) ? sanitize_text_field( $_GET['start-date'] ) : null; |
|
| 610 | - $end_date = isset( $_GET['end-date'] ) ? sanitize_text_field( $_GET['end-date'] ) : $start_date; |
|
| 611 | - |
|
| 612 | - if ( ! empty( $search ) ) { |
|
| 600 | + $orderby = isset($_GET['orderby']) ? urldecode($_GET['orderby']) : 'ID'; |
|
| 601 | + $order = isset($_GET['order']) ? $_GET['order'] : 'DESC'; |
|
| 602 | + $user = isset($_GET['user']) ? $_GET['user'] : null; |
|
| 603 | + $status = isset($_GET['status']) ? $_GET['status'] : give_get_payment_status_keys(); |
|
| 604 | + $meta_key = isset($_GET['meta_key']) ? $_GET['meta_key'] : null; |
|
| 605 | + $year = isset($_GET['year']) ? $_GET['year'] : null; |
|
| 606 | + $month = isset($_GET['m']) ? $_GET['m'] : null; |
|
| 607 | + $day = isset($_GET['day']) ? $_GET['day'] : null; |
|
| 608 | + $search = isset($_GET['s']) ? sanitize_text_field($_GET['s']) : null; |
|
| 609 | + $start_date = isset($_GET['start-date']) ? sanitize_text_field($_GET['start-date']) : null; |
|
| 610 | + $end_date = isset($_GET['end-date']) ? sanitize_text_field($_GET['end-date']) : $start_date; |
|
| 611 | + |
|
| 612 | + if ( ! empty($search)) { |
|
| 613 | 613 | $status = 'any'; // Force all payment statuses when searching |
| 614 | 614 | } |
| 615 | 615 | |
| 616 | 616 | $args = array( |
| 617 | 617 | 'output' => 'payments', |
| 618 | 618 | 'number' => $per_page, |
| 619 | - 'page' => isset( $_GET['paged'] ) ? $_GET['paged'] : null, |
|
| 619 | + 'page' => isset($_GET['paged']) ? $_GET['paged'] : null, |
|
| 620 | 620 | 'orderby' => $orderby, |
| 621 | 621 | 'order' => $order, |
| 622 | 622 | 'user' => $user, |
@@ -630,14 +630,14 @@ discard block |
||
| 630 | 630 | 'end_date' => $end_date, |
| 631 | 631 | ); |
| 632 | 632 | |
| 633 | - if ( is_string( $search ) && false !== strpos( $search, 'txn:' ) ) { |
|
| 633 | + if (is_string($search) && false !== strpos($search, 'txn:')) { |
|
| 634 | 634 | |
| 635 | 635 | $args['search_in_notes'] = true; |
| 636 | - $args['s'] = trim( str_replace( 'txn:', '', $args['s'] ) ); |
|
| 636 | + $args['s'] = trim(str_replace('txn:', '', $args['s'])); |
|
| 637 | 637 | |
| 638 | 638 | } |
| 639 | 639 | |
| 640 | - $p_query = new Give_Payments_Query( $args ); |
|
| 640 | + $p_query = new Give_Payments_Query($args); |
|
| 641 | 641 | |
| 642 | 642 | return $p_query->get_payments(); |
| 643 | 643 | |
@@ -657,17 +657,17 @@ discard block |
||
| 657 | 657 | */ |
| 658 | 658 | public function prepare_items() { |
| 659 | 659 | |
| 660 | - wp_reset_vars( array( 'action', 'payment', 'orderby', 'order', 's' ) ); |
|
| 660 | + wp_reset_vars(array('action', 'payment', 'orderby', 'order', 's')); |
|
| 661 | 661 | |
| 662 | 662 | $columns = $this->get_columns(); |
| 663 | 663 | $hidden = array(); // No hidden columns |
| 664 | 664 | $sortable = $this->get_sortable_columns(); |
| 665 | 665 | $data = $this->payments_data(); |
| 666 | - $status = isset( $_GET['status'] ) ? $_GET['status'] : 'any'; |
|
| 666 | + $status = isset($_GET['status']) ? $_GET['status'] : 'any'; |
|
| 667 | 667 | |
| 668 | - $this->_column_headers = array( $columns, $hidden, $sortable ); |
|
| 668 | + $this->_column_headers = array($columns, $hidden, $sortable); |
|
| 669 | 669 | |
| 670 | - switch ( $status ) { |
|
| 670 | + switch ($status) { |
|
| 671 | 671 | case 'publish': |
| 672 | 672 | $total_items = $this->complete_count; |
| 673 | 673 | break; |
@@ -694,18 +694,18 @@ discard block |
||
| 694 | 694 | break; |
| 695 | 695 | default: |
| 696 | 696 | // Retrieve the count of the non-default-Give status |
| 697 | - $count = wp_count_posts( 'give_payment' ); |
|
| 697 | + $count = wp_count_posts('give_payment'); |
|
| 698 | 698 | $total_items = $count->{$status}; |
| 699 | 699 | } |
| 700 | 700 | |
| 701 | 701 | $this->items = $data; |
| 702 | 702 | |
| 703 | - $this->set_pagination_args( array( |
|
| 703 | + $this->set_pagination_args(array( |
|
| 704 | 704 | 'total_items' => $total_items, |
| 705 | 705 | // WE have to calculate the total number of items |
| 706 | 706 | 'per_page' => $this->per_page, |
| 707 | 707 | // WE have to determine how many items to show on a page |
| 708 | - 'total_pages' => ceil( $total_items / $this->per_page ) |
|
| 708 | + 'total_pages' => ceil($total_items / $this->per_page) |
|
| 709 | 709 | // WE have to calculate the total number of pages |
| 710 | 710 | ) |
| 711 | 711 | ); |
@@ -50,7 +50,7 @@ |
||
| 50 | 50 | * @since 1.5 |
| 51 | 51 | * @global object $wpdb Used to query the database using the WordPress |
| 52 | 52 | * Database API |
| 53 | - * @return array $data The data for the CSV file |
|
| 53 | + * @return boolean $data The data for the CSV file |
|
| 54 | 54 | */ |
| 55 | 55 | public function get_data() { |
| 56 | 56 | global $wpdb; |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | */ |
| 12 | 12 | |
| 13 | 13 | // Exit if accessed directly |
| 14 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 14 | +if ( ! defined('ABSPATH')) { |
|
| 15 | 15 | exit; |
| 16 | 16 | } |
| 17 | 17 | |
@@ -55,16 +55,16 @@ discard block |
||
| 55 | 55 | public function get_data() { |
| 56 | 56 | global $wpdb; |
| 57 | 57 | |
| 58 | - $items = $this->get_stored_data( 'give_temp_reset_ids' ); |
|
| 58 | + $items = $this->get_stored_data('give_temp_reset_ids'); |
|
| 59 | 59 | |
| 60 | - if ( ! is_array( $items ) ) { |
|
| 60 | + if ( ! is_array($items)) { |
|
| 61 | 61 | return false; |
| 62 | 62 | } |
| 63 | 63 | |
| 64 | - $offset = ( $this->step - 1 ) * $this->per_step; |
|
| 65 | - $step_items = array_slice( $items, $offset, $this->per_step ); |
|
| 64 | + $offset = ($this->step - 1) * $this->per_step; |
|
| 65 | + $step_items = array_slice($items, $offset, $this->per_step); |
|
| 66 | 66 | |
| 67 | - if ( $step_items ) { |
|
| 67 | + if ($step_items) { |
|
| 68 | 68 | |
| 69 | 69 | $step_ids = array( |
| 70 | 70 | 'customers' => array(), |
@@ -72,9 +72,9 @@ discard block |
||
| 72 | 72 | 'other' => array(), |
| 73 | 73 | ); |
| 74 | 74 | |
| 75 | - foreach ( $step_items as $item ) { |
|
| 75 | + foreach ($step_items as $item) { |
|
| 76 | 76 | |
| 77 | - switch ( $item['type'] ) { |
|
| 77 | + switch ($item['type']) { |
|
| 78 | 78 | case 'customer': |
| 79 | 79 | $step_ids['customers'][] = $item['id']; |
| 80 | 80 | break; |
@@ -82,8 +82,8 @@ discard block |
||
| 82 | 82 | $step_ids['give_forms'][] = $item['id']; |
| 83 | 83 | break; |
| 84 | 84 | default: |
| 85 | - $item_type = apply_filters( 'give_reset_item_type', 'other', $item ); |
|
| 86 | - $step_ids[ $item_type ][] = $item['id']; |
|
| 85 | + $item_type = apply_filters('give_reset_item_type', 'other', $item); |
|
| 86 | + $step_ids[$item_type][] = $item['id']; |
|
| 87 | 87 | break; |
| 88 | 88 | } |
| 89 | 89 | |
@@ -91,17 +91,17 @@ discard block |
||
| 91 | 91 | |
| 92 | 92 | $sql = array(); |
| 93 | 93 | |
| 94 | - foreach ( $step_ids as $type => $ids ) { |
|
| 94 | + foreach ($step_ids as $type => $ids) { |
|
| 95 | 95 | |
| 96 | - if ( empty( $ids ) ) { |
|
| 96 | + if (empty($ids)) { |
|
| 97 | 97 | continue; |
| 98 | 98 | } |
| 99 | 99 | |
| 100 | - $ids = implode( ',', $ids ); |
|
| 100 | + $ids = implode(',', $ids); |
|
| 101 | 101 | |
| 102 | - switch ( $type ) { |
|
| 102 | + switch ($type) { |
|
| 103 | 103 | case 'customers': |
| 104 | - $table_name = $wpdb->prefix . 'give_customers'; |
|
| 104 | + $table_name = $wpdb->prefix.'give_customers'; |
|
| 105 | 105 | $sql[] = "DELETE FROM $table_name WHERE id IN ($ids)"; |
| 106 | 106 | break; |
| 107 | 107 | case 'forms': |
@@ -116,17 +116,17 @@ discard block |
||
| 116 | 116 | break; |
| 117 | 117 | } |
| 118 | 118 | |
| 119 | - if ( ! in_array( $type, array( 'customers', 'forms', 'other' ) ) ) { |
|
| 119 | + if ( ! in_array($type, array('customers', 'forms', 'other'))) { |
|
| 120 | 120 | // Allows other types of custom post types to filter on their own post_type |
| 121 | 121 | // and add items to the query list, for the IDs found in their post type. |
| 122 | - $sql = apply_filters( 'give_reset_add_queries_' . $type, $sql, $ids ); |
|
| 122 | + $sql = apply_filters('give_reset_add_queries_'.$type, $sql, $ids); |
|
| 123 | 123 | } |
| 124 | 124 | |
| 125 | 125 | } |
| 126 | 126 | |
| 127 | - if ( ! empty( $sql ) ) { |
|
| 128 | - foreach ( $sql as $query ) { |
|
| 129 | - $wpdb->query( $query ); |
|
| 127 | + if ( ! empty($sql)) { |
|
| 128 | + foreach ($sql as $query) { |
|
| 129 | + $wpdb->query($query); |
|
| 130 | 130 | } |
| 131 | 131 | } |
| 132 | 132 | |
@@ -146,16 +146,16 @@ discard block |
||
| 146 | 146 | */ |
| 147 | 147 | public function get_percentage_complete() { |
| 148 | 148 | |
| 149 | - $items = $this->get_stored_data( 'give_temp_reset_ids', false ); |
|
| 150 | - $total = count( $items ); |
|
| 149 | + $items = $this->get_stored_data('give_temp_reset_ids', false); |
|
| 150 | + $total = count($items); |
|
| 151 | 151 | |
| 152 | 152 | $percentage = 100; |
| 153 | 153 | |
| 154 | - if ( $total > 0 ) { |
|
| 155 | - $percentage = ( ( $this->per_step * $this->step ) / $total ) * 100; |
|
| 154 | + if ($total > 0) { |
|
| 155 | + $percentage = (($this->per_step * $this->step) / $total) * 100; |
|
| 156 | 156 | } |
| 157 | 157 | |
| 158 | - if ( $percentage > 100 ) { |
|
| 158 | + if ($percentage > 100) { |
|
| 159 | 159 | $percentage = 100; |
| 160 | 160 | } |
| 161 | 161 | |
@@ -169,7 +169,7 @@ discard block |
||
| 169 | 169 | * |
| 170 | 170 | * @param array $request The Form Data passed into the batch processing |
| 171 | 171 | */ |
| 172 | - public function set_properties( $request ) { |
|
| 172 | + public function set_properties($request) { |
|
| 173 | 173 | } |
| 174 | 174 | |
| 175 | 175 | /** |
@@ -180,30 +180,30 @@ discard block |
||
| 180 | 180 | */ |
| 181 | 181 | public function process_step() { |
| 182 | 182 | |
| 183 | - if ( ! $this->can_export() ) { |
|
| 184 | - wp_die( __( 'You do not have permission to export data.', 'give' ), __( 'Error', 'give' ), array( 'response' => 403 ) ); |
|
| 183 | + if ( ! $this->can_export()) { |
|
| 184 | + wp_die(__('You do not have permission to export data.', 'give'), __('Error', 'give'), array('response' => 403)); |
|
| 185 | 185 | } |
| 186 | 186 | |
| 187 | 187 | $had_data = $this->get_data(); |
| 188 | 188 | |
| 189 | - if ( $had_data ) { |
|
| 189 | + if ($had_data) { |
|
| 190 | 190 | $this->done = false; |
| 191 | 191 | |
| 192 | 192 | return true; |
| 193 | 193 | } else { |
| 194 | - update_option( 'give_earnings_total', 0 ); |
|
| 195 | - delete_transient( 'give_earnings_total' ); |
|
| 196 | - delete_transient( 'give_estimated_monthly_stats' . true ); |
|
| 197 | - delete_transient( 'give_estimated_monthly_stats' . false ); |
|
| 198 | - $this->delete_data( 'give_temp_reset_ids' ); |
|
| 194 | + update_option('give_earnings_total', 0); |
|
| 195 | + delete_transient('give_earnings_total'); |
|
| 196 | + delete_transient('give_estimated_monthly_stats'.true); |
|
| 197 | + delete_transient('give_estimated_monthly_stats'.false); |
|
| 198 | + $this->delete_data('give_temp_reset_ids'); |
|
| 199 | 199 | |
| 200 | 200 | // Reset the sequential order numbers |
| 201 | - if ( give_get_option( 'enable_sequential' ) ) { |
|
| 202 | - delete_option( 'give_last_payment_number' ); |
|
| 201 | + if (give_get_option('enable_sequential')) { |
|
| 202 | + delete_option('give_last_payment_number'); |
|
| 203 | 203 | } |
| 204 | 204 | |
| 205 | 205 | $this->done = true; |
| 206 | - $this->message = __( 'Donation forms, income, donations counts, and logs successfully reset.', 'give' ); |
|
| 206 | + $this->message = __('Donation forms, income, donations counts, and logs successfully reset.', 'give'); |
|
| 207 | 207 | |
| 208 | 208 | return false; |
| 209 | 209 | } |
@@ -213,10 +213,10 @@ discard block |
||
| 213 | 213 | * Headers |
| 214 | 214 | */ |
| 215 | 215 | public function headers() { |
| 216 | - ignore_user_abort( true ); |
|
| 216 | + ignore_user_abort(true); |
|
| 217 | 217 | |
| 218 | - if ( ! give_is_func_disabled( 'set_time_limit' ) && ! ini_get( 'safe_mode' ) ) { |
|
| 219 | - set_time_limit( 0 ); |
|
| 218 | + if ( ! give_is_func_disabled('set_time_limit') && ! ini_get('safe_mode')) { |
|
| 219 | + set_time_limit(0); |
|
| 220 | 220 | } |
| 221 | 221 | } |
| 222 | 222 | |
@@ -240,35 +240,35 @@ discard block |
||
| 240 | 240 | */ |
| 241 | 241 | public function pre_fetch() { |
| 242 | 242 | |
| 243 | - if ( $this->step == 1 ) { |
|
| 244 | - $this->delete_data( 'give_temp_reset_ids' ); |
|
| 243 | + if ($this->step == 1) { |
|
| 244 | + $this->delete_data('give_temp_reset_ids'); |
|
| 245 | 245 | } |
| 246 | 246 | |
| 247 | - $items = get_option( 'give_temp_reset_ids', false ); |
|
| 247 | + $items = get_option('give_temp_reset_ids', false); |
|
| 248 | 248 | |
| 249 | - if ( false === $items ) { |
|
| 249 | + if (false === $items) { |
|
| 250 | 250 | $items = array(); |
| 251 | 251 | |
| 252 | - $give_types_for_reset = array( 'give_forms', 'give_log', 'give_payment' ); |
|
| 253 | - $give_types_for_reset = apply_filters( 'give_reset_store_post_types', $give_types_for_reset ); |
|
| 252 | + $give_types_for_reset = array('give_forms', 'give_log', 'give_payment'); |
|
| 253 | + $give_types_for_reset = apply_filters('give_reset_store_post_types', $give_types_for_reset); |
|
| 254 | 254 | |
| 255 | - $args = apply_filters( 'give_tools_reset_stats_total_args', array( |
|
| 255 | + $args = apply_filters('give_tools_reset_stats_total_args', array( |
|
| 256 | 256 | 'post_type' => $give_types_for_reset, |
| 257 | 257 | 'post_status' => 'any', |
| 258 | - 'posts_per_page' => - 1, |
|
| 259 | - ) ); |
|
| 258 | + 'posts_per_page' => -1, |
|
| 259 | + )); |
|
| 260 | 260 | |
| 261 | - $posts = get_posts( $args ); |
|
| 262 | - foreach ( $posts as $post ) { |
|
| 261 | + $posts = get_posts($args); |
|
| 262 | + foreach ($posts as $post) { |
|
| 263 | 263 | $items[] = array( |
| 264 | 264 | 'id' => (int) $post->ID, |
| 265 | 265 | 'type' => $post->post_type, |
| 266 | 266 | ); |
| 267 | 267 | } |
| 268 | 268 | |
| 269 | - $customer_args = array( 'number' => - 1 ); |
|
| 270 | - $customers = Give()->customers->get_customers( $customer_args ); |
|
| 271 | - foreach ( $customers as $customer ) { |
|
| 269 | + $customer_args = array('number' => -1); |
|
| 270 | + $customers = Give()->customers->get_customers($customer_args); |
|
| 271 | + foreach ($customers as $customer) { |
|
| 272 | 272 | $items[] = array( |
| 273 | 273 | 'id' => (int) $customer->id, |
| 274 | 274 | 'type' => 'customer', |
@@ -277,9 +277,9 @@ discard block |
||
| 277 | 277 | |
| 278 | 278 | // Allow filtering of items to remove with an unassociative array for each item |
| 279 | 279 | // The array contains the unique ID of the item, and a 'type' for you to use in the execution of the get_data method |
| 280 | - $items = apply_filters( 'give_reset_store_items', $items ); |
|
| 280 | + $items = apply_filters('give_reset_store_items', $items); |
|
| 281 | 281 | |
| 282 | - $this->store_data( 'give_temp_reset_ids', $items ); |
|
| 282 | + $this->store_data('give_temp_reset_ids', $items); |
|
| 283 | 283 | } |
| 284 | 284 | |
| 285 | 285 | } |
@@ -293,11 +293,11 @@ discard block |
||
| 293 | 293 | * |
| 294 | 294 | * @return mixed Returns the data from the database |
| 295 | 295 | */ |
| 296 | - private function get_stored_data( $key ) { |
|
| 296 | + private function get_stored_data($key) { |
|
| 297 | 297 | global $wpdb; |
| 298 | - $value = $wpdb->get_var( $wpdb->prepare( "SELECT option_value FROM $wpdb->options WHERE option_name = '%s'", $key ) ); |
|
| 298 | + $value = $wpdb->get_var($wpdb->prepare("SELECT option_value FROM $wpdb->options WHERE option_name = '%s'", $key)); |
|
| 299 | 299 | |
| 300 | - return empty( $value ) ? false : maybe_unserialize( $value ); |
|
| 300 | + return empty($value) ? false : maybe_unserialize($value); |
|
| 301 | 301 | } |
| 302 | 302 | |
| 303 | 303 | /** |
@@ -310,10 +310,10 @@ discard block |
||
| 310 | 310 | * |
| 311 | 311 | * @return void |
| 312 | 312 | */ |
| 313 | - private function store_data( $key, $value ) { |
|
| 313 | + private function store_data($key, $value) { |
|
| 314 | 314 | global $wpdb; |
| 315 | 315 | |
| 316 | - $value = maybe_serialize( $value ); |
|
| 316 | + $value = maybe_serialize($value); |
|
| 317 | 317 | |
| 318 | 318 | $data = array( |
| 319 | 319 | 'option_name' => $key, |
@@ -327,7 +327,7 @@ discard block |
||
| 327 | 327 | '%s', |
| 328 | 328 | ); |
| 329 | 329 | |
| 330 | - $wpdb->replace( $wpdb->options, $data, $formats ); |
|
| 330 | + $wpdb->replace($wpdb->options, $data, $formats); |
|
| 331 | 331 | } |
| 332 | 332 | |
| 333 | 333 | /** |
@@ -339,9 +339,9 @@ discard block |
||
| 339 | 339 | * |
| 340 | 340 | * @return void |
| 341 | 341 | */ |
| 342 | - private function delete_data( $key ) { |
|
| 342 | + private function delete_data($key) { |
|
| 343 | 343 | global $wpdb; |
| 344 | - $wpdb->delete( $wpdb->options, array( 'option_name' => $key ) ); |
|
| 344 | + $wpdb->delete($wpdb->options, array('option_name' => $key)); |
|
| 345 | 345 | } |
| 346 | 346 | |
| 347 | 347 | } |
@@ -152,7 +152,7 @@ discard block |
||
| 152 | 152 | * |
| 153 | 153 | * @since 1.0 |
| 154 | 154 | * |
| 155 | - * @param $key |
|
| 155 | + * @param string $key |
|
| 156 | 156 | * |
| 157 | 157 | * @return mixed |
| 158 | 158 | * @throws Exception |
@@ -179,7 +179,7 @@ discard block |
||
| 179 | 179 | * |
| 180 | 180 | * @param array $data Array of attributes for a donation form |
| 181 | 181 | * |
| 182 | - * @return mixed false if data isn't passed and class not instantiated for creation, or New Form ID |
|
| 182 | + * @return boolean false if data isn't passed and class not instantiated for creation, or New Form ID |
|
| 183 | 183 | */ |
| 184 | 184 | public function create( $data = array() ) { |
| 185 | 185 | |
@@ -100,12 +100,12 @@ discard block |
||
| 100 | 100 | * @param bool $_id |
| 101 | 101 | * @param array $_args |
| 102 | 102 | */ |
| 103 | - public function __construct( $_id = false, $_args = array() ) { |
|
| 103 | + public function __construct($_id = false, $_args = array()) { |
|
| 104 | 104 | |
| 105 | 105 | |
| 106 | - $donation_form = WP_Post::get_instance( $_id ); |
|
| 106 | + $donation_form = WP_Post::get_instance($_id); |
|
| 107 | 107 | |
| 108 | - return $this->setup_donation_form( $donation_form ); |
|
| 108 | + return $this->setup_donation_form($donation_form); |
|
| 109 | 109 | } |
| 110 | 110 | |
| 111 | 111 | /** |
@@ -117,23 +117,23 @@ discard block |
||
| 117 | 117 | * |
| 118 | 118 | * @return bool If the setup was successful or not |
| 119 | 119 | */ |
| 120 | - private function setup_donation_form( $donation_form ) { |
|
| 120 | + private function setup_donation_form($donation_form) { |
|
| 121 | 121 | |
| 122 | - if ( ! is_object( $donation_form ) ) { |
|
| 122 | + if ( ! is_object($donation_form)) { |
|
| 123 | 123 | return false; |
| 124 | 124 | } |
| 125 | 125 | |
| 126 | - if ( ! is_a( $donation_form, 'WP_Post' ) ) { |
|
| 126 | + if ( ! is_a($donation_form, 'WP_Post')) { |
|
| 127 | 127 | return false; |
| 128 | 128 | } |
| 129 | 129 | |
| 130 | - if ( 'give_forms' !== $donation_form->post_type ) { |
|
| 130 | + if ('give_forms' !== $donation_form->post_type) { |
|
| 131 | 131 | return false; |
| 132 | 132 | } |
| 133 | 133 | |
| 134 | - foreach ( $donation_form as $key => $value ) { |
|
| 134 | + foreach ($donation_form as $key => $value) { |
|
| 135 | 135 | |
| 136 | - switch ( $key ) { |
|
| 136 | + switch ($key) { |
|
| 137 | 137 | |
| 138 | 138 | default: |
| 139 | 139 | $this->$key = $value; |
@@ -157,15 +157,15 @@ discard block |
||
| 157 | 157 | * @return mixed |
| 158 | 158 | * @throws Exception |
| 159 | 159 | */ |
| 160 | - public function __get( $key ) { |
|
| 160 | + public function __get($key) { |
|
| 161 | 161 | |
| 162 | - if ( method_exists( $this, 'get_' . $key ) ) { |
|
| 162 | + if (method_exists($this, 'get_'.$key)) { |
|
| 163 | 163 | |
| 164 | - return call_user_func( array( $this, 'get_' . $key ) ); |
|
| 164 | + return call_user_func(array($this, 'get_'.$key)); |
|
| 165 | 165 | |
| 166 | 166 | } else { |
| 167 | 167 | |
| 168 | - return new WP_Error( 'give-form-invalid-property', sprintf( __( 'Can\'t get property %s', 'give' ), $key ) ); |
|
| 168 | + return new WP_Error('give-form-invalid-property', sprintf(__('Can\'t get property %s', 'give'), $key)); |
|
| 169 | 169 | |
| 170 | 170 | } |
| 171 | 171 | |
@@ -181,30 +181,30 @@ discard block |
||
| 181 | 181 | * |
| 182 | 182 | * @return mixed false if data isn't passed and class not instantiated for creation, or New Form ID |
| 183 | 183 | */ |
| 184 | - public function create( $data = array() ) { |
|
| 184 | + public function create($data = array()) { |
|
| 185 | 185 | |
| 186 | - if ( $this->id != 0 ) { |
|
| 186 | + if ($this->id != 0) { |
|
| 187 | 187 | return false; |
| 188 | 188 | } |
| 189 | 189 | |
| 190 | 190 | $defaults = array( |
| 191 | 191 | 'post_type' => 'give_forms', |
| 192 | 192 | 'post_status' => 'draft', |
| 193 | - 'post_title' => __( 'New Donation Form', 'give' ) |
|
| 193 | + 'post_title' => __('New Donation Form', 'give') |
|
| 194 | 194 | ); |
| 195 | 195 | |
| 196 | - $args = wp_parse_args( $data, $defaults ); |
|
| 196 | + $args = wp_parse_args($data, $defaults); |
|
| 197 | 197 | |
| 198 | 198 | /** |
| 199 | 199 | * Fired before a donation form is created |
| 200 | 200 | * |
| 201 | 201 | * @param array $args The post object arguments used for creation. |
| 202 | 202 | */ |
| 203 | - do_action( 'give_form_pre_create', $args ); |
|
| 203 | + do_action('give_form_pre_create', $args); |
|
| 204 | 204 | |
| 205 | - $id = wp_insert_post( $args, true ); |
|
| 205 | + $id = wp_insert_post($args, true); |
|
| 206 | 206 | |
| 207 | - $donation_form = WP_Post::get_instance( $id ); |
|
| 207 | + $donation_form = WP_Post::get_instance($id); |
|
| 208 | 208 | |
| 209 | 209 | /** |
| 210 | 210 | * Fired after a donation form is created |
@@ -212,9 +212,9 @@ discard block |
||
| 212 | 212 | * @param int $id The post ID of the created item. |
| 213 | 213 | * @param array $args The post object arguments used for creation. |
| 214 | 214 | */ |
| 215 | - do_action( 'give_form_post_create', $id, $args ); |
|
| 215 | + do_action('give_form_post_create', $id, $args); |
|
| 216 | 216 | |
| 217 | - return $this->setup_donation_form( $donation_form ); |
|
| 217 | + return $this->setup_donation_form($donation_form); |
|
| 218 | 218 | |
| 219 | 219 | } |
| 220 | 220 | |
@@ -237,7 +237,7 @@ discard block |
||
| 237 | 237 | * @return string Name of the donation form |
| 238 | 238 | */ |
| 239 | 239 | public function get_name() { |
| 240 | - return get_the_title( $this->ID ); |
|
| 240 | + return get_the_title($this->ID); |
|
| 241 | 241 | } |
| 242 | 242 | |
| 243 | 243 | /** |
@@ -248,13 +248,13 @@ discard block |
||
| 248 | 248 | */ |
| 249 | 249 | public function get_price() { |
| 250 | 250 | |
| 251 | - if ( ! isset( $this->price ) ) { |
|
| 251 | + if ( ! isset($this->price)) { |
|
| 252 | 252 | |
| 253 | - $this->price = get_post_meta( $this->ID, '_give_set_price', true ); |
|
| 253 | + $this->price = get_post_meta($this->ID, '_give_set_price', true); |
|
| 254 | 254 | |
| 255 | - if ( $this->price ) { |
|
| 255 | + if ($this->price) { |
|
| 256 | 256 | |
| 257 | - $this->price = give_sanitize_amount( $this->price ); |
|
| 257 | + $this->price = give_sanitize_amount($this->price); |
|
| 258 | 258 | |
| 259 | 259 | } else { |
| 260 | 260 | |
@@ -272,7 +272,7 @@ discard block |
||
| 272 | 272 | * @param string $price The donation form price. |
| 273 | 273 | * @param string|int $id The form ID. |
| 274 | 274 | */ |
| 275 | - return apply_filters( 'give_get_set_price', $this->price, $this->ID ); |
|
| 275 | + return apply_filters('give_get_set_price', $this->price, $this->ID); |
|
| 276 | 276 | } |
| 277 | 277 | |
| 278 | 278 | /** |
@@ -283,14 +283,14 @@ discard block |
||
| 283 | 283 | */ |
| 284 | 284 | public function get_minimum_price() { |
| 285 | 285 | |
| 286 | - if ( ! isset( $this->minimum_price ) ) { |
|
| 286 | + if ( ! isset($this->minimum_price)) { |
|
| 287 | 287 | |
| 288 | - $allow_custom_amount = get_post_meta( $this->ID, '_give_custom_amount', true ); |
|
| 289 | - $this->minimum_price = get_post_meta( $this->ID, '_give_custom_amount_minimum', true ); |
|
| 288 | + $allow_custom_amount = get_post_meta($this->ID, '_give_custom_amount', true); |
|
| 289 | + $this->minimum_price = get_post_meta($this->ID, '_give_custom_amount_minimum', true); |
|
| 290 | 290 | |
| 291 | - if ( $allow_custom_amount != 'no' && $this->minimum_price ) { |
|
| 291 | + if ($allow_custom_amount != 'no' && $this->minimum_price) { |
|
| 292 | 292 | |
| 293 | - $this->minimum_price = give_sanitize_amount( $this->minimum_price ); |
|
| 293 | + $this->minimum_price = give_sanitize_amount($this->minimum_price); |
|
| 294 | 294 | |
| 295 | 295 | } else { |
| 296 | 296 | |
@@ -300,7 +300,7 @@ discard block |
||
| 300 | 300 | |
| 301 | 301 | } |
| 302 | 302 | |
| 303 | - return apply_filters( 'give_get_set_minimum_price', $this->minimum_price, $this->ID ); |
|
| 303 | + return apply_filters('give_get_set_minimum_price', $this->minimum_price, $this->ID); |
|
| 304 | 304 | } |
| 305 | 305 | |
| 306 | 306 | /** |
@@ -311,9 +311,9 @@ discard block |
||
| 311 | 311 | */ |
| 312 | 312 | public function get_prices() { |
| 313 | 313 | |
| 314 | - if ( ! isset( $this->prices ) ) { |
|
| 314 | + if ( ! isset($this->prices)) { |
|
| 315 | 315 | |
| 316 | - $this->prices = get_post_meta( $this->ID, '_give_donation_levels', true ); |
|
| 316 | + $this->prices = get_post_meta($this->ID, '_give_donation_levels', true); |
|
| 317 | 317 | |
| 318 | 318 | } |
| 319 | 319 | |
@@ -325,7 +325,7 @@ discard block |
||
| 325 | 325 | * @param array $prices The array of mulit-level prices. |
| 326 | 326 | * @param int|string The ID of the form. |
| 327 | 327 | */ |
| 328 | - return apply_filters( 'give_get_donation_levels', $this->prices, $this->ID ); |
|
| 328 | + return apply_filters('give_get_donation_levels', $this->prices, $this->ID); |
|
| 329 | 329 | |
| 330 | 330 | } |
| 331 | 331 | |
@@ -337,13 +337,13 @@ discard block |
||
| 337 | 337 | */ |
| 338 | 338 | public function get_goal() { |
| 339 | 339 | |
| 340 | - if ( ! isset( $this->goal ) ) { |
|
| 340 | + if ( ! isset($this->goal)) { |
|
| 341 | 341 | |
| 342 | - $this->goal = get_post_meta( $this->ID, '_give_set_goal', true ); |
|
| 342 | + $this->goal = get_post_meta($this->ID, '_give_set_goal', true); |
|
| 343 | 343 | |
| 344 | - if ( $this->goal ) { |
|
| 344 | + if ($this->goal) { |
|
| 345 | 345 | |
| 346 | - $this->goal = give_sanitize_amount( $this->goal ); |
|
| 346 | + $this->goal = give_sanitize_amount($this->goal); |
|
| 347 | 347 | |
| 348 | 348 | } else { |
| 349 | 349 | |
@@ -353,7 +353,7 @@ discard block |
||
| 353 | 353 | |
| 354 | 354 | } |
| 355 | 355 | |
| 356 | - return apply_filters( 'give_get_set_goal', $this->goal, $this->ID ); |
|
| 356 | + return apply_filters('give_get_set_goal', $this->goal, $this->ID); |
|
| 357 | 357 | |
| 358 | 358 | } |
| 359 | 359 | |
@@ -365,10 +365,10 @@ discard block |
||
| 365 | 365 | */ |
| 366 | 366 | public function is_single_price_mode() { |
| 367 | 367 | |
| 368 | - $option = get_post_meta( $this->ID, '_give_price_options_mode', true ); |
|
| 368 | + $option = get_post_meta($this->ID, '_give_price_options_mode', true); |
|
| 369 | 369 | $ret = 0; |
| 370 | 370 | |
| 371 | - if ( empty( $option ) || $option === 'set' ) { |
|
| 371 | + if (empty($option) || $option === 'set') { |
|
| 372 | 372 | $ret = 1; |
| 373 | 373 | } |
| 374 | 374 | |
@@ -380,7 +380,7 @@ discard block |
||
| 380 | 380 | * @param bool $ret Is donation form in single price mode? |
| 381 | 381 | * @param int|string The ID of the donation form. |
| 382 | 382 | */ |
| 383 | - return (bool) apply_filters( 'give_single_price_option_mode', $ret, $this->ID ); |
|
| 383 | + return (bool) apply_filters('give_single_price_option_mode', $ret, $this->ID); |
|
| 384 | 384 | |
| 385 | 385 | } |
| 386 | 386 | |
@@ -394,10 +394,10 @@ discard block |
||
| 394 | 394 | */ |
| 395 | 395 | public function has_variable_prices() { |
| 396 | 396 | |
| 397 | - $option = get_post_meta( $this->ID, '_give_price_option', true ); |
|
| 397 | + $option = get_post_meta($this->ID, '_give_price_option', true); |
|
| 398 | 398 | $ret = 0; |
| 399 | 399 | |
| 400 | - if ( $option === 'multi' ) { |
|
| 400 | + if ($option === 'multi') { |
|
| 401 | 401 | $ret = 1; |
| 402 | 402 | } |
| 403 | 403 | |
@@ -407,7 +407,7 @@ discard block |
||
| 407 | 407 | * @param bool $ret Does donation form have variable prices? |
| 408 | 408 | * @param int|string The ID of the donation form. |
| 409 | 409 | */ |
| 410 | - return (bool) apply_filters( 'give_has_variable_prices', $ret, $this->ID ); |
|
| 410 | + return (bool) apply_filters('give_has_variable_prices', $ret, $this->ID); |
|
| 411 | 411 | |
| 412 | 412 | } |
| 413 | 413 | |
@@ -419,17 +419,17 @@ discard block |
||
| 419 | 419 | */ |
| 420 | 420 | public function get_type() { |
| 421 | 421 | |
| 422 | - if ( ! isset( $this->type ) ) { |
|
| 422 | + if ( ! isset($this->type)) { |
|
| 423 | 423 | |
| 424 | - $this->type = get_post_meta( $this->ID, '_give_price_option', true ); |
|
| 424 | + $this->type = get_post_meta($this->ID, '_give_price_option', true); |
|
| 425 | 425 | |
| 426 | - if ( empty( $this->type ) ) { |
|
| 426 | + if (empty($this->type)) { |
|
| 427 | 427 | $this->type = 'set'; |
| 428 | 428 | } |
| 429 | 429 | |
| 430 | 430 | } |
| 431 | 431 | |
| 432 | - return apply_filters( 'give_get_form_type', $this->type, $this->ID ); |
|
| 432 | + return apply_filters('give_get_form_type', $this->type, $this->ID); |
|
| 433 | 433 | |
| 434 | 434 | } |
| 435 | 435 | |
@@ -441,15 +441,15 @@ discard block |
||
| 441 | 441 | */ |
| 442 | 442 | public function get_sales() { |
| 443 | 443 | |
| 444 | - if ( ! isset( $this->sales ) ) { |
|
| 444 | + if ( ! isset($this->sales)) { |
|
| 445 | 445 | |
| 446 | - if ( '' == get_post_meta( $this->ID, '_give_form_sales', true ) ) { |
|
| 447 | - add_post_meta( $this->ID, '_give_form_sales', 0 ); |
|
| 446 | + if ('' == get_post_meta($this->ID, '_give_form_sales', true)) { |
|
| 447 | + add_post_meta($this->ID, '_give_form_sales', 0); |
|
| 448 | 448 | } // End if |
| 449 | 449 | |
| 450 | - $this->sales = get_post_meta( $this->ID, '_give_form_sales', true ); |
|
| 450 | + $this->sales = get_post_meta($this->ID, '_give_form_sales', true); |
|
| 451 | 451 | |
| 452 | - if ( $this->sales < 0 ) { |
|
| 452 | + if ($this->sales < 0) { |
|
| 453 | 453 | // Never let sales be less than zero |
| 454 | 454 | $this->sales = 0; |
| 455 | 455 | } |
@@ -469,13 +469,13 @@ discard block |
||
| 469 | 469 | * |
| 470 | 470 | * @return int|false New number of total sales |
| 471 | 471 | */ |
| 472 | - public function increase_sales( $quantity = 1 ) { |
|
| 472 | + public function increase_sales($quantity = 1) { |
|
| 473 | 473 | |
| 474 | - $sales = give_get_form_sales_stats( $this->ID ); |
|
| 475 | - $quantity = absint( $quantity ); |
|
| 474 | + $sales = give_get_form_sales_stats($this->ID); |
|
| 475 | + $quantity = absint($quantity); |
|
| 476 | 476 | $total_sales = $sales + $quantity; |
| 477 | 477 | |
| 478 | - if ( $this->update_meta( '_give_form_sales', $total_sales ) ) { |
|
| 478 | + if ($this->update_meta('_give_form_sales', $total_sales)) { |
|
| 479 | 479 | |
| 480 | 480 | $this->sales = $total_sales; |
| 481 | 481 | |
@@ -495,17 +495,17 @@ discard block |
||
| 495 | 495 | * |
| 496 | 496 | * @return int|false New number of total sales |
| 497 | 497 | */ |
| 498 | - public function decrease_sales( $quantity = 1 ) { |
|
| 498 | + public function decrease_sales($quantity = 1) { |
|
| 499 | 499 | |
| 500 | - $sales = give_get_form_sales_stats( $this->ID ); |
|
| 500 | + $sales = give_get_form_sales_stats($this->ID); |
|
| 501 | 501 | |
| 502 | 502 | // Only decrease if not already zero |
| 503 | - if ( $sales > 0 ) { |
|
| 503 | + if ($sales > 0) { |
|
| 504 | 504 | |
| 505 | - $quantity = absint( $quantity ); |
|
| 505 | + $quantity = absint($quantity); |
|
| 506 | 506 | $total_sales = $sales - $quantity; |
| 507 | 507 | |
| 508 | - if ( $this->update_meta( '_give_form_sales', $total_sales ) ) { |
|
| 508 | + if ($this->update_meta('_give_form_sales', $total_sales)) { |
|
| 509 | 509 | |
| 510 | 510 | $this->sales = $sales; |
| 511 | 511 | |
@@ -527,15 +527,15 @@ discard block |
||
| 527 | 527 | */ |
| 528 | 528 | public function get_earnings() { |
| 529 | 529 | |
| 530 | - if ( ! isset( $this->earnings ) ) { |
|
| 530 | + if ( ! isset($this->earnings)) { |
|
| 531 | 531 | |
| 532 | - if ( '' == get_post_meta( $this->ID, '_give_form_earnings', true ) ) { |
|
| 533 | - add_post_meta( $this->ID, '_give_form_earnings', 0 ); |
|
| 532 | + if ('' == get_post_meta($this->ID, '_give_form_earnings', true)) { |
|
| 533 | + add_post_meta($this->ID, '_give_form_earnings', 0); |
|
| 534 | 534 | } |
| 535 | 535 | |
| 536 | - $this->earnings = get_post_meta( $this->ID, '_give_form_earnings', true ); |
|
| 536 | + $this->earnings = get_post_meta($this->ID, '_give_form_earnings', true); |
|
| 537 | 537 | |
| 538 | - if ( $this->earnings < 0 ) { |
|
| 538 | + if ($this->earnings < 0) { |
|
| 539 | 539 | // Never let earnings be less than zero |
| 540 | 540 | $this->earnings = 0; |
| 541 | 541 | } |
@@ -552,12 +552,12 @@ discard block |
||
| 552 | 552 | * @since 1.0 |
| 553 | 553 | * @return float|false |
| 554 | 554 | */ |
| 555 | - public function increase_earnings( $amount = 0 ) { |
|
| 555 | + public function increase_earnings($amount = 0) { |
|
| 556 | 556 | |
| 557 | - $earnings = give_get_form_earnings_stats( $this->ID ); |
|
| 557 | + $earnings = give_get_form_earnings_stats($this->ID); |
|
| 558 | 558 | $new_amount = $earnings + (float) $amount; |
| 559 | 559 | |
| 560 | - if ( $this->update_meta( '_give_form_earnings', $new_amount ) ) { |
|
| 560 | + if ($this->update_meta('_give_form_earnings', $new_amount)) { |
|
| 561 | 561 | |
| 562 | 562 | $this->earnings = $new_amount; |
| 563 | 563 | |
@@ -575,16 +575,16 @@ discard block |
||
| 575 | 575 | * @since 1.0 |
| 576 | 576 | * @return float|false |
| 577 | 577 | */ |
| 578 | - public function decrease_earnings( $amount ) { |
|
| 578 | + public function decrease_earnings($amount) { |
|
| 579 | 579 | |
| 580 | - $earnings = give_get_form_earnings_stats( $this->ID ); |
|
| 580 | + $earnings = give_get_form_earnings_stats($this->ID); |
|
| 581 | 581 | |
| 582 | - if ( $earnings > 0 ) { |
|
| 582 | + if ($earnings > 0) { |
|
| 583 | 583 | // Only decrease if greater than zero |
| 584 | 584 | $new_amount = $earnings - (float) $amount; |
| 585 | 585 | |
| 586 | 586 | |
| 587 | - if ( $this->update_meta( '_give_form_earnings', $new_amount ) ) { |
|
| 587 | + if ($this->update_meta('_give_form_earnings', $new_amount)) { |
|
| 588 | 588 | |
| 589 | 589 | $this->earnings = $new_amount; |
| 590 | 590 | |
@@ -604,22 +604,22 @@ discard block |
||
| 604 | 604 | * @since 1.0 |
| 605 | 605 | * @return bool |
| 606 | 606 | */ |
| 607 | - public function is_free( $price_id = false ) { |
|
| 607 | + public function is_free($price_id = false) { |
|
| 608 | 608 | |
| 609 | 609 | $is_free = false; |
| 610 | - $variable_pricing = give_has_variable_prices( $this->ID ); |
|
| 610 | + $variable_pricing = give_has_variable_prices($this->ID); |
|
| 611 | 611 | |
| 612 | - if ( $variable_pricing && ! is_null( $price_id ) && $price_id !== false ) { |
|
| 613 | - $price = give_get_price_option_amount( $this->ID, $price_id ); |
|
| 614 | - } elseif ( ! $variable_pricing ) { |
|
| 615 | - $price = get_post_meta( $this->ID, '_give_set_price', true ); |
|
| 612 | + if ($variable_pricing && ! is_null($price_id) && $price_id !== false) { |
|
| 613 | + $price = give_get_price_option_amount($this->ID, $price_id); |
|
| 614 | + } elseif ( ! $variable_pricing) { |
|
| 615 | + $price = get_post_meta($this->ID, '_give_set_price', true); |
|
| 616 | 616 | } |
| 617 | 617 | |
| 618 | - if ( isset( $price ) && (float) $price == 0 ) { |
|
| 618 | + if (isset($price) && (float) $price == 0) { |
|
| 619 | 619 | $is_free = true; |
| 620 | 620 | } |
| 621 | 621 | |
| 622 | - return (bool) apply_filters( 'give_is_free_donation', $is_free, $this->ID, $price_id ); |
|
| 622 | + return (bool) apply_filters('give_is_free_donation', $is_free, $this->ID, $price_id); |
|
| 623 | 623 | |
| 624 | 624 | } |
| 625 | 625 | |
@@ -636,9 +636,9 @@ discard block |
||
| 636 | 636 | */ |
| 637 | 637 | public function is_close_donation_form() { |
| 638 | 638 | return ( |
| 639 | - 'yes' === get_post_meta( $this->ID, '_give_goal_option', true ) ) |
|
| 640 | - && ( 'yes' === get_post_meta( $this->ID, '_give_close_form_when_goal_achieved', true ) ) |
|
| 641 | - && ( $this->get_goal() <= $this->get_earnings() |
|
| 639 | + 'yes' === get_post_meta($this->ID, '_give_goal_option', true) ) |
|
| 640 | + && ('yes' === get_post_meta($this->ID, '_give_close_form_when_goal_achieved', true)) |
|
| 641 | + && ($this->get_goal() <= $this->get_earnings() |
|
| 642 | 642 | ); |
| 643 | 643 | } |
| 644 | 644 | |
@@ -654,28 +654,28 @@ discard block |
||
| 654 | 654 | * |
| 655 | 655 | * @return bool The result of the update query |
| 656 | 656 | */ |
| 657 | - private function update_meta( $meta_key = '', $meta_value = '' ) { |
|
| 657 | + private function update_meta($meta_key = '', $meta_value = '') { |
|
| 658 | 658 | |
| 659 | 659 | global $wpdb; |
| 660 | 660 | |
| 661 | - if ( empty( $meta_key ) || empty( $meta_value ) ) { |
|
| 661 | + if (empty($meta_key) || empty($meta_value)) { |
|
| 662 | 662 | return false; |
| 663 | 663 | } |
| 664 | 664 | |
| 665 | 665 | // Make sure if it needs to be serialized, we do |
| 666 | - $meta_value = maybe_serialize( $meta_value ); |
|
| 666 | + $meta_value = maybe_serialize($meta_value); |
|
| 667 | 667 | |
| 668 | - if ( is_numeric( $meta_value ) ) { |
|
| 669 | - $value_type = is_float( $meta_value ) ? '%f' : '%d'; |
|
| 668 | + if (is_numeric($meta_value)) { |
|
| 669 | + $value_type = is_float($meta_value) ? '%f' : '%d'; |
|
| 670 | 670 | } else { |
| 671 | 671 | $value_type = "'%s'"; |
| 672 | 672 | } |
| 673 | 673 | |
| 674 | - $sql = $wpdb->prepare( "UPDATE $wpdb->postmeta SET meta_value = $value_type WHERE post_id = $this->ID AND meta_key = '%s'", $meta_value, $meta_key ); |
|
| 674 | + $sql = $wpdb->prepare("UPDATE $wpdb->postmeta SET meta_value = $value_type WHERE post_id = $this->ID AND meta_key = '%s'", $meta_value, $meta_key); |
|
| 675 | 675 | |
| 676 | - if ( $wpdb->query( $sql ) ) { |
|
| 676 | + if ($wpdb->query($sql)) { |
|
| 677 | 677 | |
| 678 | - clean_post_cache( $this->ID ); |
|
| 678 | + clean_post_cache($this->ID); |
|
| 679 | 679 | |
| 680 | 680 | return true; |
| 681 | 681 | |
@@ -214,7 +214,7 @@ discard block |
||
| 214 | 214 | * @param array $log_data Log entry data |
| 215 | 215 | * @param array $log_meta Log entry meta |
| 216 | 216 | * |
| 217 | - * @return bool True if successful, false otherwise |
|
| 217 | + * @return boolean|null True if successful, false otherwise |
|
| 218 | 218 | */ |
| 219 | 219 | public function update_log( $log_data = array(), $log_meta = array() ) { |
| 220 | 220 | |
@@ -392,7 +392,7 @@ discard block |
||
| 392 | 392 | * @param string $title |
| 393 | 393 | * @param string $message |
| 394 | 394 | * @param int $parent |
| 395 | - * @param null $type |
|
| 395 | + * @param string $type |
|
| 396 | 396 | * |
| 397 | 397 | * @global $give_logs GIVE Logs Object |
| 398 | 398 | * |
@@ -10,7 +10,7 @@ discard block |
||
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | 12 | // Exit if accessed directly |
| 13 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 13 | +if ( ! defined('ABSPATH')) { |
|
| 14 | 14 | exit; |
| 15 | 15 | } |
| 16 | 16 | |
@@ -30,10 +30,10 @@ discard block |
||
| 30 | 30 | */ |
| 31 | 31 | public function __construct() { |
| 32 | 32 | // Create the log post type |
| 33 | - add_action( 'init', array( $this, 'register_post_type' ), 1 ); |
|
| 33 | + add_action('init', array($this, 'register_post_type'), 1); |
|
| 34 | 34 | |
| 35 | 35 | // Create types taxonomy and default types |
| 36 | - add_action( 'init', array( $this, 'register_taxonomy' ), 1 ); |
|
| 36 | + add_action('init', array($this, 'register_taxonomy'), 1); |
|
| 37 | 37 | |
| 38 | 38 | } |
| 39 | 39 | |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | public function register_post_type() { |
| 48 | 48 | /* Logs post type */ |
| 49 | 49 | $log_args = array( |
| 50 | - 'labels' => array( 'name' => __( 'Logs', 'give' ) ), |
|
| 50 | + 'labels' => array('name' => __('Logs', 'give')), |
|
| 51 | 51 | 'public' => false, |
| 52 | 52 | 'exclude_from_search' => true, |
| 53 | 53 | 'publicly_queryable' => false, |
@@ -55,11 +55,11 @@ discard block |
||
| 55 | 55 | 'query_var' => false, |
| 56 | 56 | 'rewrite' => false, |
| 57 | 57 | 'capability_type' => 'post', |
| 58 | - 'supports' => array( 'title', 'editor' ), |
|
| 58 | + 'supports' => array('title', 'editor'), |
|
| 59 | 59 | 'can_export' => true |
| 60 | 60 | ); |
| 61 | 61 | |
| 62 | - register_post_type( 'give_log', $log_args ); |
|
| 62 | + register_post_type('give_log', $log_args); |
|
| 63 | 63 | } |
| 64 | 64 | |
| 65 | 65 | /** |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | * @return void |
| 73 | 73 | */ |
| 74 | 74 | public function register_taxonomy() { |
| 75 | - register_taxonomy( 'give_log_type', 'give_log', array( 'public' => false ) ); |
|
| 75 | + register_taxonomy('give_log_type', 'give_log', array('public' => false)); |
|
| 76 | 76 | } |
| 77 | 77 | |
| 78 | 78 | /** |
@@ -91,7 +91,7 @@ discard block |
||
| 91 | 91 | 'api_request' |
| 92 | 92 | ); |
| 93 | 93 | |
| 94 | - return apply_filters( 'give_log_types', $terms ); |
|
| 94 | + return apply_filters('give_log_types', $terms); |
|
| 95 | 95 | } |
| 96 | 96 | |
| 97 | 97 | /** |
@@ -107,8 +107,8 @@ discard block |
||
| 107 | 107 | * |
| 108 | 108 | * @return bool Whether log type is valid |
| 109 | 109 | */ |
| 110 | - function valid_type( $type ) { |
|
| 111 | - return in_array( $type, $this->log_types() ); |
|
| 110 | + function valid_type($type) { |
|
| 111 | + return in_array($type, $this->log_types()); |
|
| 112 | 112 | } |
| 113 | 113 | |
| 114 | 114 | /** |
@@ -128,7 +128,7 @@ discard block |
||
| 128 | 128 | * |
| 129 | 129 | * @return int Log ID |
| 130 | 130 | */ |
| 131 | - public function add( $title = '', $message = '', $parent = 0, $type = null ) { |
|
| 131 | + public function add($title = '', $message = '', $parent = 0, $type = null) { |
|
| 132 | 132 | $log_data = array( |
| 133 | 133 | 'post_title' => $title, |
| 134 | 134 | 'post_content' => $message, |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | 'log_type' => $type |
| 137 | 137 | ); |
| 138 | 138 | |
| 139 | - return $this->insert_log( $log_data ); |
|
| 139 | + return $this->insert_log($log_data); |
|
| 140 | 140 | } |
| 141 | 141 | |
| 142 | 142 | /** |
@@ -152,12 +152,12 @@ discard block |
||
| 152 | 152 | * |
| 153 | 153 | * @return array Array of the connected logs |
| 154 | 154 | */ |
| 155 | - public function get_logs( $object_id = 0, $type = null, $paged = null ) { |
|
| 156 | - return $this->get_connected_logs( array( |
|
| 155 | + public function get_logs($object_id = 0, $type = null, $paged = null) { |
|
| 156 | + return $this->get_connected_logs(array( |
|
| 157 | 157 | 'post_parent' => $object_id, |
| 158 | 158 | 'paged' => $paged, |
| 159 | 159 | 'log_type' => $type |
| 160 | - ) ); |
|
| 160 | + )); |
|
| 161 | 161 | } |
| 162 | 162 | |
| 163 | 163 | /** |
@@ -172,7 +172,7 @@ discard block |
||
| 172 | 172 | * |
| 173 | 173 | * @return int The ID of the newly created log item |
| 174 | 174 | */ |
| 175 | - function insert_log( $log_data = array(), $log_meta = array() ) { |
|
| 175 | + function insert_log($log_data = array(), $log_meta = array()) { |
|
| 176 | 176 | $defaults = array( |
| 177 | 177 | 'post_type' => 'give_log', |
| 178 | 178 | 'post_status' => 'publish', |
@@ -181,26 +181,26 @@ discard block |
||
| 181 | 181 | 'log_type' => false |
| 182 | 182 | ); |
| 183 | 183 | |
| 184 | - $args = wp_parse_args( $log_data, $defaults ); |
|
| 184 | + $args = wp_parse_args($log_data, $defaults); |
|
| 185 | 185 | |
| 186 | - do_action( 'give_pre_insert_log', $log_data, $log_meta ); |
|
| 186 | + do_action('give_pre_insert_log', $log_data, $log_meta); |
|
| 187 | 187 | |
| 188 | 188 | // Store the log entry |
| 189 | - $log_id = wp_insert_post( $args ); |
|
| 189 | + $log_id = wp_insert_post($args); |
|
| 190 | 190 | |
| 191 | 191 | // Set the log type, if any |
| 192 | - if ( $log_data['log_type'] && $this->valid_type( $log_data['log_type'] ) ) { |
|
| 193 | - wp_set_object_terms( $log_id, $log_data['log_type'], 'give_log_type', false ); |
|
| 192 | + if ($log_data['log_type'] && $this->valid_type($log_data['log_type'])) { |
|
| 193 | + wp_set_object_terms($log_id, $log_data['log_type'], 'give_log_type', false); |
|
| 194 | 194 | } |
| 195 | 195 | |
| 196 | 196 | // Set log meta, if any |
| 197 | - if ( $log_id && ! empty( $log_meta ) ) { |
|
| 198 | - foreach ( (array) $log_meta as $key => $meta ) { |
|
| 199 | - update_post_meta( $log_id, '_give_log_' . sanitize_key( $key ), $meta ); |
|
| 197 | + if ($log_id && ! empty($log_meta)) { |
|
| 198 | + foreach ((array) $log_meta as $key => $meta) { |
|
| 199 | + update_post_meta($log_id, '_give_log_'.sanitize_key($key), $meta); |
|
| 200 | 200 | } |
| 201 | 201 | } |
| 202 | 202 | |
| 203 | - do_action( 'give_post_insert_log', $log_id, $log_data, $log_meta ); |
|
| 203 | + do_action('give_post_insert_log', $log_id, $log_data, $log_meta); |
|
| 204 | 204 | |
| 205 | 205 | return $log_id; |
| 206 | 206 | } |
@@ -216,9 +216,9 @@ discard block |
||
| 216 | 216 | * |
| 217 | 217 | * @return bool True if successful, false otherwise |
| 218 | 218 | */ |
| 219 | - public function update_log( $log_data = array(), $log_meta = array() ) { |
|
| 219 | + public function update_log($log_data = array(), $log_meta = array()) { |
|
| 220 | 220 | |
| 221 | - do_action( 'give_pre_update_log', $log_data, $log_meta ); |
|
| 221 | + do_action('give_pre_update_log', $log_data, $log_meta); |
|
| 222 | 222 | |
| 223 | 223 | $defaults = array( |
| 224 | 224 | 'post_type' => 'give_log', |
@@ -226,20 +226,20 @@ discard block |
||
| 226 | 226 | 'post_parent' => 0 |
| 227 | 227 | ); |
| 228 | 228 | |
| 229 | - $args = wp_parse_args( $log_data, $defaults ); |
|
| 229 | + $args = wp_parse_args($log_data, $defaults); |
|
| 230 | 230 | |
| 231 | 231 | // Store the log entry |
| 232 | - $log_id = wp_update_post( $args ); |
|
| 232 | + $log_id = wp_update_post($args); |
|
| 233 | 233 | |
| 234 | - if ( $log_id && ! empty( $log_meta ) ) { |
|
| 235 | - foreach ( (array) $log_meta as $key => $meta ) { |
|
| 236 | - if ( ! empty( $meta ) ) { |
|
| 237 | - update_post_meta( $log_id, '_give_log_' . sanitize_key( $key ), $meta ); |
|
| 234 | + if ($log_id && ! empty($log_meta)) { |
|
| 235 | + foreach ((array) $log_meta as $key => $meta) { |
|
| 236 | + if ( ! empty($meta)) { |
|
| 237 | + update_post_meta($log_id, '_give_log_'.sanitize_key($key), $meta); |
|
| 238 | 238 | } |
| 239 | 239 | } |
| 240 | 240 | } |
| 241 | 241 | |
| 242 | - do_action( 'give_post_update_log', $log_id, $log_data, $log_meta ); |
|
| 242 | + do_action('give_post_update_log', $log_id, $log_data, $log_meta); |
|
| 243 | 243 | } |
| 244 | 244 | |
| 245 | 245 | /** |
@@ -254,19 +254,19 @@ discard block |
||
| 254 | 254 | * |
| 255 | 255 | * @return mixed array if logs were found, false otherwise |
| 256 | 256 | */ |
| 257 | - public function get_connected_logs( $args = array() ) { |
|
| 257 | + public function get_connected_logs($args = array()) { |
|
| 258 | 258 | |
| 259 | 259 | $defaults = array( |
| 260 | 260 | 'post_type' => 'give_log', |
| 261 | 261 | 'posts_per_page' => 20, |
| 262 | 262 | 'post_status' => 'publish', |
| 263 | - 'paged' => get_query_var( 'paged' ), |
|
| 263 | + 'paged' => get_query_var('paged'), |
|
| 264 | 264 | 'log_type' => false |
| 265 | 265 | ); |
| 266 | 266 | |
| 267 | - $query_args = wp_parse_args( $args, $defaults ); |
|
| 267 | + $query_args = wp_parse_args($args, $defaults); |
|
| 268 | 268 | |
| 269 | - if ( $query_args['log_type'] && $this->valid_type( $query_args['log_type'] ) ) { |
|
| 269 | + if ($query_args['log_type'] && $this->valid_type($query_args['log_type'])) { |
|
| 270 | 270 | $query_args['tax_query'] = array( |
| 271 | 271 | array( |
| 272 | 272 | 'taxonomy' => 'give_log_type', |
@@ -276,9 +276,9 @@ discard block |
||
| 276 | 276 | ); |
| 277 | 277 | } |
| 278 | 278 | |
| 279 | - $logs = get_posts( $query_args ); |
|
| 279 | + $logs = get_posts($query_args); |
|
| 280 | 280 | |
| 281 | - if ( $logs ) { |
|
| 281 | + if ($logs) { |
|
| 282 | 282 | return $logs; |
| 283 | 283 | } |
| 284 | 284 | |
@@ -299,17 +299,17 @@ discard block |
||
| 299 | 299 | * |
| 300 | 300 | * @return int Log count |
| 301 | 301 | */ |
| 302 | - public function get_log_count( $object_id = 0, $type = null, $meta_query = null, $date_query = null ) { |
|
| 302 | + public function get_log_count($object_id = 0, $type = null, $meta_query = null, $date_query = null) { |
|
| 303 | 303 | |
| 304 | 304 | $query_args = array( |
| 305 | 305 | 'post_parent' => $object_id, |
| 306 | 306 | 'post_type' => 'give_log', |
| 307 | - 'posts_per_page' => - 1, |
|
| 307 | + 'posts_per_page' => -1, |
|
| 308 | 308 | 'post_status' => 'publish', |
| 309 | 309 | 'fields' => 'ids', |
| 310 | 310 | ); |
| 311 | 311 | |
| 312 | - if ( ! empty( $type ) && $this->valid_type( $type ) ) { |
|
| 312 | + if ( ! empty($type) && $this->valid_type($type)) { |
|
| 313 | 313 | $query_args['tax_query'] = array( |
| 314 | 314 | array( |
| 315 | 315 | 'taxonomy' => 'give_log_type', |
@@ -319,15 +319,15 @@ discard block |
||
| 319 | 319 | ); |
| 320 | 320 | } |
| 321 | 321 | |
| 322 | - if ( ! empty( $meta_query ) ) { |
|
| 322 | + if ( ! empty($meta_query)) { |
|
| 323 | 323 | $query_args['meta_query'] = $meta_query; |
| 324 | 324 | } |
| 325 | 325 | |
| 326 | - if ( ! empty( $date_query ) ) { |
|
| 326 | + if ( ! empty($date_query)) { |
|
| 327 | 327 | $query_args['date_query'] = $date_query; |
| 328 | 328 | } |
| 329 | 329 | |
| 330 | - $logs = new WP_Query( $query_args ); |
|
| 330 | + $logs = new WP_Query($query_args); |
|
| 331 | 331 | |
| 332 | 332 | return (int) $logs->post_count; |
| 333 | 333 | } |
@@ -345,16 +345,16 @@ discard block |
||
| 345 | 345 | * |
| 346 | 346 | * @return void |
| 347 | 347 | */ |
| 348 | - public function delete_logs( $object_id = 0, $type = null, $meta_query = null ) { |
|
| 348 | + public function delete_logs($object_id = 0, $type = null, $meta_query = null) { |
|
| 349 | 349 | $query_args = array( |
| 350 | 350 | 'post_parent' => $object_id, |
| 351 | 351 | 'post_type' => 'give_log', |
| 352 | - 'posts_per_page' => - 1, |
|
| 352 | + 'posts_per_page' => -1, |
|
| 353 | 353 | 'post_status' => 'publish', |
| 354 | 354 | 'fields' => 'ids' |
| 355 | 355 | ); |
| 356 | 356 | |
| 357 | - if ( ! empty( $type ) && $this->valid_type( $type ) ) { |
|
| 357 | + if ( ! empty($type) && $this->valid_type($type)) { |
|
| 358 | 358 | $query_args['tax_query'] = array( |
| 359 | 359 | array( |
| 360 | 360 | 'taxonomy' => 'give_log_type', |
@@ -364,15 +364,15 @@ discard block |
||
| 364 | 364 | ); |
| 365 | 365 | } |
| 366 | 366 | |
| 367 | - if ( ! empty( $meta_query ) ) { |
|
| 367 | + if ( ! empty($meta_query)) { |
|
| 368 | 368 | $query_args['meta_query'] = $meta_query; |
| 369 | 369 | } |
| 370 | 370 | |
| 371 | - $logs = get_posts( $query_args ); |
|
| 371 | + $logs = get_posts($query_args); |
|
| 372 | 372 | |
| 373 | - if ( $logs ) { |
|
| 374 | - foreach ( $logs as $log ) { |
|
| 375 | - wp_delete_post( $log, true ); |
|
| 373 | + if ($logs) { |
|
| 374 | + foreach ($logs as $log) { |
|
| 375 | + wp_delete_post($log, true); |
|
| 376 | 376 | } |
| 377 | 377 | } |
| 378 | 378 | } |
@@ -400,9 +400,9 @@ discard block |
||
| 400 | 400 | * |
| 401 | 401 | * @return mixed ID of the new log entry |
| 402 | 402 | */ |
| 403 | -function give_record_log( $title = '', $message = '', $parent = 0, $type = null ) { |
|
| 403 | +function give_record_log($title = '', $message = '', $parent = 0, $type = null) { |
|
| 404 | 404 | global $give_logs; |
| 405 | - $log = $give_logs->add( $title, $message, $parent, $type ); |
|
| 405 | + $log = $give_logs->add($title, $message, $parent, $type); |
|
| 406 | 406 | |
| 407 | 407 | return $log; |
| 408 | 408 | } |
| 409 | 409 | \ No newline at end of file |
@@ -293,7 +293,7 @@ discard block |
||
| 293 | 293 | * |
| 294 | 294 | * @param int $payment_id A given payment |
| 295 | 295 | * |
| 296 | - * @return mixed void|false |
|
| 296 | + * @return false|null void|false |
|
| 297 | 297 | */ |
| 298 | 298 | public function __construct( $payment_id = false ) { |
| 299 | 299 | |
@@ -361,7 +361,7 @@ discard block |
||
| 361 | 361 | * |
| 362 | 362 | * @param string $name The attribute to get |
| 363 | 363 | * |
| 364 | - * @return boolean If the item is set or not |
|
| 364 | + * @return boolean|null If the item is set or not |
|
| 365 | 365 | */ |
| 366 | 366 | public function __isset( $name ) { |
| 367 | 367 | if ( property_exists( $this, $name ) ) { |
@@ -1149,7 +1149,7 @@ discard block |
||
| 1149 | 1149 | * |
| 1150 | 1150 | * @param string $note The note to add |
| 1151 | 1151 | * |
| 1152 | - * @return void |
|
| 1152 | + * @return false|null |
|
| 1153 | 1153 | */ |
| 1154 | 1154 | public function add_note( $note = false ) { |
| 1155 | 1155 | // Bail if no note specified |
@@ -899,7 +899,7 @@ |
||
| 899 | 899 | //Find a match between price_id and level_id |
| 900 | 900 | //First verify array keys exists THEN make the match |
| 901 | 901 | if ( ( isset( $args['price_id'] ) && isset( $price['_give_id']['level_id'] ) ) |
| 902 | - && $args['price_id'] == $price['_give_id']['level_id'] |
|
| 902 | + && $args['price_id'] == $price['_give_id']['level_id'] |
|
| 903 | 903 | ) { |
| 904 | 904 | $item_price = $price['_give_amount']; |
| 905 | 905 | } |
@@ -13,7 +13,7 @@ discard block |
||
| 13 | 13 | |
| 14 | 14 | |
| 15 | 15 | // Exit if accessed directly |
| 16 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 16 | +if ( ! defined('ABSPATH')) { |
|
| 17 | 17 | exit; |
| 18 | 18 | } |
| 19 | 19 | |
@@ -295,13 +295,13 @@ discard block |
||
| 295 | 295 | * |
| 296 | 296 | * @return mixed void|false |
| 297 | 297 | */ |
| 298 | - public function __construct( $payment_id = false ) { |
|
| 298 | + public function __construct($payment_id = false) { |
|
| 299 | 299 | |
| 300 | - if ( empty( $payment_id ) ) { |
|
| 300 | + if (empty($payment_id)) { |
|
| 301 | 301 | return false; |
| 302 | 302 | } |
| 303 | 303 | |
| 304 | - $this->setup_payment( $payment_id ); |
|
| 304 | + $this->setup_payment($payment_id); |
|
| 305 | 305 | } |
| 306 | 306 | |
| 307 | 307 | /** |
@@ -313,11 +313,11 @@ discard block |
||
| 313 | 313 | * |
| 314 | 314 | * @return mixed The value |
| 315 | 315 | */ |
| 316 | - public function __get( $key ) { |
|
| 316 | + public function __get($key) { |
|
| 317 | 317 | |
| 318 | - if ( method_exists( $this, 'get_' . $key ) ) { |
|
| 318 | + if (method_exists($this, 'get_'.$key)) { |
|
| 319 | 319 | |
| 320 | - $value = call_user_func( array( $this, 'get_' . $key ) ); |
|
| 320 | + $value = call_user_func(array($this, 'get_'.$key)); |
|
| 321 | 321 | |
| 322 | 322 | } else { |
| 323 | 323 | |
@@ -338,18 +338,18 @@ discard block |
||
| 338 | 338 | * @param string $key The property name |
| 339 | 339 | * @param mixed $value The value of the property |
| 340 | 340 | */ |
| 341 | - public function __set( $key, $value ) { |
|
| 342 | - $ignore = array( '_ID' ); |
|
| 341 | + public function __set($key, $value) { |
|
| 342 | + $ignore = array('_ID'); |
|
| 343 | 343 | |
| 344 | - if ( $key === 'status' ) { |
|
| 344 | + if ($key === 'status') { |
|
| 345 | 345 | $this->old_status = $this->status; |
| 346 | 346 | } |
| 347 | 347 | |
| 348 | - if ( ! in_array( $key, $ignore ) ) { |
|
| 349 | - $this->pending[ $key ] = $value; |
|
| 348 | + if ( ! in_array($key, $ignore)) { |
|
| 349 | + $this->pending[$key] = $value; |
|
| 350 | 350 | } |
| 351 | 351 | |
| 352 | - if ( '_ID' !== $key ) { |
|
| 352 | + if ('_ID' !== $key) { |
|
| 353 | 353 | $this->$key = $value; |
| 354 | 354 | } |
| 355 | 355 | } |
@@ -363,9 +363,9 @@ discard block |
||
| 363 | 363 | * |
| 364 | 364 | * @return boolean If the item is set or not |
| 365 | 365 | */ |
| 366 | - public function __isset( $name ) { |
|
| 367 | - if ( property_exists( $this, $name ) ) { |
|
| 368 | - return false === empty( $this->$name ); |
|
| 366 | + public function __isset($name) { |
|
| 367 | + if (property_exists($this, $name)) { |
|
| 368 | + return false === empty($this->$name); |
|
| 369 | 369 | } else { |
| 370 | 370 | return null; |
| 371 | 371 | } |
@@ -380,31 +380,31 @@ discard block |
||
| 380 | 380 | * |
| 381 | 381 | * @return bool If the setup was successful or not |
| 382 | 382 | */ |
| 383 | - private function setup_payment( $payment_id ) { |
|
| 383 | + private function setup_payment($payment_id) { |
|
| 384 | 384 | $this->pending = array(); |
| 385 | 385 | |
| 386 | - if ( empty( $payment_id ) ) { |
|
| 386 | + if (empty($payment_id)) { |
|
| 387 | 387 | return false; |
| 388 | 388 | } |
| 389 | 389 | |
| 390 | - $payment = get_post( $payment_id ); |
|
| 390 | + $payment = get_post($payment_id); |
|
| 391 | 391 | |
| 392 | - if ( ! $payment || is_wp_error( $payment ) ) { |
|
| 392 | + if ( ! $payment || is_wp_error($payment)) { |
|
| 393 | 393 | return false; |
| 394 | 394 | } |
| 395 | 395 | |
| 396 | - if ( 'give_payment' !== $payment->post_type ) { |
|
| 396 | + if ('give_payment' !== $payment->post_type) { |
|
| 397 | 397 | return false; |
| 398 | 398 | } |
| 399 | 399 | |
| 400 | 400 | // Allow extensions to perform actions before the payment is loaded |
| 401 | - do_action( 'give_pre_setup_payment', $this, $payment_id ); |
|
| 401 | + do_action('give_pre_setup_payment', $this, $payment_id); |
|
| 402 | 402 | |
| 403 | 403 | // Primary Identifier |
| 404 | - $this->ID = absint( $payment_id ); |
|
| 404 | + $this->ID = absint($payment_id); |
|
| 405 | 405 | |
| 406 | 406 | // Protected ID that can never be changed |
| 407 | - $this->_ID = absint( $payment_id ); |
|
| 407 | + $this->_ID = absint($payment_id); |
|
| 408 | 408 | |
| 409 | 409 | // We have a payment, get the generic payment_meta item to reduce calls to it |
| 410 | 410 | $this->payment_meta = $this->get_meta(); |
@@ -419,7 +419,7 @@ discard block |
||
| 419 | 419 | $this->parent_payment = $payment->post_parent; |
| 420 | 420 | |
| 421 | 421 | $all_payment_statuses = give_get_payment_statuses(); |
| 422 | - $this->status_nicename = array_key_exists( $this->status, $all_payment_statuses ) ? $all_payment_statuses[ $this->status ] : ucfirst( $this->status ); |
|
| 422 | + $this->status_nicename = array_key_exists($this->status, $all_payment_statuses) ? $all_payment_statuses[$this->status] : ucfirst($this->status); |
|
| 423 | 423 | |
| 424 | 424 | // Items |
| 425 | 425 | $this->fees = $this->setup_fees(); |
@@ -452,7 +452,7 @@ discard block |
||
| 452 | 452 | $this->number = $this->setup_payment_number(); |
| 453 | 453 | |
| 454 | 454 | // Allow extensions to add items to this object via hook |
| 455 | - do_action( 'give_setup_payment', $this, $payment_id ); |
|
| 455 | + do_action('give_setup_payment', $this, $payment_id); |
|
| 456 | 456 | |
| 457 | 457 | return true; |
| 458 | 458 | } |
@@ -467,24 +467,24 @@ discard block |
||
| 467 | 467 | |
| 468 | 468 | // Construct the payment title |
| 469 | 469 | $payment_title = ''; |
| 470 | - if ( ! empty( $this->first_name ) && ! empty( $this->last_name ) ) { |
|
| 471 | - $payment_title = $this->first_name . ' ' . $this->last_name; |
|
| 472 | - } else if ( ! empty( $this->first_name ) && empty( $this->last_name ) ) { |
|
| 470 | + if ( ! empty($this->first_name) && ! empty($this->last_name)) { |
|
| 471 | + $payment_title = $this->first_name.' '.$this->last_name; |
|
| 472 | + } else if ( ! empty($this->first_name) && empty($this->last_name)) { |
|
| 473 | 473 | $payment_title = $this->first_name; |
| 474 | - } else if ( ! empty( $this->email ) && is_email( $this->email ) ) { |
|
| 474 | + } else if ( ! empty($this->email) && is_email($this->email)) { |
|
| 475 | 475 | $payment_title = $this->email; |
| 476 | 476 | } |
| 477 | 477 | |
| 478 | 478 | //Set Key |
| 479 | - if ( empty( $this->key ) ) { |
|
| 479 | + if (empty($this->key)) { |
|
| 480 | 480 | |
| 481 | - $auth_key = defined( 'AUTH_KEY' ) ? AUTH_KEY : ''; |
|
| 482 | - $this->key = strtolower( md5( $this->email . date( 'Y-m-d H:i:s' ) . $auth_key . uniqid( 'give', true ) ) ); // Unique key |
|
| 481 | + $auth_key = defined('AUTH_KEY') ? AUTH_KEY : ''; |
|
| 482 | + $this->key = strtolower(md5($this->email.date('Y-m-d H:i:s').$auth_key.uniqid('give', true))); // Unique key |
|
| 483 | 483 | $this->pending['key'] = $this->key; |
| 484 | 484 | } |
| 485 | 485 | |
| 486 | 486 | //Set IP |
| 487 | - if ( empty( $this->ip ) ) { |
|
| 487 | + if (empty($this->ip)) { |
|
| 488 | 488 | |
| 489 | 489 | $this->ip = give_get_ip(); |
| 490 | 490 | $this->pending['ip'] = $this->ip; |
@@ -511,58 +511,58 @@ discard block |
||
| 511 | 511 | 'fees' => $this->fees, |
| 512 | 512 | ); |
| 513 | 513 | |
| 514 | - $args = apply_filters( 'give_insert_payment_args', array( |
|
| 514 | + $args = apply_filters('give_insert_payment_args', array( |
|
| 515 | 515 | 'post_title' => $payment_title, |
| 516 | 516 | 'post_status' => $this->status, |
| 517 | 517 | 'post_type' => 'give_payment', |
| 518 | - 'post_date' => ! empty( $this->date ) ? $this->date : null, |
|
| 519 | - 'post_date_gmt' => ! empty( $this->date ) ? get_gmt_from_date( $this->date ) : null, |
|
| 518 | + 'post_date' => ! empty($this->date) ? $this->date : null, |
|
| 519 | + 'post_date_gmt' => ! empty($this->date) ? get_gmt_from_date($this->date) : null, |
|
| 520 | 520 | 'post_parent' => $this->parent_payment, |
| 521 | - ), $payment_data ); |
|
| 521 | + ), $payment_data); |
|
| 522 | 522 | |
| 523 | 523 | // Create a blank payment |
| 524 | - $payment_id = wp_insert_post( $args ); |
|
| 524 | + $payment_id = wp_insert_post($args); |
|
| 525 | 525 | |
| 526 | - if ( ! empty( $payment_id ) ) { |
|
| 526 | + if ( ! empty($payment_id)) { |
|
| 527 | 527 | |
| 528 | 528 | $this->ID = $payment_id; |
| 529 | 529 | $this->_ID = $payment_id; |
| 530 | 530 | |
| 531 | 531 | $customer = new stdClass; |
| 532 | 532 | |
| 533 | - if ( did_action( 'give_pre_process_purchase' ) && is_user_logged_in() ) { |
|
| 534 | - $customer = new Give_Customer( get_current_user_id(), true ); |
|
| 533 | + if (did_action('give_pre_process_purchase') && is_user_logged_in()) { |
|
| 534 | + $customer = new Give_Customer(get_current_user_id(), true); |
|
| 535 | 535 | } |
| 536 | 536 | |
| 537 | - if ( empty( $customer->id ) ) { |
|
| 538 | - $customer = new Give_Customer( $this->email ); |
|
| 537 | + if (empty($customer->id)) { |
|
| 538 | + $customer = new Give_Customer($this->email); |
|
| 539 | 539 | } |
| 540 | 540 | |
| 541 | - if ( empty( $customer->id ) ) { |
|
| 541 | + if (empty($customer->id)) { |
|
| 542 | 542 | |
| 543 | 543 | $customer_data = array( |
| 544 | - 'name' => ! is_email( $payment_title ) ? $this->first_name . ' ' . $this->last_name : '', |
|
| 544 | + 'name' => ! is_email($payment_title) ? $this->first_name.' '.$this->last_name : '', |
|
| 545 | 545 | 'email' => $this->email, |
| 546 | 546 | 'user_id' => $this->user_id, |
| 547 | 547 | ); |
| 548 | 548 | |
| 549 | - $customer->create( $customer_data ); |
|
| 549 | + $customer->create($customer_data); |
|
| 550 | 550 | |
| 551 | 551 | } |
| 552 | 552 | |
| 553 | 553 | $this->customer_id = $customer->id; |
| 554 | 554 | $this->pending['customer_id'] = $this->customer_id; |
| 555 | - $customer->attach_payment( $this->ID, false ); |
|
| 555 | + $customer->attach_payment($this->ID, false); |
|
| 556 | 556 | |
| 557 | - $this->payment_meta = apply_filters( 'give_payment_meta', $this->payment_meta, $payment_data ); |
|
| 558 | - if ( ! empty( $this->payment_meta['fees'] ) ) { |
|
| 559 | - $this->fees = array_merge( $this->fees, $this->payment_meta['fees'] ); |
|
| 560 | - foreach ( $this->fees as $fee ) { |
|
| 561 | - $this->increase_fees( $fee['amount'] ); |
|
| 557 | + $this->payment_meta = apply_filters('give_payment_meta', $this->payment_meta, $payment_data); |
|
| 558 | + if ( ! empty($this->payment_meta['fees'])) { |
|
| 559 | + $this->fees = array_merge($this->fees, $this->payment_meta['fees']); |
|
| 560 | + foreach ($this->fees as $fee) { |
|
| 561 | + $this->increase_fees($fee['amount']); |
|
| 562 | 562 | } |
| 563 | 563 | } |
| 564 | 564 | |
| 565 | - $this->update_meta( '_give_payment_meta', $this->payment_meta ); |
|
| 565 | + $this->update_meta('_give_payment_meta', $this->payment_meta); |
|
| 566 | 566 | $this->new = true; |
| 567 | 567 | } |
| 568 | 568 | |
@@ -582,11 +582,11 @@ discard block |
||
| 582 | 582 | $saved = false; |
| 583 | 583 | |
| 584 | 584 | //Must have an ID |
| 585 | - if ( empty( $this->ID ) ) { |
|
| 585 | + if (empty($this->ID)) { |
|
| 586 | 586 | |
| 587 | 587 | $payment_id = $this->insert_payment(); |
| 588 | 588 | |
| 589 | - if ( false === $payment_id ) { |
|
| 589 | + if (false === $payment_id) { |
|
| 590 | 590 | $saved = false; |
| 591 | 591 | } else { |
| 592 | 592 | $this->ID = $payment_id; |
@@ -595,48 +595,48 @@ discard block |
||
| 595 | 595 | } |
| 596 | 596 | |
| 597 | 597 | //Set ID if not matching |
| 598 | - if ( $this->ID !== $this->_ID ) { |
|
| 598 | + if ($this->ID !== $this->_ID) { |
|
| 599 | 599 | $this->ID = $this->_ID; |
| 600 | 600 | } |
| 601 | 601 | |
| 602 | 602 | // If we have something pending, let's save it |
| 603 | - if ( ! empty( $this->pending ) ) { |
|
| 603 | + if ( ! empty($this->pending)) { |
|
| 604 | 604 | |
| 605 | 605 | $total_increase = 0; |
| 606 | 606 | $total_decrease = 0; |
| 607 | 607 | |
| 608 | - foreach ( $this->pending as $key => $value ) { |
|
| 608 | + foreach ($this->pending as $key => $value) { |
|
| 609 | 609 | |
| 610 | - switch ( $key ) { |
|
| 610 | + switch ($key) { |
|
| 611 | 611 | |
| 612 | 612 | case 'donations': |
| 613 | 613 | // Update totals for pending donations |
| 614 | - foreach ( $this->pending[ $key ] as $item ) { |
|
| 614 | + foreach ($this->pending[$key] as $item) { |
|
| 615 | 615 | |
| 616 | - $quantity = isset( $item['quantity'] ) ? $item['quantity'] : 1; |
|
| 617 | - $price_id = isset( $item['price_id'] ) ? $item['price_id'] : 0; |
|
| 616 | + $quantity = isset($item['quantity']) ? $item['quantity'] : 1; |
|
| 617 | + $price_id = isset($item['price_id']) ? $item['price_id'] : 0; |
|
| 618 | 618 | |
| 619 | - switch ( $item['action'] ) { |
|
| 619 | + switch ($item['action']) { |
|
| 620 | 620 | |
| 621 | 621 | case 'add': |
| 622 | 622 | |
| 623 | 623 | $price = $item['price']; |
| 624 | 624 | |
| 625 | - if ( 'publish' === $this->status || 'complete' === $this->status || 'revoked' === $this->status ) { |
|
| 625 | + if ('publish' === $this->status || 'complete' === $this->status || 'revoked' === $this->status) { |
|
| 626 | 626 | |
| 627 | 627 | // Add sales logs |
| 628 | - $log_date = date_i18n( 'Y-m-d G:i:s', current_time( 'timestamp' ) ); |
|
| 628 | + $log_date = date_i18n('Y-m-d G:i:s', current_time('timestamp')); |
|
| 629 | 629 | |
| 630 | 630 | $y = 0; |
| 631 | - while ( $y < $quantity ) { |
|
| 631 | + while ($y < $quantity) { |
|
| 632 | 632 | |
| 633 | - give_record_sale_in_log( $item['id'], $this->ID, $price_id, $log_date ); |
|
| 634 | - $y ++; |
|
| 633 | + give_record_sale_in_log($item['id'], $this->ID, $price_id, $log_date); |
|
| 634 | + $y++; |
|
| 635 | 635 | } |
| 636 | 636 | |
| 637 | - $form = new Give_Donate_Form( $item['id'] ); |
|
| 638 | - $form->increase_sales( $quantity ); |
|
| 639 | - $form->increase_earnings( $price ); |
|
| 637 | + $form = new Give_Donate_Form($item['id']); |
|
| 638 | + $form->increase_sales($quantity); |
|
| 639 | + $form->increase_earnings($price); |
|
| 640 | 640 | |
| 641 | 641 | $total_increase += $price; |
| 642 | 642 | } |
@@ -661,15 +661,15 @@ discard block |
||
| 661 | 661 | ) |
| 662 | 662 | ); |
| 663 | 663 | |
| 664 | - $found_logs = get_posts( $log_args ); |
|
| 665 | - foreach ( $found_logs as $log ) { |
|
| 666 | - wp_delete_post( $log->ID, true ); |
|
| 664 | + $found_logs = get_posts($log_args); |
|
| 665 | + foreach ($found_logs as $log) { |
|
| 666 | + wp_delete_post($log->ID, true); |
|
| 667 | 667 | } |
| 668 | 668 | |
| 669 | - if ( 'publish' === $this->status || 'complete' === $this->status || 'revoked' === $this->status ) { |
|
| 670 | - $form = new Give_Donate_Form( $item['id'] ); |
|
| 671 | - $form->decrease_sales( $quantity ); |
|
| 672 | - $form->decrease_earnings( $item['amount'] ); |
|
| 669 | + if ('publish' === $this->status || 'complete' === $this->status || 'revoked' === $this->status) { |
|
| 670 | + $form = new Give_Donate_Form($item['id']); |
|
| 671 | + $form->decrease_sales($quantity); |
|
| 672 | + $form->decrease_earnings($item['amount']); |
|
| 673 | 673 | |
| 674 | 674 | $total_decrease += $item['amount']; |
| 675 | 675 | } |
@@ -682,17 +682,17 @@ discard block |
||
| 682 | 682 | |
| 683 | 683 | case 'fees': |
| 684 | 684 | |
| 685 | - if ( 'publish' !== $this->status && 'complete' !== $this->status && 'revoked' !== $this->status ) { |
|
| 685 | + if ('publish' !== $this->status && 'complete' !== $this->status && 'revoked' !== $this->status) { |
|
| 686 | 686 | break; |
| 687 | 687 | } |
| 688 | 688 | |
| 689 | - if ( empty( $this->pending[ $key ] ) ) { |
|
| 689 | + if (empty($this->pending[$key])) { |
|
| 690 | 690 | break; |
| 691 | 691 | } |
| 692 | 692 | |
| 693 | - foreach ( $this->pending[ $key ] as $fee ) { |
|
| 693 | + foreach ($this->pending[$key] as $fee) { |
|
| 694 | 694 | |
| 695 | - switch ( $fee['action'] ) { |
|
| 695 | + switch ($fee['action']) { |
|
| 696 | 696 | |
| 697 | 697 | case 'add': |
| 698 | 698 | $total_increase += $fee['amount']; |
@@ -709,43 +709,43 @@ discard block |
||
| 709 | 709 | break; |
| 710 | 710 | |
| 711 | 711 | case 'status': |
| 712 | - $this->update_status( $this->status ); |
|
| 712 | + $this->update_status($this->status); |
|
| 713 | 713 | break; |
| 714 | 714 | |
| 715 | 715 | case 'gateway': |
| 716 | - $this->update_meta( '_give_payment_gateway', $this->gateway ); |
|
| 716 | + $this->update_meta('_give_payment_gateway', $this->gateway); |
|
| 717 | 717 | break; |
| 718 | 718 | |
| 719 | 719 | case 'mode': |
| 720 | - $this->update_meta( '_give_payment_mode', $this->mode ); |
|
| 720 | + $this->update_meta('_give_payment_mode', $this->mode); |
|
| 721 | 721 | break; |
| 722 | 722 | |
| 723 | 723 | case 'transaction_id': |
| 724 | - $this->update_meta( '_give_payment_transaction_id', $this->transaction_id ); |
|
| 724 | + $this->update_meta('_give_payment_transaction_id', $this->transaction_id); |
|
| 725 | 725 | break; |
| 726 | 726 | |
| 727 | 727 | case 'ip': |
| 728 | - $this->update_meta( '_give_payment_user_ip', $this->ip ); |
|
| 728 | + $this->update_meta('_give_payment_user_ip', $this->ip); |
|
| 729 | 729 | break; |
| 730 | 730 | |
| 731 | 731 | case 'customer_id': |
| 732 | - $this->update_meta( '_give_payment_customer_id', $this->customer_id ); |
|
| 732 | + $this->update_meta('_give_payment_customer_id', $this->customer_id); |
|
| 733 | 733 | break; |
| 734 | 734 | |
| 735 | 735 | case 'user_id': |
| 736 | - $this->update_meta( '_give_payment_user_id', $this->user_id ); |
|
| 736 | + $this->update_meta('_give_payment_user_id', $this->user_id); |
|
| 737 | 737 | break; |
| 738 | 738 | |
| 739 | 739 | case 'form_title': |
| 740 | - $this->update_meta( '_give_payment_form_title', $this->form_title ); |
|
| 740 | + $this->update_meta('_give_payment_form_title', $this->form_title); |
|
| 741 | 741 | break; |
| 742 | 742 | |
| 743 | 743 | case 'form_id': |
| 744 | - $this->update_meta( '_give_payment_form_id', $this->form_id ); |
|
| 744 | + $this->update_meta('_give_payment_form_id', $this->form_id); |
|
| 745 | 745 | break; |
| 746 | 746 | |
| 747 | 747 | case 'price_id': |
| 748 | - $this->update_meta( '_give_payment_price_id', $this->price_id ); |
|
| 748 | + $this->update_meta('_give_payment_price_id', $this->price_id); |
|
| 749 | 749 | break; |
| 750 | 750 | |
| 751 | 751 | case 'first_name': |
@@ -761,15 +761,15 @@ discard block |
||
| 761 | 761 | break; |
| 762 | 762 | |
| 763 | 763 | case 'email': |
| 764 | - $this->update_meta( '_give_payment_user_email', $this->email ); |
|
| 764 | + $this->update_meta('_give_payment_user_email', $this->email); |
|
| 765 | 765 | break; |
| 766 | 766 | |
| 767 | 767 | case 'key': |
| 768 | - $this->update_meta( '_give_payment_purchase_key', $this->key ); |
|
| 768 | + $this->update_meta('_give_payment_purchase_key', $this->key); |
|
| 769 | 769 | break; |
| 770 | 770 | |
| 771 | 771 | case 'number': |
| 772 | - $this->update_meta( '_give_payment_number', $this->number ); |
|
| 772 | + $this->update_meta('_give_payment_number', $this->number); |
|
| 773 | 773 | break; |
| 774 | 774 | |
| 775 | 775 | case 'date': |
@@ -779,11 +779,11 @@ discard block |
||
| 779 | 779 | 'edit_date' => true, |
| 780 | 780 | ); |
| 781 | 781 | |
| 782 | - wp_update_post( $args ); |
|
| 782 | + wp_update_post($args); |
|
| 783 | 783 | break; |
| 784 | 784 | |
| 785 | 785 | case 'completed_date': |
| 786 | - $this->update_meta( '_give_completed_date', $this->completed_date ); |
|
| 786 | + $this->update_meta('_give_completed_date', $this->completed_date); |
|
| 787 | 787 | break; |
| 788 | 788 | |
| 789 | 789 | case 'parent_payment': |
@@ -792,38 +792,38 @@ discard block |
||
| 792 | 792 | 'post_parent' => $this->parent_payment, |
| 793 | 793 | ); |
| 794 | 794 | |
| 795 | - wp_update_post( $args ); |
|
| 795 | + wp_update_post($args); |
|
| 796 | 796 | break; |
| 797 | 797 | |
| 798 | 798 | default: |
| 799 | - do_action( 'give_payment_save', $this, $key ); |
|
| 799 | + do_action('give_payment_save', $this, $key); |
|
| 800 | 800 | break; |
| 801 | 801 | } |
| 802 | 802 | } |
| 803 | 803 | |
| 804 | - if ( 'pending' !== $this->status ) { |
|
| 804 | + if ('pending' !== $this->status) { |
|
| 805 | 805 | |
| 806 | - $customer = new Give_Customer( $this->customer_id ); |
|
| 806 | + $customer = new Give_Customer($this->customer_id); |
|
| 807 | 807 | |
| 808 | 808 | $total_change = $total_increase - $total_decrease; |
| 809 | - if ( $total_change < 0 ) { |
|
| 809 | + if ($total_change < 0) { |
|
| 810 | 810 | |
| 811 | - $total_change = - ( $total_change ); |
|
| 811 | + $total_change = - ($total_change); |
|
| 812 | 812 | // Decrease the customer's purchase stats |
| 813 | - $customer->decrease_value( $total_change ); |
|
| 814 | - give_decrease_total_earnings( $total_change ); |
|
| 813 | + $customer->decrease_value($total_change); |
|
| 814 | + give_decrease_total_earnings($total_change); |
|
| 815 | 815 | |
| 816 | - } else if ( $total_change > 0 ) { |
|
| 816 | + } else if ($total_change > 0) { |
|
| 817 | 817 | |
| 818 | 818 | // Increase the customer's purchase stats |
| 819 | - $customer->increase_value( $total_change ); |
|
| 820 | - give_increase_total_earnings( $total_change ); |
|
| 819 | + $customer->increase_value($total_change); |
|
| 820 | + give_increase_total_earnings($total_change); |
|
| 821 | 821 | |
| 822 | 822 | } |
| 823 | 823 | |
| 824 | 824 | } |
| 825 | 825 | |
| 826 | - $this->update_meta( '_give_payment_total', $this->total ); |
|
| 826 | + $this->update_meta('_give_payment_total', $this->total); |
|
| 827 | 827 | |
| 828 | 828 | $new_meta = array( |
| 829 | 829 | 'form_title' => $this->form_title, |
@@ -835,12 +835,12 @@ discard block |
||
| 835 | 835 | ); |
| 836 | 836 | |
| 837 | 837 | $meta = $this->get_meta(); |
| 838 | - $merged_meta = array_merge( $meta, $new_meta ); |
|
| 838 | + $merged_meta = array_merge($meta, $new_meta); |
|
| 839 | 839 | |
| 840 | 840 | // Only save the payment meta if it's changed |
| 841 | - if ( md5( serialize( $meta ) ) !== md5( serialize( $merged_meta ) ) ) { |
|
| 842 | - $updated = $this->update_meta( '_give_payment_meta', $merged_meta ); |
|
| 843 | - if ( false !== $updated ) { |
|
| 841 | + if (md5(serialize($meta)) !== md5(serialize($merged_meta))) { |
|
| 842 | + $updated = $this->update_meta('_give_payment_meta', $merged_meta); |
|
| 843 | + if (false !== $updated) { |
|
| 844 | 844 | $saved = true; |
| 845 | 845 | } |
| 846 | 846 | } |
@@ -849,8 +849,8 @@ discard block |
||
| 849 | 849 | $saved = true; |
| 850 | 850 | } |
| 851 | 851 | |
| 852 | - if ( true === $saved ) { |
|
| 853 | - $this->setup_payment( $this->ID ); |
|
| 852 | + if (true === $saved) { |
|
| 853 | + $this->setup_payment($this->ID); |
|
| 854 | 854 | } |
| 855 | 855 | |
| 856 | 856 | return $saved; |
@@ -867,12 +867,12 @@ discard block |
||
| 867 | 867 | * |
| 868 | 868 | * @return bool True when successful, false otherwise |
| 869 | 869 | */ |
| 870 | - public function add_donation( $form_id = 0, $args = array(), $options = array() ) { |
|
| 870 | + public function add_donation($form_id = 0, $args = array(), $options = array()) { |
|
| 871 | 871 | |
| 872 | - $donation = new Give_Donate_Form( $form_id ); |
|
| 872 | + $donation = new Give_Donate_Form($form_id); |
|
| 873 | 873 | |
| 874 | 874 | // Bail if this post isn't a give donation form |
| 875 | - if ( ! $donation || $donation->post_type !== 'give_forms' ) { |
|
| 875 | + if ( ! $donation || $donation->post_type !== 'give_forms') { |
|
| 876 | 876 | return false; |
| 877 | 877 | } |
| 878 | 878 | |
@@ -883,60 +883,60 @@ discard block |
||
| 883 | 883 | 'fees' => array(), |
| 884 | 884 | ); |
| 885 | 885 | |
| 886 | - $args = wp_parse_args( apply_filters( 'give_payment_add_donation_args', $args, $donation->ID ), $defaults ); |
|
| 886 | + $args = wp_parse_args(apply_filters('give_payment_add_donation_args', $args, $donation->ID), $defaults); |
|
| 887 | 887 | |
| 888 | 888 | // Allow overriding the price |
| 889 | - if ( false !== $args['price'] ) { |
|
| 889 | + if (false !== $args['price']) { |
|
| 890 | 890 | $item_price = $args['price']; |
| 891 | 891 | } else { |
| 892 | 892 | |
| 893 | 893 | // Deal with variable pricing |
| 894 | - if ( give_has_variable_prices( $donation->ID ) ) { |
|
| 895 | - $prices = maybe_unserialize( get_post_meta( $form_id, '_give_donation_levels', true ) ); |
|
| 894 | + if (give_has_variable_prices($donation->ID)) { |
|
| 895 | + $prices = maybe_unserialize(get_post_meta($form_id, '_give_donation_levels', true)); |
|
| 896 | 896 | $item_price = ''; |
| 897 | 897 | //Loop through prices |
| 898 | - foreach ( $prices as $price ) { |
|
| 898 | + foreach ($prices as $price) { |
|
| 899 | 899 | //Find a match between price_id and level_id |
| 900 | 900 | //First verify array keys exists THEN make the match |
| 901 | - if ( ( isset( $args['price_id'] ) && isset( $price['_give_id']['level_id'] ) ) |
|
| 901 | + if ((isset($args['price_id']) && isset($price['_give_id']['level_id'])) |
|
| 902 | 902 | && $args['price_id'] == $price['_give_id']['level_id'] |
| 903 | 903 | ) { |
| 904 | 904 | $item_price = $price['_give_amount']; |
| 905 | 905 | } |
| 906 | 906 | } |
| 907 | 907 | //Fallback to the lowest price point |
| 908 | - if ( $item_price == '' ) { |
|
| 909 | - $item_price = give_get_lowest_price_option( $donation->ID ); |
|
| 910 | - $args['price_id'] = give_get_lowest_price_id( $donation->ID ); |
|
| 908 | + if ($item_price == '') { |
|
| 909 | + $item_price = give_get_lowest_price_option($donation->ID); |
|
| 910 | + $args['price_id'] = give_get_lowest_price_id($donation->ID); |
|
| 911 | 911 | } |
| 912 | 912 | } else { |
| 913 | 913 | //Simple form price |
| 914 | - $item_price = give_get_form_price( $donation->ID ); |
|
| 914 | + $item_price = give_get_form_price($donation->ID); |
|
| 915 | 915 | } |
| 916 | 916 | |
| 917 | 917 | } |
| 918 | 918 | |
| 919 | 919 | // Sanitizing the price here so we don't have a dozen calls later |
| 920 | - $item_price = give_sanitize_amount( $item_price ); |
|
| 921 | - $total = round( $item_price, give_currency_decimal_filter() ); |
|
| 920 | + $item_price = give_sanitize_amount($item_price); |
|
| 921 | + $total = round($item_price, give_currency_decimal_filter()); |
|
| 922 | 922 | |
| 923 | 923 | //Add Options |
| 924 | 924 | $default_options = array(); |
| 925 | - if ( false !== $args['price_id'] ) { |
|
| 925 | + if (false !== $args['price_id']) { |
|
| 926 | 926 | $default_options['price_id'] = (int) $args['price_id']; |
| 927 | 927 | } |
| 928 | - $options = wp_parse_args( $options, $default_options ); |
|
| 928 | + $options = wp_parse_args($options, $default_options); |
|
| 929 | 929 | |
| 930 | 930 | // Do not allow totals to go negative |
| 931 | - if ( $total < 0 ) { |
|
| 931 | + if ($total < 0) { |
|
| 932 | 932 | $total = 0; |
| 933 | 933 | } |
| 934 | 934 | |
| 935 | 935 | $donation = array( |
| 936 | 936 | 'name' => $donation->post_title, |
| 937 | 937 | 'id' => $donation->ID, |
| 938 | - 'price' => round( $total, give_currency_decimal_filter() ), |
|
| 939 | - 'subtotal' => round( $total, give_currency_decimal_filter() ), |
|
| 938 | + 'price' => round($total, give_currency_decimal_filter()), |
|
| 939 | + 'subtotal' => round($total, give_currency_decimal_filter()), |
|
| 940 | 940 | 'fees' => $args['fees'], |
| 941 | 941 | 'price_id' => $args['price_id'], |
| 942 | 942 | 'action' => 'add', |
@@ -945,7 +945,7 @@ discard block |
||
| 945 | 945 | |
| 946 | 946 | $this->pending['donations'][] = $donation; |
| 947 | 947 | |
| 948 | - $this->increase_subtotal( $total ); |
|
| 948 | + $this->increase_subtotal($total); |
|
| 949 | 949 | |
| 950 | 950 | return true; |
| 951 | 951 | |
@@ -961,7 +961,7 @@ discard block |
||
| 961 | 961 | * |
| 962 | 962 | * @return bool If the item was removed or not |
| 963 | 963 | */ |
| 964 | - public function remove_donation( $form_id, $args = array() ) { |
|
| 964 | + public function remove_donation($form_id, $args = array()) { |
|
| 965 | 965 | |
| 966 | 966 | // Set some defaults |
| 967 | 967 | $defaults = array( |
@@ -969,12 +969,12 @@ discard block |
||
| 969 | 969 | 'price' => false, |
| 970 | 970 | 'price_id' => false, |
| 971 | 971 | ); |
| 972 | - $args = wp_parse_args( $args, $defaults ); |
|
| 972 | + $args = wp_parse_args($args, $defaults); |
|
| 973 | 973 | |
| 974 | - $form = new Give_Donate_Form( $form_id ); |
|
| 974 | + $form = new Give_Donate_Form($form_id); |
|
| 975 | 975 | |
| 976 | 976 | // Bail if this post isn't a valid give donation form |
| 977 | - if ( ! $form || $form->post_type !== 'give_forms' ) { |
|
| 977 | + if ( ! $form || $form->post_type !== 'give_forms') { |
|
| 978 | 978 | return false; |
| 979 | 979 | } |
| 980 | 980 | |
@@ -987,7 +987,7 @@ discard block |
||
| 987 | 987 | |
| 988 | 988 | $this->pending['donations'][] = $pending_args; |
| 989 | 989 | |
| 990 | - $this->decrease_subtotal( $this->total ); |
|
| 990 | + $this->decrease_subtotal($this->total); |
|
| 991 | 991 | |
| 992 | 992 | return true; |
| 993 | 993 | } |
@@ -1002,7 +1002,7 @@ discard block |
||
| 1002 | 1002 | * |
| 1003 | 1003 | * @return bool If the fee was added |
| 1004 | 1004 | */ |
| 1005 | - public function add_fee( $args, $global = true ) { |
|
| 1005 | + public function add_fee($args, $global = true) { |
|
| 1006 | 1006 | |
| 1007 | 1007 | $default_args = array( |
| 1008 | 1008 | 'label' => '', |
@@ -1012,16 +1012,16 @@ discard block |
||
| 1012 | 1012 | 'price_id' => 0, |
| 1013 | 1013 | ); |
| 1014 | 1014 | |
| 1015 | - $fee = wp_parse_args( $args, $default_args ); |
|
| 1015 | + $fee = wp_parse_args($args, $default_args); |
|
| 1016 | 1016 | $this->fees[] = $fee; |
| 1017 | 1017 | |
| 1018 | 1018 | |
| 1019 | 1019 | $added_fee = $fee; |
| 1020 | 1020 | $added_fee['action'] = 'add'; |
| 1021 | 1021 | $this->pending['fees'][] = $added_fee; |
| 1022 | - reset( $this->fees ); |
|
| 1022 | + reset($this->fees); |
|
| 1023 | 1023 | |
| 1024 | - $this->increase_fees( $fee['amount'] ); |
|
| 1024 | + $this->increase_fees($fee['amount']); |
|
| 1025 | 1025 | |
| 1026 | 1026 | return true; |
| 1027 | 1027 | } |
@@ -1035,11 +1035,11 @@ discard block |
||
| 1035 | 1035 | * |
| 1036 | 1036 | * @return bool If the fee was removed successfully |
| 1037 | 1037 | */ |
| 1038 | - public function remove_fee( $key ) { |
|
| 1038 | + public function remove_fee($key) { |
|
| 1039 | 1039 | $removed = false; |
| 1040 | 1040 | |
| 1041 | - if ( is_numeric( $key ) ) { |
|
| 1042 | - $removed = $this->remove_fee_by( 'index', $key ); |
|
| 1041 | + if (is_numeric($key)) { |
|
| 1042 | + $removed = $this->remove_fee_by('index', $key); |
|
| 1043 | 1043 | } |
| 1044 | 1044 | |
| 1045 | 1045 | return $removed; |
@@ -1056,47 +1056,47 @@ discard block |
||
| 1056 | 1056 | * |
| 1057 | 1057 | * @return boolean If the item is removed |
| 1058 | 1058 | */ |
| 1059 | - public function remove_fee_by( $key, $value, $global = false ) { |
|
| 1059 | + public function remove_fee_by($key, $value, $global = false) { |
|
| 1060 | 1060 | |
| 1061 | - $allowed_fee_keys = apply_filters( 'give_payment_fee_keys', array( |
|
| 1061 | + $allowed_fee_keys = apply_filters('give_payment_fee_keys', array( |
|
| 1062 | 1062 | 'index', |
| 1063 | 1063 | 'label', |
| 1064 | 1064 | 'amount', |
| 1065 | 1065 | 'type', |
| 1066 | - ) ); |
|
| 1066 | + )); |
|
| 1067 | 1067 | |
| 1068 | - if ( ! in_array( $key, $allowed_fee_keys ) ) { |
|
| 1068 | + if ( ! in_array($key, $allowed_fee_keys)) { |
|
| 1069 | 1069 | return false; |
| 1070 | 1070 | } |
| 1071 | 1071 | |
| 1072 | 1072 | $removed = false; |
| 1073 | - if ( 'index' === $key && array_key_exists( $value, $this->fees ) ) { |
|
| 1073 | + if ('index' === $key && array_key_exists($value, $this->fees)) { |
|
| 1074 | 1074 | |
| 1075 | - $removed_fee = $this->fees[ $value ]; |
|
| 1075 | + $removed_fee = $this->fees[$value]; |
|
| 1076 | 1076 | $removed_fee['action'] = 'remove'; |
| 1077 | 1077 | $this->pending['fees'][] = $removed_fee; |
| 1078 | 1078 | |
| 1079 | - $this->decrease_fees( $removed_fee['amount'] ); |
|
| 1079 | + $this->decrease_fees($removed_fee['amount']); |
|
| 1080 | 1080 | |
| 1081 | - unset( $this->fees[ $value ] ); |
|
| 1081 | + unset($this->fees[$value]); |
|
| 1082 | 1082 | $removed = true; |
| 1083 | 1083 | |
| 1084 | - } else if ( 'index' !== $key ) { |
|
| 1084 | + } else if ('index' !== $key) { |
|
| 1085 | 1085 | |
| 1086 | - foreach ( $this->fees as $index => $fee ) { |
|
| 1086 | + foreach ($this->fees as $index => $fee) { |
|
| 1087 | 1087 | |
| 1088 | - if ( isset( $fee[ $key ] ) && $fee[ $key ] == $value ) { |
|
| 1088 | + if (isset($fee[$key]) && $fee[$key] == $value) { |
|
| 1089 | 1089 | |
| 1090 | 1090 | $removed_fee = $fee; |
| 1091 | 1091 | $removed_fee['action'] = 'remove'; |
| 1092 | 1092 | $this->pending['fees'][] = $removed_fee; |
| 1093 | 1093 | |
| 1094 | - $this->decrease_fees( $removed_fee['amount'] ); |
|
| 1094 | + $this->decrease_fees($removed_fee['amount']); |
|
| 1095 | 1095 | |
| 1096 | - unset( $this->fees[ $index ] ); |
|
| 1096 | + unset($this->fees[$index]); |
|
| 1097 | 1097 | $removed = true; |
| 1098 | 1098 | |
| 1099 | - if ( false === $global ) { |
|
| 1099 | + if (false === $global) { |
|
| 1100 | 1100 | break; |
| 1101 | 1101 | } |
| 1102 | 1102 | |
@@ -1106,8 +1106,8 @@ discard block |
||
| 1106 | 1106 | |
| 1107 | 1107 | } |
| 1108 | 1108 | |
| 1109 | - if ( true === $removed ) { |
|
| 1110 | - $this->fees = array_values( $this->fees ); |
|
| 1109 | + if (true === $removed) { |
|
| 1110 | + $this->fees = array_values($this->fees); |
|
| 1111 | 1111 | } |
| 1112 | 1112 | |
| 1113 | 1113 | return $removed; |
@@ -1122,14 +1122,14 @@ discard block |
||
| 1122 | 1122 | * |
| 1123 | 1123 | * @return array The Fees for the type specified |
| 1124 | 1124 | */ |
| 1125 | - public function get_fees( $type = 'all' ) { |
|
| 1125 | + public function get_fees($type = 'all') { |
|
| 1126 | 1126 | $fees = array(); |
| 1127 | 1127 | |
| 1128 | - if ( ! empty( $this->fees ) && is_array( $this->fees ) ) { |
|
| 1128 | + if ( ! empty($this->fees) && is_array($this->fees)) { |
|
| 1129 | 1129 | |
| 1130 | - foreach ( $this->fees as $fee_id => $fee ) { |
|
| 1130 | + foreach ($this->fees as $fee_id => $fee) { |
|
| 1131 | 1131 | |
| 1132 | - if ( 'all' != $type && ! empty( $fee['type'] ) && $type != $fee['type'] ) { |
|
| 1132 | + if ('all' != $type && ! empty($fee['type']) && $type != $fee['type']) { |
|
| 1133 | 1133 | continue; |
| 1134 | 1134 | } |
| 1135 | 1135 | |
@@ -1139,7 +1139,7 @@ discard block |
||
| 1139 | 1139 | } |
| 1140 | 1140 | } |
| 1141 | 1141 | |
| 1142 | - return apply_filters( 'give_get_payment_fees', $fees, $this->ID, $this ); |
|
| 1142 | + return apply_filters('give_get_payment_fees', $fees, $this->ID, $this); |
|
| 1143 | 1143 | } |
| 1144 | 1144 | |
| 1145 | 1145 | /** |
@@ -1151,13 +1151,13 @@ discard block |
||
| 1151 | 1151 | * |
| 1152 | 1152 | * @return void |
| 1153 | 1153 | */ |
| 1154 | - public function add_note( $note = false ) { |
|
| 1154 | + public function add_note($note = false) { |
|
| 1155 | 1155 | // Bail if no note specified |
| 1156 | - if ( ! $note ) { |
|
| 1156 | + if ( ! $note) { |
|
| 1157 | 1157 | return false; |
| 1158 | 1158 | } |
| 1159 | 1159 | |
| 1160 | - give_insert_payment_note( $this->ID, $note ); |
|
| 1160 | + give_insert_payment_note($this->ID, $note); |
|
| 1161 | 1161 | } |
| 1162 | 1162 | |
| 1163 | 1163 | /** |
@@ -1169,7 +1169,7 @@ discard block |
||
| 1169 | 1169 | * |
| 1170 | 1170 | * @return void |
| 1171 | 1171 | */ |
| 1172 | - private function increase_subtotal( $amount = 0.00 ) { |
|
| 1172 | + private function increase_subtotal($amount = 0.00) { |
|
| 1173 | 1173 | $amount = (float) $amount; |
| 1174 | 1174 | $this->subtotal += $amount; |
| 1175 | 1175 | |
@@ -1185,11 +1185,11 @@ discard block |
||
| 1185 | 1185 | * |
| 1186 | 1186 | * @return void |
| 1187 | 1187 | */ |
| 1188 | - private function decrease_subtotal( $amount = 0.00 ) { |
|
| 1188 | + private function decrease_subtotal($amount = 0.00) { |
|
| 1189 | 1189 | $amount = (float) $amount; |
| 1190 | 1190 | $this->subtotal -= $amount; |
| 1191 | 1191 | |
| 1192 | - if ( $this->subtotal < 0 ) { |
|
| 1192 | + if ($this->subtotal < 0) { |
|
| 1193 | 1193 | $this->subtotal = 0; |
| 1194 | 1194 | } |
| 1195 | 1195 | |
@@ -1205,7 +1205,7 @@ discard block |
||
| 1205 | 1205 | * |
| 1206 | 1206 | * @return void |
| 1207 | 1207 | */ |
| 1208 | - private function increase_fees( $amount = 0.00 ) { |
|
| 1208 | + private function increase_fees($amount = 0.00) { |
|
| 1209 | 1209 | $amount = (float) $amount; |
| 1210 | 1210 | $this->fees_total += $amount; |
| 1211 | 1211 | |
@@ -1221,11 +1221,11 @@ discard block |
||
| 1221 | 1221 | * |
| 1222 | 1222 | * @return void |
| 1223 | 1223 | */ |
| 1224 | - private function decrease_fees( $amount = 0.00 ) { |
|
| 1224 | + private function decrease_fees($amount = 0.00) { |
|
| 1225 | 1225 | $amount = (float) $amount; |
| 1226 | 1226 | $this->fees_total -= $amount; |
| 1227 | 1227 | |
| 1228 | - if ( $this->fees_total < 0 ) { |
|
| 1228 | + if ($this->fees_total < 0) { |
|
| 1229 | 1229 | $this->fees_total = 0; |
| 1230 | 1230 | } |
| 1231 | 1231 | |
@@ -1251,41 +1251,41 @@ discard block |
||
| 1251 | 1251 | * |
| 1252 | 1252 | * @return bool Returns if the status was successfully updated |
| 1253 | 1253 | */ |
| 1254 | - public function update_status( $status = false ) { |
|
| 1254 | + public function update_status($status = false) { |
|
| 1255 | 1255 | |
| 1256 | 1256 | //standardize the 'complete(d)' status |
| 1257 | - if ( $status == 'completed' || $status == 'complete' ) { |
|
| 1257 | + if ($status == 'completed' || $status == 'complete') { |
|
| 1258 | 1258 | $status = 'publish'; |
| 1259 | 1259 | } |
| 1260 | 1260 | |
| 1261 | - $old_status = ! empty( $this->old_status ) ? $this->old_status : false; |
|
| 1261 | + $old_status = ! empty($this->old_status) ? $this->old_status : false; |
|
| 1262 | 1262 | |
| 1263 | - if ( $old_status === $status ) { |
|
| 1263 | + if ($old_status === $status) { |
|
| 1264 | 1264 | return false; // Don't permit status changes that aren't changes |
| 1265 | 1265 | } |
| 1266 | 1266 | |
| 1267 | - $do_change = apply_filters( 'give_should_update_payment_status', true, $this->ID, $status, $old_status ); |
|
| 1267 | + $do_change = apply_filters('give_should_update_payment_status', true, $this->ID, $status, $old_status); |
|
| 1268 | 1268 | |
| 1269 | 1269 | $updated = false; |
| 1270 | 1270 | |
| 1271 | 1271 | |
| 1272 | - if ( $do_change ) { |
|
| 1272 | + if ($do_change) { |
|
| 1273 | 1273 | |
| 1274 | - do_action( 'give_before_payment_status_change', $this->ID, $status, $old_status ); |
|
| 1274 | + do_action('give_before_payment_status_change', $this->ID, $status, $old_status); |
|
| 1275 | 1275 | |
| 1276 | 1276 | $update_fields = array( |
| 1277 | 1277 | 'ID' => $this->ID, |
| 1278 | 1278 | 'post_status' => $status, |
| 1279 | - 'edit_date' => current_time( 'mysql' ) |
|
| 1279 | + 'edit_date' => current_time('mysql') |
|
| 1280 | 1280 | ); |
| 1281 | 1281 | |
| 1282 | - $updated = wp_update_post( apply_filters( 'give_update_payment_status_fields', $update_fields ) ); |
|
| 1282 | + $updated = wp_update_post(apply_filters('give_update_payment_status_fields', $update_fields)); |
|
| 1283 | 1283 | |
| 1284 | 1284 | $all_payment_statuses = give_get_payment_statuses(); |
| 1285 | - $this->status_nicename = array_key_exists( $status, $all_payment_statuses ) ? $all_payment_statuses[ $status ] : ucfirst( $status ); |
|
| 1285 | + $this->status_nicename = array_key_exists($status, $all_payment_statuses) ? $all_payment_statuses[$status] : ucfirst($status); |
|
| 1286 | 1286 | |
| 1287 | 1287 | // Process any specific status functions |
| 1288 | - switch ( $status ) { |
|
| 1288 | + switch ($status) { |
|
| 1289 | 1289 | case 'refunded': |
| 1290 | 1290 | $this->process_refund(); |
| 1291 | 1291 | break; |
@@ -1297,7 +1297,7 @@ discard block |
||
| 1297 | 1297 | break; |
| 1298 | 1298 | } |
| 1299 | 1299 | |
| 1300 | - do_action( 'give_update_payment_status', $this->ID, $status, $old_status ); |
|
| 1300 | + do_action('give_update_payment_status', $this->ID, $status, $old_status); |
|
| 1301 | 1301 | |
| 1302 | 1302 | } |
| 1303 | 1303 | |
@@ -1329,32 +1329,32 @@ discard block |
||
| 1329 | 1329 | * |
| 1330 | 1330 | * @return mixed The value from the post meta |
| 1331 | 1331 | */ |
| 1332 | - public function get_meta( $meta_key = '_give_payment_meta', $single = true ) { |
|
| 1332 | + public function get_meta($meta_key = '_give_payment_meta', $single = true) { |
|
| 1333 | 1333 | |
| 1334 | - $meta = get_post_meta( $this->ID, $meta_key, $single ); |
|
| 1334 | + $meta = get_post_meta($this->ID, $meta_key, $single); |
|
| 1335 | 1335 | |
| 1336 | - if ( $meta_key === '_give_payment_meta' ) { |
|
| 1336 | + if ($meta_key === '_give_payment_meta') { |
|
| 1337 | 1337 | |
| 1338 | - if ( empty( $meta['key'] ) ) { |
|
| 1338 | + if (empty($meta['key'])) { |
|
| 1339 | 1339 | $meta['key'] = $this->setup_payment_key(); |
| 1340 | 1340 | } |
| 1341 | 1341 | |
| 1342 | - if ( empty( $meta['form_title'] ) ) { |
|
| 1342 | + if (empty($meta['form_title'])) { |
|
| 1343 | 1343 | $meta['form_title'] = $this->setup_form_title(); |
| 1344 | 1344 | } |
| 1345 | 1345 | |
| 1346 | - if ( empty( $meta['email'] ) ) { |
|
| 1346 | + if (empty($meta['email'])) { |
|
| 1347 | 1347 | $meta['email'] = $this->setup_email(); |
| 1348 | 1348 | } |
| 1349 | 1349 | |
| 1350 | - if ( empty( $meta['date'] ) ) { |
|
| 1351 | - $meta['date'] = get_post_field( 'post_date', $this->ID ); |
|
| 1350 | + if (empty($meta['date'])) { |
|
| 1351 | + $meta['date'] = get_post_field('post_date', $this->ID); |
|
| 1352 | 1352 | } |
| 1353 | 1353 | } |
| 1354 | 1354 | |
| 1355 | - $meta = apply_filters( 'give_get_payment_meta_' . $meta_key, $meta, $this->ID ); |
|
| 1355 | + $meta = apply_filters('give_get_payment_meta_'.$meta_key, $meta, $this->ID); |
|
| 1356 | 1356 | |
| 1357 | - return apply_filters( 'give_get_payment_meta', $meta, $this->ID, $meta_key ); |
|
| 1357 | + return apply_filters('give_get_payment_meta', $meta, $this->ID, $meta_key); |
|
| 1358 | 1358 | } |
| 1359 | 1359 | |
| 1360 | 1360 | /** |
@@ -1368,23 +1368,23 @@ discard block |
||
| 1368 | 1368 | * |
| 1369 | 1369 | * @return int|bool Meta ID if the key didn't exist, true on successful update, false on failure |
| 1370 | 1370 | */ |
| 1371 | - public function update_meta( $meta_key = '', $meta_value = '', $prev_value = '' ) { |
|
| 1372 | - if ( empty( $meta_key ) ) { |
|
| 1371 | + public function update_meta($meta_key = '', $meta_value = '', $prev_value = '') { |
|
| 1372 | + if (empty($meta_key)) { |
|
| 1373 | 1373 | return false; |
| 1374 | 1374 | } |
| 1375 | 1375 | |
| 1376 | - if ( $meta_key == 'key' || $meta_key == 'date' ) { |
|
| 1376 | + if ($meta_key == 'key' || $meta_key == 'date') { |
|
| 1377 | 1377 | |
| 1378 | 1378 | $current_meta = $this->get_meta(); |
| 1379 | - $current_meta[ $meta_key ] = $meta_value; |
|
| 1379 | + $current_meta[$meta_key] = $meta_value; |
|
| 1380 | 1380 | |
| 1381 | 1381 | $meta_key = '_give_payment_meta'; |
| 1382 | 1382 | $meta_value = $current_meta; |
| 1383 | 1383 | |
| 1384 | - } else if ( $meta_key == 'email' || $meta_key == '_give_payment_user_email' ) { |
|
| 1384 | + } else if ($meta_key == 'email' || $meta_key == '_give_payment_user_email') { |
|
| 1385 | 1385 | |
| 1386 | - $meta_value = apply_filters( 'give_give_update_payment_meta_' . $meta_key, $meta_value, $this->ID ); |
|
| 1387 | - update_post_meta( $this->ID, '_give_payment_user_email', $meta_value ); |
|
| 1386 | + $meta_value = apply_filters('give_give_update_payment_meta_'.$meta_key, $meta_value, $this->ID); |
|
| 1387 | + update_post_meta($this->ID, '_give_payment_user_email', $meta_value); |
|
| 1388 | 1388 | |
| 1389 | 1389 | $current_meta = $this->get_meta(); |
| 1390 | 1390 | $current_meta['user_info']['email'] = $meta_value; |
@@ -1394,9 +1394,9 @@ discard block |
||
| 1394 | 1394 | |
| 1395 | 1395 | } |
| 1396 | 1396 | |
| 1397 | - $meta_value = apply_filters( 'give_update_payment_meta_' . $meta_key, $meta_value, $this->ID ); |
|
| 1397 | + $meta_value = apply_filters('give_update_payment_meta_'.$meta_key, $meta_value, $this->ID); |
|
| 1398 | 1398 | |
| 1399 | - return update_post_meta( $this->ID, $meta_key, $meta_value, $prev_value ); |
|
| 1399 | + return update_post_meta($this->ID, $meta_key, $meta_value, $prev_value); |
|
| 1400 | 1400 | } |
| 1401 | 1401 | |
| 1402 | 1402 | /** |
@@ -1410,30 +1410,30 @@ discard block |
||
| 1410 | 1410 | $process_refund = true; |
| 1411 | 1411 | |
| 1412 | 1412 | // If the payment was not in publish or revoked status, don't decrement stats as they were never incremented |
| 1413 | - if ( ( 'publish' != $this->old_status && 'revoked' != $this->old_status ) || 'refunded' != $this->status ) { |
|
| 1413 | + if (('publish' != $this->old_status && 'revoked' != $this->old_status) || 'refunded' != $this->status) { |
|
| 1414 | 1414 | $process_refund = false; |
| 1415 | 1415 | } |
| 1416 | 1416 | |
| 1417 | 1417 | // Allow extensions to filter for their own payment types, Example: Recurring Payments |
| 1418 | - $process_refund = apply_filters( 'give_should_process_refund', $process_refund, $this ); |
|
| 1418 | + $process_refund = apply_filters('give_should_process_refund', $process_refund, $this); |
|
| 1419 | 1419 | |
| 1420 | - if ( false === $process_refund ) { |
|
| 1420 | + if (false === $process_refund) { |
|
| 1421 | 1421 | return; |
| 1422 | 1422 | } |
| 1423 | 1423 | |
| 1424 | - do_action( 'give_pre_refund_payment', $this ); |
|
| 1424 | + do_action('give_pre_refund_payment', $this); |
|
| 1425 | 1425 | |
| 1426 | - $decrease_store_earnings = apply_filters( 'give_decrease_store_earnings_on_refund', true, $this ); |
|
| 1427 | - $decrease_customer_value = apply_filters( 'give_decrease_customer_value_on_refund', true, $this ); |
|
| 1428 | - $decrease_purchase_count = apply_filters( 'give_decrease_customer_purchase_count_on_refund', true, $this ); |
|
| 1426 | + $decrease_store_earnings = apply_filters('give_decrease_store_earnings_on_refund', true, $this); |
|
| 1427 | + $decrease_customer_value = apply_filters('give_decrease_customer_value_on_refund', true, $this); |
|
| 1428 | + $decrease_purchase_count = apply_filters('give_decrease_customer_purchase_count_on_refund', true, $this); |
|
| 1429 | 1429 | |
| 1430 | - $this->maybe_alter_stats( $decrease_store_earnings, $decrease_customer_value, $decrease_purchase_count ); |
|
| 1430 | + $this->maybe_alter_stats($decrease_store_earnings, $decrease_customer_value, $decrease_purchase_count); |
|
| 1431 | 1431 | $this->delete_sales_logs(); |
| 1432 | 1432 | |
| 1433 | 1433 | // Clear the This Month earnings (this_monththis_month is NOT a typo) |
| 1434 | - delete_transient( md5( 'give_earnings_this_monththis_month' ) ); |
|
| 1434 | + delete_transient(md5('give_earnings_this_monththis_month')); |
|
| 1435 | 1435 | |
| 1436 | - do_action( 'give_post_refund_payment', $this ); |
|
| 1436 | + do_action('give_post_refund_payment', $this); |
|
| 1437 | 1437 | } |
| 1438 | 1438 | |
| 1439 | 1439 | /** |
@@ -1457,29 +1457,29 @@ discard block |
||
| 1457 | 1457 | $process_pending = true; |
| 1458 | 1458 | |
| 1459 | 1459 | // If the payment was not in publish or revoked status, don't decrement stats as they were never incremented |
| 1460 | - if ( ( 'publish' != $this->old_status && 'revoked' != $this->old_status ) || 'pending' != $this->status ) { |
|
| 1460 | + if (('publish' != $this->old_status && 'revoked' != $this->old_status) || 'pending' != $this->status) { |
|
| 1461 | 1461 | $process_pending = false; |
| 1462 | 1462 | } |
| 1463 | 1463 | |
| 1464 | 1464 | // Allow extensions to filter for their own payment types, Example: Recurring Payments |
| 1465 | - $process_pending = apply_filters( 'give_should_process_pending', $process_pending, $this ); |
|
| 1465 | + $process_pending = apply_filters('give_should_process_pending', $process_pending, $this); |
|
| 1466 | 1466 | |
| 1467 | - if ( false === $process_pending ) { |
|
| 1467 | + if (false === $process_pending) { |
|
| 1468 | 1468 | return; |
| 1469 | 1469 | } |
| 1470 | 1470 | |
| 1471 | - $decrease_store_earnings = apply_filters( 'give_decrease_store_earnings_on_pending', true, $this ); |
|
| 1472 | - $decrease_customer_value = apply_filters( 'give_decrease_customer_value_on_pending', true, $this ); |
|
| 1473 | - $decrease_purchase_count = apply_filters( 'give_decrease_customer_purchase_count_on_pending', true, $this ); |
|
| 1471 | + $decrease_store_earnings = apply_filters('give_decrease_store_earnings_on_pending', true, $this); |
|
| 1472 | + $decrease_customer_value = apply_filters('give_decrease_customer_value_on_pending', true, $this); |
|
| 1473 | + $decrease_purchase_count = apply_filters('give_decrease_customer_purchase_count_on_pending', true, $this); |
|
| 1474 | 1474 | |
| 1475 | - $this->maybe_alter_stats( $decrease_store_earnings, $decrease_customer_value, $decrease_purchase_count ); |
|
| 1475 | + $this->maybe_alter_stats($decrease_store_earnings, $decrease_customer_value, $decrease_purchase_count); |
|
| 1476 | 1476 | $this->delete_sales_logs(); |
| 1477 | 1477 | |
| 1478 | 1478 | $this->completed_date = false; |
| 1479 | - $this->update_meta( '_give_completed_date', '' ); |
|
| 1479 | + $this->update_meta('_give_completed_date', ''); |
|
| 1480 | 1480 | |
| 1481 | 1481 | // Clear the This Month earnings (this_monththis_month is NOT a typo) |
| 1482 | - delete_transient( md5( 'give_earnings_this_monththis_month' ) ); |
|
| 1482 | + delete_transient(md5('give_earnings_this_monththis_month')); |
|
| 1483 | 1483 | } |
| 1484 | 1484 | |
| 1485 | 1485 | /** |
@@ -1493,25 +1493,25 @@ discard block |
||
| 1493 | 1493 | * |
| 1494 | 1494 | * @return void |
| 1495 | 1495 | */ |
| 1496 | - private function maybe_alter_stats( $alter_store_earnings, $alter_customer_value, $alter_customer_purchase_count ) { |
|
| 1496 | + private function maybe_alter_stats($alter_store_earnings, $alter_customer_value, $alter_customer_purchase_count) { |
|
| 1497 | 1497 | |
| 1498 | - give_undo_purchase( false, $this->ID ); |
|
| 1498 | + give_undo_purchase(false, $this->ID); |
|
| 1499 | 1499 | |
| 1500 | 1500 | // Decrease store earnings |
| 1501 | - if ( true === $alter_store_earnings ) { |
|
| 1502 | - give_decrease_total_earnings( $this->total ); |
|
| 1501 | + if (true === $alter_store_earnings) { |
|
| 1502 | + give_decrease_total_earnings($this->total); |
|
| 1503 | 1503 | } |
| 1504 | 1504 | |
| 1505 | 1505 | // Decrement the stats for the customer |
| 1506 | - if ( ! empty( $this->customer_id ) ) { |
|
| 1506 | + if ( ! empty($this->customer_id)) { |
|
| 1507 | 1507 | |
| 1508 | - $customer = new Give_Customer( $this->customer_id ); |
|
| 1508 | + $customer = new Give_Customer($this->customer_id); |
|
| 1509 | 1509 | |
| 1510 | - if ( true === $alter_customer_value ) { |
|
| 1511 | - $customer->decrease_value( $this->total ); |
|
| 1510 | + if (true === $alter_customer_value) { |
|
| 1511 | + $customer->decrease_value($this->total); |
|
| 1512 | 1512 | } |
| 1513 | 1513 | |
| 1514 | - if ( true === $alter_customer_purchase_count ) { |
|
| 1514 | + if (true === $alter_customer_purchase_count) { |
|
| 1515 | 1515 | $customer->decrease_purchase_count(); |
| 1516 | 1516 | } |
| 1517 | 1517 | |
@@ -1557,13 +1557,13 @@ discard block |
||
| 1557 | 1557 | * @return string The date the payment was completed |
| 1558 | 1558 | */ |
| 1559 | 1559 | private function setup_completed_date() { |
| 1560 | - $payment = get_post( $this->ID ); |
|
| 1560 | + $payment = get_post($this->ID); |
|
| 1561 | 1561 | |
| 1562 | - if ( 'pending' == $payment->post_status || 'preapproved' == $payment->post_status ) { |
|
| 1562 | + if ('pending' == $payment->post_status || 'preapproved' == $payment->post_status) { |
|
| 1563 | 1563 | return false; // This payment was never completed |
| 1564 | 1564 | } |
| 1565 | 1565 | |
| 1566 | - $date = ( $date = $this->get_meta( '_give_completed_date', true ) ) ? $date : $payment->modified_date; |
|
| 1566 | + $date = ($date = $this->get_meta('_give_completed_date', true)) ? $date : $payment->modified_date; |
|
| 1567 | 1567 | |
| 1568 | 1568 | return $date; |
| 1569 | 1569 | } |
@@ -1575,7 +1575,7 @@ discard block |
||
| 1575 | 1575 | * @return string The payment mode |
| 1576 | 1576 | */ |
| 1577 | 1577 | private function setup_mode() { |
| 1578 | - return $this->get_meta( '_give_payment_mode' ); |
|
| 1578 | + return $this->get_meta('_give_payment_mode'); |
|
| 1579 | 1579 | } |
| 1580 | 1580 | |
| 1581 | 1581 | /** |
@@ -1585,13 +1585,13 @@ discard block |
||
| 1585 | 1585 | * @return float The payment total |
| 1586 | 1586 | */ |
| 1587 | 1587 | private function setup_total() { |
| 1588 | - $amount = $this->get_meta( '_give_payment_total', true ); |
|
| 1588 | + $amount = $this->get_meta('_give_payment_total', true); |
|
| 1589 | 1589 | |
| 1590 | - if ( empty( $amount ) && '0.00' != $amount ) { |
|
| 1591 | - $meta = $this->get_meta( '_give_payment_meta', true ); |
|
| 1592 | - $meta = maybe_unserialize( $meta ); |
|
| 1590 | + if (empty($amount) && '0.00' != $amount) { |
|
| 1591 | + $meta = $this->get_meta('_give_payment_meta', true); |
|
| 1592 | + $meta = maybe_unserialize($meta); |
|
| 1593 | 1593 | |
| 1594 | - if ( isset( $meta['amount'] ) ) { |
|
| 1594 | + if (isset($meta['amount'])) { |
|
| 1595 | 1595 | $amount = $meta['amount']; |
| 1596 | 1596 | } |
| 1597 | 1597 | } |
@@ -1620,9 +1620,9 @@ discard block |
||
| 1620 | 1620 | private function setup_fees_total() { |
| 1621 | 1621 | $fees_total = (float) 0.00; |
| 1622 | 1622 | |
| 1623 | - $payment_fees = isset( $this->payment_meta['fees'] ) ? $this->payment_meta['fees'] : array(); |
|
| 1624 | - if ( ! empty( $payment_fees ) ) { |
|
| 1625 | - foreach ( $payment_fees as $fee ) { |
|
| 1623 | + $payment_fees = isset($this->payment_meta['fees']) ? $this->payment_meta['fees'] : array(); |
|
| 1624 | + if ( ! empty($payment_fees)) { |
|
| 1625 | + foreach ($payment_fees as $fee) { |
|
| 1626 | 1626 | $fees_total += (float) $fee['amount']; |
| 1627 | 1627 | } |
| 1628 | 1628 | } |
@@ -1638,7 +1638,7 @@ discard block |
||
| 1638 | 1638 | * @return string The currency for the payment |
| 1639 | 1639 | */ |
| 1640 | 1640 | private function setup_currency() { |
| 1641 | - $currency = isset( $this->payment_meta['currency'] ) ? $this->payment_meta['currency'] : apply_filters( 'give_payment_currency_default', give_get_currency(), $this ); |
|
| 1641 | + $currency = isset($this->payment_meta['currency']) ? $this->payment_meta['currency'] : apply_filters('give_payment_currency_default', give_get_currency(), $this); |
|
| 1642 | 1642 | |
| 1643 | 1643 | return $currency; |
| 1644 | 1644 | } |
@@ -1650,7 +1650,7 @@ discard block |
||
| 1650 | 1650 | * @return array The Fees |
| 1651 | 1651 | */ |
| 1652 | 1652 | private function setup_fees() { |
| 1653 | - $payment_fees = isset( $this->payment_meta['fees'] ) ? $this->payment_meta['fees'] : array(); |
|
| 1653 | + $payment_fees = isset($this->payment_meta['fees']) ? $this->payment_meta['fees'] : array(); |
|
| 1654 | 1654 | |
| 1655 | 1655 | return $payment_fees; |
| 1656 | 1656 | } |
@@ -1662,7 +1662,7 @@ discard block |
||
| 1662 | 1662 | * @return string The gateway |
| 1663 | 1663 | */ |
| 1664 | 1664 | private function setup_gateway() { |
| 1665 | - $gateway = $this->get_meta( '_give_payment_gateway', true ); |
|
| 1665 | + $gateway = $this->get_meta('_give_payment_gateway', true); |
|
| 1666 | 1666 | |
| 1667 | 1667 | return $gateway; |
| 1668 | 1668 | } |
@@ -1674,12 +1674,12 @@ discard block |
||
| 1674 | 1674 | * @return string The transaction ID for the payment |
| 1675 | 1675 | */ |
| 1676 | 1676 | private function setup_transaction_id() { |
| 1677 | - $transaction_id = $this->get_meta( '_give_payment_transaction_id', true ); |
|
| 1677 | + $transaction_id = $this->get_meta('_give_payment_transaction_id', true); |
|
| 1678 | 1678 | |
| 1679 | - if ( empty( $transaction_id ) || (int) $transaction_id === (int) $this->ID ) { |
|
| 1679 | + if (empty($transaction_id) || (int) $transaction_id === (int) $this->ID) { |
|
| 1680 | 1680 | |
| 1681 | 1681 | $gateway = $this->gateway; |
| 1682 | - $transaction_id = apply_filters( 'give_get_payment_transaction_id-' . $gateway, $this->ID ); |
|
| 1682 | + $transaction_id = apply_filters('give_get_payment_transaction_id-'.$gateway, $this->ID); |
|
| 1683 | 1683 | |
| 1684 | 1684 | } |
| 1685 | 1685 | |
@@ -1693,7 +1693,7 @@ discard block |
||
| 1693 | 1693 | * @return string The IP address for the payment |
| 1694 | 1694 | */ |
| 1695 | 1695 | private function setup_ip() { |
| 1696 | - $ip = $this->get_meta( '_give_payment_user_ip', true ); |
|
| 1696 | + $ip = $this->get_meta('_give_payment_user_ip', true); |
|
| 1697 | 1697 | |
| 1698 | 1698 | return $ip; |
| 1699 | 1699 | } |
@@ -1705,7 +1705,7 @@ discard block |
||
| 1705 | 1705 | * @return int The Customer ID |
| 1706 | 1706 | */ |
| 1707 | 1707 | private function setup_customer_id() { |
| 1708 | - $customer_id = $this->get_meta( '_give_payment_customer_id', true ); |
|
| 1708 | + $customer_id = $this->get_meta('_give_payment_customer_id', true); |
|
| 1709 | 1709 | |
| 1710 | 1710 | return $customer_id; |
| 1711 | 1711 | } |
@@ -1717,7 +1717,7 @@ discard block |
||
| 1717 | 1717 | * @return int The User ID |
| 1718 | 1718 | */ |
| 1719 | 1719 | private function setup_user_id() { |
| 1720 | - $user_id = $this->get_meta( '_give_payment_user_id', true ); |
|
| 1720 | + $user_id = $this->get_meta('_give_payment_user_id', true); |
|
| 1721 | 1721 | |
| 1722 | 1722 | return $user_id; |
| 1723 | 1723 | } |
@@ -1729,10 +1729,10 @@ discard block |
||
| 1729 | 1729 | * @return string The email address for the payment |
| 1730 | 1730 | */ |
| 1731 | 1731 | private function setup_email() { |
| 1732 | - $email = $this->get_meta( '_give_payment_user_email', true ); |
|
| 1732 | + $email = $this->get_meta('_give_payment_user_email', true); |
|
| 1733 | 1733 | |
| 1734 | - if ( empty( $email ) ) { |
|
| 1735 | - $email = Give()->customers->get_column( 'email', $this->customer_id ); |
|
| 1734 | + if (empty($email)) { |
|
| 1735 | + $email = Give()->customers->get_column('email', $this->customer_id); |
|
| 1736 | 1736 | } |
| 1737 | 1737 | |
| 1738 | 1738 | return $email; |
@@ -1750,15 +1750,15 @@ discard block |
||
| 1750 | 1750 | 'last_name' => $this->last_name, |
| 1751 | 1751 | ); |
| 1752 | 1752 | |
| 1753 | - $user_info = isset( $this->payment_meta['user_info'] ) ? maybe_unserialize( $this->payment_meta['user_info'] ) : array(); |
|
| 1754 | - $user_info = wp_parse_args( $user_info, $defaults ); |
|
| 1753 | + $user_info = isset($this->payment_meta['user_info']) ? maybe_unserialize($this->payment_meta['user_info']) : array(); |
|
| 1754 | + $user_info = wp_parse_args($user_info, $defaults); |
|
| 1755 | 1755 | |
| 1756 | - if ( empty( $user_info ) ) { |
|
| 1756 | + if (empty($user_info)) { |
|
| 1757 | 1757 | // Get the customer, but only if it's been created |
| 1758 | - $customer = new Give_Customer( $this->customer_id ); |
|
| 1758 | + $customer = new Give_Customer($this->customer_id); |
|
| 1759 | 1759 | |
| 1760 | - if ( $customer->id > 0 ) { |
|
| 1761 | - $name = explode( ' ', $customer->name, 2 ); |
|
| 1760 | + if ($customer->id > 0) { |
|
| 1761 | + $name = explode(' ', $customer->name, 2); |
|
| 1762 | 1762 | $user_info = array( |
| 1763 | 1763 | 'first_name' => $name[0], |
| 1764 | 1764 | 'last_name' => $name[1], |
@@ -1768,29 +1768,29 @@ discard block |
||
| 1768 | 1768 | } |
| 1769 | 1769 | } else { |
| 1770 | 1770 | // Get the customer, but only if it's been created |
| 1771 | - $customer = new Give_Customer( $this->customer_id ); |
|
| 1772 | - if ( $customer->id > 0 ) { |
|
| 1773 | - foreach ( $user_info as $key => $value ) { |
|
| 1774 | - if ( ! empty( $value ) ) { |
|
| 1771 | + $customer = new Give_Customer($this->customer_id); |
|
| 1772 | + if ($customer->id > 0) { |
|
| 1773 | + foreach ($user_info as $key => $value) { |
|
| 1774 | + if ( ! empty($value)) { |
|
| 1775 | 1775 | continue; |
| 1776 | 1776 | } |
| 1777 | 1777 | |
| 1778 | - switch ( $key ) { |
|
| 1778 | + switch ($key) { |
|
| 1779 | 1779 | case 'first_name': |
| 1780 | - $name = explode( ' ', $customer->name, 2 ); |
|
| 1780 | + $name = explode(' ', $customer->name, 2); |
|
| 1781 | 1781 | |
| 1782 | - $user_info[ $key ] = $name[0]; |
|
| 1782 | + $user_info[$key] = $name[0]; |
|
| 1783 | 1783 | break; |
| 1784 | 1784 | |
| 1785 | 1785 | case 'last_name': |
| 1786 | - $name = explode( ' ', $customer->name, 2 ); |
|
| 1787 | - $last_name = ! empty( $name[1] ) ? $name[1] : ''; |
|
| 1786 | + $name = explode(' ', $customer->name, 2); |
|
| 1787 | + $last_name = ! empty($name[1]) ? $name[1] : ''; |
|
| 1788 | 1788 | |
| 1789 | - $user_info[ $key ] = $last_name; |
|
| 1789 | + $user_info[$key] = $last_name; |
|
| 1790 | 1790 | break; |
| 1791 | 1791 | |
| 1792 | 1792 | case 'email': |
| 1793 | - $user_info[ $key ] = $customer->email; |
|
| 1793 | + $user_info[$key] = $customer->email; |
|
| 1794 | 1794 | break; |
| 1795 | 1795 | } |
| 1796 | 1796 | } |
@@ -1810,7 +1810,7 @@ discard block |
||
| 1810 | 1810 | */ |
| 1811 | 1811 | private function setup_address() { |
| 1812 | 1812 | |
| 1813 | - $address = ! empty( $this->payment_meta['user_info']['address'] ) ? $this->payment_meta['user_info']['address'] : array( |
|
| 1813 | + $address = ! empty($this->payment_meta['user_info']['address']) ? $this->payment_meta['user_info']['address'] : array( |
|
| 1814 | 1814 | 'line1' => '', |
| 1815 | 1815 | 'line2' => '', |
| 1816 | 1816 | 'city' => '', |
@@ -1830,7 +1830,7 @@ discard block |
||
| 1830 | 1830 | */ |
| 1831 | 1831 | private function setup_form_title() { |
| 1832 | 1832 | |
| 1833 | - $form_id = $this->get_meta( '_give_payment_form_title', true ); |
|
| 1833 | + $form_id = $this->get_meta('_give_payment_form_title', true); |
|
| 1834 | 1834 | |
| 1835 | 1835 | return $form_id; |
| 1836 | 1836 | } |
@@ -1843,7 +1843,7 @@ discard block |
||
| 1843 | 1843 | */ |
| 1844 | 1844 | private function setup_form_id() { |
| 1845 | 1845 | |
| 1846 | - $form_id = $this->get_meta( '_give_payment_form_id', true ); |
|
| 1846 | + $form_id = $this->get_meta('_give_payment_form_id', true); |
|
| 1847 | 1847 | |
| 1848 | 1848 | return $form_id; |
| 1849 | 1849 | } |
@@ -1855,7 +1855,7 @@ discard block |
||
| 1855 | 1855 | * @return int The Form Price ID |
| 1856 | 1856 | */ |
| 1857 | 1857 | private function setup_price_id() { |
| 1858 | - $price_id = $this->get_meta( '_give_payment_price_id', true ); |
|
| 1858 | + $price_id = $this->get_meta('_give_payment_price_id', true); |
|
| 1859 | 1859 | |
| 1860 | 1860 | return $price_id; |
| 1861 | 1861 | } |
@@ -1867,7 +1867,7 @@ discard block |
||
| 1867 | 1867 | * @return string The Payment Key |
| 1868 | 1868 | */ |
| 1869 | 1869 | private function setup_payment_key() { |
| 1870 | - $key = $this->get_meta( '_give_payment_purchase_key', true ); |
|
| 1870 | + $key = $this->get_meta('_give_payment_purchase_key', true); |
|
| 1871 | 1871 | |
| 1872 | 1872 | return $key; |
| 1873 | 1873 | } |
@@ -1881,11 +1881,11 @@ discard block |
||
| 1881 | 1881 | private function setup_payment_number() { |
| 1882 | 1882 | $number = $this->ID; |
| 1883 | 1883 | |
| 1884 | - if ( give_get_option( 'enable_sequential' ) ) { |
|
| 1884 | + if (give_get_option('enable_sequential')) { |
|
| 1885 | 1885 | |
| 1886 | - $number = $this->get_meta( '_give_payment_number', true ); |
|
| 1886 | + $number = $this->get_meta('_give_payment_number', true); |
|
| 1887 | 1887 | |
| 1888 | - if ( ! $number ) { |
|
| 1888 | + if ( ! $number) { |
|
| 1889 | 1889 | |
| 1890 | 1890 | $number = $this->ID; |
| 1891 | 1891 | |
@@ -1902,7 +1902,7 @@ discard block |
||
| 1902 | 1902 | * @return array The payment object as an array |
| 1903 | 1903 | */ |
| 1904 | 1904 | public function array_convert() { |
| 1905 | - return get_object_vars( $this ); |
|
| 1905 | + return get_object_vars($this); |
|
| 1906 | 1906 | } |
| 1907 | 1907 | |
| 1908 | 1908 | /** |
@@ -1912,7 +1912,7 @@ discard block |
||
| 1912 | 1912 | * @return string Date payment was completed |
| 1913 | 1913 | */ |
| 1914 | 1914 | private function get_completed_date() { |
| 1915 | - return apply_filters( 'give_payment_completed_date', $this->completed_date, $this->ID, $this ); |
|
| 1915 | + return apply_filters('give_payment_completed_date', $this->completed_date, $this->ID, $this); |
|
| 1916 | 1916 | } |
| 1917 | 1917 | |
| 1918 | 1918 | /** |
@@ -1922,7 +1922,7 @@ discard block |
||
| 1922 | 1922 | * @return float Payment subtotal |
| 1923 | 1923 | */ |
| 1924 | 1924 | private function get_subtotal() { |
| 1925 | - return apply_filters( 'give_get_payment_subtotal', $this->subtotal, $this->ID, $this ); |
|
| 1925 | + return apply_filters('give_get_payment_subtotal', $this->subtotal, $this->ID, $this); |
|
| 1926 | 1926 | } |
| 1927 | 1927 | |
| 1928 | 1928 | /** |
@@ -1932,7 +1932,7 @@ discard block |
||
| 1932 | 1932 | * @return string Payment currency code |
| 1933 | 1933 | */ |
| 1934 | 1934 | private function get_currency() { |
| 1935 | - return apply_filters( 'give_payment_currency_code', $this->currency, $this->ID, $this ); |
|
| 1935 | + return apply_filters('give_payment_currency_code', $this->currency, $this->ID, $this); |
|
| 1936 | 1936 | } |
| 1937 | 1937 | |
| 1938 | 1938 | /** |
@@ -1942,7 +1942,7 @@ discard block |
||
| 1942 | 1942 | * @return string Gateway used |
| 1943 | 1943 | */ |
| 1944 | 1944 | private function get_gateway() { |
| 1945 | - return apply_filters( 'give_payment_gateway', $this->gateway, $this->ID, $this ); |
|
| 1945 | + return apply_filters('give_payment_gateway', $this->gateway, $this->ID, $this); |
|
| 1946 | 1946 | } |
| 1947 | 1947 | |
| 1948 | 1948 | /** |
@@ -1952,7 +1952,7 @@ discard block |
||
| 1952 | 1952 | * @return string Transaction ID from merchant processor |
| 1953 | 1953 | */ |
| 1954 | 1954 | private function get_transaction_id() { |
| 1955 | - return apply_filters( 'give_get_payment_transaction_id', $this->transaction_id, $this->ID, $this ); |
|
| 1955 | + return apply_filters('give_get_payment_transaction_id', $this->transaction_id, $this->ID, $this); |
|
| 1956 | 1956 | } |
| 1957 | 1957 | |
| 1958 | 1958 | /** |
@@ -1962,7 +1962,7 @@ discard block |
||
| 1962 | 1962 | * @return string Payment IP address |
| 1963 | 1963 | */ |
| 1964 | 1964 | private function get_ip() { |
| 1965 | - return apply_filters( 'give_payment_user_ip', $this->ip, $this->ID, $this ); |
|
| 1965 | + return apply_filters('give_payment_user_ip', $this->ip, $this->ID, $this); |
|
| 1966 | 1966 | } |
| 1967 | 1967 | |
| 1968 | 1968 | /** |
@@ -1972,7 +1972,7 @@ discard block |
||
| 1972 | 1972 | * @return int Payment customer ID |
| 1973 | 1973 | */ |
| 1974 | 1974 | private function get_customer_id() { |
| 1975 | - return apply_filters( 'give_payment_customer_id', $this->customer_id, $this->ID, $this ); |
|
| 1975 | + return apply_filters('give_payment_customer_id', $this->customer_id, $this->ID, $this); |
|
| 1976 | 1976 | } |
| 1977 | 1977 | |
| 1978 | 1978 | /** |
@@ -1982,7 +1982,7 @@ discard block |
||
| 1982 | 1982 | * @return int Payment user ID |
| 1983 | 1983 | */ |
| 1984 | 1984 | private function get_user_id() { |
| 1985 | - return apply_filters( 'give_payment_user_id', $this->user_id, $this->ID, $this ); |
|
| 1985 | + return apply_filters('give_payment_user_id', $this->user_id, $this->ID, $this); |
|
| 1986 | 1986 | } |
| 1987 | 1987 | |
| 1988 | 1988 | /** |
@@ -1992,7 +1992,7 @@ discard block |
||
| 1992 | 1992 | * @return string Payment customer email |
| 1993 | 1993 | */ |
| 1994 | 1994 | private function get_email() { |
| 1995 | - return apply_filters( 'give_payment_user_email', $this->email, $this->ID, $this ); |
|
| 1995 | + return apply_filters('give_payment_user_email', $this->email, $this->ID, $this); |
|
| 1996 | 1996 | } |
| 1997 | 1997 | |
| 1998 | 1998 | /** |
@@ -2002,7 +2002,7 @@ discard block |
||
| 2002 | 2002 | * @return array Payment user info |
| 2003 | 2003 | */ |
| 2004 | 2004 | private function get_user_info() { |
| 2005 | - return apply_filters( 'give_payment_meta_user_info', $this->user_info, $this->ID, $this ); |
|
| 2005 | + return apply_filters('give_payment_meta_user_info', $this->user_info, $this->ID, $this); |
|
| 2006 | 2006 | } |
| 2007 | 2007 | |
| 2008 | 2008 | /** |
@@ -2012,7 +2012,7 @@ discard block |
||
| 2012 | 2012 | * @return array Payment billing address |
| 2013 | 2013 | */ |
| 2014 | 2014 | private function get_address() { |
| 2015 | - return apply_filters( 'give_payment_address', $this->address, $this->ID, $this ); |
|
| 2015 | + return apply_filters('give_payment_address', $this->address, $this->ID, $this); |
|
| 2016 | 2016 | } |
| 2017 | 2017 | |
| 2018 | 2018 | /** |
@@ -2022,7 +2022,7 @@ discard block |
||
| 2022 | 2022 | * @return string Payment key |
| 2023 | 2023 | */ |
| 2024 | 2024 | private function get_key() { |
| 2025 | - return apply_filters( 'give_payment_key', $this->key, $this->ID, $this ); |
|
| 2025 | + return apply_filters('give_payment_key', $this->key, $this->ID, $this); |
|
| 2026 | 2026 | } |
| 2027 | 2027 | |
| 2028 | 2028 | /** |
@@ -2032,7 +2032,7 @@ discard block |
||
| 2032 | 2032 | * @return string Payment key |
| 2033 | 2033 | */ |
| 2034 | 2034 | private function get_form_id() { |
| 2035 | - return apply_filters( 'give_payment_form_id', $this->form_id, $this->ID, $this ); |
|
| 2035 | + return apply_filters('give_payment_form_id', $this->form_id, $this->ID, $this); |
|
| 2036 | 2036 | } |
| 2037 | 2037 | |
| 2038 | 2038 | /** |
@@ -2042,7 +2042,7 @@ discard block |
||
| 2042 | 2042 | * @return int|string Payment number |
| 2043 | 2043 | */ |
| 2044 | 2044 | private function get_number() { |
| 2045 | - return apply_filters( 'give_payment_number', $this->number, $this->ID, $this ); |
|
| 2045 | + return apply_filters('give_payment_number', $this->number, $this->ID, $this); |
|
| 2046 | 2046 | } |
| 2047 | 2047 | |
| 2048 | 2048 | } |