@@ -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 | |
@@ -25,14 +25,14 @@ discard block |
||
| 25 | 25 | */ |
| 26 | 26 | function give_get_actions() { |
| 27 | 27 | |
| 28 | - $_get_action = ! empty( $_GET['give_action'] ) ? $_GET['give_action'] : null; |
|
| 28 | + $_get_action = ! empty($_GET['give_action']) ? $_GET['give_action'] : null; |
|
| 29 | 29 | |
| 30 | 30 | // Add backward compatibility to give-action param ( $_GET ) |
| 31 | - if( empty( $_get_action ) ) { |
|
| 32 | - $_get_action = ! empty( $_GET['give-action'] ) ? $_GET['give-action'] : null; |
|
| 31 | + if (empty($_get_action)) { |
|
| 32 | + $_get_action = ! empty($_GET['give-action']) ? $_GET['give-action'] : null; |
|
| 33 | 33 | } |
| 34 | 34 | |
| 35 | - if ( isset( $_get_action ) ) { |
|
| 35 | + if (isset($_get_action)) { |
|
| 36 | 36 | /** |
| 37 | 37 | * Fires in WordPress init or admin init, when give_action is present in $_GET. |
| 38 | 38 | * |
@@ -40,12 +40,12 @@ discard block |
||
| 40 | 40 | * |
| 41 | 41 | * @param array $_GET Array of HTTP GET variables. |
| 42 | 42 | */ |
| 43 | - do_action( "give_{$_get_action}", $_GET ); |
|
| 43 | + do_action("give_{$_get_action}", $_GET); |
|
| 44 | 44 | } |
| 45 | 45 | |
| 46 | 46 | } |
| 47 | 47 | |
| 48 | -add_action( 'init', 'give_get_actions' ); |
|
| 48 | +add_action('init', 'give_get_actions'); |
|
| 49 | 49 | |
| 50 | 50 | /** |
| 51 | 51 | * Hooks Give actions, when present in the $_POST super global. Every give_action |
@@ -58,15 +58,15 @@ discard block |
||
| 58 | 58 | */ |
| 59 | 59 | function give_post_actions() { |
| 60 | 60 | |
| 61 | - $_post_action = ! empty( $_POST['give_action'] ) ? $_POST['give_action'] : null; |
|
| 61 | + $_post_action = ! empty($_POST['give_action']) ? $_POST['give_action'] : null; |
|
| 62 | 62 | |
| 63 | 63 | |
| 64 | 64 | // Add backward compatibility to give-action param ( $_POST ). |
| 65 | - if( empty( $_post_action ) ) { |
|
| 66 | - $_post_action = ! empty( $_POST['give-action'] ) ? $_POST['give-action'] : null; |
|
| 65 | + if (empty($_post_action)) { |
|
| 66 | + $_post_action = ! empty($_POST['give-action']) ? $_POST['give-action'] : null; |
|
| 67 | 67 | } |
| 68 | 68 | |
| 69 | - if ( isset( $_post_action ) ) { |
|
| 69 | + if (isset($_post_action)) { |
|
| 70 | 70 | /** |
| 71 | 71 | * Fires in WordPress init or admin init, when give_action is present in $_POST. |
| 72 | 72 | * |
@@ -74,12 +74,12 @@ discard block |
||
| 74 | 74 | * |
| 75 | 75 | * @param array $_POST Array of HTTP POST variables. |
| 76 | 76 | */ |
| 77 | - do_action( "give_{$_post_action}", $_POST ); |
|
| 77 | + do_action("give_{$_post_action}", $_POST); |
|
| 78 | 78 | } |
| 79 | 79 | |
| 80 | 80 | } |
| 81 | 81 | |
| 82 | -add_action( 'init', 'give_post_actions' ); |
|
| 82 | +add_action('init', 'give_post_actions'); |
|
| 83 | 83 | |
| 84 | 84 | /** |
| 85 | 85 | * Connect WordPress user with Donor. |
@@ -89,28 +89,28 @@ discard block |
||
| 89 | 89 | * @param array $user_data User Data |
| 90 | 90 | * @return void |
| 91 | 91 | */ |
| 92 | -function give_connect_donor_to_wpuser( $user_id, $user_data ){ |
|
| 92 | +function give_connect_donor_to_wpuser($user_id, $user_data) { |
|
| 93 | 93 | /* @var Give_Donor $donor */ |
| 94 | - $donor = new Give_Donor( $user_data['user_email'] ); |
|
| 94 | + $donor = new Give_Donor($user_data['user_email']); |
|
| 95 | 95 | |
| 96 | 96 | // Validate donor id and check if do nor is already connect to wp user or not. |
| 97 | - if( $donor->id && ! $donor->user_id ) { |
|
| 97 | + if ($donor->id && ! $donor->user_id) { |
|
| 98 | 98 | |
| 99 | 99 | // Update donor user_id. |
| 100 | - if( $donor->update( array( 'user_id' => $user_id ) ) ) { |
|
| 101 | - $donor_note = sprintf( esc_html__( 'WordPress user #%d is connected to #%d', 'give' ), $user_id, $donor->id ); |
|
| 102 | - $donor->add_note( $donor_note ); |
|
| 100 | + if ($donor->update(array('user_id' => $user_id))) { |
|
| 101 | + $donor_note = sprintf(esc_html__('WordPress user #%d is connected to #%d', 'give'), $user_id, $donor->id); |
|
| 102 | + $donor->add_note($donor_note); |
|
| 103 | 103 | |
| 104 | 104 | // Update user_id meta in payments. |
| 105 | - if( ! empty( $donor->payment_ids ) && ( $donations = explode( ',', $donor->payment_ids ) ) ) { |
|
| 106 | - foreach ( $donations as $donation ) { |
|
| 107 | - give_update_meta( $donation, '_give_payment_user_id', $user_id ); |
|
| 105 | + if ( ! empty($donor->payment_ids) && ($donations = explode(',', $donor->payment_ids))) { |
|
| 106 | + foreach ($donations as $donation) { |
|
| 107 | + give_update_meta($donation, '_give_payment_user_id', $user_id); |
|
| 108 | 108 | } |
| 109 | 109 | } |
| 110 | 110 | } |
| 111 | 111 | } |
| 112 | 112 | } |
| 113 | -add_action( 'give_insert_user', 'give_connect_donor_to_wpuser', 10, 2 ); |
|
| 113 | +add_action('give_insert_user', 'give_connect_donor_to_wpuser', 10, 2); |
|
| 114 | 114 | |
| 115 | 115 | |
| 116 | 116 | /** |
@@ -124,24 +124,24 @@ discard block |
||
| 124 | 124 | function give_validate_license_when_site_migrated() { |
| 125 | 125 | // Store current site address if not already stored. |
| 126 | 126 | $homeurl = home_url(); |
| 127 | - if( ! get_option( 'give_site_address_before_migrate' ) ) { |
|
| 127 | + if ( ! get_option('give_site_address_before_migrate')) { |
|
| 128 | 128 | // Update site address. |
| 129 | - update_option( 'give_site_address_before_migrate', $homeurl ); |
|
| 129 | + update_option('give_site_address_before_migrate', $homeurl); |
|
| 130 | 130 | |
| 131 | 131 | return; |
| 132 | 132 | } |
| 133 | 133 | |
| 134 | - if( $homeurl !== get_option( 'give_site_address_before_migrate' ) ) { |
|
| 134 | + if ($homeurl !== get_option('give_site_address_before_migrate')) { |
|
| 135 | 135 | // Immediately run cron. |
| 136 | - wp_schedule_single_event( time() , 'give_validate_license_when_site_migrated' ); |
|
| 136 | + wp_schedule_single_event(time(), 'give_validate_license_when_site_migrated'); |
|
| 137 | 137 | |
| 138 | 138 | // Update site address. |
| 139 | - update_option( 'give_site_address_before_migrate', home_url() ); |
|
| 139 | + update_option('give_site_address_before_migrate', home_url()); |
|
| 140 | 140 | } |
| 141 | 141 | |
| 142 | 142 | } |
| 143 | -add_action( 'init', 'give_validate_license_when_site_migrated' ); |
|
| 144 | -add_action( 'admin_init', 'give_validate_license_when_site_migrated' ); |
|
| 143 | +add_action('init', 'give_validate_license_when_site_migrated'); |
|
| 144 | +add_action('admin_init', 'give_validate_license_when_site_migrated'); |
|
| 145 | 145 | |
| 146 | 146 | |
| 147 | 147 | /** |
@@ -150,18 +150,18 @@ discard block |
||
| 150 | 150 | * @since 1.8 |
| 151 | 151 | * @param $data |
| 152 | 152 | */ |
| 153 | -function give_donor_batch_export_complete( $data ) { |
|
| 153 | +function give_donor_batch_export_complete($data) { |
|
| 154 | 154 | // Remove donor ids cache. |
| 155 | - if( |
|
| 156 | - isset( $data['class'] ) |
|
| 155 | + if ( |
|
| 156 | + isset($data['class']) |
|
| 157 | 157 | && 'Give_Batch_Donors_Export' === $data['class'] |
| 158 | - && ! empty( $data['forms'] ) |
|
| 159 | - && isset( $data['give_export_option']['query_id'] ) |
|
| 158 | + && ! empty($data['forms']) |
|
| 159 | + && isset($data['give_export_option']['query_id']) |
|
| 160 | 160 | ) { |
| 161 | - Give_Cache::delete( Give_Cache::get_key( $data['give_export_option']['query_id'] ) ); |
|
| 161 | + Give_Cache::delete(Give_Cache::get_key($data['give_export_option']['query_id'])); |
|
| 162 | 162 | } |
| 163 | 163 | } |
| 164 | -add_action('give_file_export_complete', 'give_donor_batch_export_complete' ); |
|
| 164 | +add_action('give_file_export_complete', 'give_donor_batch_export_complete'); |
|
| 165 | 165 | |
| 166 | 166 | /** |
| 167 | 167 | * Print css for wordpress setting pages. |
@@ -172,12 +172,12 @@ discard block |
||
| 172 | 172 | /* @var WP_Screen $screen */ |
| 173 | 173 | $screen = get_current_screen(); |
| 174 | 174 | |
| 175 | - if( ! ( $screen instanceof WP_Screen ) ) { |
|
| 175 | + if ( ! ($screen instanceof WP_Screen)) { |
|
| 176 | 176 | return false; |
| 177 | 177 | } |
| 178 | 178 | |
| 179 | - switch ( true ) { |
|
| 180 | - case ( 'plugins' === $screen->base || 'plugins-network' === $screen->base ): |
|
| 179 | + switch (true) { |
|
| 180 | + case ('plugins' === $screen->base || 'plugins-network' === $screen->base): |
|
| 181 | 181 | ?> |
| 182 | 182 | <style> |
| 183 | 183 | tr.active.update + tr.give-addon-notice-tr td{ |
@@ -210,7 +210,7 @@ discard block |
||
| 210 | 210 | <?php |
| 211 | 211 | } |
| 212 | 212 | } |
| 213 | -add_action( 'admin_head', 'give_admin_quick_css' ); |
|
| 213 | +add_action('admin_head', 'give_admin_quick_css'); |
|
| 214 | 214 | |
| 215 | 215 | |
| 216 | 216 | /** |
@@ -223,28 +223,28 @@ discard block |
||
| 223 | 223 | * |
| 224 | 224 | * @return void |
| 225 | 225 | */ |
| 226 | -function give_set_donation_levels_max_min_amount( $form_id ) { |
|
| 226 | +function give_set_donation_levels_max_min_amount($form_id) { |
|
| 227 | 227 | if ( |
| 228 | - ( 'set' === $_POST['_give_price_option'] ) || |
|
| 229 | - ( in_array( '_give_donation_levels', $_POST ) && count( $_POST['_give_donation_levels'] ) <= 0 ) || |
|
| 230 | - ! ( $donation_levels_amounts = wp_list_pluck( $_POST['_give_donation_levels'], '_give_amount' ) ) |
|
| 228 | + ('set' === $_POST['_give_price_option']) || |
|
| 229 | + (in_array('_give_donation_levels', $_POST) && count($_POST['_give_donation_levels']) <= 0) || |
|
| 230 | + ! ($donation_levels_amounts = wp_list_pluck($_POST['_give_donation_levels'], '_give_amount')) |
|
| 231 | 231 | ) { |
| 232 | 232 | // Delete old meta. |
| 233 | - give_delete_meta( $form_id, '_give_levels_minimum_amount' ); |
|
| 234 | - give_delete_meta( $form_id, '_give_levels_maximum_amount' ); |
|
| 233 | + give_delete_meta($form_id, '_give_levels_minimum_amount'); |
|
| 234 | + give_delete_meta($form_id, '_give_levels_maximum_amount'); |
|
| 235 | 235 | |
| 236 | 236 | return; |
| 237 | 237 | } |
| 238 | 238 | |
| 239 | 239 | // Sanitize donation level amounts. |
| 240 | - $donation_levels_amounts = array_map( 'give_maybe_sanitize_amount', $donation_levels_amounts ); |
|
| 240 | + $donation_levels_amounts = array_map('give_maybe_sanitize_amount', $donation_levels_amounts); |
|
| 241 | 241 | |
| 242 | - $min_amount = min( $donation_levels_amounts ); |
|
| 243 | - $max_amount = max( $donation_levels_amounts ); |
|
| 242 | + $min_amount = min($donation_levels_amounts); |
|
| 243 | + $max_amount = max($donation_levels_amounts); |
|
| 244 | 244 | |
| 245 | 245 | // Set Minimum and Maximum amount for Multi Level Donation Forms |
| 246 | - give_update_meta( $form_id, '_give_levels_minimum_amount', $min_amount ? give_sanitize_amount_for_db( $min_amount ) : 0 ); |
|
| 247 | - give_update_meta( $form_id, '_give_levels_maximum_amount', $max_amount? give_sanitize_amount_for_db( $max_amount ) : 0 ); |
|
| 246 | + give_update_meta($form_id, '_give_levels_minimum_amount', $min_amount ? give_sanitize_amount_for_db($min_amount) : 0); |
|
| 247 | + give_update_meta($form_id, '_give_levels_maximum_amount', $max_amount ? give_sanitize_amount_for_db($max_amount) : 0); |
|
| 248 | 248 | } |
| 249 | 249 | |
| 250 | -add_action( 'give_pre_process_give_forms_meta', 'give_set_donation_levels_max_min_amount', 30 ); |
|
| 251 | 250 | \ No newline at end of file |
| 251 | +add_action('give_pre_process_give_forms_meta', 'give_set_donation_levels_max_min_amount', 30); |
|
| 252 | 252 | \ No newline at end of file |