@@ -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 | |
@@ -25,18 +25,18 @@ discard block |
||
| 25 | 25 | */ |
| 26 | 26 | function give_show_upgrade_notices() { |
| 27 | 27 | |
| 28 | - if ( isset( $_GET['page'] ) && $_GET['page'] == 'give-upgrades' ) { |
|
| 28 | + if (isset($_GET['page']) && $_GET['page'] == 'give-upgrades') { |
|
| 29 | 29 | return; |
| 30 | 30 | } // Don't show notices on the upgrades page |
| 31 | 31 | |
| 32 | - $give_version = get_option( 'give_version' ); |
|
| 32 | + $give_version = get_option('give_version'); |
|
| 33 | 33 | |
| 34 | - if ( ! $give_version ) { |
|
| 34 | + if ( ! $give_version) { |
|
| 35 | 35 | // 1.0 is the first version to use this option so we must add it |
| 36 | 36 | $give_version = '1.0'; |
| 37 | 37 | } |
| 38 | 38 | |
| 39 | - $give_version = preg_replace( '/[^0-9.].*/', '', $give_version ); |
|
| 39 | + $give_version = preg_replace('/[^0-9.].*/', '', $give_version); |
|
| 40 | 40 | |
| 41 | 41 | /* |
| 42 | 42 | * NOTICE: |
@@ -47,18 +47,18 @@ discard block |
||
| 47 | 47 | */ |
| 48 | 48 | |
| 49 | 49 | //v1.3.2 Upgrades |
| 50 | - if ( version_compare( $give_version, '1.3.2', '<' ) || ! give_has_upgrade_completed( 'upgrade_give_payment_customer_id' ) ) { |
|
| 50 | + if (version_compare($give_version, '1.3.2', '<') || ! give_has_upgrade_completed('upgrade_give_payment_customer_id')) { |
|
| 51 | 51 | printf( |
| 52 | - '<div class="updated"><p>' . __( 'Give needs to upgrade the donor database, click <a href="%s">here</a> to start the upgrade.', 'give' ) . '</p></div>', |
|
| 53 | - esc_url( admin_url( 'index.php?page=give-upgrades&give-upgrade=upgrade_give_payment_customer_id' ) ) |
|
| 52 | + '<div class="updated"><p>'.__('Give needs to upgrade the donor database, click <a href="%s">here</a> to start the upgrade.', 'give').'</p></div>', |
|
| 53 | + esc_url(admin_url('index.php?page=give-upgrades&give-upgrade=upgrade_give_payment_customer_id')) |
|
| 54 | 54 | ); |
| 55 | 55 | } |
| 56 | 56 | |
| 57 | 57 | //v1.3.4 Upgrades //ensure the user has gone through 1.3.4 |
| 58 | - if ( version_compare( $give_version, '1.3.4', '<' ) || ( ! give_has_upgrade_completed( 'upgrade_give_offline_status' ) && give_has_upgrade_completed( 'upgrade_give_payment_customer_id' ) ) ) { |
|
| 58 | + if (version_compare($give_version, '1.3.4', '<') || ( ! give_has_upgrade_completed('upgrade_give_offline_status') && give_has_upgrade_completed('upgrade_give_payment_customer_id'))) { |
|
| 59 | 59 | printf( |
| 60 | - '<div class="updated"><p>' . __( 'Give needs to upgrade the transaction database, click <a href="%s">here</a> to start the upgrade.', 'give' ) . '</p></div>', |
|
| 61 | - esc_url( admin_url( 'index.php?page=give-upgrades&give-upgrade=upgrade_give_offline_status' ) ) |
|
| 60 | + '<div class="updated"><p>'.__('Give needs to upgrade the transaction database, click <a href="%s">here</a> to start the upgrade.', 'give').'</p></div>', |
|
| 61 | + esc_url(admin_url('index.php?page=give-upgrades&give-upgrade=upgrade_give_offline_status')) |
|
| 62 | 62 | ); |
| 63 | 63 | } |
| 64 | 64 | |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | |
| 69 | 69 | } |
| 70 | 70 | |
| 71 | -add_action( 'admin_notices', 'give_show_upgrade_notices' ); |
|
| 71 | +add_action('admin_notices', 'give_show_upgrade_notices'); |
|
| 72 | 72 | |
| 73 | 73 | /** |
| 74 | 74 | * Triggers all upgrade functions |
@@ -80,26 +80,26 @@ discard block |
||
| 80 | 80 | */ |
| 81 | 81 | function give_trigger_upgrades() { |
| 82 | 82 | |
| 83 | - if ( ! current_user_can( 'manage_give_settings' ) ) { |
|
| 84 | - wp_die( __( 'You do not have permission to do Give upgrades', 'give' ), __( 'Error', 'give' ), array( 'response' => 403 ) ); |
|
| 83 | + if ( ! current_user_can('manage_give_settings')) { |
|
| 84 | + wp_die(__('You do not have permission to do Give upgrades', 'give'), __('Error', 'give'), array('response' => 403)); |
|
| 85 | 85 | } |
| 86 | 86 | |
| 87 | - $give_version = get_option( 'give_version' ); |
|
| 87 | + $give_version = get_option('give_version'); |
|
| 88 | 88 | |
| 89 | - if ( ! $give_version ) { |
|
| 89 | + if ( ! $give_version) { |
|
| 90 | 90 | // 1.0 is the first version to use this option so we must add it |
| 91 | 91 | $give_version = '1.0'; |
| 92 | - add_option( 'give_version', $give_version ); |
|
| 92 | + add_option('give_version', $give_version); |
|
| 93 | 93 | } |
| 94 | 94 | |
| 95 | - update_option( 'give_version', GIVE_VERSION ); |
|
| 95 | + update_option('give_version', GIVE_VERSION); |
|
| 96 | 96 | |
| 97 | - if ( DOING_AJAX ) { |
|
| 98 | - die( 'complete' ); |
|
| 97 | + if (DOING_AJAX) { |
|
| 98 | + die('complete'); |
|
| 99 | 99 | } // Let AJAX know that the upgrade is complete |
| 100 | 100 | } |
| 101 | 101 | |
| 102 | -add_action( 'wp_ajax_give_trigger_upgrades', 'give_trigger_upgrades' ); |
|
| 102 | +add_action('wp_ajax_give_trigger_upgrades', 'give_trigger_upgrades'); |
|
| 103 | 103 | |
| 104 | 104 | /** |
| 105 | 105 | * Check if the upgrade routine has been run for a specific action |
@@ -110,15 +110,15 @@ discard block |
||
| 110 | 110 | * |
| 111 | 111 | * @return bool If the action has been added to the completed actions array |
| 112 | 112 | */ |
| 113 | -function give_has_upgrade_completed( $upgrade_action = '' ) { |
|
| 113 | +function give_has_upgrade_completed($upgrade_action = '') { |
|
| 114 | 114 | |
| 115 | - if ( empty( $upgrade_action ) ) { |
|
| 115 | + if (empty($upgrade_action)) { |
|
| 116 | 116 | return false; |
| 117 | 117 | } |
| 118 | 118 | |
| 119 | 119 | $completed_upgrades = give_get_completed_upgrades(); |
| 120 | 120 | |
| 121 | - return in_array( $upgrade_action, $completed_upgrades ); |
|
| 121 | + return in_array($upgrade_action, $completed_upgrades); |
|
| 122 | 122 | |
| 123 | 123 | } |
| 124 | 124 | |
@@ -131,9 +131,9 @@ discard block |
||
| 131 | 131 | * |
| 132 | 132 | * @return bool If the function was successfully added |
| 133 | 133 | */ |
| 134 | -function give_set_upgrade_complete( $upgrade_action = '' ) { |
|
| 134 | +function give_set_upgrade_complete($upgrade_action = '') { |
|
| 135 | 135 | |
| 136 | - if ( empty( $upgrade_action ) ) { |
|
| 136 | + if (empty($upgrade_action)) { |
|
| 137 | 137 | return false; |
| 138 | 138 | } |
| 139 | 139 | |
@@ -141,9 +141,9 @@ discard block |
||
| 141 | 141 | $completed_upgrades[] = $upgrade_action; |
| 142 | 142 | |
| 143 | 143 | // Remove any blanks, and only show uniques |
| 144 | - $completed_upgrades = array_unique( array_values( $completed_upgrades ) ); |
|
| 144 | + $completed_upgrades = array_unique(array_values($completed_upgrades)); |
|
| 145 | 145 | |
| 146 | - return update_option( 'give_completed_upgrades', $completed_upgrades ); |
|
| 146 | + return update_option('give_completed_upgrades', $completed_upgrades); |
|
| 147 | 147 | } |
| 148 | 148 | |
| 149 | 149 | /** |
@@ -154,9 +154,9 @@ discard block |
||
| 154 | 154 | */ |
| 155 | 155 | function give_get_completed_upgrades() { |
| 156 | 156 | |
| 157 | - $completed_upgrades = get_option( 'give_completed_upgrades' ); |
|
| 157 | + $completed_upgrades = get_option('give_completed_upgrades'); |
|
| 158 | 158 | |
| 159 | - if ( false === $completed_upgrades ) { |
|
| 159 | + if (false === $completed_upgrades) { |
|
| 160 | 160 | $completed_upgrades = array(); |
| 161 | 161 | } |
| 162 | 162 | |
@@ -175,30 +175,30 @@ discard block |
||
| 175 | 175 | */ |
| 176 | 176 | function give_v132_upgrade_give_payment_customer_id() { |
| 177 | 177 | global $wpdb; |
| 178 | - if ( ! current_user_can( 'manage_give_settings' ) ) { |
|
| 179 | - wp_die( __( 'You do not have permission to do Give upgrades', 'give' ), __( 'Error', 'give' ), array( 'response' => 403 ) ); |
|
| 178 | + if ( ! current_user_can('manage_give_settings')) { |
|
| 179 | + wp_die(__('You do not have permission to do Give upgrades', 'give'), __('Error', 'give'), array('response' => 403)); |
|
| 180 | 180 | } |
| 181 | 181 | |
| 182 | - ignore_user_abort( true ); |
|
| 182 | + ignore_user_abort(true); |
|
| 183 | 183 | |
| 184 | - if ( ! give_is_func_disabled( 'set_time_limit' ) && ! ini_get( 'safe_mode' ) ) { |
|
| 185 | - @set_time_limit( 0 ); |
|
| 184 | + if ( ! give_is_func_disabled('set_time_limit') && ! ini_get('safe_mode')) { |
|
| 185 | + @set_time_limit(0); |
|
| 186 | 186 | } |
| 187 | 187 | |
| 188 | 188 | //UPDATE DB METAKEYS |
| 189 | 189 | $sql = "UPDATE $wpdb->postmeta SET meta_key = '_give_payment_customer_id' WHERE meta_key = '_give_payment_donor_id'"; |
| 190 | - $query = $wpdb->query( $sql ); |
|
| 190 | + $query = $wpdb->query($sql); |
|
| 191 | 191 | |
| 192 | - update_option( 'give_version', preg_replace( '/[^0-9.].*/', '', GIVE_VERSION ) ); |
|
| 193 | - give_set_upgrade_complete( 'upgrade_give_payment_customer_id' ); |
|
| 194 | - delete_option( 'give_doing_upgrade' ); |
|
| 195 | - wp_redirect( admin_url() ); |
|
| 192 | + update_option('give_version', preg_replace('/[^0-9.].*/', '', GIVE_VERSION)); |
|
| 193 | + give_set_upgrade_complete('upgrade_give_payment_customer_id'); |
|
| 194 | + delete_option('give_doing_upgrade'); |
|
| 195 | + wp_redirect(admin_url()); |
|
| 196 | 196 | exit; |
| 197 | 197 | |
| 198 | 198 | |
| 199 | 199 | } |
| 200 | 200 | |
| 201 | -add_action( 'give_upgrade_give_payment_customer_id', 'give_v132_upgrade_give_payment_customer_id' ); |
|
| 201 | +add_action('give_upgrade_give_payment_customer_id', 'give_v132_upgrade_give_payment_customer_id'); |
|
| 202 | 202 | |
| 203 | 203 | /** |
| 204 | 204 | * Upgrades the Offline Status |
@@ -212,14 +212,14 @@ discard block |
||
| 212 | 212 | |
| 213 | 213 | global $wpdb; |
| 214 | 214 | |
| 215 | - if ( ! current_user_can( 'manage_give_settings' ) ) { |
|
| 216 | - wp_die( __( 'You do not have permission to do Give upgrades', 'give' ), __( 'Error', 'give' ), array( 'response' => 403 ) ); |
|
| 215 | + if ( ! current_user_can('manage_give_settings')) { |
|
| 216 | + wp_die(__('You do not have permission to do Give upgrades', 'give'), __('Error', 'give'), array('response' => 403)); |
|
| 217 | 217 | } |
| 218 | 218 | |
| 219 | - ignore_user_abort( true ); |
|
| 219 | + ignore_user_abort(true); |
|
| 220 | 220 | |
| 221 | - if ( ! give_is_func_disabled( 'set_time_limit' ) && ! ini_get( 'safe_mode' ) ) { |
|
| 222 | - @set_time_limit( 0 ); |
|
| 221 | + if ( ! give_is_func_disabled('set_time_limit') && ! ini_get('safe_mode')) { |
|
| 222 | + @set_time_limit(0); |
|
| 223 | 223 | } |
| 224 | 224 | |
| 225 | 225 | // Get abandoned offline payments |
@@ -229,35 +229,35 @@ discard block |
||
| 229 | 229 | $where .= "AND ( p.post_status = 'abandoned' )"; |
| 230 | 230 | $where .= "AND ( m.meta_key = '_give_payment_gateway' AND m.meta_value = 'offline' )"; |
| 231 | 231 | |
| 232 | - $sql = $select . $join . $where; |
|
| 233 | - $found_payments = $wpdb->get_col( $sql ); |
|
| 232 | + $sql = $select.$join.$where; |
|
| 233 | + $found_payments = $wpdb->get_col($sql); |
|
| 234 | 234 | |
| 235 | 235 | |
| 236 | - foreach ( $found_payments as $payment ) { |
|
| 236 | + foreach ($found_payments as $payment) { |
|
| 237 | 237 | |
| 238 | 238 | //Only change ones marked abandoned since our release last week |
| 239 | 239 | //because the admin may have marked some abandoned themselves |
| 240 | - $modified_time = get_post_modified_time( 'U', false, $payment ); |
|
| 240 | + $modified_time = get_post_modified_time('U', false, $payment); |
|
| 241 | 241 | |
| 242 | 242 | //1450124863 = 12/10/2015 20:42:25 |
| 243 | - if ( $modified_time >= 1450124863 ) { |
|
| 243 | + if ($modified_time >= 1450124863) { |
|
| 244 | 244 | |
| 245 | - give_update_payment_status( $payment, 'pending' ); |
|
| 245 | + give_update_payment_status($payment, 'pending'); |
|
| 246 | 246 | |
| 247 | 247 | } |
| 248 | 248 | |
| 249 | 249 | } |
| 250 | 250 | |
| 251 | - update_option( 'give_version', preg_replace( '/[^0-9.].*/', '', GIVE_VERSION ) ); |
|
| 252 | - give_set_upgrade_complete( 'upgrade_give_offline_status' ); |
|
| 253 | - delete_option( 'give_doing_upgrade' ); |
|
| 254 | - wp_redirect( admin_url() ); |
|
| 251 | + update_option('give_version', preg_replace('/[^0-9.].*/', '', GIVE_VERSION)); |
|
| 252 | + give_set_upgrade_complete('upgrade_give_offline_status'); |
|
| 253 | + delete_option('give_doing_upgrade'); |
|
| 254 | + wp_redirect(admin_url()); |
|
| 255 | 255 | exit; |
| 256 | 256 | |
| 257 | 257 | |
| 258 | 258 | } |
| 259 | 259 | |
| 260 | -add_action( 'give_upgrade_give_offline_status', 'give_v134_upgrade_give_offline_status' ); |
|
| 260 | +add_action('give_upgrade_give_offline_status', 'give_v134_upgrade_give_offline_status'); |
|
| 261 | 261 | |
| 262 | 262 | |
| 263 | 263 | /** |
@@ -269,17 +269,17 @@ discard block |
||
| 269 | 269 | */ |
| 270 | 270 | function give_v152_cleanup_users() { |
| 271 | 271 | |
| 272 | - $give_version = get_option( 'give_version' ); |
|
| 272 | + $give_version = get_option('give_version'); |
|
| 273 | 273 | |
| 274 | - if ( ! $give_version ) { |
|
| 274 | + if ( ! $give_version) { |
|
| 275 | 275 | // 1.0 is the first version to use this option so we must add it |
| 276 | 276 | $give_version = '1.0'; |
| 277 | 277 | } |
| 278 | 278 | |
| 279 | - $give_version = preg_replace( '/[^0-9.].*/', '', $give_version ); |
|
| 279 | + $give_version = preg_replace('/[^0-9.].*/', '', $give_version); |
|
| 280 | 280 | |
| 281 | 281 | //v1.5.2 Upgrades |
| 282 | - if ( version_compare( $give_version, '1.5.2', '<' ) || ! give_has_upgrade_completed( 'upgrade_give_user_caps_cleanup' ) ) { |
|
| 282 | + if (version_compare($give_version, '1.5.2', '<') || ! give_has_upgrade_completed('upgrade_give_user_caps_cleanup')) { |
|
| 283 | 283 | |
| 284 | 284 | //Delete all caps with "ss" |
| 285 | 285 | //Also delete all unused "campaign" roles |
@@ -326,9 +326,9 @@ discard block |
||
| 326 | 326 | ); |
| 327 | 327 | |
| 328 | 328 | global $wp_roles; |
| 329 | - foreach ( $delete_caps as $cap ) { |
|
| 330 | - foreach ( array_keys( $wp_roles->roles ) as $role ) { |
|
| 331 | - $wp_roles->remove_cap( $role, $cap ); |
|
| 329 | + foreach ($delete_caps as $cap) { |
|
| 330 | + foreach (array_keys($wp_roles->roles) as $role) { |
|
| 331 | + $wp_roles->remove_cap($role, $cap); |
|
| 332 | 332 | } |
| 333 | 333 | } |
| 334 | 334 | |
@@ -338,12 +338,12 @@ discard block |
||
| 338 | 338 | $roles->add_caps(); |
| 339 | 339 | |
| 340 | 340 | //The Update Ran |
| 341 | - update_option( 'give_version', preg_replace( '/[^0-9.].*/', '', GIVE_VERSION ) ); |
|
| 342 | - give_set_upgrade_complete( 'upgrade_give_user_caps_cleanup' ); |
|
| 343 | - delete_option( 'give_doing_upgrade' ); |
|
| 341 | + update_option('give_version', preg_replace('/[^0-9.].*/', '', GIVE_VERSION)); |
|
| 342 | + give_set_upgrade_complete('upgrade_give_user_caps_cleanup'); |
|
| 343 | + delete_option('give_doing_upgrade'); |
|
| 344 | 344 | |
| 345 | 345 | } |
| 346 | 346 | |
| 347 | 347 | } |
| 348 | 348 | |
| 349 | -add_action( 'admin_init', 'give_v152_cleanup_users' ); |
|
| 350 | 349 | \ No newline at end of file |
| 350 | +add_action('admin_init', 'give_v152_cleanup_users'); |
|
| 351 | 351 | \ 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,40 +23,40 @@ discard block |
||
| 23 | 23 | function give_setup_post_types() { |
| 24 | 24 | |
| 25 | 25 | /** Give Forms Post Type */ |
| 26 | - $give_forms_singular = give_get_option( 'disable_forms_singular' ) !== 'on' ? true : false; |
|
| 26 | + $give_forms_singular = give_get_option('disable_forms_singular') !== 'on' ? true : false; |
|
| 27 | 27 | |
| 28 | - $give_forms_archives = give_get_option( 'disable_forms_archives' ) !== 'on' ? true : false; |
|
| 28 | + $give_forms_archives = give_get_option('disable_forms_archives') !== 'on' ? true : false; |
|
| 29 | 29 | |
| 30 | - $give_forms_slug = defined( 'GIVE_SLUG' ) ? GIVE_SLUG : 'donations'; |
|
| 30 | + $give_forms_slug = defined('GIVE_SLUG') ? GIVE_SLUG : 'donations'; |
|
| 31 | 31 | //support for old 'GIVE_FORMS_SLUG' constant |
| 32 | - if ( defined( 'GIVE_FORMS_SLUG' ) ) { |
|
| 32 | + if (defined('GIVE_FORMS_SLUG')) { |
|
| 33 | 33 | $give_forms_slug = GIVE_FORMS_SLUG; |
| 34 | 34 | } |
| 35 | 35 | |
| 36 | - $give_forms_rewrite = defined( 'GIVE_DISABLE_FORMS_REWRITE' ) && GIVE_DISABLE_FORMS_REWRITE ? false : array( |
|
| 36 | + $give_forms_rewrite = defined('GIVE_DISABLE_FORMS_REWRITE') && GIVE_DISABLE_FORMS_REWRITE ? false : array( |
|
| 37 | 37 | 'slug' => $give_forms_slug, |
| 38 | 38 | 'with_front' => false |
| 39 | 39 | ); |
| 40 | 40 | |
| 41 | - $give_forms_labels = apply_filters( 'give_forms_labels', array( |
|
| 42 | - 'name' => __( 'Donation %2$s', 'give' ), |
|
| 41 | + $give_forms_labels = apply_filters('give_forms_labels', array( |
|
| 42 | + 'name' => __('Donation %2$s', 'give'), |
|
| 43 | 43 | 'singular_name' => '%1$s', |
| 44 | - 'add_new' => __( 'Add %1$s', 'give' ), |
|
| 45 | - 'add_new_item' => __( 'Add New Donation %1$s', 'give' ), |
|
| 46 | - 'edit_item' => __( 'Edit Donation %1$s', 'give' ), |
|
| 47 | - 'new_item' => __( 'New %1$s', 'give' ), |
|
| 48 | - 'all_items' => __( 'All %2$s', 'give' ), |
|
| 49 | - 'view_item' => __( 'View %1$s', 'give' ), |
|
| 50 | - 'search_items' => __( 'Search %2$s', 'give' ), |
|
| 51 | - 'not_found' => __( 'No %2$s found', 'give' ), |
|
| 52 | - 'not_found_in_trash' => __( 'No %2$s found in Trash', 'give' ), |
|
| 44 | + 'add_new' => __('Add %1$s', 'give'), |
|
| 45 | + 'add_new_item' => __('Add New Donation %1$s', 'give'), |
|
| 46 | + 'edit_item' => __('Edit Donation %1$s', 'give'), |
|
| 47 | + 'new_item' => __('New %1$s', 'give'), |
|
| 48 | + 'all_items' => __('All %2$s', 'give'), |
|
| 49 | + 'view_item' => __('View %1$s', 'give'), |
|
| 50 | + 'search_items' => __('Search %2$s', 'give'), |
|
| 51 | + 'not_found' => __('No %2$s found', 'give'), |
|
| 52 | + 'not_found_in_trash' => __('No %2$s found in Trash', 'give'), |
|
| 53 | 53 | 'parent_item_colon' => '', |
| 54 | - 'menu_name' => apply_filters( 'give_menu_name', __( 'Donations', 'give' ) ), |
|
| 55 | - 'name_admin_bar' => apply_filters( 'give_name_admin_bar_name', __( 'Donation Form', 'give' ) ) |
|
| 56 | - ) ); |
|
| 54 | + 'menu_name' => apply_filters('give_menu_name', __('Donations', 'give')), |
|
| 55 | + 'name_admin_bar' => apply_filters('give_name_admin_bar_name', __('Donation Form', 'give')) |
|
| 56 | + )); |
|
| 57 | 57 | |
| 58 | - foreach ( $give_forms_labels as $key => $value ) { |
|
| 59 | - $give_forms_labels[ $key ] = sprintf( $value, give_get_forms_label_singular(), give_get_forms_label_plural() ); |
|
| 58 | + foreach ($give_forms_labels as $key => $value) { |
|
| 59 | + $give_forms_labels[$key] = sprintf($value, give_get_forms_label_singular(), give_get_forms_label_plural()); |
|
| 60 | 60 | } |
| 61 | 61 | |
| 62 | 62 | //Default give_forms supports |
@@ -69,14 +69,14 @@ discard block |
||
| 69 | 69 | ); |
| 70 | 70 | |
| 71 | 71 | //Has the user disabled the excerpt |
| 72 | - if ( give_get_option( 'disable_forms_excerpt' ) === 'on' ) { |
|
| 73 | - unset( $give_form_supports[2] ); |
|
| 72 | + if (give_get_option('disable_forms_excerpt') === 'on') { |
|
| 73 | + unset($give_form_supports[2]); |
|
| 74 | 74 | } |
| 75 | 75 | |
| 76 | 76 | //Has user disabled the featured image? |
| 77 | - if ( give_get_option( 'disable_form_featured_img' ) === 'on' ) { |
|
| 78 | - unset( $give_form_supports[1] ); |
|
| 79 | - remove_action( 'give_before_single_form_summary', 'give_show_form_images' ); |
|
| 77 | + if (give_get_option('disable_form_featured_img') === 'on') { |
|
| 78 | + unset($give_form_supports[1]); |
|
| 79 | + remove_action('give_before_single_form_summary', 'give_show_form_images'); |
|
| 80 | 80 | } |
| 81 | 81 | |
| 82 | 82 | $give_forms_args = array( |
@@ -92,42 +92,42 @@ discard block |
||
| 92 | 92 | 'has_archive' => $give_forms_archives, |
| 93 | 93 | 'menu_icon' => 'dashicons-give', |
| 94 | 94 | 'hierarchical' => false, |
| 95 | - 'supports' => apply_filters( 'give_forms_supports', $give_form_supports ), |
|
| 95 | + 'supports' => apply_filters('give_forms_supports', $give_form_supports), |
|
| 96 | 96 | ); |
| 97 | - register_post_type( 'give_forms', apply_filters( 'give_forms_post_type_args', $give_forms_args ) ); |
|
| 97 | + register_post_type('give_forms', apply_filters('give_forms_post_type_args', $give_forms_args)); |
|
| 98 | 98 | |
| 99 | 99 | /** Payment Post Type */ |
| 100 | 100 | $payment_labels = array( |
| 101 | - 'name' => _x( 'Donations', 'post type general name', 'give' ), |
|
| 102 | - 'singular_name' => _x( 'Donation', 'post type singular name', 'give' ), |
|
| 103 | - 'add_new' => __( 'Add New', 'give' ), |
|
| 104 | - 'add_new_item' => __( 'Add New Donation', 'give' ), |
|
| 105 | - 'edit_item' => __( 'Edit Donation', 'give' ), |
|
| 106 | - 'new_item' => __( 'New Donation', 'give' ), |
|
| 107 | - 'all_items' => __( 'All Donations', 'give' ), |
|
| 108 | - 'view_item' => __( 'View Donation', 'give' ), |
|
| 109 | - 'search_items' => __( 'Search Donations', 'give' ), |
|
| 110 | - 'not_found' => __( 'No Donations found', 'give' ), |
|
| 111 | - 'not_found_in_trash' => __( 'No Donations found in Trash', 'give' ), |
|
| 101 | + 'name' => _x('Donations', 'post type general name', 'give'), |
|
| 102 | + 'singular_name' => _x('Donation', 'post type singular name', 'give'), |
|
| 103 | + 'add_new' => __('Add New', 'give'), |
|
| 104 | + 'add_new_item' => __('Add New Donation', 'give'), |
|
| 105 | + 'edit_item' => __('Edit Donation', 'give'), |
|
| 106 | + 'new_item' => __('New Donation', 'give'), |
|
| 107 | + 'all_items' => __('All Donations', 'give'), |
|
| 108 | + 'view_item' => __('View Donation', 'give'), |
|
| 109 | + 'search_items' => __('Search Donations', 'give'), |
|
| 110 | + 'not_found' => __('No Donations found', 'give'), |
|
| 111 | + 'not_found_in_trash' => __('No Donations found in Trash', 'give'), |
|
| 112 | 112 | 'parent_item_colon' => '', |
| 113 | - 'menu_name' => __( 'Transactions', 'give' ) |
|
| 113 | + 'menu_name' => __('Transactions', 'give') |
|
| 114 | 114 | ); |
| 115 | 115 | |
| 116 | 116 | $payment_args = array( |
| 117 | - 'labels' => apply_filters( 'give_payment_labels', $payment_labels ), |
|
| 117 | + 'labels' => apply_filters('give_payment_labels', $payment_labels), |
|
| 118 | 118 | 'public' => false, |
| 119 | 119 | 'query_var' => false, |
| 120 | 120 | 'rewrite' => false, |
| 121 | 121 | 'map_meta_cap' => true, |
| 122 | 122 | 'capability_type' => 'give_payment', |
| 123 | - 'supports' => array( 'title' ), |
|
| 123 | + 'supports' => array('title'), |
|
| 124 | 124 | 'can_export' => true |
| 125 | 125 | ); |
| 126 | - register_post_type( 'give_payment', $payment_args ); |
|
| 126 | + register_post_type('give_payment', $payment_args); |
|
| 127 | 127 | |
| 128 | 128 | } |
| 129 | 129 | |
| 130 | -add_action( 'init', 'give_setup_post_types', 1 ); |
|
| 130 | +add_action('init', 'give_setup_post_types', 1); |
|
| 131 | 131 | |
| 132 | 132 | |
| 133 | 133 | /** |
@@ -140,30 +140,30 @@ discard block |
||
| 140 | 140 | */ |
| 141 | 141 | function give_setup_taxonomies() { |
| 142 | 142 | |
| 143 | - $slug = defined( 'GIVE_FORMS_SLUG' ) ? GIVE_FORMS_SLUG : 'donations'; |
|
| 143 | + $slug = defined('GIVE_FORMS_SLUG') ? GIVE_FORMS_SLUG : 'donations'; |
|
| 144 | 144 | |
| 145 | 145 | /** Categories */ |
| 146 | 146 | $category_labels = array( |
| 147 | - 'name' => sprintf( _x( '%s Categories', 'taxonomy general name', 'give' ), give_get_forms_label_singular() ), |
|
| 148 | - 'singular_name' => _x( 'Category', 'taxonomy singular name', 'give' ), |
|
| 149 | - 'search_items' => __( 'Search Categories', 'give' ), |
|
| 150 | - 'all_items' => __( 'All Categories', 'give' ), |
|
| 151 | - 'parent_item' => __( 'Parent Category', 'give' ), |
|
| 152 | - 'parent_item_colon' => __( 'Parent Category:', 'give' ), |
|
| 153 | - 'edit_item' => __( 'Edit Category', 'give' ), |
|
| 154 | - 'update_item' => __( 'Update Category', 'give' ), |
|
| 155 | - 'add_new_item' => sprintf( __( 'Add New %s Category', 'give' ), give_get_forms_label_singular() ), |
|
| 156 | - 'new_item_name' => __( 'New Category Name', 'give' ), |
|
| 157 | - 'menu_name' => __( 'Categories', 'give' ), |
|
| 147 | + 'name' => sprintf(_x('%s Categories', 'taxonomy general name', 'give'), give_get_forms_label_singular()), |
|
| 148 | + 'singular_name' => _x('Category', 'taxonomy singular name', 'give'), |
|
| 149 | + 'search_items' => __('Search Categories', 'give'), |
|
| 150 | + 'all_items' => __('All Categories', 'give'), |
|
| 151 | + 'parent_item' => __('Parent Category', 'give'), |
|
| 152 | + 'parent_item_colon' => __('Parent Category:', 'give'), |
|
| 153 | + 'edit_item' => __('Edit Category', 'give'), |
|
| 154 | + 'update_item' => __('Update Category', 'give'), |
|
| 155 | + 'add_new_item' => sprintf(__('Add New %s Category', 'give'), give_get_forms_label_singular()), |
|
| 156 | + 'new_item_name' => __('New Category Name', 'give'), |
|
| 157 | + 'menu_name' => __('Categories', 'give'), |
|
| 158 | 158 | ); |
| 159 | 159 | |
| 160 | - $category_args = apply_filters( 'give_forms_category_args', array( |
|
| 160 | + $category_args = apply_filters('give_forms_category_args', array( |
|
| 161 | 161 | 'hierarchical' => true, |
| 162 | - 'labels' => apply_filters( 'give_forms_category_labels', $category_labels ), |
|
| 162 | + 'labels' => apply_filters('give_forms_category_labels', $category_labels), |
|
| 163 | 163 | 'show_ui' => true, |
| 164 | 164 | 'query_var' => 'give_forms_category', |
| 165 | 165 | 'rewrite' => array( |
| 166 | - 'slug' => $slug . '/category', |
|
| 166 | + 'slug' => $slug.'/category', |
|
| 167 | 167 | 'with_front' => false, |
| 168 | 168 | 'hierarchical' => true |
| 169 | 169 | ), |
@@ -177,34 +177,34 @@ discard block |
||
| 177 | 177 | ); |
| 178 | 178 | |
| 179 | 179 | //Does the user want categories? |
| 180 | - if ( give_get_option( 'enable_categories' ) == 'on' ) { |
|
| 181 | - register_taxonomy( 'give_forms_category', array( 'give_forms' ), $category_args ); |
|
| 182 | - register_taxonomy_for_object_type( 'give_forms_category', 'give_forms' ); |
|
| 180 | + if (give_get_option('enable_categories') == 'on') { |
|
| 181 | + register_taxonomy('give_forms_category', array('give_forms'), $category_args); |
|
| 182 | + register_taxonomy_for_object_type('give_forms_category', 'give_forms'); |
|
| 183 | 183 | } |
| 184 | 184 | |
| 185 | 185 | |
| 186 | 186 | /** Tags */ |
| 187 | 187 | $tag_labels = array( |
| 188 | - 'name' => sprintf( _x( '%s Tags', 'taxonomy general name', 'give' ), give_get_forms_label_singular() ), |
|
| 189 | - 'singular_name' => _x( 'Tag', 'taxonomy singular name', 'give' ), |
|
| 190 | - 'search_items' => __( 'Search Tags', 'give' ), |
|
| 191 | - 'all_items' => __( 'All Tags', 'give' ), |
|
| 192 | - 'parent_item' => __( 'Parent Tag', 'give' ), |
|
| 193 | - 'parent_item_colon' => __( 'Parent Tag:', 'give' ), |
|
| 194 | - 'edit_item' => __( 'Edit Tag', 'give' ), |
|
| 195 | - 'update_item' => __( 'Update Tag', 'give' ), |
|
| 196 | - 'add_new_item' => __( 'Add New Tag', 'give' ), |
|
| 197 | - 'new_item_name' => __( 'New Tag Name', 'give' ), |
|
| 198 | - 'menu_name' => __( 'Tags', 'give' ), |
|
| 199 | - 'choose_from_most_used' => sprintf( __( 'Choose from most used %s tags', 'give' ), give_get_forms_label_singular() ), |
|
| 188 | + 'name' => sprintf(_x('%s Tags', 'taxonomy general name', 'give'), give_get_forms_label_singular()), |
|
| 189 | + 'singular_name' => _x('Tag', 'taxonomy singular name', 'give'), |
|
| 190 | + 'search_items' => __('Search Tags', 'give'), |
|
| 191 | + 'all_items' => __('All Tags', 'give'), |
|
| 192 | + 'parent_item' => __('Parent Tag', 'give'), |
|
| 193 | + 'parent_item_colon' => __('Parent Tag:', 'give'), |
|
| 194 | + 'edit_item' => __('Edit Tag', 'give'), |
|
| 195 | + 'update_item' => __('Update Tag', 'give'), |
|
| 196 | + 'add_new_item' => __('Add New Tag', 'give'), |
|
| 197 | + 'new_item_name' => __('New Tag Name', 'give'), |
|
| 198 | + 'menu_name' => __('Tags', 'give'), |
|
| 199 | + 'choose_from_most_used' => sprintf(__('Choose from most used %s tags', 'give'), give_get_forms_label_singular()), |
|
| 200 | 200 | ); |
| 201 | 201 | |
| 202 | - $tag_args = apply_filters( 'give_forms_tag_args', array( |
|
| 202 | + $tag_args = apply_filters('give_forms_tag_args', array( |
|
| 203 | 203 | 'hierarchical' => false, |
| 204 | - 'labels' => apply_filters( 'give_forms_tag_labels', $tag_labels ), |
|
| 204 | + 'labels' => apply_filters('give_forms_tag_labels', $tag_labels), |
|
| 205 | 205 | 'show_ui' => true, |
| 206 | 206 | 'query_var' => 'give_forms_tag', |
| 207 | - 'rewrite' => array( 'slug' => $slug . '/tag', 'with_front' => false, 'hierarchical' => true ), |
|
| 207 | + 'rewrite' => array('slug' => $slug.'/tag', 'with_front' => false, 'hierarchical' => true), |
|
| 208 | 208 | 'capabilities' => array( |
| 209 | 209 | 'manage_terms' => 'manage_give_forms_terms', |
| 210 | 210 | 'edit_terms' => 'edit_give_forms_terms', |
@@ -215,15 +215,15 @@ discard block |
||
| 215 | 215 | ) |
| 216 | 216 | ); |
| 217 | 217 | |
| 218 | - if ( give_get_option( 'enable_tags' ) == 'on' ) { |
|
| 219 | - register_taxonomy( 'give_forms_tag', array( 'give_forms' ), $tag_args ); |
|
| 220 | - register_taxonomy_for_object_type( 'give_forms_tag', 'give_forms' ); |
|
| 218 | + if (give_get_option('enable_tags') == 'on') { |
|
| 219 | + register_taxonomy('give_forms_tag', array('give_forms'), $tag_args); |
|
| 220 | + register_taxonomy_for_object_type('give_forms_tag', 'give_forms'); |
|
| 221 | 221 | } |
| 222 | 222 | |
| 223 | 223 | |
| 224 | 224 | } |
| 225 | 225 | |
| 226 | -add_action( 'init', 'give_setup_taxonomies', 0 ); |
|
| 226 | +add_action('init', 'give_setup_taxonomies', 0); |
|
| 227 | 227 | |
| 228 | 228 | |
| 229 | 229 | /** |
@@ -234,11 +234,11 @@ discard block |
||
| 234 | 234 | */ |
| 235 | 235 | function give_get_default_form_labels() { |
| 236 | 236 | $defaults = array( |
| 237 | - 'singular' => __( 'Form', 'give' ), |
|
| 238 | - 'plural' => __( 'Forms', 'give' ) |
|
| 237 | + 'singular' => __('Form', 'give'), |
|
| 238 | + 'plural' => __('Forms', 'give') |
|
| 239 | 239 | ); |
| 240 | 240 | |
| 241 | - return apply_filters( 'give_default_form_name', $defaults ); |
|
| 241 | + return apply_filters('give_default_form_name', $defaults); |
|
| 242 | 242 | } |
| 243 | 243 | |
| 244 | 244 | /** |
@@ -250,10 +250,10 @@ discard block |
||
| 250 | 250 | * |
| 251 | 251 | * @return string $defaults['singular'] Singular label |
| 252 | 252 | */ |
| 253 | -function give_get_forms_label_singular( $lowercase = false ) { |
|
| 253 | +function give_get_forms_label_singular($lowercase = false) { |
|
| 254 | 254 | $defaults = give_get_default_form_labels(); |
| 255 | 255 | |
| 256 | - return ( $lowercase ) ? strtolower( $defaults['singular'] ) : $defaults['singular']; |
|
| 256 | + return ($lowercase) ? strtolower($defaults['singular']) : $defaults['singular']; |
|
| 257 | 257 | } |
| 258 | 258 | |
| 259 | 259 | /** |
@@ -262,10 +262,10 @@ discard block |
||
| 262 | 262 | * @since 1.0 |
| 263 | 263 | * @return string $defaults['plural'] Plural label |
| 264 | 264 | */ |
| 265 | -function give_get_forms_label_plural( $lowercase = false ) { |
|
| 265 | +function give_get_forms_label_plural($lowercase = false) { |
|
| 266 | 266 | $defaults = give_get_default_form_labels(); |
| 267 | 267 | |
| 268 | - return ( $lowercase ) ? strtolower( $defaults['plural'] ) : $defaults['plural']; |
|
| 268 | + return ($lowercase) ? strtolower($defaults['plural']) : $defaults['plural']; |
|
| 269 | 269 | } |
| 270 | 270 | |
| 271 | 271 | /** |
@@ -277,26 +277,26 @@ discard block |
||
| 277 | 277 | * |
| 278 | 278 | * @return string $title New placeholder text |
| 279 | 279 | */ |
| 280 | -function give_change_default_title( $title ) { |
|
| 280 | +function give_change_default_title($title) { |
|
| 281 | 281 | // If a frontend plugin uses this filter (check extensions before changing this function) |
| 282 | - if ( ! is_admin() ) { |
|
| 282 | + if ( ! is_admin()) { |
|
| 283 | 283 | $label = give_get_forms_label_singular(); |
| 284 | - $title = sprintf( __( 'Enter %s title here', 'give' ), $label ); |
|
| 284 | + $title = sprintf(__('Enter %s title here', 'give'), $label); |
|
| 285 | 285 | |
| 286 | 286 | return $title; |
| 287 | 287 | } |
| 288 | 288 | |
| 289 | 289 | $screen = get_current_screen(); |
| 290 | 290 | |
| 291 | - if ( 'give_forms' == $screen->post_type ) { |
|
| 291 | + if ('give_forms' == $screen->post_type) { |
|
| 292 | 292 | $label = give_get_forms_label_singular(); |
| 293 | - $title = sprintf( __( 'Enter %s title here', 'give' ), $label ); |
|
| 293 | + $title = sprintf(__('Enter %s title here', 'give'), $label); |
|
| 294 | 294 | } |
| 295 | 295 | |
| 296 | 296 | return $title; |
| 297 | 297 | } |
| 298 | 298 | |
| 299 | -add_filter( 'enter_title_here', 'give_change_default_title' ); |
|
| 299 | +add_filter('enter_title_here', 'give_change_default_title'); |
|
| 300 | 300 | |
| 301 | 301 | /** |
| 302 | 302 | * Registers Custom Post Statuses which are used by the Payments |
@@ -306,50 +306,50 @@ discard block |
||
| 306 | 306 | */ |
| 307 | 307 | function give_register_post_type_statuses() { |
| 308 | 308 | // Payment Statuses |
| 309 | - register_post_status( 'refunded', array( |
|
| 310 | - 'label' => _x( 'Refunded', 'Refunded payment status', 'give' ), |
|
| 309 | + register_post_status('refunded', array( |
|
| 310 | + 'label' => _x('Refunded', 'Refunded payment status', 'give'), |
|
| 311 | 311 | 'public' => true, |
| 312 | 312 | 'exclude_from_search' => false, |
| 313 | 313 | 'show_in_admin_all_list' => true, |
| 314 | 314 | 'show_in_admin_status_list' => true, |
| 315 | - 'label_count' => _n_noop( 'Refunded <span class="count">(%s)</span>', 'Refunded <span class="count">(%s)</span>', 'give' ) |
|
| 316 | - ) ); |
|
| 317 | - register_post_status( 'failed', array( |
|
| 318 | - 'label' => _x( 'Failed', 'Failed payment status', 'give' ), |
|
| 315 | + 'label_count' => _n_noop('Refunded <span class="count">(%s)</span>', 'Refunded <span class="count">(%s)</span>', 'give') |
|
| 316 | + )); |
|
| 317 | + register_post_status('failed', array( |
|
| 318 | + 'label' => _x('Failed', 'Failed payment status', 'give'), |
|
| 319 | 319 | 'public' => true, |
| 320 | 320 | 'exclude_from_search' => false, |
| 321 | 321 | 'show_in_admin_all_list' => true, |
| 322 | 322 | 'show_in_admin_status_list' => true, |
| 323 | - 'label_count' => _n_noop( 'Failed <span class="count">(%s)</span>', 'Failed <span class="count">(%s)</span>', 'give' ) |
|
| 324 | - ) ); |
|
| 325 | - register_post_status( 'revoked', array( |
|
| 326 | - 'label' => _x( 'Revoked', 'Revoked payment status', 'give' ), |
|
| 323 | + 'label_count' => _n_noop('Failed <span class="count">(%s)</span>', 'Failed <span class="count">(%s)</span>', 'give') |
|
| 324 | + )); |
|
| 325 | + register_post_status('revoked', array( |
|
| 326 | + 'label' => _x('Revoked', 'Revoked payment status', 'give'), |
|
| 327 | 327 | 'public' => true, |
| 328 | 328 | 'exclude_from_search' => false, |
| 329 | 329 | 'show_in_admin_all_list' => true, |
| 330 | 330 | 'show_in_admin_status_list' => true, |
| 331 | - 'label_count' => _n_noop( 'Revoked <span class="count">(%s)</span>', 'Revoked <span class="count">(%s)</span>', 'give' ) |
|
| 332 | - ) ); |
|
| 333 | - register_post_status( 'cancelled', array( |
|
| 334 | - 'label' => _x( 'Cancelled', 'Cancelled payment status', 'give' ), |
|
| 331 | + 'label_count' => _n_noop('Revoked <span class="count">(%s)</span>', 'Revoked <span class="count">(%s)</span>', 'give') |
|
| 332 | + )); |
|
| 333 | + register_post_status('cancelled', array( |
|
| 334 | + 'label' => _x('Cancelled', 'Cancelled payment status', 'give'), |
|
| 335 | 335 | 'public' => true, |
| 336 | 336 | 'exclude_from_search' => false, |
| 337 | 337 | 'show_in_admin_all_list' => true, |
| 338 | 338 | 'show_in_admin_status_list' => true, |
| 339 | - 'label_count' => _n_noop( 'Cancelled <span class="count">(%s)</span>', 'Cancelled <span class="count">(%s)</span>', 'give' ) |
|
| 340 | - ) ); |
|
| 341 | - register_post_status( 'abandoned', array( |
|
| 342 | - 'label' => _x( 'Abandoned', 'Abandoned payment status', 'give' ), |
|
| 339 | + 'label_count' => _n_noop('Cancelled <span class="count">(%s)</span>', 'Cancelled <span class="count">(%s)</span>', 'give') |
|
| 340 | + )); |
|
| 341 | + register_post_status('abandoned', array( |
|
| 342 | + 'label' => _x('Abandoned', 'Abandoned payment status', 'give'), |
|
| 343 | 343 | 'public' => true, |
| 344 | 344 | 'exclude_from_search' => false, |
| 345 | 345 | 'show_in_admin_all_list' => true, |
| 346 | 346 | 'show_in_admin_status_list' => true, |
| 347 | - 'label_count' => _n_noop( 'Abandoned <span class="count">(%s)</span>', 'Abandoned <span class="count">(%s)</span>', 'give' ) |
|
| 348 | - ) ); |
|
| 347 | + 'label_count' => _n_noop('Abandoned <span class="count">(%s)</span>', 'Abandoned <span class="count">(%s)</span>', 'give') |
|
| 348 | + )); |
|
| 349 | 349 | |
| 350 | 350 | } |
| 351 | 351 | |
| 352 | -add_action( 'init', 'give_register_post_type_statuses' ); |
|
| 352 | +add_action('init', 'give_register_post_type_statuses'); |
|
| 353 | 353 | |
| 354 | 354 | /** |
| 355 | 355 | * Updated Messages |
@@ -362,43 +362,43 @@ discard block |
||
| 362 | 362 | * |
| 363 | 363 | * @return array $messages New post updated messages |
| 364 | 364 | */ |
| 365 | -function give_updated_messages( $messages ) { |
|
| 365 | +function give_updated_messages($messages) { |
|
| 366 | 366 | global $post, $post_ID; |
| 367 | 367 | |
| 368 | - $url1 = '<a href="' . get_permalink( $post_ID ) . '">'; |
|
| 368 | + $url1 = '<a href="'.get_permalink($post_ID).'">'; |
|
| 369 | 369 | $url2 = give_get_forms_label_singular(); |
| 370 | 370 | $url3 = '</a>'; |
| 371 | 371 | |
| 372 | 372 | $messages['give_forms'] = array( |
| 373 | - 1 => sprintf( __( '%2$s updated. %1$sView %2$s%3$s.', 'give' ), $url1, $url2, $url3 ), |
|
| 374 | - 4 => sprintf( __( '%2$s updated. %1$sView %2$s%3$s.', 'give' ), $url1, $url2, $url3 ), |
|
| 375 | - 6 => sprintf( __( '%2$s published. %1$sView %2$s%3$s.', 'give' ), $url1, $url2, $url3 ), |
|
| 376 | - 7 => sprintf( __( '%2$s saved. %1$sView %2$s%3$s.', 'give' ), $url1, $url2, $url3 ), |
|
| 377 | - 8 => sprintf( __( '%2$s submitted. %1$sView %2$s%3$s.', 'give' ), $url1, $url2, $url3 ) |
|
| 373 | + 1 => sprintf(__('%2$s updated. %1$sView %2$s%3$s.', 'give'), $url1, $url2, $url3), |
|
| 374 | + 4 => sprintf(__('%2$s updated. %1$sView %2$s%3$s.', 'give'), $url1, $url2, $url3), |
|
| 375 | + 6 => sprintf(__('%2$s published. %1$sView %2$s%3$s.', 'give'), $url1, $url2, $url3), |
|
| 376 | + 7 => sprintf(__('%2$s saved. %1$sView %2$s%3$s.', 'give'), $url1, $url2, $url3), |
|
| 377 | + 8 => sprintf(__('%2$s submitted. %1$sView %2$s%3$s.', 'give'), $url1, $url2, $url3) |
|
| 378 | 378 | ); |
| 379 | 379 | |
| 380 | 380 | return $messages; |
| 381 | 381 | } |
| 382 | 382 | |
| 383 | -add_filter( 'post_updated_messages', 'give_updated_messages' ); |
|
| 383 | +add_filter('post_updated_messages', 'give_updated_messages'); |
|
| 384 | 384 | |
| 385 | 385 | |
| 386 | 386 | /** |
| 387 | 387 | * Setup Post Type Images |
| 388 | 388 | */ |
| 389 | -add_action( 'after_setup_theme', 'give_add_thumbnail_support', 10 ); |
|
| 389 | +add_action('after_setup_theme', 'give_add_thumbnail_support', 10); |
|
| 390 | 390 | |
| 391 | 391 | /** |
| 392 | 392 | * Ensure post thumbnail support is turned on |
| 393 | 393 | */ |
| 394 | 394 | function give_add_thumbnail_support() { |
| 395 | - if ( give_get_option( 'disable_form_featured_img' ) === 'on' ) { |
|
| 395 | + if (give_get_option('disable_form_featured_img') === 'on') { |
|
| 396 | 396 | return; |
| 397 | 397 | } |
| 398 | - if ( ! current_theme_supports( 'post-thumbnails' ) ) { |
|
| 399 | - add_theme_support( 'post-thumbnails' ); |
|
| 398 | + if ( ! current_theme_supports('post-thumbnails')) { |
|
| 399 | + add_theme_support('post-thumbnails'); |
|
| 400 | 400 | } |
| 401 | - add_post_type_support( 'give_forms', 'thumbnail' ); |
|
| 401 | + add_post_type_support('give_forms', 'thumbnail'); |
|
| 402 | 402 | } |
| 403 | 403 | |
| 404 | 404 | /** |
@@ -410,19 +410,19 @@ discard block |
||
| 410 | 410 | function give_widgets_init() { |
| 411 | 411 | |
| 412 | 412 | //Single Give Forms (disabled if single turned off in settings) |
| 413 | - if ( give_get_option( 'disable_forms_singular' ) !== 'on' && give_get_option( 'disable_form_sidebar' ) !== 'on' ) { |
|
| 413 | + if (give_get_option('disable_forms_singular') !== 'on' && give_get_option('disable_form_sidebar') !== 'on') { |
|
| 414 | 414 | |
| 415 | - register_sidebar( apply_filters( 'give_forms_single_sidebar', array( |
|
| 416 | - 'name' => __( 'Give Single Form Sidebar', 'give' ), |
|
| 415 | + register_sidebar(apply_filters('give_forms_single_sidebar', array( |
|
| 416 | + 'name' => __('Give Single Form Sidebar', 'give'), |
|
| 417 | 417 | 'id' => 'give-forms-sidebar', |
| 418 | - 'description' => __( 'Widgets in this area will be shown on the single Give forms aside area. This sidebar will not display for embedded forms.', 'give' ), |
|
| 418 | + 'description' => __('Widgets in this area will be shown on the single Give forms aside area. This sidebar will not display for embedded forms.', 'give'), |
|
| 419 | 419 | 'before_widget' => '<div id="%1$s" class="widget %2$s">', |
| 420 | 420 | 'after_widget' => '</div>', |
| 421 | 421 | 'before_title' => '<h3 class="widgettitle widget-title">', |
| 422 | 422 | 'after_title' => '</h3>', |
| 423 | - ) ) ); |
|
| 423 | + ))); |
|
| 424 | 424 | |
| 425 | 425 | } |
| 426 | 426 | } |
| 427 | 427 | |
| 428 | -add_action( 'widgets_init', 'give_widgets_init', 999 ); |
|
| 428 | +add_action('widgets_init', 'give_widgets_init', 999); |
|
@@ -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 | |
@@ -97,29 +97,29 @@ discard block |
||
| 97 | 97 | * @param bool $_id_or_email |
| 98 | 98 | * @param bool $by_user_id |
| 99 | 99 | */ |
| 100 | - public function __construct( $_id_or_email = false, $by_user_id = false ) { |
|
| 100 | + public function __construct($_id_or_email = false, $by_user_id = false) { |
|
| 101 | 101 | |
| 102 | 102 | $this->db = new Give_DB_Customers; |
| 103 | 103 | |
| 104 | - if ( false === $_id_or_email || ( is_numeric( $_id_or_email ) && (int) $_id_or_email !== absint( $_id_or_email ) ) ) { |
|
| 104 | + if (false === $_id_or_email || (is_numeric($_id_or_email) && (int) $_id_or_email !== absint($_id_or_email))) { |
|
| 105 | 105 | return false; |
| 106 | 106 | } |
| 107 | 107 | |
| 108 | - $by_user_id = is_bool( $by_user_id ) ? $by_user_id : false; |
|
| 108 | + $by_user_id = is_bool($by_user_id) ? $by_user_id : false; |
|
| 109 | 109 | |
| 110 | - if ( is_numeric( $_id_or_email ) ) { |
|
| 110 | + if (is_numeric($_id_or_email)) { |
|
| 111 | 111 | $field = $by_user_id ? 'user_id' : 'id'; |
| 112 | 112 | } else { |
| 113 | 113 | $field = 'email'; |
| 114 | 114 | } |
| 115 | 115 | |
| 116 | - $customer = $this->db->get_customer_by( $field, $_id_or_email ); |
|
| 116 | + $customer = $this->db->get_customer_by($field, $_id_or_email); |
|
| 117 | 117 | |
| 118 | - if ( empty( $customer ) || ! is_object( $customer ) ) { |
|
| 118 | + if (empty($customer) || ! is_object($customer)) { |
|
| 119 | 119 | return false; |
| 120 | 120 | } |
| 121 | 121 | |
| 122 | - $this->setup_customer( $customer ); |
|
| 122 | + $this->setup_customer($customer); |
|
| 123 | 123 | |
| 124 | 124 | } |
| 125 | 125 | |
@@ -132,15 +132,15 @@ discard block |
||
| 132 | 132 | * |
| 133 | 133 | * @return bool If the setup was successful or not |
| 134 | 134 | */ |
| 135 | - private function setup_customer( $customer ) { |
|
| 135 | + private function setup_customer($customer) { |
|
| 136 | 136 | |
| 137 | - if ( ! is_object( $customer ) ) { |
|
| 137 | + if ( ! is_object($customer)) { |
|
| 138 | 138 | return false; |
| 139 | 139 | } |
| 140 | 140 | |
| 141 | - foreach ( $customer as $key => $value ) { |
|
| 141 | + foreach ($customer as $key => $value) { |
|
| 142 | 142 | |
| 143 | - switch ( $key ) { |
|
| 143 | + switch ($key) { |
|
| 144 | 144 | |
| 145 | 145 | case 'notes': |
| 146 | 146 | $this->$key = $this->get_notes(); |
@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | } |
| 156 | 156 | |
| 157 | 157 | // Customer ID and email are the only things that are necessary, make sure they exist |
| 158 | - if ( ! empty( $this->id ) && ! empty( $this->email ) ) { |
|
| 158 | + if ( ! empty($this->id) && ! empty($this->email)) { |
|
| 159 | 159 | return true; |
| 160 | 160 | } |
| 161 | 161 | |
@@ -168,15 +168,15 @@ discard block |
||
| 168 | 168 | * |
| 169 | 169 | * @since 1.0 |
| 170 | 170 | */ |
| 171 | - public function __get( $key ) { |
|
| 171 | + public function __get($key) { |
|
| 172 | 172 | |
| 173 | - if ( method_exists( $this, 'get_' . $key ) ) { |
|
| 173 | + if (method_exists($this, 'get_'.$key)) { |
|
| 174 | 174 | |
| 175 | - return call_user_func( array( $this, 'get_' . $key ) ); |
|
| 175 | + return call_user_func(array($this, 'get_'.$key)); |
|
| 176 | 176 | |
| 177 | 177 | } else { |
| 178 | 178 | |
| 179 | - return new WP_Error( 'give-customer-invalid-property', sprintf( __( 'Can\'t get property %s', 'give' ), $key ) ); |
|
| 179 | + return new WP_Error('give-customer-invalid-property', sprintf(__('Can\'t get property %s', 'give'), $key)); |
|
| 180 | 180 | |
| 181 | 181 | } |
| 182 | 182 | |
@@ -191,9 +191,9 @@ discard block |
||
| 191 | 191 | * |
| 192 | 192 | * @return mixed False if not a valid creation, Customer ID if user is found or valid creation |
| 193 | 193 | */ |
| 194 | - public function create( $data = array() ) { |
|
| 194 | + public function create($data = array()) { |
|
| 195 | 195 | |
| 196 | - if ( $this->id != 0 || empty( $data ) ) { |
|
| 196 | + if ($this->id != 0 || empty($data)) { |
|
| 197 | 197 | return false; |
| 198 | 198 | } |
| 199 | 199 | |
@@ -201,34 +201,34 @@ discard block |
||
| 201 | 201 | 'payment_ids' => '' |
| 202 | 202 | ); |
| 203 | 203 | |
| 204 | - $args = wp_parse_args( $data, $defaults ); |
|
| 205 | - $args = $this->sanitize_columns( $args ); |
|
| 204 | + $args = wp_parse_args($data, $defaults); |
|
| 205 | + $args = $this->sanitize_columns($args); |
|
| 206 | 206 | |
| 207 | - if ( empty( $args['email'] ) || ! is_email( $args['email'] ) ) { |
|
| 207 | + if (empty($args['email']) || ! is_email($args['email'])) { |
|
| 208 | 208 | return false; |
| 209 | 209 | } |
| 210 | 210 | |
| 211 | - if ( ! empty( $args['payment_ids'] ) && is_array( $args['payment_ids'] ) ) { |
|
| 212 | - $args['payment_ids'] = implode( ',', array_unique( array_values( $args['payment_ids'] ) ) ); |
|
| 211 | + if ( ! empty($args['payment_ids']) && is_array($args['payment_ids'])) { |
|
| 212 | + $args['payment_ids'] = implode(',', array_unique(array_values($args['payment_ids']))); |
|
| 213 | 213 | } |
| 214 | 214 | |
| 215 | - do_action( 'give_customer_pre_create', $args ); |
|
| 215 | + do_action('give_customer_pre_create', $args); |
|
| 216 | 216 | |
| 217 | 217 | $created = false; |
| 218 | 218 | |
| 219 | 219 | // The DB class 'add' implies an update if the customer being asked to be created already exists |
| 220 | - if ( $this->db->add( $data ) ) { |
|
| 220 | + if ($this->db->add($data)) { |
|
| 221 | 221 | |
| 222 | 222 | // We've successfully added/updated the customer, reset the class vars with the new data |
| 223 | - $customer = $this->db->get_customer_by( 'email', $args['email'] ); |
|
| 223 | + $customer = $this->db->get_customer_by('email', $args['email']); |
|
| 224 | 224 | |
| 225 | 225 | // Setup the customer data with the values from DB |
| 226 | - $this->setup_customer( $customer ); |
|
| 226 | + $this->setup_customer($customer); |
|
| 227 | 227 | |
| 228 | 228 | $created = $this->id; |
| 229 | 229 | } |
| 230 | 230 | |
| 231 | - do_action( 'give_customer_post_create', $created, $args ); |
|
| 231 | + do_action('give_customer_post_create', $created, $args); |
|
| 232 | 232 | |
| 233 | 233 | return $created; |
| 234 | 234 | |
@@ -243,27 +243,27 @@ discard block |
||
| 243 | 243 | * |
| 244 | 244 | * @return bool If the update was successful or not |
| 245 | 245 | */ |
| 246 | - public function update( $data = array() ) { |
|
| 246 | + public function update($data = array()) { |
|
| 247 | 247 | |
| 248 | - if ( empty( $data ) ) { |
|
| 248 | + if (empty($data)) { |
|
| 249 | 249 | return false; |
| 250 | 250 | } |
| 251 | 251 | |
| 252 | - $data = $this->sanitize_columns( $data ); |
|
| 252 | + $data = $this->sanitize_columns($data); |
|
| 253 | 253 | |
| 254 | - do_action( 'give_customer_pre_update', $this->id, $data ); |
|
| 254 | + do_action('give_customer_pre_update', $this->id, $data); |
|
| 255 | 255 | |
| 256 | 256 | $updated = false; |
| 257 | 257 | |
| 258 | - if ( $this->db->update( $this->id, $data ) ) { |
|
| 258 | + if ($this->db->update($this->id, $data)) { |
|
| 259 | 259 | |
| 260 | - $customer = $this->db->get_customer_by( 'id', $this->id ); |
|
| 261 | - $this->setup_customer( $customer ); |
|
| 260 | + $customer = $this->db->get_customer_by('id', $this->id); |
|
| 261 | + $this->setup_customer($customer); |
|
| 262 | 262 | |
| 263 | 263 | $updated = true; |
| 264 | 264 | } |
| 265 | 265 | |
| 266 | - do_action( 'give_customer_post_update', $updated, $this->id, $data ); |
|
| 266 | + do_action('give_customer_post_update', $updated, $this->id, $data); |
|
| 267 | 267 | |
| 268 | 268 | return $updated; |
| 269 | 269 | } |
@@ -279,44 +279,44 @@ discard block |
||
| 279 | 279 | * |
| 280 | 280 | * @return bool If the attachment was successfuly |
| 281 | 281 | */ |
| 282 | - public function attach_payment( $payment_id = 0, $update_stats = true ) { |
|
| 282 | + public function attach_payment($payment_id = 0, $update_stats = true) { |
|
| 283 | 283 | |
| 284 | - if ( empty( $payment_id ) ) { |
|
| 284 | + if (empty($payment_id)) { |
|
| 285 | 285 | return false; |
| 286 | 286 | } |
| 287 | 287 | |
| 288 | - if ( empty( $this->payment_ids ) ) { |
|
| 288 | + if (empty($this->payment_ids)) { |
|
| 289 | 289 | |
| 290 | 290 | $new_payment_ids = $payment_id; |
| 291 | 291 | |
| 292 | 292 | } else { |
| 293 | 293 | |
| 294 | - $payment_ids = array_map( 'absint', explode( ',', $this->payment_ids ) ); |
|
| 294 | + $payment_ids = array_map('absint', explode(',', $this->payment_ids)); |
|
| 295 | 295 | |
| 296 | - if ( in_array( $payment_id, $payment_ids ) ) { |
|
| 296 | + if (in_array($payment_id, $payment_ids)) { |
|
| 297 | 297 | $update_stats = false; |
| 298 | 298 | } |
| 299 | 299 | |
| 300 | 300 | $payment_ids[] = $payment_id; |
| 301 | 301 | |
| 302 | - $new_payment_ids = implode( ',', array_unique( array_values( $payment_ids ) ) ); |
|
| 302 | + $new_payment_ids = implode(',', array_unique(array_values($payment_ids))); |
|
| 303 | 303 | |
| 304 | 304 | } |
| 305 | 305 | |
| 306 | - do_action( 'give_customer_pre_attach_payment', $payment_id, $this->id ); |
|
| 306 | + do_action('give_customer_pre_attach_payment', $payment_id, $this->id); |
|
| 307 | 307 | |
| 308 | - $payment_added = $this->update( array( 'payment_ids' => $new_payment_ids ) ); |
|
| 308 | + $payment_added = $this->update(array('payment_ids' => $new_payment_ids)); |
|
| 309 | 309 | |
| 310 | - if ( $payment_added ) { |
|
| 310 | + if ($payment_added) { |
|
| 311 | 311 | |
| 312 | 312 | $this->payment_ids = $new_payment_ids; |
| 313 | 313 | |
| 314 | 314 | // We added this payment successfully, increment the stats |
| 315 | - if ( $update_stats ) { |
|
| 316 | - $payment_amount = give_get_payment_amount( $payment_id ); |
|
| 315 | + if ($update_stats) { |
|
| 316 | + $payment_amount = give_get_payment_amount($payment_id); |
|
| 317 | 317 | |
| 318 | - if ( ! empty( $payment_amount ) ) { |
|
| 319 | - $this->increase_value( $payment_amount ); |
|
| 318 | + if ( ! empty($payment_amount)) { |
|
| 319 | + $this->increase_value($payment_amount); |
|
| 320 | 320 | } |
| 321 | 321 | |
| 322 | 322 | $this->increase_purchase_count(); |
@@ -324,7 +324,7 @@ discard block |
||
| 324 | 324 | |
| 325 | 325 | } |
| 326 | 326 | |
| 327 | - do_action( 'give_customer_post_attach_payment', $payment_added, $payment_id, $this->id ); |
|
| 327 | + do_action('give_customer_post_attach_payment', $payment_added, $payment_id, $this->id); |
|
| 328 | 328 | |
| 329 | 329 | return $payment_added; |
| 330 | 330 | } |
@@ -340,50 +340,50 @@ discard block |
||
| 340 | 340 | * |
| 341 | 341 | * @return boolean If the removal was successful |
| 342 | 342 | */ |
| 343 | - public function remove_payment( $payment_id = 0, $update_stats = true ) { |
|
| 343 | + public function remove_payment($payment_id = 0, $update_stats = true) { |
|
| 344 | 344 | |
| 345 | - if ( empty( $payment_id ) ) { |
|
| 345 | + if (empty($payment_id)) { |
|
| 346 | 346 | return false; |
| 347 | 347 | } |
| 348 | 348 | |
| 349 | - $payment = new Give_Payment( $payment_id ); |
|
| 349 | + $payment = new Give_Payment($payment_id); |
|
| 350 | 350 | |
| 351 | - if ( 'publish' !== $payment->status && 'revoked' !== $payment->status ) { |
|
| 351 | + if ('publish' !== $payment->status && 'revoked' !== $payment->status) { |
|
| 352 | 352 | $update_stats = false; |
| 353 | 353 | } |
| 354 | 354 | |
| 355 | 355 | $new_payment_ids = ''; |
| 356 | 356 | |
| 357 | - if ( ! empty( $this->payment_ids ) ) { |
|
| 357 | + if ( ! empty($this->payment_ids)) { |
|
| 358 | 358 | |
| 359 | - $payment_ids = array_map( 'absint', explode( ',', $this->payment_ids ) ); |
|
| 359 | + $payment_ids = array_map('absint', explode(',', $this->payment_ids)); |
|
| 360 | 360 | |
| 361 | - $pos = array_search( $payment_id, $payment_ids ); |
|
| 362 | - if ( false === $pos ) { |
|
| 361 | + $pos = array_search($payment_id, $payment_ids); |
|
| 362 | + if (false === $pos) { |
|
| 363 | 363 | return false; |
| 364 | 364 | } |
| 365 | 365 | |
| 366 | - unset( $payment_ids[ $pos ] ); |
|
| 367 | - $payment_ids = array_filter( $payment_ids ); |
|
| 366 | + unset($payment_ids[$pos]); |
|
| 367 | + $payment_ids = array_filter($payment_ids); |
|
| 368 | 368 | |
| 369 | - $new_payment_ids = implode( ',', array_unique( array_values( $payment_ids ) ) ); |
|
| 369 | + $new_payment_ids = implode(',', array_unique(array_values($payment_ids))); |
|
| 370 | 370 | |
| 371 | 371 | } |
| 372 | 372 | |
| 373 | - do_action( 'give_customer_pre_remove_payment', $payment_id, $this->id ); |
|
| 373 | + do_action('give_customer_pre_remove_payment', $payment_id, $this->id); |
|
| 374 | 374 | |
| 375 | - $payment_removed = $this->update( array( 'payment_ids' => $new_payment_ids ) ); |
|
| 375 | + $payment_removed = $this->update(array('payment_ids' => $new_payment_ids)); |
|
| 376 | 376 | |
| 377 | - if ( $payment_removed ) { |
|
| 377 | + if ($payment_removed) { |
|
| 378 | 378 | |
| 379 | 379 | $this->payment_ids = $new_payment_ids; |
| 380 | 380 | |
| 381 | - if ( $update_stats ) { |
|
| 381 | + if ($update_stats) { |
|
| 382 | 382 | // We removed this payment successfully, decrement the stats |
| 383 | - $payment_amount = give_get_payment_amount( $payment_id ); |
|
| 383 | + $payment_amount = give_get_payment_amount($payment_id); |
|
| 384 | 384 | |
| 385 | - if ( ! empty( $payment_amount ) ) { |
|
| 386 | - $this->decrease_value( $payment_amount ); |
|
| 385 | + if ( ! empty($payment_amount)) { |
|
| 386 | + $this->decrease_value($payment_amount); |
|
| 387 | 387 | } |
| 388 | 388 | |
| 389 | 389 | $this->decrease_purchase_count(); |
@@ -391,7 +391,7 @@ discard block |
||
| 391 | 391 | |
| 392 | 392 | } |
| 393 | 393 | |
| 394 | - do_action( 'give_customer_post_remove_payment', $payment_removed, $payment_id, $this->id ); |
|
| 394 | + do_action('give_customer_post_remove_payment', $payment_removed, $payment_id, $this->id); |
|
| 395 | 395 | |
| 396 | 396 | return $payment_removed; |
| 397 | 397 | |
@@ -406,22 +406,22 @@ discard block |
||
| 406 | 406 | * |
| 407 | 407 | * @return int The purchase count |
| 408 | 408 | */ |
| 409 | - public function increase_purchase_count( $count = 1 ) { |
|
| 409 | + public function increase_purchase_count($count = 1) { |
|
| 410 | 410 | |
| 411 | 411 | // Make sure it's numeric and not negative |
| 412 | - if ( ! is_numeric( $count ) || $count != absint( $count ) ) { |
|
| 412 | + if ( ! is_numeric($count) || $count != absint($count)) { |
|
| 413 | 413 | return false; |
| 414 | 414 | } |
| 415 | 415 | |
| 416 | 416 | $new_total = (int) $this->purchase_count + (int) $count; |
| 417 | 417 | |
| 418 | - do_action( 'give_customer_pre_increase_purchase_count', $count, $this->id ); |
|
| 418 | + do_action('give_customer_pre_increase_purchase_count', $count, $this->id); |
|
| 419 | 419 | |
| 420 | - if ( $this->update( array( 'purchase_count' => $new_total ) ) ) { |
|
| 420 | + if ($this->update(array('purchase_count' => $new_total))) { |
|
| 421 | 421 | $this->purchase_count = $new_total; |
| 422 | 422 | } |
| 423 | 423 | |
| 424 | - do_action( 'give_customer_post_increase_purchase_count', $this->purchase_count, $count, $this->id ); |
|
| 424 | + do_action('give_customer_post_increase_purchase_count', $this->purchase_count, $count, $this->id); |
|
| 425 | 425 | |
| 426 | 426 | return $this->purchase_count; |
| 427 | 427 | } |
@@ -435,26 +435,26 @@ discard block |
||
| 435 | 435 | * |
| 436 | 436 | * @return mixed If successful, the new count, otherwise false |
| 437 | 437 | */ |
| 438 | - public function decrease_purchase_count( $count = 1 ) { |
|
| 438 | + public function decrease_purchase_count($count = 1) { |
|
| 439 | 439 | |
| 440 | 440 | // Make sure it's numeric and not negative |
| 441 | - if ( ! is_numeric( $count ) || $count != absint( $count ) ) { |
|
| 441 | + if ( ! is_numeric($count) || $count != absint($count)) { |
|
| 442 | 442 | return false; |
| 443 | 443 | } |
| 444 | 444 | |
| 445 | 445 | $new_total = (int) $this->purchase_count - (int) $count; |
| 446 | 446 | |
| 447 | - if ( $new_total < 0 ) { |
|
| 447 | + if ($new_total < 0) { |
|
| 448 | 448 | $new_total = 0; |
| 449 | 449 | } |
| 450 | 450 | |
| 451 | - do_action( 'give_customer_pre_decrease_purchase_count', $count, $this->id ); |
|
| 451 | + do_action('give_customer_pre_decrease_purchase_count', $count, $this->id); |
|
| 452 | 452 | |
| 453 | - if ( $this->update( array( 'purchase_count' => $new_total ) ) ) { |
|
| 453 | + if ($this->update(array('purchase_count' => $new_total))) { |
|
| 454 | 454 | $this->purchase_count = $new_total; |
| 455 | 455 | } |
| 456 | 456 | |
| 457 | - do_action( 'give_customer_post_decrease_purchase_count', $this->purchase_count, $count, $this->id ); |
|
| 457 | + do_action('give_customer_post_decrease_purchase_count', $this->purchase_count, $count, $this->id); |
|
| 458 | 458 | |
| 459 | 459 | return $this->purchase_count; |
| 460 | 460 | } |
@@ -468,17 +468,17 @@ discard block |
||
| 468 | 468 | * |
| 469 | 469 | * @return mixed If successful, the new value, otherwise false |
| 470 | 470 | */ |
| 471 | - public function increase_value( $value = 0.00 ) { |
|
| 471 | + public function increase_value($value = 0.00) { |
|
| 472 | 472 | |
| 473 | - $new_value = floatval( $this->purchase_value ) + $value; |
|
| 473 | + $new_value = floatval($this->purchase_value) + $value; |
|
| 474 | 474 | |
| 475 | - do_action( 'give_customer_pre_increase_value', $value, $this->id ); |
|
| 475 | + do_action('give_customer_pre_increase_value', $value, $this->id); |
|
| 476 | 476 | |
| 477 | - if ( $this->update( array( 'purchase_value' => $new_value ) ) ) { |
|
| 477 | + if ($this->update(array('purchase_value' => $new_value))) { |
|
| 478 | 478 | $this->purchase_value = $new_value; |
| 479 | 479 | } |
| 480 | 480 | |
| 481 | - do_action( 'give_customer_post_increase_value', $this->purchase_value, $value, $this->id ); |
|
| 481 | + do_action('give_customer_post_increase_value', $this->purchase_value, $value, $this->id); |
|
| 482 | 482 | |
| 483 | 483 | return $this->purchase_value; |
| 484 | 484 | } |
@@ -492,21 +492,21 @@ discard block |
||
| 492 | 492 | * |
| 493 | 493 | * @return mixed If successful, the new value, otherwise false |
| 494 | 494 | */ |
| 495 | - public function decrease_value( $value = 0.00 ) { |
|
| 495 | + public function decrease_value($value = 0.00) { |
|
| 496 | 496 | |
| 497 | - $new_value = floatval( $this->purchase_value ) - $value; |
|
| 497 | + $new_value = floatval($this->purchase_value) - $value; |
|
| 498 | 498 | |
| 499 | - if ( $new_value < 0 ) { |
|
| 499 | + if ($new_value < 0) { |
|
| 500 | 500 | $new_value = 0.00; |
| 501 | 501 | } |
| 502 | 502 | |
| 503 | - do_action( 'give_customer_pre_decrease_value', $value, $this->id ); |
|
| 503 | + do_action('give_customer_pre_decrease_value', $value, $this->id); |
|
| 504 | 504 | |
| 505 | - if ( $this->update( array( 'purchase_value' => $new_value ) ) ) { |
|
| 505 | + if ($this->update(array('purchase_value' => $new_value))) { |
|
| 506 | 506 | $this->purchase_value = $new_value; |
| 507 | 507 | } |
| 508 | 508 | |
| 509 | - do_action( 'give_customer_post_decrease_value', $this->purchase_value, $value, $this->id ); |
|
| 509 | + do_action('give_customer_post_decrease_value', $this->purchase_value, $value, $this->id); |
|
| 510 | 510 | |
| 511 | 511 | return $this->purchase_value; |
| 512 | 512 | } |
@@ -521,15 +521,15 @@ discard block |
||
| 521 | 521 | * |
| 522 | 522 | * @return array The notes requsted |
| 523 | 523 | */ |
| 524 | - public function get_notes( $length = 20, $paged = 1 ) { |
|
| 524 | + public function get_notes($length = 20, $paged = 1) { |
|
| 525 | 525 | |
| 526 | - $length = is_numeric( $length ) ? $length : 20; |
|
| 527 | - $offset = is_numeric( $paged ) && $paged != 1 ? ( ( absint( $paged ) - 1 ) * $length ) : 0; |
|
| 526 | + $length = is_numeric($length) ? $length : 20; |
|
| 527 | + $offset = is_numeric($paged) && $paged != 1 ? ((absint($paged) - 1) * $length) : 0; |
|
| 528 | 528 | |
| 529 | 529 | $all_notes = $this->get_raw_notes(); |
| 530 | - $notes_array = array_reverse( array_filter( explode( "\n\n", $all_notes ) ) ); |
|
| 530 | + $notes_array = array_reverse(array_filter(explode("\n\n", $all_notes))); |
|
| 531 | 531 | |
| 532 | - $desired_notes = array_slice( $notes_array, $offset, $length ); |
|
| 532 | + $desired_notes = array_slice($notes_array, $offset, $length); |
|
| 533 | 533 | |
| 534 | 534 | return $desired_notes; |
| 535 | 535 | |
@@ -544,9 +544,9 @@ discard block |
||
| 544 | 544 | public function get_notes_count() { |
| 545 | 545 | |
| 546 | 546 | $all_notes = $this->get_raw_notes(); |
| 547 | - $notes_array = array_reverse( array_filter( explode( "\n\n", $all_notes ) ) ); |
|
| 547 | + $notes_array = array_reverse(array_filter(explode("\n\n", $all_notes))); |
|
| 548 | 548 | |
| 549 | - return count( $notes_array ); |
|
| 549 | + return count($notes_array); |
|
| 550 | 550 | |
| 551 | 551 | } |
| 552 | 552 | |
@@ -559,32 +559,32 @@ discard block |
||
| 559 | 559 | * |
| 560 | 560 | * @return string|boolean The new note if added succesfully, false otherwise |
| 561 | 561 | */ |
| 562 | - public function add_note( $note = '' ) { |
|
| 562 | + public function add_note($note = '') { |
|
| 563 | 563 | |
| 564 | - $note = trim( $note ); |
|
| 565 | - if ( empty( $note ) ) { |
|
| 564 | + $note = trim($note); |
|
| 565 | + if (empty($note)) { |
|
| 566 | 566 | return false; |
| 567 | 567 | } |
| 568 | 568 | |
| 569 | 569 | $notes = $this->get_raw_notes(); |
| 570 | 570 | |
| 571 | - if ( empty( $notes ) ) { |
|
| 571 | + if (empty($notes)) { |
|
| 572 | 572 | $notes = ''; |
| 573 | 573 | } |
| 574 | 574 | |
| 575 | - $note_string = date_i18n( 'F j, Y H:i:s', current_time( 'timestamp' ) ) . ' - ' . $note; |
|
| 576 | - $new_note = apply_filters( 'give_customer_add_note_string', $note_string ); |
|
| 577 | - $notes .= "\n\n" . $new_note; |
|
| 575 | + $note_string = date_i18n('F j, Y H:i:s', current_time('timestamp')).' - '.$note; |
|
| 576 | + $new_note = apply_filters('give_customer_add_note_string', $note_string); |
|
| 577 | + $notes .= "\n\n".$new_note; |
|
| 578 | 578 | |
| 579 | - do_action( 'give_customer_pre_add_note', $new_note, $this->id ); |
|
| 579 | + do_action('give_customer_pre_add_note', $new_note, $this->id); |
|
| 580 | 580 | |
| 581 | - $updated = $this->update( array( 'notes' => $notes ) ); |
|
| 581 | + $updated = $this->update(array('notes' => $notes)); |
|
| 582 | 582 | |
| 583 | - if ( $updated ) { |
|
| 583 | + if ($updated) { |
|
| 584 | 584 | $this->notes = $this->get_notes(); |
| 585 | 585 | } |
| 586 | 586 | |
| 587 | - do_action( 'give_customer_post_add_note', $this->notes, $new_note, $this->id ); |
|
| 587 | + do_action('give_customer_post_add_note', $this->notes, $new_note, $this->id); |
|
| 588 | 588 | |
| 589 | 589 | // Return the formatted note, so we can test, as well as update any displays |
| 590 | 590 | return $new_note; |
@@ -599,7 +599,7 @@ discard block |
||
| 599 | 599 | */ |
| 600 | 600 | private function get_raw_notes() { |
| 601 | 601 | |
| 602 | - $all_notes = $this->db->get_column( 'notes', $this->id ); |
|
| 602 | + $all_notes = $this->db->get_column('notes', $this->id); |
|
| 603 | 603 | |
| 604 | 604 | return $all_notes; |
| 605 | 605 | |
@@ -614,51 +614,51 @@ discard block |
||
| 614 | 614 | * |
| 615 | 615 | * @return array The sanitized data, based off column defaults |
| 616 | 616 | */ |
| 617 | - private function sanitize_columns( $data ) { |
|
| 617 | + private function sanitize_columns($data) { |
|
| 618 | 618 | |
| 619 | 619 | $columns = $this->db->get_columns(); |
| 620 | 620 | $default_values = $this->db->get_column_defaults(); |
| 621 | 621 | |
| 622 | - foreach ( $columns as $key => $type ) { |
|
| 622 | + foreach ($columns as $key => $type) { |
|
| 623 | 623 | |
| 624 | 624 | // Only sanitize data that we were provided |
| 625 | - if ( ! array_key_exists( $key, $data ) ) { |
|
| 625 | + if ( ! array_key_exists($key, $data)) { |
|
| 626 | 626 | continue; |
| 627 | 627 | } |
| 628 | 628 | |
| 629 | - switch ( $type ) { |
|
| 629 | + switch ($type) { |
|
| 630 | 630 | |
| 631 | 631 | case '%s': |
| 632 | - if ( 'email' == $key ) { |
|
| 633 | - $data[ $key ] = sanitize_email( $data[ $key ] ); |
|
| 634 | - } elseif ( 'notes' == $key ) { |
|
| 635 | - $data[ $key ] = strip_tags( $data[ $key ] ); |
|
| 632 | + if ('email' == $key) { |
|
| 633 | + $data[$key] = sanitize_email($data[$key]); |
|
| 634 | + } elseif ('notes' == $key) { |
|
| 635 | + $data[$key] = strip_tags($data[$key]); |
|
| 636 | 636 | } else { |
| 637 | - $data[ $key ] = sanitize_text_field( $data[ $key ] ); |
|
| 637 | + $data[$key] = sanitize_text_field($data[$key]); |
|
| 638 | 638 | } |
| 639 | 639 | break; |
| 640 | 640 | |
| 641 | 641 | case '%d': |
| 642 | - if ( ! is_numeric( $data[ $key ] ) || (int) $data[ $key ] !== absint( $data[ $key ] ) ) { |
|
| 643 | - $data[ $key ] = $default_values[ $key ]; |
|
| 642 | + if ( ! is_numeric($data[$key]) || (int) $data[$key] !== absint($data[$key])) { |
|
| 643 | + $data[$key] = $default_values[$key]; |
|
| 644 | 644 | } else { |
| 645 | - $data[ $key ] = absint( $data[ $key ] ); |
|
| 645 | + $data[$key] = absint($data[$key]); |
|
| 646 | 646 | } |
| 647 | 647 | break; |
| 648 | 648 | |
| 649 | 649 | case '%f': |
| 650 | 650 | // Convert what was given to a float |
| 651 | - $value = floatval( $data[ $key ] ); |
|
| 651 | + $value = floatval($data[$key]); |
|
| 652 | 652 | |
| 653 | - if ( ! is_float( $value ) ) { |
|
| 654 | - $data[ $key ] = $default_values[ $key ]; |
|
| 653 | + if ( ! is_float($value)) { |
|
| 654 | + $data[$key] = $default_values[$key]; |
|
| 655 | 655 | } else { |
| 656 | - $data[ $key ] = $value; |
|
| 656 | + $data[$key] = $value; |
|
| 657 | 657 | } |
| 658 | 658 | break; |
| 659 | 659 | |
| 660 | 660 | default: |
| 661 | - $data[ $key ] = sanitize_text_field( $data[ $key ] ); |
|
| 661 | + $data[$key] = sanitize_text_field($data[$key]); |
|
| 662 | 662 | break; |
| 663 | 663 | |
| 664 | 664 | } |
@@ -9,13 +9,13 @@ discard block |
||
| 9 | 9 | */ |
| 10 | 10 | |
| 11 | 11 | // Exit if accessed directly |
| 12 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 12 | +if ( ! defined('ABSPATH')) { |
|
| 13 | 13 | exit; |
| 14 | 14 | } |
| 15 | 15 | |
| 16 | 16 | // Load WP_List_Table if not loaded |
| 17 | -if ( ! class_exists( 'WP_List_Table' ) ) { |
|
| 18 | - require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
|
| 17 | +if ( ! class_exists('WP_List_Table')) { |
|
| 18 | + require_once ABSPATH.'wp-admin/includes/class-wp-list-table.php'; |
|
| 19 | 19 | } |
| 20 | 20 | |
| 21 | 21 | /** |
@@ -45,11 +45,11 @@ discard block |
||
| 45 | 45 | global $status, $page; |
| 46 | 46 | |
| 47 | 47 | // Set parent defaults |
| 48 | - parent::__construct( array( |
|
| 49 | - 'singular' => give_get_forms_label_singular(), // Singular name of the listed records |
|
| 50 | - 'plural' => give_get_forms_label_plural(), // Plural name of the listed records |
|
| 48 | + parent::__construct(array( |
|
| 49 | + 'singular' => give_get_forms_label_singular(), // Singular name of the listed records |
|
| 50 | + 'plural' => give_get_forms_label_plural(), // Plural name of the listed records |
|
| 51 | 51 | 'ajax' => false // Does this table support ajax? |
| 52 | - ) ); |
|
| 52 | + )); |
|
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | /** |
@@ -63,14 +63,14 @@ discard block |
||
| 63 | 63 | * |
| 64 | 64 | * @return string Column Name |
| 65 | 65 | */ |
| 66 | - public function column_default( $item, $column_name ) { |
|
| 67 | - switch ( $column_name ) { |
|
| 66 | + public function column_default($item, $column_name) { |
|
| 67 | + switch ($column_name) { |
|
| 68 | 68 | case 'ID' : |
| 69 | 69 | return $item['ID_label']; |
| 70 | 70 | case 'error' : |
| 71 | - return get_the_title( $item['ID'] ) ? get_the_title( $item['ID'] ) : __( 'Payment Error', 'give' ); |
|
| 71 | + return get_the_title($item['ID']) ? get_the_title($item['ID']) : __('Payment Error', 'give'); |
|
| 72 | 72 | default: |
| 73 | - return $item[ $column_name ]; |
|
| 73 | + return $item[$column_name]; |
|
| 74 | 74 | } |
| 75 | 75 | } |
| 76 | 76 | |
@@ -84,29 +84,29 @@ discard block |
||
| 84 | 84 | * |
| 85 | 85 | * @return void |
| 86 | 86 | */ |
| 87 | - public function column_message( $item ) { |
|
| 87 | + public function column_message($item) { |
|
| 88 | 88 | |
| 89 | 89 | ?> |
| 90 | - <a href="#TB_inline?width=640&inlineId=log-message-<?php echo $item['ID']; ?>" class="thickbox" title="<?php _e( 'View Log Message', 'give' ); ?> "><?php _e( 'View Log Message', 'give' ); ?></a> |
|
| 90 | + <a href="#TB_inline?width=640&inlineId=log-message-<?php echo $item['ID']; ?>" class="thickbox" title="<?php _e('View Log Message', 'give'); ?> "><?php _e('View Log Message', 'give'); ?></a> |
|
| 91 | 91 | <div id="log-message-<?php echo $item['ID']; ?>" style="display:none;"> |
| 92 | 92 | <?php |
| 93 | 93 | |
| 94 | - $log_message = get_post_field( 'post_content', $item['ID'] ); |
|
| 94 | + $log_message = get_post_field('post_content', $item['ID']); |
|
| 95 | 95 | |
| 96 | - $serialized = strpos( $log_message, '{"' ); |
|
| 96 | + $serialized = strpos($log_message, '{"'); |
|
| 97 | 97 | |
| 98 | 98 | // Check to see if the log message contains serialized information |
| 99 | - if ( $serialized !== false ) { |
|
| 100 | - $length = strlen( $log_message ) - $serialized; |
|
| 101 | - $intro = substr( $log_message, 0, - $length ); |
|
| 102 | - $data = substr( $log_message, $serialized, strlen( $log_message ) - 1 ); |
|
| 99 | + if ($serialized !== false) { |
|
| 100 | + $length = strlen($log_message) - $serialized; |
|
| 101 | + $intro = substr($log_message, 0, - $length); |
|
| 102 | + $data = substr($log_message, $serialized, strlen($log_message) - 1); |
|
| 103 | 103 | |
| 104 | - echo wpautop( $intro ); |
|
| 105 | - echo wpautop( '<strong>' . __( 'Log data:', 'give' ) . '</strong>' ); |
|
| 106 | - echo '<div style="word-wrap: break-word;">' . wpautop( $data ) . '</div>'; |
|
| 104 | + echo wpautop($intro); |
|
| 105 | + echo wpautop('<strong>'.__('Log data:', 'give').'</strong>'); |
|
| 106 | + echo '<div style="word-wrap: break-word;">'.wpautop($data).'</div>'; |
|
| 107 | 107 | } else { |
| 108 | 108 | // No serialized data found |
| 109 | - echo wpautop( $log_message ); |
|
| 109 | + echo wpautop($log_message); |
|
| 110 | 110 | } |
| 111 | 111 | ?> |
| 112 | 112 | </div> |
@@ -122,12 +122,12 @@ discard block |
||
| 122 | 122 | */ |
| 123 | 123 | public function get_columns() { |
| 124 | 124 | $columns = array( |
| 125 | - 'ID' => __( 'Log ID', 'give' ), |
|
| 126 | - 'payment_id' => __( 'Payment ID', 'give' ), |
|
| 127 | - 'error' => __( 'Error', 'give' ), |
|
| 128 | - 'message' => __( 'Error Message', 'give' ), |
|
| 129 | - 'gateway' => __( 'Gateway', 'give' ), |
|
| 130 | - 'date' => __( 'Date', 'give' ) |
|
| 125 | + 'ID' => __('Log ID', 'give'), |
|
| 126 | + 'payment_id' => __('Payment ID', 'give'), |
|
| 127 | + 'error' => __('Error', 'give'), |
|
| 128 | + 'message' => __('Error Message', 'give'), |
|
| 129 | + 'gateway' => __('Gateway', 'give'), |
|
| 130 | + 'date' => __('Date', 'give') |
|
| 131 | 131 | ); |
| 132 | 132 | |
| 133 | 133 | return $columns; |
@@ -141,7 +141,7 @@ discard block |
||
| 141 | 141 | * @return int Current page number |
| 142 | 142 | */ |
| 143 | 143 | public function get_paged() { |
| 144 | - return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1; |
|
| 144 | + return isset($_GET['paged']) ? absint($_GET['paged']) : 1; |
|
| 145 | 145 | } |
| 146 | 146 | |
| 147 | 147 | /** |
@@ -151,7 +151,7 @@ discard block |
||
| 151 | 151 | * @since 1.0 |
| 152 | 152 | * @return void |
| 153 | 153 | */ |
| 154 | - public function bulk_actions( $which = '' ) { |
|
| 154 | + public function bulk_actions($which = '') { |
|
| 155 | 155 | give_log_views(); |
| 156 | 156 | } |
| 157 | 157 | |
@@ -167,7 +167,7 @@ discard block |
||
| 167 | 167 | global $give_logs; |
| 168 | 168 | |
| 169 | 169 | // Prevent the queries from getting cached. Without this there are occasional memory issues for some installs |
| 170 | - wp_suspend_cache_addition( true ); |
|
| 170 | + wp_suspend_cache_addition(true); |
|
| 171 | 171 | |
| 172 | 172 | $logs_data = array(); |
| 173 | 173 | $paged = $this->get_paged(); |
@@ -176,17 +176,17 @@ discard block |
||
| 176 | 176 | 'paged' => $paged |
| 177 | 177 | ); |
| 178 | 178 | |
| 179 | - $logs = $give_logs->get_connected_logs( $log_query ); |
|
| 179 | + $logs = $give_logs->get_connected_logs($log_query); |
|
| 180 | 180 | |
| 181 | - if ( $logs ) { |
|
| 182 | - foreach ( $logs as $log ) { |
|
| 181 | + if ($logs) { |
|
| 182 | + foreach ($logs as $log) { |
|
| 183 | 183 | |
| 184 | 184 | $logs_data[] = array( |
| 185 | 185 | 'ID' => $log->ID, |
| 186 | - 'ID_label' => '<span class=\'give-item-label give-item-label-gray\'>' . $log->ID . '</span>', |
|
| 186 | + 'ID_label' => '<span class=\'give-item-label give-item-label-gray\'>'.$log->ID.'</span>', |
|
| 187 | 187 | 'payment_id' => $log->post_parent, |
| 188 | 188 | 'error' => 'error', |
| 189 | - 'gateway' => give_get_payment_gateway( $log->post_parent ), |
|
| 189 | + 'gateway' => give_get_payment_gateway($log->post_parent), |
|
| 190 | 190 | 'date' => $log->post_date |
| 191 | 191 | ); |
| 192 | 192 | } |
@@ -207,19 +207,19 @@ discard block |
||
| 207 | 207 | * |
| 208 | 208 | * @param string $which |
| 209 | 209 | */ |
| 210 | - protected function display_tablenav( $which ) { |
|
| 211 | - if ( 'top' === $which ) { |
|
| 212 | - wp_nonce_field( 'bulk-' . $this->_args['plural'] ); |
|
| 210 | + protected function display_tablenav($which) { |
|
| 211 | + if ('top' === $which) { |
|
| 212 | + wp_nonce_field('bulk-'.$this->_args['plural']); |
|
| 213 | 213 | } |
| 214 | 214 | ?> |
| 215 | - <div class="tablenav <?php echo esc_attr( $which ); ?>"> |
|
| 215 | + <div class="tablenav <?php echo esc_attr($which); ?>"> |
|
| 216 | 216 | |
| 217 | 217 | <div class="alignleft actions bulkactions"> |
| 218 | - <?php $this->bulk_actions( $which ); ?> |
|
| 218 | + <?php $this->bulk_actions($which); ?> |
|
| 219 | 219 | </div> |
| 220 | 220 | <?php |
| 221 | - $this->extra_tablenav( $which ); |
|
| 222 | - $this->pagination( $which ); |
|
| 221 | + $this->extra_tablenav($which); |
|
| 222 | + $this->pagination($which); |
|
| 223 | 223 | ?> |
| 224 | 224 | |
| 225 | 225 | <br class="clear"/> |
@@ -246,15 +246,15 @@ discard block |
||
| 246 | 246 | $columns = $this->get_columns(); |
| 247 | 247 | $hidden = array(); // No hidden columns |
| 248 | 248 | $sortable = $this->get_sortable_columns(); |
| 249 | - $this->_column_headers = array( $columns, $hidden, $sortable ); |
|
| 249 | + $this->_column_headers = array($columns, $hidden, $sortable); |
|
| 250 | 250 | $current_page = $this->get_pagenum(); |
| 251 | 251 | $this->items = $this->get_logs(); |
| 252 | - $total_items = $give_logs->get_log_count( 0, 'gateway_error' ); |
|
| 252 | + $total_items = $give_logs->get_log_count(0, 'gateway_error'); |
|
| 253 | 253 | |
| 254 | - $this->set_pagination_args( array( |
|
| 254 | + $this->set_pagination_args(array( |
|
| 255 | 255 | 'total_items' => $total_items, |
| 256 | 256 | 'per_page' => $this->per_page, |
| 257 | - 'total_pages' => ceil( $total_items / $this->per_page ) |
|
| 257 | + 'total_pages' => ceil($total_items / $this->per_page) |
|
| 258 | 258 | ) |
| 259 | 259 | ); |
| 260 | 260 | } |
@@ -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 | |
@@ -41,8 +41,8 @@ discard block |
||
| 41 | 41 | * |
| 42 | 42 | * @return string $message Fully formatted message |
| 43 | 43 | */ |
| 44 | -function give_email_template_tags( $message, $payment_data, $payment_id, $admin_notice = false ) { |
|
| 45 | - return give_do_email_tags( $message, $payment_id ); |
|
| 44 | +function give_email_template_tags($message, $payment_data, $payment_id, $admin_notice = false) { |
|
| 45 | + return give_do_email_tags($message, $payment_id); |
|
| 46 | 46 | } |
| 47 | 47 | |
| 48 | 48 | /** |
@@ -54,40 +54,40 @@ discard block |
||
| 54 | 54 | * |
| 55 | 55 | * @return string $message Fully formatted message |
| 56 | 56 | */ |
| 57 | -function give_email_preview_template_tags( $message ) { |
|
| 57 | +function give_email_preview_template_tags($message) { |
|
| 58 | 58 | |
| 59 | - $price = give_currency_filter( give_format_amount( 10.50 ) ); |
|
| 59 | + $price = give_currency_filter(give_format_amount(10.50)); |
|
| 60 | 60 | |
| 61 | 61 | $gateway = 'PayPal'; |
| 62 | 62 | |
| 63 | - $receipt_id = strtolower( md5( uniqid() ) ); |
|
| 63 | + $receipt_id = strtolower(md5(uniqid())); |
|
| 64 | 64 | |
| 65 | - $notes = __( 'These are some sample notes added to a donation.', 'give' ); |
|
| 65 | + $notes = __('These are some sample notes added to a donation.', 'give'); |
|
| 66 | 66 | |
| 67 | - $payment_id = rand( 1, 100 ); |
|
| 67 | + $payment_id = rand(1, 100); |
|
| 68 | 68 | |
| 69 | 69 | $receipt_link = sprintf( |
| 70 | 70 | '<a href="%1$s">%2$s</a>', |
| 71 | - esc_url( add_query_arg( array( 'payment_key' => $receipt_id, 'give_action' => 'view_receipt' ), home_url() ) ), |
|
| 72 | - __( 'View the receipt in your browser', 'give' ) |
|
| 71 | + esc_url(add_query_arg(array('payment_key' => $receipt_id, 'give_action' => 'view_receipt'), home_url())), |
|
| 72 | + __('View the receipt in your browser', 'give') |
|
| 73 | 73 | ); |
| 74 | 74 | |
| 75 | 75 | $user = wp_get_current_user(); |
| 76 | 76 | |
| 77 | - $message = str_replace( '{name}', $user->display_name, $message ); |
|
| 78 | - $message = str_replace( '{fullname}', $user->display_name, $message ); |
|
| 79 | - $message = str_replace( '{username}', $user->user_login, $message ); |
|
| 80 | - $message = str_replace( '{date}', date( get_option( 'date_format' ), current_time( 'timestamp' ) ), $message ); |
|
| 81 | - $message = str_replace( '{price}', $price, $message ); |
|
| 82 | - $message = str_replace( '{donation}', 'Sample Donation Form Title', $message ); |
|
| 83 | - $message = str_replace( '{receipt_id}', $receipt_id, $message ); |
|
| 84 | - $message = str_replace( '{payment_method}', $gateway, $message ); |
|
| 85 | - $message = str_replace( '{sitename}', get_bloginfo( 'name' ), $message ); |
|
| 86 | - $message = str_replace( '{product_notes}', $notes, $message ); |
|
| 87 | - $message = str_replace( '{payment_id}', $payment_id, $message ); |
|
| 88 | - $message = str_replace( '{receipt_link}', $receipt_link, $message ); |
|
| 89 | - |
|
| 90 | - return wpautop( apply_filters( 'give_email_preview_template_tags', $message ) ); |
|
| 77 | + $message = str_replace('{name}', $user->display_name, $message); |
|
| 78 | + $message = str_replace('{fullname}', $user->display_name, $message); |
|
| 79 | + $message = str_replace('{username}', $user->user_login, $message); |
|
| 80 | + $message = str_replace('{date}', date(get_option('date_format'), current_time('timestamp')), $message); |
|
| 81 | + $message = str_replace('{price}', $price, $message); |
|
| 82 | + $message = str_replace('{donation}', 'Sample Donation Form Title', $message); |
|
| 83 | + $message = str_replace('{receipt_id}', $receipt_id, $message); |
|
| 84 | + $message = str_replace('{payment_method}', $gateway, $message); |
|
| 85 | + $message = str_replace('{sitename}', get_bloginfo('name'), $message); |
|
| 86 | + $message = str_replace('{product_notes}', $notes, $message); |
|
| 87 | + $message = str_replace('{payment_id}', $payment_id, $message); |
|
| 88 | + $message = str_replace('{receipt_link}', $receipt_link, $message); |
|
| 89 | + |
|
| 90 | + return wpautop(apply_filters('give_email_preview_template_tags', $message)); |
|
| 91 | 91 | } |
| 92 | 92 | |
| 93 | 93 | /** |
@@ -100,20 +100,20 @@ discard block |
||
| 100 | 100 | * @since 1.0 |
| 101 | 101 | * @return array|bool |
| 102 | 102 | */ |
| 103 | -add_filter( 'give_settings_emails', 'give_email_template_preview' ); |
|
| 103 | +add_filter('give_settings_emails', 'give_email_template_preview'); |
|
| 104 | 104 | |
| 105 | -function give_email_template_preview( $array ) { |
|
| 105 | +function give_email_template_preview($array) { |
|
| 106 | 106 | |
| 107 | - if ( ! current_user_can( 'manage_give_settings' ) ) { |
|
| 107 | + if ( ! current_user_can('manage_give_settings')) { |
|
| 108 | 108 | return false; |
| 109 | 109 | } |
| 110 | 110 | $custom_field = array( |
| 111 | - 'name' => __( 'Preview Email', 'give' ), |
|
| 112 | - 'desc' => __( 'Click the buttons to preview emails.', 'give' ), |
|
| 111 | + 'name' => __('Preview Email', 'give'), |
|
| 112 | + 'desc' => __('Click the buttons to preview emails.', 'give'), |
|
| 113 | 113 | 'id' => 'give_email_preview_buttons', |
| 114 | 114 | 'type' => 'email_preview_buttons' |
| 115 | 115 | ); |
| 116 | - array_splice( $array, 5, 0, array( $custom_field ) ); |
|
| 116 | + array_splice($array, 5, 0, array($custom_field)); |
|
| 117 | 117 | |
| 118 | 118 | return $array; // splice in at position 3; |
| 119 | 119 | } |
@@ -129,11 +129,11 @@ discard block |
||
| 129 | 129 | function give_email_preview_buttons_callback() { |
| 130 | 130 | ob_start(); |
| 131 | 131 | ?> |
| 132 | - <a href="<?php echo esc_url( add_query_arg( array( 'give_action' => 'preview_email' ), home_url() ) ); ?>" class="button-secondary" target="_blank" title="<?php _e( 'Donation Receipt Preview', 'give' ); ?> "><?php _e( 'Preview Donation Receipt', 'give' ); ?></a> |
|
| 133 | - <a href="<?php echo wp_nonce_url( add_query_arg( array( |
|
| 132 | + <a href="<?php echo esc_url(add_query_arg(array('give_action' => 'preview_email'), home_url())); ?>" class="button-secondary" target="_blank" title="<?php _e('Donation Receipt Preview', 'give'); ?> "><?php _e('Preview Donation Receipt', 'give'); ?></a> |
|
| 133 | + <a href="<?php echo wp_nonce_url(add_query_arg(array( |
|
| 134 | 134 | 'give_action' => 'send_test_email', |
| 135 | 135 | 'give-message' => 'sent-test-email' |
| 136 | - ) ), 'give-test-email' ); ?>" title="<?php _e( 'This will send a demo donation receipt to the emails listed below.', 'give' ); ?>" class="button-secondary"><?php _e( 'Send Test Email', 'give' ); ?></a> |
|
| 136 | + )), 'give-test-email'); ?>" title="<?php _e('This will send a demo donation receipt to the emails listed below.', 'give'); ?>" class="button-secondary"><?php _e('Send Test Email', 'give'); ?></a> |
|
| 137 | 137 | <?php |
| 138 | 138 | echo ob_get_clean(); |
| 139 | 139 | } |
@@ -146,27 +146,27 @@ discard block |
||
| 146 | 146 | */ |
| 147 | 147 | function give_display_email_template_preview() { |
| 148 | 148 | |
| 149 | - if ( empty( $_GET['give_action'] ) ) { |
|
| 149 | + if (empty($_GET['give_action'])) { |
|
| 150 | 150 | return; |
| 151 | 151 | } |
| 152 | 152 | |
| 153 | - if ( 'preview_email' !== $_GET['give_action'] ) { |
|
| 153 | + if ('preview_email' !== $_GET['give_action']) { |
|
| 154 | 154 | return; |
| 155 | 155 | } |
| 156 | 156 | |
| 157 | - if ( ! current_user_can( 'manage_give_settings' ) ) { |
|
| 157 | + if ( ! current_user_can('manage_give_settings')) { |
|
| 158 | 158 | return; |
| 159 | 159 | } |
| 160 | 160 | |
| 161 | - Give()->emails->heading = __( 'Donation Receipt', 'give' ); |
|
| 161 | + Give()->emails->heading = __('Donation Receipt', 'give'); |
|
| 162 | 162 | |
| 163 | - echo Give()->emails->build_email( give_email_preview_template_tags( give_get_email_body_content( 0, array() ) ) ); |
|
| 163 | + echo Give()->emails->build_email(give_email_preview_template_tags(give_get_email_body_content(0, array()))); |
|
| 164 | 164 | |
| 165 | 165 | exit; |
| 166 | 166 | |
| 167 | 167 | } |
| 168 | 168 | |
| 169 | -add_action( 'template_redirect', 'give_display_email_template_preview' ); |
|
| 169 | +add_action('template_redirect', 'give_display_email_template_preview'); |
|
| 170 | 170 | |
| 171 | 171 | /** |
| 172 | 172 | * Email Template Body |
@@ -178,19 +178,19 @@ discard block |
||
| 178 | 178 | * |
| 179 | 179 | * @return string $email_body Body of the email |
| 180 | 180 | */ |
| 181 | -function give_get_email_body_content( $payment_id = 0, $payment_data = array() ) { |
|
| 181 | +function give_get_email_body_content($payment_id = 0, $payment_data = array()) { |
|
| 182 | 182 | |
| 183 | 183 | global $give_options; |
| 184 | 184 | |
| 185 | 185 | $default_email_body = give_get_default_donation_receipt_email(); |
| 186 | 186 | |
| 187 | - $email = isset( $give_options['donation_receipt'] ) ? stripslashes( $give_options['donation_receipt'] ) : $default_email_body; |
|
| 187 | + $email = isset($give_options['donation_receipt']) ? stripslashes($give_options['donation_receipt']) : $default_email_body; |
|
| 188 | 188 | |
| 189 | - $email_body = wpautop( $email ); |
|
| 189 | + $email_body = wpautop($email); |
|
| 190 | 190 | |
| 191 | - $email_body = apply_filters( 'give_donation_receipt_' . Give()->emails->get_template(), $email_body, $payment_id, $payment_data ); |
|
| 191 | + $email_body = apply_filters('give_donation_receipt_'.Give()->emails->get_template(), $email_body, $payment_id, $payment_data); |
|
| 192 | 192 | |
| 193 | - return apply_filters( 'give_donation_receipt', $email_body, $payment_id, $payment_data ); |
|
| 193 | + return apply_filters('give_donation_receipt', $email_body, $payment_id, $payment_data); |
|
| 194 | 194 | } |
| 195 | 195 | |
| 196 | 196 | |
@@ -206,37 +206,37 @@ discard block |
||
| 206 | 206 | * |
| 207 | 207 | * @return string $email_body Body of the email |
| 208 | 208 | */ |
| 209 | -function give_get_donation_notification_body_content( $payment_id = 0, $payment_data = array() ) { |
|
| 209 | +function give_get_donation_notification_body_content($payment_id = 0, $payment_data = array()) { |
|
| 210 | 210 | global $give_options; |
| 211 | 211 | |
| 212 | - $user_info = maybe_unserialize( $payment_data['user_info'] ); |
|
| 213 | - $email = give_get_payment_user_email( $payment_id ); |
|
| 212 | + $user_info = maybe_unserialize($payment_data['user_info']); |
|
| 213 | + $email = give_get_payment_user_email($payment_id); |
|
| 214 | 214 | |
| 215 | - if ( isset( $user_info['id'] ) && $user_info['id'] > 0 ) { |
|
| 216 | - $user_data = get_userdata( $user_info['id'] ); |
|
| 215 | + if (isset($user_info['id']) && $user_info['id'] > 0) { |
|
| 216 | + $user_data = get_userdata($user_info['id']); |
|
| 217 | 217 | $name = $user_data->display_name; |
| 218 | - } elseif ( isset( $user_info['first_name'] ) && isset( $user_info['last_name'] ) ) { |
|
| 219 | - $name = $user_info['first_name'] . ' ' . $user_info['last_name']; |
|
| 218 | + } elseif (isset($user_info['first_name']) && isset($user_info['last_name'])) { |
|
| 219 | + $name = $user_info['first_name'].' '.$user_info['last_name']; |
|
| 220 | 220 | } else { |
| 221 | 221 | $name = $email; |
| 222 | 222 | } |
| 223 | 223 | |
| 224 | - $gateway = give_get_gateway_admin_label( get_post_meta( $payment_id, '_give_payment_gateway', true ) ); |
|
| 224 | + $gateway = give_get_gateway_admin_label(get_post_meta($payment_id, '_give_payment_gateway', true)); |
|
| 225 | 225 | |
| 226 | - $default_email_body = __( 'Hello', 'give' ) . "\n\n" . __( 'A donation has been made', 'give' ) . ".\n\n"; |
|
| 227 | - $default_email_body .= sprintf( __( '%s sold:', 'give' ), give_get_forms_label_plural() ) . "\n\n"; |
|
| 226 | + $default_email_body = __('Hello', 'give')."\n\n".__('A donation has been made', 'give').".\n\n"; |
|
| 227 | + $default_email_body .= sprintf(__('%s sold:', 'give'), give_get_forms_label_plural())."\n\n"; |
|
| 228 | 228 | |
| 229 | - $default_email_body .= __( 'Donor: ', 'give' ) . " " . html_entity_decode( $name, ENT_COMPAT, 'UTF-8' ) . "\n"; |
|
| 230 | - $default_email_body .= __( 'Amount: ', 'give' ) . " " . html_entity_decode( give_currency_filter( give_format_amount( give_get_payment_amount( $payment_id ) ) ), ENT_COMPAT, 'UTF-8' ) . "\n"; |
|
| 231 | - $default_email_body .= __( 'Payment Method: ', 'give' ) . " " . $gateway . "\n\n"; |
|
| 229 | + $default_email_body .= __('Donor: ', 'give')." ".html_entity_decode($name, ENT_COMPAT, 'UTF-8')."\n"; |
|
| 230 | + $default_email_body .= __('Amount: ', 'give')." ".html_entity_decode(give_currency_filter(give_format_amount(give_get_payment_amount($payment_id))), ENT_COMPAT, 'UTF-8')."\n"; |
|
| 231 | + $default_email_body .= __('Payment Method: ', 'give')." ".$gateway."\n\n"; |
|
| 232 | 232 | |
| 233 | - $default_email_body .= __( 'Thank you', 'give' ); |
|
| 233 | + $default_email_body .= __('Thank you', 'give'); |
|
| 234 | 234 | |
| 235 | - $email = isset( $give_options['donation_notification'] ) ? stripslashes( $give_options['donation_notification'] ) : $default_email_body; |
|
| 235 | + $email = isset($give_options['donation_notification']) ? stripslashes($give_options['donation_notification']) : $default_email_body; |
|
| 236 | 236 | |
| 237 | - $email_body = give_do_email_tags( $email, $payment_id ); |
|
| 237 | + $email_body = give_do_email_tags($email, $payment_id); |
|
| 238 | 238 | |
| 239 | - return apply_filters( 'give_donation_notification', wpautop( $email_body ), $payment_id, $payment_data ); |
|
| 239 | + return apply_filters('give_donation_notification', wpautop($email_body), $payment_id, $payment_data); |
|
| 240 | 240 | } |
| 241 | 241 | |
| 242 | 242 | /** |
@@ -249,15 +249,15 @@ discard block |
||
| 249 | 249 | * @since 1.0 |
| 250 | 250 | */ |
| 251 | 251 | function give_render_receipt_in_browser() { |
| 252 | - if ( ! isset( $_GET['payment_key'] ) ) { |
|
| 253 | - wp_die( __( 'Missing donation payment key.', 'give' ), __( 'Error', 'give' ) ); |
|
| 252 | + if ( ! isset($_GET['payment_key'])) { |
|
| 253 | + wp_die(__('Missing donation payment key.', 'give'), __('Error', 'give')); |
|
| 254 | 254 | } |
| 255 | 255 | |
| 256 | - $key = urlencode( $_GET['payment_key'] ); |
|
| 256 | + $key = urlencode($_GET['payment_key']); |
|
| 257 | 257 | |
| 258 | 258 | ob_start(); |
| 259 | 259 | //Disallows caching of the page |
| 260 | - header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); |
|
| 260 | + header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); |
|
| 261 | 261 | header("Cache-Control: no-store, no-cache, must-revalidate"); // HTTP/1.1 |
| 262 | 262 | header("Cache-Control: post-check=0, pre-check=0", false); |
| 263 | 263 | header("Pragma: no-cache"); // HTTP/1.0 |
@@ -266,7 +266,7 @@ discard block |
||
| 266 | 266 | <!DOCTYPE html> |
| 267 | 267 | <html lang="en"> |
| 268 | 268 | <head> |
| 269 | - <title><?php _e( 'Donation Receipt', 'give' ); ?></title> |
|
| 269 | + <title><?php _e('Donation Receipt', 'give'); ?></title> |
|
| 270 | 270 | <meta charset="utf-8" /> |
| 271 | 271 | |
| 272 | 272 | <!-- Further disallowing of caching of this page --> |
@@ -280,12 +280,12 @@ discard block |
||
| 280 | 280 | |
| 281 | 281 | <?php wp_head(); ?> |
| 282 | 282 | </head> |
| 283 | - <body class="<?php echo apply_filters( 'give_receipt_page_body_class', 'give_receipt_page' ); ?>"> |
|
| 283 | + <body class="<?php echo apply_filters('give_receipt_page_body_class', 'give_receipt_page'); ?>"> |
|
| 284 | 284 | |
| 285 | 285 | <div id="give_receipt_wrapper"> |
| 286 | - <?php do_action( 'give_render_receipt_in_browser_before' ); ?> |
|
| 287 | - <?php echo do_shortcode( '[give_receipt payment_key=' . $key . ']' ); ?> |
|
| 288 | - <?php do_action( 'give_render_receipt_in_browser_after' ); ?> |
|
| 286 | + <?php do_action('give_render_receipt_in_browser_before'); ?> |
|
| 287 | + <?php echo do_shortcode('[give_receipt payment_key='.$key.']'); ?> |
|
| 288 | + <?php do_action('give_render_receipt_in_browser_after'); ?> |
|
| 289 | 289 | </div> |
| 290 | 290 | |
| 291 | 291 | <?php wp_footer(); ?> |
@@ -296,4 +296,4 @@ discard block |
||
| 296 | 296 | die(); |
| 297 | 297 | } |
| 298 | 298 | |
| 299 | -add_action( 'give_view_receipt', 'give_render_receipt_in_browser' ); |
|
| 299 | +add_action('give_view_receipt', 'give_render_receipt_in_browser'); |
|