Completed
Pull Request — master (#782)
by
unknown
20:41
created
includes/admin/class-api-keys-table.php 1 patch
Spacing   +58 added lines, -58 removed lines patch added patch discarded remove patch
@@ -10,13 +10,13 @@  discard block
 block discarded – undo
10 10
  */
11 11
 
12 12
 // Exit if accessed directly
13
-if ( ! defined( 'ABSPATH' ) ) {
13
+if ( ! defined('ABSPATH')) {
14 14
 	exit;
15 15
 }
16 16
 
17 17
 // Load WP_List_Table if not loaded
18
-if ( ! class_exists( 'WP_List_Table' ) ) {
19
-	require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php';
18
+if ( ! class_exists('WP_List_Table')) {
19
+	require_once ABSPATH.'wp-admin/includes/class-wp-list-table.php';
20 20
 }
21 21
 
22 22
 /**
@@ -50,11 +50,11 @@  discard block
 block discarded – undo
50 50
 		global $status, $page;
51 51
 
52 52
 		// Set parent defaults
53
-		parent::__construct( array(
54
-			'singular' => esc_html__( 'API Key', 'give' ),     // Singular name of the listed records
55
-			'plural'   => esc_html__( 'API Keys', 'give' ),    // Plural name of the listed records
53
+		parent::__construct(array(
54
+			'singular' => esc_html__('API Key', 'give'), // Singular name of the listed records
55
+			'plural'   => esc_html__('API Keys', 'give'), // Plural name of the listed records
56 56
 			'ajax'     => false                       // Does this table support ajax?
57
-		) );
57
+		));
58 58
 
59 59
 		$this->query();
60 60
 	}
@@ -70,8 +70,8 @@  discard block
 block discarded – undo
70 70
 	 *
71 71
 	 * @return string Column Name
72 72
 	 */
73
-	public function column_default( $item, $column_name ) {
74
-		return $item[ $column_name ];
73
+	public function column_default($item, $column_name) {
74
+		return $item[$column_name];
75 75
 	}
76 76
 
77 77
 	/**
@@ -85,8 +85,8 @@  discard block
 block discarded – undo
85 85
 	 *
86 86
 	 * @return string Column Name
87 87
 	 */
88
-	public function column_key( $item ) {
89
-		return '<input readonly="readonly" type="text" class="large-text" value="' . esc_attr__( $item['key'] ) . '"/>';
88
+	public function column_key($item) {
89
+		return '<input readonly="readonly" type="text" class="large-text" value="'.esc_attr__($item['key']).'"/>';
90 90
 	}
91 91
 
92 92
 	/**
@@ -100,8 +100,8 @@  discard block
 block discarded – undo
100 100
 	 *
101 101
 	 * @return string Column Name
102 102
 	 */
103
-	public function column_token( $item ) {
104
-		return '<input readonly="readonly" type="text" class="large-text" value="' . esc_attr__( $item['token'] ) . '"/>';
103
+	public function column_token($item) {
104
+		return '<input readonly="readonly" type="text" class="large-text" value="'.esc_attr__($item['token']).'"/>';
105 105
 	}
106 106
 
107 107
 	/**
@@ -115,8 +115,8 @@  discard block
 block discarded – undo
115 115
 	 *
116 116
 	 * @return string Column Name
117 117
 	 */
118
-	public function column_secret( $item ) {
119
-		return '<input readonly="readonly" type="text" class="large-text" value="' . esc_attr__( $item['secret'] ) . '"/>';
118
+	public function column_secret($item) {
119
+		return '<input readonly="readonly" type="text" class="large-text" value="'.esc_attr__($item['secret']).'"/>';
120 120
 	}
121 121
 
122 122
 	/**
@@ -126,46 +126,46 @@  discard block
 block discarded – undo
126 126
 	 * @since  1.1
127 127
 	 * @return void
128 128
 	 */
129
-	public function column_user( $item ) {
129
+	public function column_user($item) {
130 130
 
131 131
 		$actions = array();
132 132
 
133
-		if ( apply_filters( 'give_api_log_requests', true ) ) {
133
+		if (apply_filters('give_api_log_requests', true)) {
134 134
 			$actions['view'] = sprintf(
135 135
 				'<a href="%s">%s</a>',
136
-				esc_url( add_query_arg( array(
136
+				esc_url(add_query_arg(array(
137 137
 					'view'      => 'api_requests',
138 138
 					'post_type' => 'give_forms',
139 139
 					'page'      => 'give-reports',
140 140
 					'tab'       => 'logs',
141 141
 					's'         => $item['email']
142
-				), 'edit.php' ) ),
143
-				esc_html__( 'View API Log', 'give' )
142
+				), 'edit.php')),
143
+				esc_html__('View API Log', 'give')
144 144
 			);
145 145
 		}
146 146
 
147 147
 		$actions['reissue'] = sprintf(
148 148
 			'<a href="%s" class="give-regenerate-api-key">%s</a>',
149
-			esc_url( wp_nonce_url( add_query_arg( array(
149
+			esc_url(wp_nonce_url(add_query_arg(array(
150 150
 				'user_id'          => $item['id'],
151 151
 				'give_action'      => 'process_api_key',
152 152
 				'give_api_process' => 'regenerate'
153
-			) ), 'give-api-nonce' ) ),
154
-			esc_html__( 'Reissue', 'give' )
153
+			)), 'give-api-nonce')),
154
+			esc_html__('Reissue', 'give')
155 155
 		);
156
-		$actions['revoke']  = sprintf(
156
+		$actions['revoke'] = sprintf(
157 157
 			'<a href="%s" class="give-revoke-api-key give-delete">%s</a>',
158
-			esc_url( wp_nonce_url( add_query_arg( array(
158
+			esc_url(wp_nonce_url(add_query_arg(array(
159 159
 				'user_id'          => $item['id'],
160 160
 				'give_action'      => 'process_api_key',
161 161
 				'give_api_process' => 'revoke'
162
-			) ), 'give-api-nonce' ) ),
163
-			esc_html__( 'Revoke', 'give' )
162
+			)), 'give-api-nonce')),
163
+			esc_html__('Revoke', 'give')
164 164
 		);
165 165
 
166
-		$actions = apply_filters( 'give_api_row_actions', array_filter( $actions ) );
166
+		$actions = apply_filters('give_api_row_actions', array_filter($actions));
167 167
 
168
-		return sprintf( '%1$s %2$s', $item['user'], $this->row_actions( $actions ) );
168
+		return sprintf('%1$s %2$s', $item['user'], $this->row_actions($actions));
169 169
 	}
170 170
 
171 171
 	/**
@@ -177,10 +177,10 @@  discard block
 block discarded – undo
177 177
 	 */
178 178
 	public function get_columns() {
179 179
 		$columns = array(
180
-			'user'   => esc_html__( 'Username', 'give' ),
181
-			'key'    => esc_html__( 'Public Key', 'give' ),
182
-			'token'  => esc_html__( 'Token', 'give' ),
183
-			'secret' => esc_html__( 'Secret Key', 'give' )
180
+			'user'   => esc_html__('Username', 'give'),
181
+			'key'    => esc_html__('Public Key', 'give'),
182
+			'token'  => esc_html__('Token', 'give'),
183
+			'secret' => esc_html__('Secret Key', 'give')
184 184
 		);
185 185
 
186 186
 		return $columns;
@@ -193,19 +193,19 @@  discard block
 block discarded – undo
193 193
 	 * @since  1.1
194 194
 	 * @return void
195 195
 	 */
196
-	function bulk_actions( $which = '' ) {
196
+	function bulk_actions($which = '') {
197 197
 		// These aren't really bulk actions but this outputs the markup in the right place
198 198
 		static $give_api_is_bottom;
199 199
 
200
-		if ( $give_api_is_bottom ) {
200
+		if ($give_api_is_bottom) {
201 201
 			return;
202 202
 		}
203 203
 		?>
204 204
 		<input type="hidden" name="give_action" value="process_api_key"/>
205 205
 		<input type="hidden" name="give_api_process" value="generate"/>
206
-		<?php wp_nonce_field( 'give-api-nonce' ); ?>
206
+		<?php wp_nonce_field('give-api-nonce'); ?>
207 207
 		<?php echo Give()->html->ajax_user_search(); ?>
208
-		<?php submit_button( esc_html__( 'Generate New API Keys', 'give' ), 'secondary', 'submit', false ); ?>
208
+		<?php submit_button(esc_html__('Generate New API Keys', 'give'), 'secondary', 'submit', false); ?>
209 209
 		<?php
210 210
 		$give_api_is_bottom = true;
211 211
 	}
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
 	 * @return int Current page number
219 219
 	 */
220 220
 	public function get_paged() {
221
-		return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1;
221
+		return isset($_GET['paged']) ? absint($_GET['paged']) : 1;
222 222
 	}
223 223
 
224 224
 	/**
@@ -229,21 +229,21 @@  discard block
 block discarded – undo
229 229
 	 * @return array
230 230
 	 */
231 231
 	public function query() {
232
-		$users = get_users( array(
232
+		$users = get_users(array(
233 233
 			'meta_value' => 'give_user_secret_key',
234 234
 			'number'     => $this->per_page,
235
-			'offset'     => $this->per_page * ( $this->get_paged() - 1 )
236
-		) );
237
-		$keys  = array();
238
-
239
-		foreach ( $users as $user ) {
240
-			$keys[ $user->ID ]['id']    = $user->ID;
241
-			$keys[ $user->ID ]['email'] = $user->user_email;
242
-			$keys[ $user->ID ]['user']  = '<a href="' . add_query_arg( 'user_id', $user->ID, 'user-edit.php' ) . '"><strong>' . $user->user_login . '</strong></a>';
243
-
244
-			$keys[ $user->ID ]['key']    = Give()->api->get_user_public_key( $user->ID );
245
-			$keys[ $user->ID ]['secret'] = Give()->api->get_user_secret_key( $user->ID );
246
-			$keys[ $user->ID ]['token']  = Give()->api->get_token( $user->ID );
235
+			'offset'     => $this->per_page * ($this->get_paged() - 1)
236
+		));
237
+		$keys = array();
238
+
239
+		foreach ($users as $user) {
240
+			$keys[$user->ID]['id']    = $user->ID;
241
+			$keys[$user->ID]['email'] = $user->user_email;
242
+			$keys[$user->ID]['user']  = '<a href="'.add_query_arg('user_id', $user->ID, 'user-edit.php').'"><strong>'.$user->user_login.'</strong></a>';
243
+
244
+			$keys[$user->ID]['key']    = Give()->api->get_user_public_key($user->ID);
245
+			$keys[$user->ID]['secret'] = Give()->api->get_user_secret_key($user->ID);
246
+			$keys[$user->ID]['token']  = Give()->api->get_token($user->ID);
247 247
 		}
248 248
 
249 249
 		return $keys;
@@ -260,13 +260,13 @@  discard block
 block discarded – undo
260 260
 	public function total_items() {
261 261
 		global $wpdb;
262 262
 
263
-		if ( ! get_transient( 'give_total_api_keys' ) ) {
264
-			$total_items = $wpdb->get_var( "SELECT count(user_id) FROM $wpdb->usermeta WHERE meta_value='give_user_secret_key'" );
263
+		if ( ! get_transient('give_total_api_keys')) {
264
+			$total_items = $wpdb->get_var("SELECT count(user_id) FROM $wpdb->usermeta WHERE meta_value='give_user_secret_key'");
265 265
 
266
-			set_transient( 'give_total_api_keys', $total_items, 60 * 60 );
266
+			set_transient('give_total_api_keys', $total_items, 60 * 60);
267 267
 		}
268 268
 
269
-		return get_transient( 'give_total_api_keys' );
269
+		return get_transient('give_total_api_keys');
270 270
 	}
271 271
 
272 272
 	/**
@@ -282,7 +282,7 @@  discard block
 block discarded – undo
282 282
 		$hidden   = array(); // No hidden columns
283 283
 		$sortable = array(); // Not sortable... for now
284 284
 
285
-		$this->_column_headers = array( $columns, $hidden, $sortable, 'id' );
285
+		$this->_column_headers = array($columns, $hidden, $sortable, 'id');
286 286
 
287 287
 		$data = $this->query();
288 288
 
@@ -290,10 +290,10 @@  discard block
 block discarded – undo
290 290
 
291 291
 		$this->items = $data;
292 292
 
293
-		$this->set_pagination_args( array(
293
+		$this->set_pagination_args(array(
294 294
 				'total_items' => $total_items,
295 295
 				'per_page'    => $this->per_page,
296
-				'total_pages' => ceil( $total_items / $this->per_page )
296
+				'total_pages' => ceil($total_items / $this->per_page)
297 297
 			)
298 298
 		);
299 299
 	}
Please login to merge, or discard this patch.
includes/admin/EDD_SL_Plugin_Updater.php 2 patches
Indentation   +272 added lines, -272 removed lines patch added patch discarded remove patch
@@ -13,330 +13,330 @@
 block discarded – undo
13 13
  * @version 1.6
14 14
  */
15 15
 class EDD_SL_Plugin_Updater {
16
-    private $api_url   = '';
17
-    private $api_data  = array();
18
-    private $name      = '';
19
-    private $slug      = '';
20
-
21
-    /**
22
-     * Class constructor.
23
-     *
24
-     * @uses plugin_basename()
25
-     * @uses hook()
26
-     *
27
-     * @param string  $_api_url     The URL pointing to the custom API endpoint.
28
-     * @param string  $_plugin_file Path to the plugin file.
29
-     * @param array   $_api_data    Optional data to send with API calls.
30
-     * @return void
31
-     */
32
-    function __construct( $_api_url, $_plugin_file, $_api_data = null ) {
33
-        $this->api_url  = trailingslashit( $_api_url );
34
-        $this->api_data = $_api_data;
35
-        $this->name     = plugin_basename( $_plugin_file );
36
-        $this->slug     = basename( $_plugin_file, '.php' );
37
-        $this->version  = $_api_data['version'];
38
-
39
-        // Set up hooks.
40
-        $this->init();
41
-        add_action( 'admin_init', array( $this, 'show_changelog' ) );
42
-    }
43
-
44
-    /**
45
-     * Set up WordPress filters to hook into WP's update process.
46
-     *
47
-     * @uses add_filter()
48
-     *
49
-     * @return void
50
-     */
51
-    public function init() {
16
+	private $api_url   = '';
17
+	private $api_data  = array();
18
+	private $name      = '';
19
+	private $slug      = '';
20
+
21
+	/**
22
+	 * Class constructor.
23
+	 *
24
+	 * @uses plugin_basename()
25
+	 * @uses hook()
26
+	 *
27
+	 * @param string  $_api_url     The URL pointing to the custom API endpoint.
28
+	 * @param string  $_plugin_file Path to the plugin file.
29
+	 * @param array   $_api_data    Optional data to send with API calls.
30
+	 * @return void
31
+	 */
32
+	function __construct( $_api_url, $_plugin_file, $_api_data = null ) {
33
+		$this->api_url  = trailingslashit( $_api_url );
34
+		$this->api_data = $_api_data;
35
+		$this->name     = plugin_basename( $_plugin_file );
36
+		$this->slug     = basename( $_plugin_file, '.php' );
37
+		$this->version  = $_api_data['version'];
38
+
39
+		// Set up hooks.
40
+		$this->init();
41
+		add_action( 'admin_init', array( $this, 'show_changelog' ) );
42
+	}
43
+
44
+	/**
45
+	 * Set up WordPress filters to hook into WP's update process.
46
+	 *
47
+	 * @uses add_filter()
48
+	 *
49
+	 * @return void
50
+	 */
51
+	public function init() {
52 52
 
53
-        add_filter( 'pre_set_site_transient_update_plugins', array( $this, 'check_update' ) );
54
-        add_filter( 'plugins_api', array( $this, 'plugins_api_filter' ), 10, 3 );
53
+		add_filter( 'pre_set_site_transient_update_plugins', array( $this, 'check_update' ) );
54
+		add_filter( 'plugins_api', array( $this, 'plugins_api_filter' ), 10, 3 );
55 55
 
56
-        add_action( 'after_plugin_row_' . $this->name, array( $this, 'show_update_notification' ), 10, 2 );
57
-    }
56
+		add_action( 'after_plugin_row_' . $this->name, array( $this, 'show_update_notification' ), 10, 2 );
57
+	}
58 58
 
59
-    /**
60
-     * Check for Updates at the defined API endpoint and modify the update array.
61
-     *
62
-     * This function dives into the update API just when WordPress creates its update array,
63
-     * then adds a custom API call and injects the custom plugin data retrieved from the API.
64
-     * It is reassembled from parts of the native WordPress plugin update code.
65
-     * See wp-includes/update.php line 121 for the original wp_update_plugins() function.
66
-     *
67
-     * @uses api_request()
68
-     *
69
-     * @param array   $_transient_data Update array build by WordPress.
70
-     * @return array Modified update array with custom plugin data.
71
-     */
72
-    function check_update( $_transient_data ) {
59
+	/**
60
+	 * Check for Updates at the defined API endpoint and modify the update array.
61
+	 *
62
+	 * This function dives into the update API just when WordPress creates its update array,
63
+	 * then adds a custom API call and injects the custom plugin data retrieved from the API.
64
+	 * It is reassembled from parts of the native WordPress plugin update code.
65
+	 * See wp-includes/update.php line 121 for the original wp_update_plugins() function.
66
+	 *
67
+	 * @uses api_request()
68
+	 *
69
+	 * @param array   $_transient_data Update array build by WordPress.
70
+	 * @return array Modified update array with custom plugin data.
71
+	 */
72
+	function check_update( $_transient_data ) {
73 73
 
74
-        global $pagenow;
74
+		global $pagenow;
75 75
 
76
-        if( ! is_object( $_transient_data ) ) {
77
-            $_transient_data = new stdClass;
78
-        }
76
+		if( ! is_object( $_transient_data ) ) {
77
+			$_transient_data = new stdClass;
78
+		}
79 79
 
80
-        if( 'plugins.php' == $pagenow && is_multisite() ) {
81
-            return $_transient_data;
82
-        }
80
+		if( 'plugins.php' == $pagenow && is_multisite() ) {
81
+			return $_transient_data;
82
+		}
83 83
 
84
-        if ( empty( $_transient_data->response ) || empty( $_transient_data->response[ $this->name ] ) ) {
84
+		if ( empty( $_transient_data->response ) || empty( $_transient_data->response[ $this->name ] ) ) {
85 85
 
86
-            $version_info = $this->api_request( 'plugin_latest_version', array( 'slug' => $this->slug ) );
86
+			$version_info = $this->api_request( 'plugin_latest_version', array( 'slug' => $this->slug ) );
87 87
 
88
-            if ( false !== $version_info && is_object( $version_info ) && isset( $version_info->new_version ) ) {
88
+			if ( false !== $version_info && is_object( $version_info ) && isset( $version_info->new_version ) ) {
89 89
 
90
-                $this->did_check = true;
90
+				$this->did_check = true;
91 91
 
92
-                if( version_compare( $this->version, $version_info->new_version, '<' ) ) {
92
+				if( version_compare( $this->version, $version_info->new_version, '<' ) ) {
93 93
 
94
-                    $_transient_data->response[ $this->name ] = $version_info;
94
+					$_transient_data->response[ $this->name ] = $version_info;
95 95
 
96
-                }
96
+				}
97 97
 
98
-                $_transient_data->last_checked = time();
99
-                $_transient_data->checked[ $this->name ] = $this->version;
98
+				$_transient_data->last_checked = time();
99
+				$_transient_data->checked[ $this->name ] = $this->version;
100 100
 
101
-            }
101
+			}
102 102
 
103
-        }
103
+		}
104 104
 
105
-        return $_transient_data;
106
-    }
105
+		return $_transient_data;
106
+	}
107 107
 
108
-    /**
109
-     * show update nofication row -- needed for multisite subsites, because WP won't tell you otherwise!
110
-     *
111
-     * @param string  $file
112
-     * @param array   $plugin
113
-     */
114
-    public function show_update_notification( $file, $plugin ) {
108
+	/**
109
+	 * show update nofication row -- needed for multisite subsites, because WP won't tell you otherwise!
110
+	 *
111
+	 * @param string  $file
112
+	 * @param array   $plugin
113
+	 */
114
+	public function show_update_notification( $file, $plugin ) {
115 115
 
116
-        if( ! current_user_can( 'update_plugins' ) ) {
117
-            return;
118
-        }
116
+		if( ! current_user_can( 'update_plugins' ) ) {
117
+			return;
118
+		}
119 119
 
120
-        if( ! is_multisite() ) {
121
-            return;
122
-        }
120
+		if( ! is_multisite() ) {
121
+			return;
122
+		}
123 123
 
124
-        if ( $this->name != $file ) {
125
-            return;
126
-        }
124
+		if ( $this->name != $file ) {
125
+			return;
126
+		}
127 127
 
128
-        // Remove our filter on the site transient
129
-        remove_filter( 'pre_set_site_transient_update_plugins', array( $this, 'check_update' ), 10 );
128
+		// Remove our filter on the site transient
129
+		remove_filter( 'pre_set_site_transient_update_plugins', array( $this, 'check_update' ), 10 );
130 130
 
131
-        $update_cache = get_site_transient( 'update_plugins' );
131
+		$update_cache = get_site_transient( 'update_plugins' );
132 132
 
133
-        if ( ! is_object( $update_cache ) || empty( $update_cache->response ) || empty( $update_cache->response[ $this->name ] ) ) {
133
+		if ( ! is_object( $update_cache ) || empty( $update_cache->response ) || empty( $update_cache->response[ $this->name ] ) ) {
134 134
 
135
-            $cache_key    = md5( 'edd_plugin_' .sanitize_key( $this->name ) . '_version_info' );
136
-            $version_info = get_transient( $cache_key );
135
+			$cache_key    = md5( 'edd_plugin_' .sanitize_key( $this->name ) . '_version_info' );
136
+			$version_info = get_transient( $cache_key );
137 137
 
138
-            if( false === $version_info ) {
138
+			if( false === $version_info ) {
139 139
 
140
-                $version_info = $this->api_request( 'plugin_latest_version', array( 'slug' => $this->slug ) );
140
+				$version_info = $this->api_request( 'plugin_latest_version', array( 'slug' => $this->slug ) );
141 141
 
142
-                set_transient( $cache_key, $version_info, 3600 );
143
-            }
142
+				set_transient( $cache_key, $version_info, 3600 );
143
+			}
144 144
 
145 145
 
146
-            if( ! is_object( $version_info ) ) {
147
-                return;
148
-            }
146
+			if( ! is_object( $version_info ) ) {
147
+				return;
148
+			}
149 149
 
150
-            if( version_compare( $this->version, $version_info->new_version, '<' ) ) {
150
+			if( version_compare( $this->version, $version_info->new_version, '<' ) ) {
151 151
 
152
-                $update_cache->response[ $this->name ] = $version_info;
152
+				$update_cache->response[ $this->name ] = $version_info;
153 153
 
154
-            }
154
+			}
155 155
 
156
-            $update_cache->last_checked = time();
157
-            $update_cache->checked[ $this->name ] = $this->version;
156
+			$update_cache->last_checked = time();
157
+			$update_cache->checked[ $this->name ] = $this->version;
158 158
 
159
-            set_site_transient( 'update_plugins', $update_cache );
159
+			set_site_transient( 'update_plugins', $update_cache );
160 160
 
161
-        } else {
161
+		} else {
162 162
 
163
-            $version_info = $update_cache->response[ $this->name ];
163
+			$version_info = $update_cache->response[ $this->name ];
164 164
 
165
-        }
165
+		}
166 166
 
167
-        // Restore our filter
168
-        add_filter( 'pre_set_site_transient_update_plugins', array( $this, 'check_update' ) );
167
+		// Restore our filter
168
+		add_filter( 'pre_set_site_transient_update_plugins', array( $this, 'check_update' ) );
169 169
 
170
-        if ( ! empty( $update_cache->response[ $this->name ] ) && version_compare( $this->version, $version_info->new_version, '<' ) ) {
170
+		if ( ! empty( $update_cache->response[ $this->name ] ) && version_compare( $this->version, $version_info->new_version, '<' ) ) {
171 171
 
172
-            // build a plugin list row, with update notification
173
-            $wp_list_table = _get_list_table( 'WP_Plugins_List_Table' );
174
-            echo '<tr class="plugin-update-tr"><td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange"><div class="update-message">';
172
+			// build a plugin list row, with update notification
173
+			$wp_list_table = _get_list_table( 'WP_Plugins_List_Table' );
174
+			echo '<tr class="plugin-update-tr"><td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange"><div class="update-message">';
175 175
 
176
-            $changelog_link = self_admin_url( 'index.php?edd_sl_action=view_plugin_changelog&plugin=' . $this->name . '&slug=' . $this->slug . '&TB_iframe=true&width=772&height=911' );
176
+			$changelog_link = self_admin_url( 'index.php?edd_sl_action=view_plugin_changelog&plugin=' . $this->name . '&slug=' . $this->slug . '&TB_iframe=true&width=772&height=911' );
177 177
 
178
-            if ( empty( $version_info->download_link ) ) {
179
-                printf(
178
+			if ( empty( $version_info->download_link ) ) {
179
+				printf(
180 180
 					/* translators: 1: name 2: changelog URL 3: version */
181
-                    __( 'There is a new version of %1$s available. <a target="_blank" class="thickbox" href="%2$s">View version %3$s details</a>.', 'edd' ),
182
-                    esc_html__( $version_info->name ),
183
-                    esc_url( $changelog_link ),
184
-                    esc_html__( $version_info->new_version )
185
-                );
186
-            } else {
187
-                printf(
181
+					__( 'There is a new version of %1$s available. <a target="_blank" class="thickbox" href="%2$s">View version %3$s details</a>.', 'edd' ),
182
+					esc_html__( $version_info->name ),
183
+					esc_url( $changelog_link ),
184
+					esc_html__( $version_info->new_version )
185
+				);
186
+			} else {
187
+				printf(
188 188
 					/* translators: 1: name 2: changelog URL 3: version 4: update URL */
189
-                    __( 'There is a new version of %1$s available. <a target="_blank" class="thickbox" href="%2$s">View version %3$s details</a> or <a href="%4$s">update now</a>.', 'edd' ),
190
-                    esc_html__( $version_info->name ),
191
-                    esc_url( $changelog_link ),
192
-                    esc_html__( $version_info->new_version ),
193
-                    esc_url( wp_nonce_url( self_admin_url( 'update.php?action=upgrade-plugin&plugin=' ) . $this->name, 'upgrade-plugin_' . $this->name ) )
194
-                );
195
-            }
196
-
197
-            echo '</div></td></tr>';
198
-        }
199
-    }
200
-
201
-
202
-    /**
203
-     * Updates information on the "View version x.x details" page with custom data.
204
-     *
205
-     * @uses api_request()
206
-     *
207
-     * @param mixed   $_data
208
-     * @param string  $_action
209
-     * @param object  $_args
210
-     * @return object $_data
211
-     */
212
-    function plugins_api_filter( $_data, $_action = '', $_args = null ) {
213
-
214
-
215
-        if ( $_action != 'plugin_information' ) {
216
-
217
-            return $_data;
218
-
219
-        }
220
-
221
-        if ( ! isset( $_args->slug ) || ( $_args->slug != $this->slug ) ) {
222
-
223
-            return $_data;
224
-
225
-        }
226
-
227
-        $to_send = array(
228
-            'slug'   => $this->slug,
229
-            'is_ssl' => is_ssl(),
230
-            'fields' => array(
231
-                'banners' => false, // These will be supported soon hopefully
232
-                'reviews' => false
233
-            )
234
-        );
235
-
236
-        $api_response = $this->api_request( 'plugin_information', $to_send );
237
-
238
-        if ( false !== $api_response ) {
239
-            $_data = $api_response;
240
-        }
241
-
242
-        return $_data;
243
-    }
244
-
245
-
246
-    /**
247
-     * Disable SSL verification in order to prevent download update failures
248
-     *
249
-     * @param array   $args
250
-     * @param string  $url
251
-     * @return object $array
252
-     */
253
-    function http_request_args( $args, $url ) {
254
-        // If it is an https request and we are performing a package download, disable ssl verification
255
-        if ( strpos( $url, 'https://' ) !== false && strpos( $url, 'edd_action=package_download' ) ) {
256
-            $args['sslverify'] = false;
257
-        }
258
-        return $args;
259
-    }
260
-
261
-    /**
262
-     * Calls the API and, if successfull, returns the object delivered by the API.
263
-     *
264
-     * @uses get_bloginfo()
265
-     * @uses wp_remote_post()
266
-     * @uses is_wp_error()
267
-     *
268
-     * @param string  $_action The requested action.
269
-     * @param array   $_data   Parameters for the API action.
270
-     * @return false||object
271
-     */
272
-    private function api_request( $_action, $_data ) {
273
-
274
-        global $wp_version;
275
-
276
-        $data = array_merge( $this->api_data, $_data );
277
-
278
-        if ( $data['slug'] != $this->slug )
279
-            return;
280
-
281
-        if ( empty( $data['license'] ) )
282
-            return;
283
-
284
-        if( $this->api_url == home_url() ) {
285
-            return false; // Don't allow a plugin to ping itself
286
-        }
287
-
288
-        $api_params = array(
289
-            'edd_action' => 'get_version',
290
-            'license'    => $data['license'],
291
-            'item_name'  => isset( $data['item_name'] ) ? $data['item_name'] : false,
292
-            'item_id'    => isset( $data['item_id'] ) ? $data['item_id'] : false,
293
-            'slug'       => $data['slug'],
294
-            'author'     => $data['author'],
295
-            'url'        => home_url()
296
-        );
189
+					__( 'There is a new version of %1$s available. <a target="_blank" class="thickbox" href="%2$s">View version %3$s details</a> or <a href="%4$s">update now</a>.', 'edd' ),
190
+					esc_html__( $version_info->name ),
191
+					esc_url( $changelog_link ),
192
+					esc_html__( $version_info->new_version ),
193
+					esc_url( wp_nonce_url( self_admin_url( 'update.php?action=upgrade-plugin&plugin=' ) . $this->name, 'upgrade-plugin_' . $this->name ) )
194
+				);
195
+			}
196
+
197
+			echo '</div></td></tr>';
198
+		}
199
+	}
200
+
201
+
202
+	/**
203
+	 * Updates information on the "View version x.x details" page with custom data.
204
+	 *
205
+	 * @uses api_request()
206
+	 *
207
+	 * @param mixed   $_data
208
+	 * @param string  $_action
209
+	 * @param object  $_args
210
+	 * @return object $_data
211
+	 */
212
+	function plugins_api_filter( $_data, $_action = '', $_args = null ) {
213
+
214
+
215
+		if ( $_action != 'plugin_information' ) {
216
+
217
+			return $_data;
218
+
219
+		}
220
+
221
+		if ( ! isset( $_args->slug ) || ( $_args->slug != $this->slug ) ) {
222
+
223
+			return $_data;
224
+
225
+		}
226
+
227
+		$to_send = array(
228
+			'slug'   => $this->slug,
229
+			'is_ssl' => is_ssl(),
230
+			'fields' => array(
231
+				'banners' => false, // These will be supported soon hopefully
232
+				'reviews' => false
233
+			)
234
+		);
235
+
236
+		$api_response = $this->api_request( 'plugin_information', $to_send );
237
+
238
+		if ( false !== $api_response ) {
239
+			$_data = $api_response;
240
+		}
241
+
242
+		return $_data;
243
+	}
244
+
245
+
246
+	/**
247
+	 * Disable SSL verification in order to prevent download update failures
248
+	 *
249
+	 * @param array   $args
250
+	 * @param string  $url
251
+	 * @return object $array
252
+	 */
253
+	function http_request_args( $args, $url ) {
254
+		// If it is an https request and we are performing a package download, disable ssl verification
255
+		if ( strpos( $url, 'https://' ) !== false && strpos( $url, 'edd_action=package_download' ) ) {
256
+			$args['sslverify'] = false;
257
+		}
258
+		return $args;
259
+	}
260
+
261
+	/**
262
+	 * Calls the API and, if successfull, returns the object delivered by the API.
263
+	 *
264
+	 * @uses get_bloginfo()
265
+	 * @uses wp_remote_post()
266
+	 * @uses is_wp_error()
267
+	 *
268
+	 * @param string  $_action The requested action.
269
+	 * @param array   $_data   Parameters for the API action.
270
+	 * @return false||object
271
+	 */
272
+	private function api_request( $_action, $_data ) {
273
+
274
+		global $wp_version;
275
+
276
+		$data = array_merge( $this->api_data, $_data );
277
+
278
+		if ( $data['slug'] != $this->slug )
279
+			return;
280
+
281
+		if ( empty( $data['license'] ) )
282
+			return;
283
+
284
+		if( $this->api_url == home_url() ) {
285
+			return false; // Don't allow a plugin to ping itself
286
+		}
287
+
288
+		$api_params = array(
289
+			'edd_action' => 'get_version',
290
+			'license'    => $data['license'],
291
+			'item_name'  => isset( $data['item_name'] ) ? $data['item_name'] : false,
292
+			'item_id'    => isset( $data['item_id'] ) ? $data['item_id'] : false,
293
+			'slug'       => $data['slug'],
294
+			'author'     => $data['author'],
295
+			'url'        => home_url()
296
+		);
297 297
 
298
-        $request = wp_remote_post( $this->api_url, array( 'timeout' => 15, 'sslverify' => false, 'body' => $api_params ) );
298
+		$request = wp_remote_post( $this->api_url, array( 'timeout' => 15, 'sslverify' => false, 'body' => $api_params ) );
299 299
 
300
-        if ( ! is_wp_error( $request ) ) {
301
-            $request = json_decode( wp_remote_retrieve_body( $request ) );
302
-        }
300
+		if ( ! is_wp_error( $request ) ) {
301
+			$request = json_decode( wp_remote_retrieve_body( $request ) );
302
+		}
303 303
 
304
-        if ( $request && isset( $request->sections ) ) {
305
-            $request->sections = maybe_unserialize( $request->sections );
306
-        } else {
307
-            $request = false;
308
-        }
304
+		if ( $request && isset( $request->sections ) ) {
305
+			$request->sections = maybe_unserialize( $request->sections );
306
+		} else {
307
+			$request = false;
308
+		}
309 309
 
310
-        return $request;
311
-    }
310
+		return $request;
311
+	}
312 312
 
313
-    public function show_changelog() {
313
+	public function show_changelog() {
314 314
 
315 315
 
316
-        if( empty( $_REQUEST['edd_sl_action'] ) || 'view_plugin_changelog' != $_REQUEST['edd_sl_action'] ) {
317
-            return;
318
-        }
316
+		if( empty( $_REQUEST['edd_sl_action'] ) || 'view_plugin_changelog' != $_REQUEST['edd_sl_action'] ) {
317
+			return;
318
+		}
319 319
 
320
-        if( empty( $_REQUEST['plugin'] ) ) {
321
-            return;
322
-        }
323
-
324
-        if( empty( $_REQUEST['slug'] ) ) {
325
-            return;
326
-        }
327
-
328
-        if( ! current_user_can( 'update_plugins' ) ) {
329
-            wp_die( esc_html__( 'You do not have permission to install plugin updates.', 'edd' ), esc_html__( 'Error', 'edd' ), array( 'response' => 403 ) );
330
-        }
331
-
332
-        $response = $this->api_request( 'plugin_latest_version', array( 'slug' => $_REQUEST['slug'] ) );
333
-
334
-        if( $response && isset( $response->sections['changelog'] ) ) {
335
-            echo '<div style="background:#fff;padding:10px;">' . $response->sections['changelog'] . '</div>';
336
-        }
337
-
338
-
339
-        exit;
340
-    }
320
+		if( empty( $_REQUEST['plugin'] ) ) {
321
+			return;
322
+		}
323
+
324
+		if( empty( $_REQUEST['slug'] ) ) {
325
+			return;
326
+		}
327
+
328
+		if( ! current_user_can( 'update_plugins' ) ) {
329
+			wp_die( esc_html__( 'You do not have permission to install plugin updates.', 'edd' ), esc_html__( 'Error', 'edd' ), array( 'response' => 403 ) );
330
+		}
331
+
332
+		$response = $this->api_request( 'plugin_latest_version', array( 'slug' => $_REQUEST['slug'] ) );
333
+
334
+		if( $response && isset( $response->sections['changelog'] ) ) {
335
+			echo '<div style="background:#fff;padding:10px;">' . $response->sections['changelog'] . '</div>';
336
+		}
337
+
338
+
339
+		exit;
340
+	}
341 341
 
342 342
 }
Please login to merge, or discard this patch.
Spacing   +78 added lines, -78 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
 //set_site_transient( 'update_plugins', null );
5 5
 
6 6
 // Exit if accessed directly
7
-if ( ! defined( 'ABSPATH' ) ) exit;
7
+if ( ! defined('ABSPATH')) exit;
8 8
 
9 9
 /**
10 10
  * Allows plugins to use their own update API.
@@ -29,16 +29,16 @@  discard block
 block discarded – undo
29 29
      * @param array   $_api_data    Optional data to send with API calls.
30 30
      * @return void
31 31
      */
32
-    function __construct( $_api_url, $_plugin_file, $_api_data = null ) {
33
-        $this->api_url  = trailingslashit( $_api_url );
32
+    function __construct($_api_url, $_plugin_file, $_api_data = null) {
33
+        $this->api_url  = trailingslashit($_api_url);
34 34
         $this->api_data = $_api_data;
35
-        $this->name     = plugin_basename( $_plugin_file );
36
-        $this->slug     = basename( $_plugin_file, '.php' );
35
+        $this->name     = plugin_basename($_plugin_file);
36
+        $this->slug     = basename($_plugin_file, '.php');
37 37
         $this->version  = $_api_data['version'];
38 38
 
39 39
         // Set up hooks.
40 40
         $this->init();
41
-        add_action( 'admin_init', array( $this, 'show_changelog' ) );
41
+        add_action('admin_init', array($this, 'show_changelog'));
42 42
     }
43 43
 
44 44
     /**
@@ -50,10 +50,10 @@  discard block
 block discarded – undo
50 50
      */
51 51
     public function init() {
52 52
 
53
-        add_filter( 'pre_set_site_transient_update_plugins', array( $this, 'check_update' ) );
54
-        add_filter( 'plugins_api', array( $this, 'plugins_api_filter' ), 10, 3 );
53
+        add_filter('pre_set_site_transient_update_plugins', array($this, 'check_update'));
54
+        add_filter('plugins_api', array($this, 'plugins_api_filter'), 10, 3);
55 55
 
56
-        add_action( 'after_plugin_row_' . $this->name, array( $this, 'show_update_notification' ), 10, 2 );
56
+        add_action('after_plugin_row_'.$this->name, array($this, 'show_update_notification'), 10, 2);
57 57
     }
58 58
 
59 59
     /**
@@ -69,34 +69,34 @@  discard block
 block discarded – undo
69 69
      * @param array   $_transient_data Update array build by WordPress.
70 70
      * @return array Modified update array with custom plugin data.
71 71
      */
72
-    function check_update( $_transient_data ) {
72
+    function check_update($_transient_data) {
73 73
 
74 74
         global $pagenow;
75 75
 
76
-        if( ! is_object( $_transient_data ) ) {
76
+        if ( ! is_object($_transient_data)) {
77 77
             $_transient_data = new stdClass;
78 78
         }
79 79
 
80
-        if( 'plugins.php' == $pagenow && is_multisite() ) {
80
+        if ('plugins.php' == $pagenow && is_multisite()) {
81 81
             return $_transient_data;
82 82
         }
83 83
 
84
-        if ( empty( $_transient_data->response ) || empty( $_transient_data->response[ $this->name ] ) ) {
84
+        if (empty($_transient_data->response) || empty($_transient_data->response[$this->name])) {
85 85
 
86
-            $version_info = $this->api_request( 'plugin_latest_version', array( 'slug' => $this->slug ) );
86
+            $version_info = $this->api_request('plugin_latest_version', array('slug' => $this->slug));
87 87
 
88
-            if ( false !== $version_info && is_object( $version_info ) && isset( $version_info->new_version ) ) {
88
+            if (false !== $version_info && is_object($version_info) && isset($version_info->new_version)) {
89 89
 
90 90
                 $this->did_check = true;
91 91
 
92
-                if( version_compare( $this->version, $version_info->new_version, '<' ) ) {
92
+                if (version_compare($this->version, $version_info->new_version, '<')) {
93 93
 
94
-                    $_transient_data->response[ $this->name ] = $version_info;
94
+                    $_transient_data->response[$this->name] = $version_info;
95 95
 
96 96
                 }
97 97
 
98 98
                 $_transient_data->last_checked = time();
99
-                $_transient_data->checked[ $this->name ] = $this->version;
99
+                $_transient_data->checked[$this->name] = $this->version;
100 100
 
101 101
             }
102 102
 
@@ -111,86 +111,86 @@  discard block
 block discarded – undo
111 111
      * @param string  $file
112 112
      * @param array   $plugin
113 113
      */
114
-    public function show_update_notification( $file, $plugin ) {
114
+    public function show_update_notification($file, $plugin) {
115 115
 
116
-        if( ! current_user_can( 'update_plugins' ) ) {
116
+        if ( ! current_user_can('update_plugins')) {
117 117
             return;
118 118
         }
119 119
 
120
-        if( ! is_multisite() ) {
120
+        if ( ! is_multisite()) {
121 121
             return;
122 122
         }
123 123
 
124
-        if ( $this->name != $file ) {
124
+        if ($this->name != $file) {
125 125
             return;
126 126
         }
127 127
 
128 128
         // Remove our filter on the site transient
129
-        remove_filter( 'pre_set_site_transient_update_plugins', array( $this, 'check_update' ), 10 );
129
+        remove_filter('pre_set_site_transient_update_plugins', array($this, 'check_update'), 10);
130 130
 
131
-        $update_cache = get_site_transient( 'update_plugins' );
131
+        $update_cache = get_site_transient('update_plugins');
132 132
 
133
-        if ( ! is_object( $update_cache ) || empty( $update_cache->response ) || empty( $update_cache->response[ $this->name ] ) ) {
133
+        if ( ! is_object($update_cache) || empty($update_cache->response) || empty($update_cache->response[$this->name])) {
134 134
 
135
-            $cache_key    = md5( 'edd_plugin_' .sanitize_key( $this->name ) . '_version_info' );
136
-            $version_info = get_transient( $cache_key );
135
+            $cache_key    = md5('edd_plugin_'.sanitize_key($this->name).'_version_info');
136
+            $version_info = get_transient($cache_key);
137 137
 
138
-            if( false === $version_info ) {
138
+            if (false === $version_info) {
139 139
 
140
-                $version_info = $this->api_request( 'plugin_latest_version', array( 'slug' => $this->slug ) );
140
+                $version_info = $this->api_request('plugin_latest_version', array('slug' => $this->slug));
141 141
 
142
-                set_transient( $cache_key, $version_info, 3600 );
142
+                set_transient($cache_key, $version_info, 3600);
143 143
             }
144 144
 
145 145
 
146
-            if( ! is_object( $version_info ) ) {
146
+            if ( ! is_object($version_info)) {
147 147
                 return;
148 148
             }
149 149
 
150
-            if( version_compare( $this->version, $version_info->new_version, '<' ) ) {
150
+            if (version_compare($this->version, $version_info->new_version, '<')) {
151 151
 
152
-                $update_cache->response[ $this->name ] = $version_info;
152
+                $update_cache->response[$this->name] = $version_info;
153 153
 
154 154
             }
155 155
 
156 156
             $update_cache->last_checked = time();
157
-            $update_cache->checked[ $this->name ] = $this->version;
157
+            $update_cache->checked[$this->name] = $this->version;
158 158
 
159
-            set_site_transient( 'update_plugins', $update_cache );
159
+            set_site_transient('update_plugins', $update_cache);
160 160
 
161 161
         } else {
162 162
 
163
-            $version_info = $update_cache->response[ $this->name ];
163
+            $version_info = $update_cache->response[$this->name];
164 164
 
165 165
         }
166 166
 
167 167
         // Restore our filter
168
-        add_filter( 'pre_set_site_transient_update_plugins', array( $this, 'check_update' ) );
168
+        add_filter('pre_set_site_transient_update_plugins', array($this, 'check_update'));
169 169
 
170
-        if ( ! empty( $update_cache->response[ $this->name ] ) && version_compare( $this->version, $version_info->new_version, '<' ) ) {
170
+        if ( ! empty($update_cache->response[$this->name]) && version_compare($this->version, $version_info->new_version, '<')) {
171 171
 
172 172
             // build a plugin list row, with update notification
173
-            $wp_list_table = _get_list_table( 'WP_Plugins_List_Table' );
174
-            echo '<tr class="plugin-update-tr"><td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange"><div class="update-message">';
173
+            $wp_list_table = _get_list_table('WP_Plugins_List_Table');
174
+            echo '<tr class="plugin-update-tr"><td colspan="'.$wp_list_table->get_column_count().'" class="plugin-update colspanchange"><div class="update-message">';
175 175
 
176
-            $changelog_link = self_admin_url( 'index.php?edd_sl_action=view_plugin_changelog&plugin=' . $this->name . '&slug=' . $this->slug . '&TB_iframe=true&width=772&height=911' );
176
+            $changelog_link = self_admin_url('index.php?edd_sl_action=view_plugin_changelog&plugin='.$this->name.'&slug='.$this->slug.'&TB_iframe=true&width=772&height=911');
177 177
 
178
-            if ( empty( $version_info->download_link ) ) {
178
+            if (empty($version_info->download_link)) {
179 179
                 printf(
180 180
 					/* translators: 1: name 2: changelog URL 3: version */
181
-                    __( 'There is a new version of %1$s available. <a target="_blank" class="thickbox" href="%2$s">View version %3$s details</a>.', 'edd' ),
182
-                    esc_html__( $version_info->name ),
183
-                    esc_url( $changelog_link ),
184
-                    esc_html__( $version_info->new_version )
181
+                    __('There is a new version of %1$s available. <a target="_blank" class="thickbox" href="%2$s">View version %3$s details</a>.', 'edd'),
182
+                    esc_html__($version_info->name),
183
+                    esc_url($changelog_link),
184
+                    esc_html__($version_info->new_version)
185 185
                 );
186 186
             } else {
187 187
                 printf(
188 188
 					/* translators: 1: name 2: changelog URL 3: version 4: update URL */
189
-                    __( 'There is a new version of %1$s available. <a target="_blank" class="thickbox" href="%2$s">View version %3$s details</a> or <a href="%4$s">update now</a>.', 'edd' ),
190
-                    esc_html__( $version_info->name ),
191
-                    esc_url( $changelog_link ),
192
-                    esc_html__( $version_info->new_version ),
193
-                    esc_url( wp_nonce_url( self_admin_url( 'update.php?action=upgrade-plugin&plugin=' ) . $this->name, 'upgrade-plugin_' . $this->name ) )
189
+                    __('There is a new version of %1$s available. <a target="_blank" class="thickbox" href="%2$s">View version %3$s details</a> or <a href="%4$s">update now</a>.', 'edd'),
190
+                    esc_html__($version_info->name),
191
+                    esc_url($changelog_link),
192
+                    esc_html__($version_info->new_version),
193
+                    esc_url(wp_nonce_url(self_admin_url('update.php?action=upgrade-plugin&plugin=').$this->name, 'upgrade-plugin_'.$this->name))
194 194
                 );
195 195
             }
196 196
 
@@ -209,16 +209,16 @@  discard block
 block discarded – undo
209 209
      * @param object  $_args
210 210
      * @return object $_data
211 211
      */
212
-    function plugins_api_filter( $_data, $_action = '', $_args = null ) {
212
+    function plugins_api_filter($_data, $_action = '', $_args = null) {
213 213
 
214 214
 
215
-        if ( $_action != 'plugin_information' ) {
215
+        if ($_action != 'plugin_information') {
216 216
 
217 217
             return $_data;
218 218
 
219 219
         }
220 220
 
221
-        if ( ! isset( $_args->slug ) || ( $_args->slug != $this->slug ) ) {
221
+        if ( ! isset($_args->slug) || ($_args->slug != $this->slug)) {
222 222
 
223 223
             return $_data;
224 224
 
@@ -233,9 +233,9 @@  discard block
 block discarded – undo
233 233
             )
234 234
         );
235 235
 
236
-        $api_response = $this->api_request( 'plugin_information', $to_send );
236
+        $api_response = $this->api_request('plugin_information', $to_send);
237 237
 
238
-        if ( false !== $api_response ) {
238
+        if (false !== $api_response) {
239 239
             $_data = $api_response;
240 240
         }
241 241
 
@@ -250,9 +250,9 @@  discard block
 block discarded – undo
250 250
      * @param string  $url
251 251
      * @return object $array
252 252
      */
253
-    function http_request_args( $args, $url ) {
253
+    function http_request_args($args, $url) {
254 254
         // If it is an https request and we are performing a package download, disable ssl verification
255
-        if ( strpos( $url, 'https://' ) !== false && strpos( $url, 'edd_action=package_download' ) ) {
255
+        if (strpos($url, 'https://') !== false && strpos($url, 'edd_action=package_download')) {
256 256
             $args['sslverify'] = false;
257 257
         }
258 258
         return $args;
@@ -269,40 +269,40 @@  discard block
 block discarded – undo
269 269
      * @param array   $_data   Parameters for the API action.
270 270
      * @return false||object
271 271
      */
272
-    private function api_request( $_action, $_data ) {
272
+    private function api_request($_action, $_data) {
273 273
 
274 274
         global $wp_version;
275 275
 
276
-        $data = array_merge( $this->api_data, $_data );
276
+        $data = array_merge($this->api_data, $_data);
277 277
 
278
-        if ( $data['slug'] != $this->slug )
278
+        if ($data['slug'] != $this->slug)
279 279
             return;
280 280
 
281
-        if ( empty( $data['license'] ) )
281
+        if (empty($data['license']))
282 282
             return;
283 283
 
284
-        if( $this->api_url == home_url() ) {
284
+        if ($this->api_url == home_url()) {
285 285
             return false; // Don't allow a plugin to ping itself
286 286
         }
287 287
 
288 288
         $api_params = array(
289 289
             'edd_action' => 'get_version',
290 290
             'license'    => $data['license'],
291
-            'item_name'  => isset( $data['item_name'] ) ? $data['item_name'] : false,
292
-            'item_id'    => isset( $data['item_id'] ) ? $data['item_id'] : false,
291
+            'item_name'  => isset($data['item_name']) ? $data['item_name'] : false,
292
+            'item_id'    => isset($data['item_id']) ? $data['item_id'] : false,
293 293
             'slug'       => $data['slug'],
294 294
             'author'     => $data['author'],
295 295
             'url'        => home_url()
296 296
         );
297 297
 
298
-        $request = wp_remote_post( $this->api_url, array( 'timeout' => 15, 'sslverify' => false, 'body' => $api_params ) );
298
+        $request = wp_remote_post($this->api_url, array('timeout' => 15, 'sslverify' => false, 'body' => $api_params));
299 299
 
300
-        if ( ! is_wp_error( $request ) ) {
301
-            $request = json_decode( wp_remote_retrieve_body( $request ) );
300
+        if ( ! is_wp_error($request)) {
301
+            $request = json_decode(wp_remote_retrieve_body($request));
302 302
         }
303 303
 
304
-        if ( $request && isset( $request->sections ) ) {
305
-            $request->sections = maybe_unserialize( $request->sections );
304
+        if ($request && isset($request->sections)) {
305
+            $request->sections = maybe_unserialize($request->sections);
306 306
         } else {
307 307
             $request = false;
308 308
         }
@@ -313,26 +313,26 @@  discard block
 block discarded – undo
313 313
     public function show_changelog() {
314 314
 
315 315
 
316
-        if( empty( $_REQUEST['edd_sl_action'] ) || 'view_plugin_changelog' != $_REQUEST['edd_sl_action'] ) {
316
+        if (empty($_REQUEST['edd_sl_action']) || 'view_plugin_changelog' != $_REQUEST['edd_sl_action']) {
317 317
             return;
318 318
         }
319 319
 
320
-        if( empty( $_REQUEST['plugin'] ) ) {
320
+        if (empty($_REQUEST['plugin'])) {
321 321
             return;
322 322
         }
323 323
 
324
-        if( empty( $_REQUEST['slug'] ) ) {
324
+        if (empty($_REQUEST['slug'])) {
325 325
             return;
326 326
         }
327 327
 
328
-        if( ! current_user_can( 'update_plugins' ) ) {
329
-            wp_die( esc_html__( 'You do not have permission to install plugin updates.', 'edd' ), esc_html__( 'Error', 'edd' ), array( 'response' => 403 ) );
328
+        if ( ! current_user_can('update_plugins')) {
329
+            wp_die(esc_html__('You do not have permission to install plugin updates.', 'edd'), esc_html__('Error', 'edd'), array('response' => 403));
330 330
         }
331 331
 
332
-        $response = $this->api_request( 'plugin_latest_version', array( 'slug' => $_REQUEST['slug'] ) );
332
+        $response = $this->api_request('plugin_latest_version', array('slug' => $_REQUEST['slug']));
333 333
 
334
-        if( $response && isset( $response->sections['changelog'] ) ) {
335
-            echo '<div style="background:#fff;padding:10px;">' . $response->sections['changelog'] . '</div>';
334
+        if ($response && isset($response->sections['changelog'])) {
335
+            echo '<div style="background:#fff;padding:10px;">'.$response->sections['changelog'].'</div>';
336 336
         }
337 337
 
338 338
 
Please login to merge, or discard this patch.
includes/install.php 1 patch
Spacing   +52 added lines, -52 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
  */
11 11
 
12 12
 // Exit if accessed directly
13
-if ( ! defined( 'ABSPATH' ) ) {
13
+if ( ! defined('ABSPATH')) {
14 14
 	exit;
15 15
 }
16 16
 
@@ -24,15 +24,15 @@  discard block
 block discarded – undo
24 24
  * @global $wp_version
25 25
  * @return void
26 26
  */
27
-function give_install( $network_wide = false ) {
27
+function give_install($network_wide = false) {
28 28
 
29 29
 	global $wpdb;
30 30
 
31
-	if ( is_multisite() && $network_wide ) {
31
+	if (is_multisite() && $network_wide) {
32 32
 
33
-		foreach ( $wpdb->get_col( "SELECT blog_id FROM $wpdb->blogs LIMIT 100" ) as $blog_id ) {
33
+		foreach ($wpdb->get_col("SELECT blog_id FROM $wpdb->blogs LIMIT 100") as $blog_id) {
34 34
 
35
-			switch_to_blog( $blog_id );
35
+			switch_to_blog($blog_id);
36 36
 			give_run_install();
37 37
 			restore_current_blog();
38 38
 
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 
47 47
 }
48 48
 
49
-register_activation_hook( GIVE_PLUGIN_FILE, 'give_install' );
49
+register_activation_hook(GIVE_PLUGIN_FILE, 'give_install');
50 50
 
51 51
 /**
52 52
  * Run the Give Install process
@@ -62,24 +62,24 @@  discard block
 block discarded – undo
62 62
 	give_setup_post_types();
63 63
 
64 64
 	// Clear the permalinks
65
-	flush_rewrite_rules( false );
65
+	flush_rewrite_rules(false);
66 66
 
67 67
 	// Add Upgraded From Option
68
-	$current_version = get_option( 'give_version' );
69
-	if ( $current_version ) {
70
-		update_option( 'give_version_upgraded_from', $current_version );
68
+	$current_version = get_option('give_version');
69
+	if ($current_version) {
70
+		update_option('give_version_upgraded_from', $current_version);
71 71
 	}
72 72
 
73 73
 	// Setup some default options
74 74
 	$options = array();
75 75
 
76 76
 	// Checks if the Success Page option exists AND that the page exists
77
-	if ( ! get_post( give_get_option( 'success_page' ) ) ) {
77
+	if ( ! get_post(give_get_option('success_page'))) {
78 78
 
79 79
 		// Purchase Confirmation (Success) Page
80 80
 		$success = wp_insert_post(
81 81
 			array(
82
-				'post_title'     => esc_html__( 'Donation Confirmation', 'give' ),
82
+				'post_title'     => esc_html__('Donation Confirmation', 'give'),
83 83
 				'post_content'   => '[give_receipt]',
84 84
 				'post_status'    => 'publish',
85 85
 				'post_author'    => 1,
@@ -93,13 +93,13 @@  discard block
 block discarded – undo
93 93
 	}
94 94
 
95 95
 	// Checks if the Failure Page option exists AND that the page exists
96
-	if ( ! get_post( give_get_option( 'failure_page' ) ) ) {
96
+	if ( ! get_post(give_get_option('failure_page'))) {
97 97
 
98 98
 		// Failed Purchase Page
99 99
 		$failed = wp_insert_post(
100 100
 			array(
101
-				'post_title'     => esc_html__( 'Transaction Failed', 'give' ),
102
-				'post_content'   => esc_html__( 'We\'re sorry, your transaction failed to process. Please try again or contact site support.', 'give' ),
101
+				'post_title'     => esc_html__('Transaction Failed', 'give'),
102
+				'post_content'   => esc_html__('We\'re sorry, your transaction failed to process. Please try again or contact site support.', 'give'),
103 103
 				'post_status'    => 'publish',
104 104
 				'post_author'    => 1,
105 105
 				'post_type'      => 'page',
@@ -111,11 +111,11 @@  discard block
 block discarded – undo
111 111
 	}
112 112
 
113 113
 	// Checks if the History Page option exists AND that the page exists
114
-	if ( ! get_post( give_get_option( 'history_page' ) ) ) {
114
+	if ( ! get_post(give_get_option('history_page'))) {
115 115
 		// Purchase History (History) Page
116 116
 		$history = wp_insert_post(
117 117
 			array(
118
-				'post_title'     => esc_html__( 'Donation History', 'give' ),
118
+				'post_title'     => esc_html__('Donation History', 'give'),
119 119
 				'post_content'   => '[donation_history]',
120 120
 				'post_status'    => 'publish',
121 121
 				'post_author'    => 1,
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
 	}
129 129
 
130 130
 	//Fresh Install? Setup Test Mode, Base Country (US), Test Gateway, Currency
131
-	if ( empty( $current_version ) ) {
131
+	if (empty($current_version)) {
132 132
 		$options['base_country']       = 'US';
133 133
 		$options['test_mode']          = 1;
134 134
 		$options['currency']           = 'USD';
@@ -145,12 +145,12 @@  discard block
 block discarded – undo
145 145
 	}
146 146
 
147 147
 	// Populate some default values
148
-	update_option( 'give_settings', array_merge( $give_options, $options ) );
149
-	update_option( 'give_version', GIVE_VERSION );
148
+	update_option('give_settings', array_merge($give_options, $options));
149
+	update_option('give_version', GIVE_VERSION);
150 150
 
151 151
 	//Update Version Number
152
-	if ( $current_version ) {
153
-		update_option( 'give_version_upgraded_from', $current_version );
152
+	if ($current_version) {
153
+		update_option('give_version_upgraded_from', $current_version);
154 154
 	}
155 155
 
156 156
 	// Create Give roles
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
 	$roles->add_caps();
160 160
 
161 161
 	$api = new Give_API();
162
-	update_option( 'give_default_api_version', 'v' . $api->get_version() );
162
+	update_option('give_default_api_version', 'v'.$api->get_version());
163 163
 
164 164
 	// Create the customers database
165 165
 	@Give()->customers->create_table();
@@ -168,11 +168,11 @@  discard block
 block discarded – undo
168 168
 	Give()->session->use_php_sessions();
169 169
 
170 170
 	// Add a temporary option to note that Give pages have been created
171
-	set_transient( '_give_installed', $options, 30 );
171
+	set_transient('_give_installed', $options, 30);
172 172
 	
173
-	if ( ! $current_version ) {
173
+	if ( ! $current_version) {
174 174
 
175
-		require_once GIVE_PLUGIN_DIR . 'includes/admin/upgrades/upgrade-functions.php';
175
+		require_once GIVE_PLUGIN_DIR.'includes/admin/upgrades/upgrade-functions.php';
176 176
 
177 177
 		// When new upgrade routines are added, mark them as complete on fresh install
178 178
 		$upgrade_routines = array(
@@ -181,22 +181,22 @@  discard block
 block discarded – undo
181 181
 			'upgrade_give_offline_status'
182 182
 		);
183 183
 
184
-		foreach ( $upgrade_routines as $upgrade ) {
185
-			give_set_upgrade_complete( $upgrade );
184
+		foreach ($upgrade_routines as $upgrade) {
185
+			give_set_upgrade_complete($upgrade);
186 186
 		}
187 187
 	}
188 188
 
189 189
 	// Bail if activating from network, or bulk
190
-	if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) {
190
+	if (is_network_admin() || isset($_GET['activate-multi'])) {
191 191
 		return;
192 192
 	}
193 193
 
194 194
 	// Add the transient to redirect
195
-	set_transient( '_give_activation_redirect', true, 30 );
195
+	set_transient('_give_activation_redirect', true, 30);
196 196
 
197 197
 }
198 198
 
199
-register_activation_hook( GIVE_PLUGIN_FILE, 'give_install' );
199
+register_activation_hook(GIVE_PLUGIN_FILE, 'give_install');
200 200
 
201 201
 /**
202 202
  * Network Activated New Site Setup
@@ -212,11 +212,11 @@  discard block
 block discarded – undo
212 212
  * @param  int    $site_id The Site ID
213 213
  * @param  array  $meta    Blog Meta
214 214
  */
215
-function on_create_blog( $blog_id, $user_id, $domain, $path, $site_id, $meta ) {
215
+function on_create_blog($blog_id, $user_id, $domain, $path, $site_id, $meta) {
216 216
 
217
-	if ( is_plugin_active_for_network( GIVE_PLUGIN_BASENAME ) ) {
217
+	if (is_plugin_active_for_network(GIVE_PLUGIN_BASENAME)) {
218 218
 
219
-		switch_to_blog( $blog_id );
219
+		switch_to_blog($blog_id);
220 220
 		give_install();
221 221
 		restore_current_blog();
222 222
 
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
 
225 225
 }
226 226
 
227
-add_action( 'wpmu_new_blog', 'on_create_blog', 10, 6 );
227
+add_action('wpmu_new_blog', 'on_create_blog', 10, 6);
228 228
 
229 229
 
230 230
 /**
@@ -237,11 +237,11 @@  discard block
 block discarded – undo
237 237
  *
238 238
  * @return array          The tables to drop
239 239
  */
240
-function give_wpmu_drop_tables( $tables, $blog_id ) {
240
+function give_wpmu_drop_tables($tables, $blog_id) {
241 241
 
242
-	switch_to_blog( $blog_id );
242
+	switch_to_blog($blog_id);
243 243
 	$customers_db = new Give_DB_Customers();
244
-	if ( $customers_db->installed() ) {
244
+	if ($customers_db->installed()) {
245 245
 		$tables[] = $customers_db->table_name;
246 246
 	}
247 247
 	restore_current_blog();
@@ -250,7 +250,7 @@  discard block
 block discarded – undo
250 250
 
251 251
 }
252 252
 
253
-add_filter( 'wpmu_drop_tables', 'give_wpmu_drop_tables', 10, 2 );
253
+add_filter('wpmu_drop_tables', 'give_wpmu_drop_tables', 10, 2);
254 254
 
255 255
 /**
256 256
  * Post-installation
@@ -262,35 +262,35 @@  discard block
 block discarded – undo
262 262
  */
263 263
 function give_after_install() {
264 264
 
265
-	if ( ! is_admin() ) {
265
+	if ( ! is_admin()) {
266 266
 		return;
267 267
 	}
268 268
 
269
-	$give_options     = get_transient( '_give_installed' );
270
-	$give_table_check = get_option( '_give_table_check', false );
269
+	$give_options     = get_transient('_give_installed');
270
+	$give_table_check = get_option('_give_table_check', false);
271 271
 
272
-	if ( false === $give_table_check || current_time( 'timestamp' ) > $give_table_check ) {
272
+	if (false === $give_table_check || current_time('timestamp') > $give_table_check) {
273 273
 
274
-		if ( ! @Give()->customers->installed() ) {
274
+		if ( ! @Give()->customers->installed()) {
275 275
 			// Create the customers database (this ensures it creates it on multisite instances where it is network activated)
276 276
 			@Give()->customers->create_table();
277 277
 
278
-			do_action( 'give_after_install', $give_options );
278
+			do_action('give_after_install', $give_options);
279 279
 		}
280 280
 
281
-		update_option( '_give_table_check', ( current_time( 'timestamp' ) + WEEK_IN_SECONDS ) );
281
+		update_option('_give_table_check', (current_time('timestamp') + WEEK_IN_SECONDS));
282 282
 
283 283
 	}
284 284
 
285 285
 	// Delete the transient
286
-	if ( false !== $give_options ) {
287
-		delete_transient( '_give_installed' );
286
+	if (false !== $give_options) {
287
+		delete_transient('_give_installed');
288 288
 	}
289 289
 
290 290
 
291 291
 }
292 292
 
293
-add_action( 'admin_init', 'give_after_install' );
293
+add_action('admin_init', 'give_after_install');
294 294
 
295 295
 
296 296
 /**
@@ -305,11 +305,11 @@  discard block
 block discarded – undo
305 305
 
306 306
 	global $wp_roles;
307 307
 
308
-	if ( ! is_object( $wp_roles ) ) {
308
+	if ( ! is_object($wp_roles)) {
309 309
 		return;
310 310
 	}
311 311
 
312
-	if ( ! array_key_exists( 'give_manager', $wp_roles->roles ) ) {
312
+	if ( ! array_key_exists('give_manager', $wp_roles->roles)) {
313 313
 
314 314
 		// Create Give plugin roles
315 315
 		$roles = new Give_Roles();
@@ -320,4 +320,4 @@  discard block
 block discarded – undo
320 320
 
321 321
 }
322 322
 
323
-add_action( 'admin_init', 'give_install_roles_on_network' );
324 323
\ No newline at end of file
324
+add_action('admin_init', 'give_install_roles_on_network');
325 325
\ No newline at end of file
Please login to merge, or discard this patch.
includes/payments/functions.php 1 patch
Spacing   +380 added lines, -380 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
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
 
@@ -32,15 +32,15 @@  discard block
 block discarded – undo
32 32
  *
33 33
  * @return object $payments Payments retrieved from the database
34 34
  */
35
-function give_get_payments( $args = array() ) {
35
+function give_get_payments($args = array()) {
36 36
 
37 37
 	// Fallback to post objects to ensure backwards compatibility
38
-	if ( ! isset( $args['output'] ) ) {
38
+	if ( ! isset($args['output'])) {
39 39
 		$args['output'] = 'posts';
40 40
 	}
41 41
 
42
-	$args     = apply_filters( 'give_get_payments_args', $args );
43
-	$payments = new Give_Payments_Query( $args );
42
+	$args     = apply_filters('give_get_payments_args', $args);
43
+	$payments = new Give_Payments_Query($args);
44 44
 
45 45
 	return $payments->get_payments();
46 46
 }
@@ -55,48 +55,48 @@  discard block
 block discarded – undo
55 55
  *
56 56
  * @return      mixed
57 57
  */
58
-function give_get_payment_by( $field = '', $value = '' ) {
58
+function give_get_payment_by($field = '', $value = '') {
59 59
 
60
-	if ( empty( $field ) || empty( $value ) ) {
60
+	if (empty($field) || empty($value)) {
61 61
 		return false;
62 62
 	}
63 63
 
64
-	switch ( strtolower( $field ) ) {
64
+	switch (strtolower($field)) {
65 65
 
66 66
 		case 'id':
67
-			$payment = new Give_Payment( $value );
67
+			$payment = new Give_Payment($value);
68 68
 			$id      = $payment->ID;
69 69
 
70
-			if ( empty( $id ) ) {
70
+			if (empty($id)) {
71 71
 				return false;
72 72
 			}
73 73
 
74 74
 			break;
75 75
 
76 76
 		case 'key':
77
-			$payment = give_get_payments( array(
77
+			$payment = give_get_payments(array(
78 78
 				'meta_key'       => '_give_payment_purchase_key',
79 79
 				'meta_value'     => $value,
80 80
 				'posts_per_page' => 1,
81 81
 				'fields'         => 'ids',
82
-			) );
82
+			));
83 83
 
84
-			if ( $payment ) {
85
-				$payment = new Give_Payment( $payment[0] );
84
+			if ($payment) {
85
+				$payment = new Give_Payment($payment[0]);
86 86
 			}
87 87
 
88 88
 			break;
89 89
 
90 90
 		case 'payment_number':
91
-			$payment = give_get_payments( array(
91
+			$payment = give_get_payments(array(
92 92
 				'meta_key'       => '_give_payment_number',
93 93
 				'meta_value'     => $value,
94 94
 				'posts_per_page' => 1,
95 95
 				'fields'         => 'ids',
96
-			) );
96
+			));
97 97
 
98
-			if ( $payment ) {
99
-				$payment = new Give_Payment( $payment[0] );
98
+			if ($payment) {
99
+				$payment = new Give_Payment($payment[0]);
100 100
 			}
101 101
 
102 102
 			break;
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
 			return false;
106 106
 	}
107 107
 
108
-	if ( $payment ) {
108
+	if ($payment) {
109 109
 		return $payment;
110 110
 	}
111 111
 
@@ -121,23 +121,23 @@  discard block
 block discarded – undo
121 121
  *
122 122
  * @return int|bool Payment ID if payment is inserted, false otherwise
123 123
  */
124
-function give_insert_payment( $payment_data = array() ) {
124
+function give_insert_payment($payment_data = array()) {
125 125
 
126
-	if ( empty( $payment_data ) ) {
126
+	if (empty($payment_data)) {
127 127
 		return false;
128 128
 	}
129 129
 
130 130
 	$payment    = new Give_Payment();
131
-	$gateway    = ! empty( $payment_data['gateway'] ) ? $payment_data['gateway'] : '';
132
-	$gateway    = empty( $gateway ) && isset( $_POST['give-gateway'] ) ? $_POST['give-gateway'] : $gateway;
133
-	$form_id    = isset( $payment_data['give_form_id'] ) ? $payment_data['give_form_id'] : 0;
134
-	$price_id   = isset( $payment_data['give_price_id'] ) ? $payment_data['give_price_id'] : give_get_price_id( $payment_data['give_form_id'], $payment_data['price'] );
135
-	$form_title = isset( $payment_data['give_form_title'] ) ? $payment_data['give_form_title'] : get_the_title( $form_id );
131
+	$gateway    = ! empty($payment_data['gateway']) ? $payment_data['gateway'] : '';
132
+	$gateway    = empty($gateway) && isset($_POST['give-gateway']) ? $_POST['give-gateway'] : $gateway;
133
+	$form_id    = isset($payment_data['give_form_id']) ? $payment_data['give_form_id'] : 0;
134
+	$price_id   = isset($payment_data['give_price_id']) ? $payment_data['give_price_id'] : give_get_price_id($payment_data['give_form_id'], $payment_data['price']);
135
+	$form_title = isset($payment_data['give_form_title']) ? $payment_data['give_form_title'] : get_the_title($form_id);
136 136
 
137 137
 	//Set properties
138 138
 	$payment->total          = $payment_data['price'];
139
-	$payment->status         = ! empty( $payment_data['status'] ) ? $payment_data['status'] : 'pending';
140
-	$payment->currency       = ! empty( $payment_data['currency'] ) ? $payment_data['currency'] : give_get_currency();
139
+	$payment->status         = ! empty($payment_data['status']) ? $payment_data['status'] : 'pending';
140
+	$payment->currency       = ! empty($payment_data['currency']) ? $payment_data['currency'] : give_get_currency();
141 141
 	$payment->user_info      = $payment_data['user_info'];
142 142
 	$payment->gateway        = $gateway;
143 143
 	$payment->form_title     = $form_title;
@@ -151,40 +151,40 @@  discard block
 block discarded – undo
151 151
 	$payment->ip             = give_get_ip();
152 152
 	$payment->key            = $payment_data['purchase_key'];
153 153
 	$payment->mode           = give_is_test_mode() ? 'test' : 'live';
154
-	$payment->parent_payment = ! empty( $payment_data['parent'] ) ? absint( $payment_data['parent'] ) : '';
154
+	$payment->parent_payment = ! empty($payment_data['parent']) ? absint($payment_data['parent']) : '';
155 155
 
156 156
 	//Add the donation
157 157
 	$args = array(
158 158
 		'price'    => $payment->total,
159 159
 		'price_id' => $payment->price_id,
160
-		'fees'     => isset( $payment_data['fees'] ) ? $payment_data['fees'] : array()
160
+		'fees'     => isset($payment_data['fees']) ? $payment_data['fees'] : array()
161 161
 	);
162 162
 
163
-	$payment->add_donation( $payment->form_id, $args );
163
+	$payment->add_donation($payment->form_id, $args);
164 164
 
165 165
 	//Set date if present
166
-	if ( isset( $payment_data['post_date'] ) ) {
166
+	if (isset($payment_data['post_date'])) {
167 167
 		$payment->date = $payment_data['post_date'];
168 168
 	}
169 169
 
170 170
 	//Handle sequential payments
171
-	if ( give_get_option( 'enable_sequential' ) ) {
171
+	if (give_get_option('enable_sequential')) {
172 172
 		$number          = give_get_next_payment_number();
173
-		$payment->number = give_format_payment_number( $number );
174
-		update_option( 'give_last_payment_number', $number );
173
+		$payment->number = give_format_payment_number($number);
174
+		update_option('give_last_payment_number', $number);
175 175
 	}
176 176
 
177 177
 	// Clear the user's purchased cache
178
-	delete_transient( 'give_user_' . $payment_data['user_info']['id'] . '_purchases' );
178
+	delete_transient('give_user_'.$payment_data['user_info']['id'].'_purchases');
179 179
 
180 180
 	//Save payment
181 181
 	$payment->save();
182 182
 
183 183
 	//Hook it
184
-	do_action( 'give_insert_payment', $payment->ID, $payment_data );
184
+	do_action('give_insert_payment', $payment->ID, $payment_data);
185 185
 
186 186
 	//Return payment ID upon success
187
-	if ( ! empty( $payment->ID ) ) {
187
+	if ( ! empty($payment->ID)) {
188 188
 		return $payment->ID;
189 189
 	}
190 190
 
@@ -203,9 +203,9 @@  discard block
 block discarded – undo
203 203
  *
204 204
  * @return bool
205 205
  */
206
-function give_update_payment_status( $payment_id, $new_status = 'publish' ) {
206
+function give_update_payment_status($payment_id, $new_status = 'publish') {
207 207
 
208
-	$payment         = new Give_Payment( $payment_id );
208
+	$payment         = new Give_Payment($payment_id);
209 209
 	$payment->status = $new_status;
210 210
 	$updated         = $payment->save();
211 211
 
@@ -225,52 +225,52 @@  discard block
 block discarded – undo
225 225
  *
226 226
  * @return void
227 227
  */
228
-function give_delete_purchase( $payment_id = 0, $update_customer = true ) {
228
+function give_delete_purchase($payment_id = 0, $update_customer = true) {
229 229
 	global $give_logs;
230 230
 
231
-	$payment     = new Give_Payment( $payment_id );
232
-	$amount      = give_get_payment_amount( $payment_id );
231
+	$payment     = new Give_Payment($payment_id);
232
+	$amount      = give_get_payment_amount($payment_id);
233 233
 	$status      = $payment->post_status;
234
-	$customer_id = give_get_payment_customer_id( $payment_id );
235
-	$customer    = new Give_Customer( $customer_id );
234
+	$customer_id = give_get_payment_customer_id($payment_id);
235
+	$customer    = new Give_Customer($customer_id);
236 236
 
237 237
 	//Only undo purchases that aren't these statuses
238
-	$dont_undo_statuses = apply_filters( 'give_undo_purchase_statuses', array(
238
+	$dont_undo_statuses = apply_filters('give_undo_purchase_statuses', array(
239 239
 		'pending',
240 240
 		'cancelled'
241
-	) );
241
+	));
242 242
 
243
-	if ( ! in_array( $status, $dont_undo_statuses ) ) {
244
-		give_undo_purchase( false, $payment_id );
243
+	if ( ! in_array($status, $dont_undo_statuses)) {
244
+		give_undo_purchase(false, $payment_id);
245 245
 	}
246 246
 
247
-	if ( $status == 'publish' ) {
247
+	if ($status == 'publish') {
248 248
 
249 249
 		// Only decrease earnings if they haven't already been decreased (or were never increased for this payment)
250
-		give_decrease_total_earnings( $amount );
250
+		give_decrease_total_earnings($amount);
251 251
 		// Clear the This Month earnings (this_monththis_month is NOT a typo)
252
-		delete_transient( md5( 'give_earnings_this_monththis_month' ) );
252
+		delete_transient(md5('give_earnings_this_monththis_month'));
253 253
 
254
-		if ( $customer->id && $update_customer ) {
254
+		if ($customer->id && $update_customer) {
255 255
 
256 256
 			// Decrement the stats for the customer
257 257
 			$customer->decrease_purchase_count();
258
-			$customer->decrease_value( $amount );
258
+			$customer->decrease_value($amount);
259 259
 
260 260
 		}
261 261
 	}
262 262
 
263
-	do_action( 'give_payment_delete', $payment_id );
263
+	do_action('give_payment_delete', $payment_id);
264 264
 
265
-	if ( $customer->id && $update_customer ) {
265
+	if ($customer->id && $update_customer) {
266 266
 
267 267
 		// Remove the payment ID from the customer
268
-		$customer->remove_payment( $payment_id );
268
+		$customer->remove_payment($payment_id);
269 269
 
270 270
 	}
271 271
 
272 272
 	// Remove the payment
273
-	wp_delete_post( $payment_id, true );
273
+	wp_delete_post($payment_id, true);
274 274
 
275 275
 	// Remove related sale log entries
276 276
 	$give_logs->delete_logs(
@@ -284,7 +284,7 @@  discard block
 block discarded – undo
284 284
 		)
285 285
 	);
286 286
 
287
-	do_action( 'give_payment_deleted', $payment_id );
287
+	do_action('give_payment_deleted', $payment_id);
288 288
 }
289 289
 
290 290
 /**
@@ -297,25 +297,25 @@  discard block
 block discarded – undo
297 297
  *
298 298
  * @return void
299 299
  */
300
-function give_undo_purchase( $form_id = false, $payment_id ) {
300
+function give_undo_purchase($form_id = false, $payment_id) {
301 301
 
302
-	if ( ! empty( $form_id ) ) {
302
+	if ( ! empty($form_id)) {
303 303
 		$form_id = false;
304
-		_give_deprected_argument( 'form_id', 'give_undo_purchase', '1.5' );
304
+		_give_deprected_argument('form_id', 'give_undo_purchase', '1.5');
305 305
 	}
306 306
 
307
-	$payment = new Give_Payment( $payment_id );
307
+	$payment = new Give_Payment($payment_id);
308 308
 
309
-	$maybe_decrease_earnings = apply_filters( 'give_decrease_earnings_on_undo', true, $payment, $payment->form_id );
310
-	if ( true === $maybe_decrease_earnings ) {
309
+	$maybe_decrease_earnings = apply_filters('give_decrease_earnings_on_undo', true, $payment, $payment->form_id);
310
+	if (true === $maybe_decrease_earnings) {
311 311
 		// decrease earnings
312
-		give_decrease_earnings( $payment->form_id, $payment->total );
312
+		give_decrease_earnings($payment->form_id, $payment->total);
313 313
 	}
314 314
 
315
-	$maybe_decrease_sales = apply_filters( 'give_decrease_sales_on_undo', true, $payment, $payment->form_id );
316
-	if ( true === $maybe_decrease_sales ) {
315
+	$maybe_decrease_sales = apply_filters('give_decrease_sales_on_undo', true, $payment, $payment->form_id);
316
+	if (true === $maybe_decrease_sales) {
317 317
 		// decrease purchase count
318
-		give_decrease_purchase_count( $payment->form_id );
318
+		give_decrease_purchase_count($payment->form_id);
319 319
 	}
320 320
 
321 321
 }
@@ -332,7 +332,7 @@  discard block
 block discarded – undo
332 332
  *
333 333
  * @return array $count Number of payments sorted by payment status
334 334
  */
335
-function give_count_payments( $args = array() ) {
335
+function give_count_payments($args = array()) {
336 336
 
337 337
 	global $wpdb;
338 338
 
@@ -344,18 +344,18 @@  discard block
 block discarded – undo
344 344
 		'form_id'    => null,
345 345
 	);
346 346
 
347
-	$args = wp_parse_args( $args, $defaults );
347
+	$args = wp_parse_args($args, $defaults);
348 348
 
349 349
 	$select = "SELECT p.post_status,count( * ) AS num_posts";
350 350
 	$join   = '';
351 351
 	$where  = "WHERE p.post_type = 'give_payment'";
352 352
 
353 353
 	// Count payments for a specific user
354
-	if ( ! empty( $args['user'] ) ) {
354
+	if ( ! empty($args['user'])) {
355 355
 
356
-		if ( is_email( $args['user'] ) ) {
356
+		if (is_email($args['user'])) {
357 357
 			$field = 'email';
358
-		} elseif ( is_numeric( $args['user'] ) ) {
358
+		} elseif (is_numeric($args['user'])) {
359 359
 			$field = 'id';
360 360
 		} else {
361 361
 			$field = '';
@@ -363,108 +363,108 @@  discard block
 block discarded – undo
363 363
 
364 364
 		$join = "LEFT JOIN $wpdb->postmeta m ON (p.ID = m.post_id)";
365 365
 
366
-		if ( ! empty( $field ) ) {
366
+		if ( ! empty($field)) {
367 367
 			$where .= "
368 368
 				AND m.meta_key = '_give_payment_user_{$field}'
369 369
 				AND m.meta_value = '{$args['user']}'";
370 370
 		}
371 371
 
372 372
 		// Count payments for a search
373
-	} elseif ( ! empty( $args['s'] ) ) {
373
+	} elseif ( ! empty($args['s'])) {
374 374
 
375
-		if ( is_email( $args['s'] ) || strlen( $args['s'] ) == 32 ) {
375
+		if (is_email($args['s']) || strlen($args['s']) == 32) {
376 376
 
377
-			if ( is_email( $args['s'] ) ) {
377
+			if (is_email($args['s'])) {
378 378
 				$field = '_give_payment_user_email';
379 379
 			} else {
380 380
 				$field = '_give_payment_purchase_key';
381 381
 			}
382 382
 
383 383
 			$join = "LEFT JOIN $wpdb->postmeta m ON (p.ID = m.post_id)";
384
-			$where .= $wpdb->prepare( "
384
+			$where .= $wpdb->prepare("
385 385
 				AND m.meta_key = %s
386 386
 				AND m.meta_value = %s",
387 387
 				$field,
388 388
 				$args['s']
389 389
 			);
390 390
 
391
-		} elseif ( '#' == substr( $args['s'], 0, 1 ) ) {
391
+		} elseif ('#' == substr($args['s'], 0, 1)) {
392 392
 
393
-			$search = str_replace( '#:', '', $args['s'] );
394
-			$search = str_replace( '#', '', $search );
393
+			$search = str_replace('#:', '', $args['s']);
394
+			$search = str_replace('#', '', $search);
395 395
 
396 396
 			$select = "SELECT p2.post_status,count( * ) AS num_posts ";
397 397
 			$join   = "LEFT JOIN $wpdb->postmeta m ON m.meta_key = '_give_log_payment_id' AND m.post_id = p.ID ";
398 398
 			$join .= "INNER JOIN $wpdb->posts p2 ON m.meta_value = p2.ID ";
399 399
 			$where = "WHERE p.post_type = 'give_log' ";
400
-			$where .= $wpdb->prepare( "AND p.post_parent = %d} ", $search );
400
+			$where .= $wpdb->prepare("AND p.post_parent = %d} ", $search);
401 401
 
402
-		} elseif ( is_numeric( $args['s'] ) ) {
402
+		} elseif (is_numeric($args['s'])) {
403 403
 
404 404
 			$join = "LEFT JOIN $wpdb->postmeta m ON (p.ID = m.post_id)";
405
-			$where .= $wpdb->prepare( "
405
+			$where .= $wpdb->prepare("
406 406
 				AND m.meta_key = '_give_payment_user_id'
407 407
 				AND m.meta_value = %d",
408 408
 				$args['s']
409 409
 			);
410 410
 
411 411
 		} else {
412
-			$search = $wpdb->esc_like( $args['s'] );
413
-			$search = '%' . $search . '%';
412
+			$search = $wpdb->esc_like($args['s']);
413
+			$search = '%'.$search.'%';
414 414
 
415
-			$where .= $wpdb->prepare( "AND ((p.post_title LIKE %s) OR (p.post_content LIKE %s))", $search, $search );
415
+			$where .= $wpdb->prepare("AND ((p.post_title LIKE %s) OR (p.post_content LIKE %s))", $search, $search);
416 416
 		}
417 417
 
418 418
 	}
419 419
 
420
-	if ( ! empty( $args['form_id'] ) && is_numeric( $args['form_id'] ) ) {
420
+	if ( ! empty($args['form_id']) && is_numeric($args['form_id'])) {
421 421
 
422
-		$where .= $wpdb->prepare( " AND p.post_parent = %d", $args['form_id'] );
422
+		$where .= $wpdb->prepare(" AND p.post_parent = %d", $args['form_id']);
423 423
 
424 424
 	}
425 425
 	// Limit payments count by date
426
-	if ( ! empty( $args['start-date'] ) && false !== strpos( $args['start-date'], '/' ) ) {
426
+	if ( ! empty($args['start-date']) && false !== strpos($args['start-date'], '/')) {
427 427
 
428
-		$date_parts = explode( '/', $args['start-date'] );
429
-		$month      = ! empty( $date_parts[0] ) && is_numeric( $date_parts[0] ) ? $date_parts[0] : 0;
430
-		$day        = ! empty( $date_parts[1] ) && is_numeric( $date_parts[1] ) ? $date_parts[1] : 0;
431
-		$year       = ! empty( $date_parts[2] ) && is_numeric( $date_parts[2] ) ? $date_parts[2] : 0;
428
+		$date_parts = explode('/', $args['start-date']);
429
+		$month      = ! empty($date_parts[0]) && is_numeric($date_parts[0]) ? $date_parts[0] : 0;
430
+		$day        = ! empty($date_parts[1]) && is_numeric($date_parts[1]) ? $date_parts[1] : 0;
431
+		$year       = ! empty($date_parts[2]) && is_numeric($date_parts[2]) ? $date_parts[2] : 0;
432 432
 
433
-		$is_date = checkdate( $month, $day, $year );
434
-		if ( false !== $is_date ) {
433
+		$is_date = checkdate($month, $day, $year);
434
+		if (false !== $is_date) {
435 435
 
436
-			$date = new DateTime( $args['start-date'] );
437
-			$where .= $wpdb->prepare( " AND p.post_date >= '%s'", $date->format( 'Y-m-d' ) );
436
+			$date = new DateTime($args['start-date']);
437
+			$where .= $wpdb->prepare(" AND p.post_date >= '%s'", $date->format('Y-m-d'));
438 438
 
439 439
 		}
440 440
 
441 441
 		// Fixes an issue with the payments list table counts when no end date is specified (partiy with stats class)
442
-		if ( empty( $args['end-date'] ) ) {
442
+		if (empty($args['end-date'])) {
443 443
 			$args['end-date'] = $args['start-date'];
444 444
 		}
445 445
 
446 446
 	}
447 447
 
448
-	if ( ! empty ( $args['end-date'] ) && false !== strpos( $args['end-date'], '/' ) ) {
448
+	if ( ! empty ($args['end-date']) && false !== strpos($args['end-date'], '/')) {
449 449
 
450
-		$date_parts = explode( '/', $args['end-date'] );
450
+		$date_parts = explode('/', $args['end-date']);
451 451
 
452
-		$month = ! empty( $date_parts[0] ) ? $date_parts[0] : 0;
453
-		$day   = ! empty( $date_parts[1] ) ? $date_parts[1] : 0;
454
-		$year  = ! empty( $date_parts[2] ) ? $date_parts[2] : 0;
452
+		$month = ! empty($date_parts[0]) ? $date_parts[0] : 0;
453
+		$day   = ! empty($date_parts[1]) ? $date_parts[1] : 0;
454
+		$year  = ! empty($date_parts[2]) ? $date_parts[2] : 0;
455 455
 
456
-		$is_date = checkdate( $month, $day, $year );
457
-		if ( false !== $is_date ) {
456
+		$is_date = checkdate($month, $day, $year);
457
+		if (false !== $is_date) {
458 458
 
459
-			$date = new DateTime( $args['end-date'] );
460
-			$where .= $wpdb->prepare( " AND p.post_date <= '%s'", $date->format( 'Y-m-d' ) );
459
+			$date = new DateTime($args['end-date']);
460
+			$where .= $wpdb->prepare(" AND p.post_date <= '%s'", $date->format('Y-m-d'));
461 461
 
462 462
 		}
463 463
 
464 464
 	}
465 465
 
466
-	$where = apply_filters( 'give_count_payments_where', $where );
467
-	$join  = apply_filters( 'give_count_payments_join', $join );
466
+	$where = apply_filters('give_count_payments_where', $where);
467
+	$join  = apply_filters('give_count_payments_join', $join);
468 468
 
469 469
 	$query = "$select
470 470
 		FROM $wpdb->posts p
@@ -473,36 +473,36 @@  discard block
 block discarded – undo
473 473
 		GROUP BY p.post_status
474 474
 	";
475 475
 
476
-	$cache_key = md5( $query );
476
+	$cache_key = md5($query);
477 477
 
478
-	$count = wp_cache_get( $cache_key, 'counts' );
479
-	if ( false !== $count ) {
478
+	$count = wp_cache_get($cache_key, 'counts');
479
+	if (false !== $count) {
480 480
 		return $count;
481 481
 	}
482 482
 
483
-	$count = $wpdb->get_results( $query, ARRAY_A );
483
+	$count = $wpdb->get_results($query, ARRAY_A);
484 484
 
485 485
 	$stats    = array();
486 486
 	$statuses = get_post_stati();
487
-	if ( isset( $statuses['private'] ) && empty( $args['s'] ) ) {
488
-		unset( $statuses['private'] );
487
+	if (isset($statuses['private']) && empty($args['s'])) {
488
+		unset($statuses['private']);
489 489
 	}
490 490
 
491
-	foreach ( $statuses as $state ) {
492
-		$stats[ $state ] = 0;
491
+	foreach ($statuses as $state) {
492
+		$stats[$state] = 0;
493 493
 	}
494 494
 
495
-	foreach ( (array) $count as $row ) {
495
+	foreach ((array) $count as $row) {
496 496
 
497
-		if ( 'private' == $row['post_status'] && empty( $args['s'] ) ) {
497
+		if ('private' == $row['post_status'] && empty($args['s'])) {
498 498
 			continue;
499 499
 		}
500 500
 
501
-		$stats[ $row['post_status'] ] = $row['num_posts'];
501
+		$stats[$row['post_status']] = $row['num_posts'];
502 502
 	}
503 503
 
504 504
 	$stats = (object) $stats;
505
-	wp_cache_set( $cache_key, $stats, 'counts' );
505
+	wp_cache_set($cache_key, $stats, 'counts');
506 506
 
507 507
 	return $stats;
508 508
 }
@@ -517,12 +517,12 @@  discard block
 block discarded – undo
517 517
  *
518 518
  * @return bool true if payment exists, false otherwise
519 519
  */
520
-function give_check_for_existing_payment( $payment_id ) {
520
+function give_check_for_existing_payment($payment_id) {
521 521
 	$exists  = false;
522
-	$payment = new Give_Payment( $payment_id );
522
+	$payment = new Give_Payment($payment_id);
523 523
 
524 524
 
525
-	if ( $payment_id === $payment->ID && 'publish' === $payment->status ) {
525
+	if ($payment_id === $payment->ID && 'publish' === $payment->status) {
526 526
 		$exists = true;
527 527
 	}
528 528
 
@@ -539,29 +539,29 @@  discard block
 block discarded – undo
539 539
  *
540 540
  * @return bool|mixed if payment status exists, false otherwise
541 541
  */
542
-function give_get_payment_status( $payment, $return_label = false ) {
542
+function give_get_payment_status($payment, $return_label = false) {
543 543
 
544
-	if ( ! is_object( $payment ) || ! isset( $payment->post_status ) ) {
544
+	if ( ! is_object($payment) || ! isset($payment->post_status)) {
545 545
 		return false;
546 546
 	}
547 547
 
548 548
 	$statuses = give_get_payment_statuses();
549 549
 
550
-	if ( ! is_array( $statuses ) || empty( $statuses ) ) {
550
+	if ( ! is_array($statuses) || empty($statuses)) {
551 551
 		return false;
552 552
 	}
553 553
 
554
-	$payment = new Give_Payment( $payment->ID );
554
+	$payment = new Give_Payment($payment->ID);
555 555
 
556
-	if ( array_key_exists( $payment->status, $statuses ) ) {
557
-		if ( true === $return_label ) {
558
-			return $statuses[ $payment->status ];
556
+	if (array_key_exists($payment->status, $statuses)) {
557
+		if (true === $return_label) {
558
+			return $statuses[$payment->status];
559 559
 		} else {
560 560
 			// Account that our 'publish' status is labeled 'Complete'
561 561
 			$post_status = 'publish' == $payment->status ? 'Complete' : $payment->post_status;
562 562
 
563 563
 			// Make sure we're matching cases, since they matter
564
-			return array_search( strtolower( $post_status ), array_map( 'strtolower', $statuses ) );
564
+			return array_search(strtolower($post_status), array_map('strtolower', $statuses));
565 565
 		}
566 566
 	}
567 567
 
@@ -576,17 +576,17 @@  discard block
 block discarded – undo
576 576
  */
577 577
 function give_get_payment_statuses() {
578 578
 	$payment_statuses = array(
579
-		'pending'     => esc_html__( 'Pending', 'give' ),
580
-		'publish'     => esc_html__( 'Complete', 'give' ),
581
-		'refunded'    => esc_html__( 'Refunded', 'give' ),
582
-		'failed'      => esc_html__( 'Failed', 'give' ),
583
-		'cancelled'   => esc_html__( 'Cancelled', 'give' ),
584
-		'abandoned'   => esc_html__( 'Abandoned', 'give' ),
585
-		'preapproval' => esc_html__( 'Pre-Approved', 'give' ),
586
-		'revoked'     => esc_html__( 'Revoked', 'give' )
579
+		'pending'     => esc_html__('Pending', 'give'),
580
+		'publish'     => esc_html__('Complete', 'give'),
581
+		'refunded'    => esc_html__('Refunded', 'give'),
582
+		'failed'      => esc_html__('Failed', 'give'),
583
+		'cancelled'   => esc_html__('Cancelled', 'give'),
584
+		'abandoned'   => esc_html__('Abandoned', 'give'),
585
+		'preapproval' => esc_html__('Pre-Approved', 'give'),
586
+		'revoked'     => esc_html__('Revoked', 'give')
587 587
 	);
588 588
 
589
-	return apply_filters( 'give_payment_statuses', $payment_statuses );
589
+	return apply_filters('give_payment_statuses', $payment_statuses);
590 590
 }
591 591
 
592 592
 /**
@@ -598,10 +598,10 @@  discard block
 block discarded – undo
598 598
  * @return array $payment_status All the available payment statuses
599 599
  */
600 600
 function give_get_payment_status_keys() {
601
-	$statuses = array_keys( give_get_payment_statuses() );
602
-	asort( $statuses );
601
+	$statuses = array_keys(give_get_payment_statuses());
602
+	asort($statuses);
603 603
 
604
-	return array_values( $statuses );
604
+	return array_values($statuses);
605 605
 }
606 606
 
607 607
 /**
@@ -616,7 +616,7 @@  discard block
 block discarded – undo
616 616
  *
617 617
  * @return int $earnings Earnings
618 618
  */
619
-function give_get_earnings_by_date( $day = null, $month_num, $year = null, $hour = null ) {
619
+function give_get_earnings_by_date($day = null, $month_num, $year = null, $hour = null) {
620 620
 
621 621
 	// This is getting deprecated soon. Use Give_Payment_Stats with the get_earnings() method instead
622 622
 
@@ -627,41 +627,41 @@  discard block
 block discarded – undo
627 627
 		'nopaging'               => true,
628 628
 		'year'                   => $year,
629 629
 		'monthnum'               => $month_num,
630
-		'post_status'            => array( 'publish', 'revoked' ),
630
+		'post_status'            => array('publish', 'revoked'),
631 631
 		'fields'                 => 'ids',
632 632
 		'update_post_term_cache' => false
633 633
 	);
634
-	if ( ! empty( $day ) ) {
634
+	if ( ! empty($day)) {
635 635
 		$args['day'] = $day;
636 636
 	}
637 637
 
638
-	if ( ! empty( $hour ) ) {
638
+	if ( ! empty($hour)) {
639 639
 		$args['hour'] = $hour;
640 640
 	}
641 641
 
642
-	$args = apply_filters( 'give_get_earnings_by_date_args', $args );
643
-	$key  = 'give_stats_' . substr( md5( serialize( $args ) ), 0, 15 );
642
+	$args = apply_filters('give_get_earnings_by_date_args', $args);
643
+	$key  = 'give_stats_'.substr(md5(serialize($args)), 0, 15);
644 644
 
645
-	if ( ! empty( $_GET['_wpnonce'] ) && wp_verify_nonce( $_GET['_wpnonce'], 'give-refresh-reports' ) ) {
645
+	if ( ! empty($_GET['_wpnonce']) && wp_verify_nonce($_GET['_wpnonce'], 'give-refresh-reports')) {
646 646
 		$earnings = false;
647 647
 	} else {
648
-		$earnings = get_transient( $key );
648
+		$earnings = get_transient($key);
649 649
 	}
650 650
 
651
-	if ( false === $earnings ) {
652
-		$sales    = get_posts( $args );
651
+	if (false === $earnings) {
652
+		$sales    = get_posts($args);
653 653
 		$earnings = 0;
654
-		if ( $sales ) {
655
-			$sales = implode( ',', $sales );
654
+		if ($sales) {
655
+			$sales = implode(',', $sales);
656 656
 
657
-			$earnings = $wpdb->get_var( "SELECT SUM(meta_value) FROM $wpdb->postmeta WHERE meta_key = '_give_payment_total' AND post_id IN ({$sales})" );
657
+			$earnings = $wpdb->get_var("SELECT SUM(meta_value) FROM $wpdb->postmeta WHERE meta_key = '_give_payment_total' AND post_id IN ({$sales})");
658 658
 
659 659
 		}
660 660
 		// Cache the results for one hour
661
-		set_transient( $key, $earnings, HOUR_IN_SECONDS );
661
+		set_transient($key, $earnings, HOUR_IN_SECONDS);
662 662
 	}
663 663
 
664
-	return round( $earnings, 2 );
664
+	return round($earnings, 2);
665 665
 }
666 666
 
667 667
 /**
@@ -676,7 +676,7 @@  discard block
 block discarded – undo
676 676
  *
677 677
  * @return int $count Sales
678 678
  */
679
-function give_get_sales_by_date( $day = null, $month_num = null, $year = null, $hour = null ) {
679
+function give_get_sales_by_date($day = null, $month_num = null, $year = null, $hour = null) {
680 680
 
681 681
 	// This is getting deprecated soon. Use Give_Payment_Stats with the get_sales() method instead
682 682
 	$args = array(
@@ -684,14 +684,14 @@  discard block
 block discarded – undo
684 684
 		'nopaging'               => true,
685 685
 		'year'                   => $year,
686 686
 		'fields'                 => 'ids',
687
-		'post_status'            => array( 'publish', 'revoked' ),
687
+		'post_status'            => array('publish', 'revoked'),
688 688
 		'update_post_meta_cache' => false,
689 689
 		'update_post_term_cache' => false
690 690
 	);
691 691
 
692
-	$show_free = apply_filters( 'give_sales_by_date_show_free', true, $args );
692
+	$show_free = apply_filters('give_sales_by_date_show_free', true, $args);
693 693
 
694
-	if ( false === $show_free ) {
694
+	if (false === $show_free) {
695 695
 		$args['meta_query'] = array(
696 696
 			array(
697 697
 				'key'     => '_give_payment_total',
@@ -702,33 +702,33 @@  discard block
 block discarded – undo
702 702
 		);
703 703
 	}
704 704
 
705
-	if ( ! empty( $month_num ) ) {
705
+	if ( ! empty($month_num)) {
706 706
 		$args['monthnum'] = $month_num;
707 707
 	}
708 708
 
709
-	if ( ! empty( $day ) ) {
709
+	if ( ! empty($day)) {
710 710
 		$args['day'] = $day;
711 711
 	}
712 712
 
713
-	if ( ! empty( $hour ) ) {
713
+	if ( ! empty($hour)) {
714 714
 		$args['hour'] = $hour;
715 715
 	}
716 716
 
717
-	$args = apply_filters( 'give_get_sales_by_date_args', $args );
717
+	$args = apply_filters('give_get_sales_by_date_args', $args);
718 718
 
719
-	$key = 'give_stats_' . substr( md5( serialize( $args ) ), 0, 15 );
719
+	$key = 'give_stats_'.substr(md5(serialize($args)), 0, 15);
720 720
 
721
-	if ( ! empty( $_GET['_wpnonce'] ) && wp_verify_nonce( $_GET['_wpnonce'], 'give-refresh-reports' ) ) {
721
+	if ( ! empty($_GET['_wpnonce']) && wp_verify_nonce($_GET['_wpnonce'], 'give-refresh-reports')) {
722 722
 		$count = false;
723 723
 	} else {
724
-		$count = get_transient( $key );
724
+		$count = get_transient($key);
725 725
 	}
726 726
 
727
-	if ( false === $count ) {
728
-		$sales = new WP_Query( $args );
727
+	if (false === $count) {
728
+		$sales = new WP_Query($args);
729 729
 		$count = (int) $sales->post_count;
730 730
 		// Cache the results for one hour
731
-		set_transient( $key, $count, HOUR_IN_SECONDS );
731
+		set_transient($key, $count, HOUR_IN_SECONDS);
732 732
 	}
733 733
 
734 734
 	return $count;
@@ -743,20 +743,20 @@  discard block
 block discarded – undo
743 743
  *
744 744
  * @return bool true if complete, false otherwise
745 745
  */
746
-function give_is_payment_complete( $payment_id ) {
747
-	$payment = new Give_Payment( $payment_id );
746
+function give_is_payment_complete($payment_id) {
747
+	$payment = new Give_Payment($payment_id);
748 748
 
749 749
 	$ret = false;
750 750
 
751
-	if ( $payment->ID > 0 ) {
751
+	if ($payment->ID > 0) {
752 752
 
753
-		if ( (int) $payment_id === (int) $payment->ID && 'publish' == $payment->status ) {
753
+		if ((int) $payment_id === (int) $payment->ID && 'publish' == $payment->status) {
754 754
 			$ret = true;
755 755
 		}
756 756
 
757 757
 	}
758 758
 
759
-	return apply_filters( 'give_is_payment_complete', $ret, $payment_id, $payment->post_status );
759
+	return apply_filters('give_is_payment_complete', $ret, $payment_id, $payment->post_status);
760 760
 }
761 761
 
762 762
 /**
@@ -780,29 +780,29 @@  discard block
 block discarded – undo
780 780
  */
781 781
 function give_get_total_earnings() {
782 782
 
783
-	$total = get_option( 'give_earnings_total', false );
783
+	$total = get_option('give_earnings_total', false);
784 784
 
785 785
 	// If no total stored in DB, use old method of calculating total earnings
786
-	if ( false === $total ) {
786
+	if (false === $total) {
787 787
 
788 788
 		global $wpdb;
789 789
 
790
-		$total = get_transient( 'give_earnings_total' );
790
+		$total = get_transient('give_earnings_total');
791 791
 
792
-		if ( false === $total ) {
792
+		if (false === $total) {
793 793
 
794 794
 			$total = (float) 0;
795 795
 
796
-			$args = apply_filters( 'give_get_total_earnings_args', array(
796
+			$args = apply_filters('give_get_total_earnings_args', array(
797 797
 				'offset' => 0,
798
-				'number' => - 1,
799
-				'status' => array( 'publish', 'revoked' ),
798
+				'number' => -1,
799
+				'status' => array('publish', 'revoked'),
800 800
 				'fields' => 'ids'
801
-			) );
801
+			));
802 802
 
803 803
 
804
-			$payments = give_get_payments( $args );
805
-			if ( $payments ) {
804
+			$payments = give_get_payments($args);
805
+			if ($payments) {
806 806
 
807 807
 				/*
808 808
 				 * If performing a purchase, we need to skip the very last payment in the database, since it calls
@@ -810,30 +810,30 @@  discard block
 block discarded – undo
810 810
 				 * first purchase
811 811
 				 */
812 812
 
813
-				if ( did_action( 'give_update_payment_status' ) ) {
814
-					array_pop( $payments );
813
+				if (did_action('give_update_payment_status')) {
814
+					array_pop($payments);
815 815
 				}
816 816
 
817
-				if ( ! empty( $payments ) ) {
818
-					$payments = implode( ',', $payments );
819
-					$total += $wpdb->get_var( "SELECT SUM(meta_value) FROM $wpdb->postmeta WHERE meta_key = '_give_payment_total' AND post_id IN({$payments})" );
817
+				if ( ! empty($payments)) {
818
+					$payments = implode(',', $payments);
819
+					$total += $wpdb->get_var("SELECT SUM(meta_value) FROM $wpdb->postmeta WHERE meta_key = '_give_payment_total' AND post_id IN({$payments})");
820 820
 				}
821 821
 
822 822
 			}
823 823
 
824 824
 			// Cache results for 1 day. This cache is cleared automatically when a payment is made
825
-			set_transient( 'give_earnings_total', $total, 86400 );
825
+			set_transient('give_earnings_total', $total, 86400);
826 826
 
827 827
 			// Store the total for the first time
828
-			update_option( 'give_earnings_total', $total );
828
+			update_option('give_earnings_total', $total);
829 829
 		}
830 830
 	}
831 831
 
832
-	if ( $total < 0 ) {
832
+	if ($total < 0) {
833 833
 		$total = 0; // Don't ever show negative earnings
834 834
 	}
835 835
 
836
-	return apply_filters( 'give_total_earnings', round( $total, give_currency_decimal_filter() ) );
836
+	return apply_filters('give_total_earnings', round($total, give_currency_decimal_filter()));
837 837
 }
838 838
 
839 839
 /**
@@ -845,10 +845,10 @@  discard block
 block discarded – undo
845 845
  *
846 846
  * @return float $total Total earnings
847 847
  */
848
-function give_increase_total_earnings( $amount = 0 ) {
848
+function give_increase_total_earnings($amount = 0) {
849 849
 	$total = give_get_total_earnings();
850 850
 	$total += $amount;
851
-	update_option( 'give_earnings_total', $total );
851
+	update_option('give_earnings_total', $total);
852 852
 
853 853
 	return $total;
854 854
 }
@@ -862,13 +862,13 @@  discard block
 block discarded – undo
862 862
  *
863 863
  * @return float $total Total earnings
864 864
  */
865
-function give_decrease_total_earnings( $amount = 0 ) {
865
+function give_decrease_total_earnings($amount = 0) {
866 866
 	$total = give_get_total_earnings();
867 867
 	$total -= $amount;
868
-	if ( $total < 0 ) {
868
+	if ($total < 0) {
869 869
 		$total = 0;
870 870
 	}
871
-	update_option( 'give_earnings_total', $total );
871
+	update_option('give_earnings_total', $total);
872 872
 
873 873
 	return $total;
874 874
 }
@@ -884,10 +884,10 @@  discard block
 block discarded – undo
884 884
  *
885 885
  * @return mixed $meta Payment Meta
886 886
  */
887
-function give_get_payment_meta( $payment_id = 0, $meta_key = '_give_payment_meta', $single = true ) {
888
-	$payment = new Give_Payment( $payment_id );
887
+function give_get_payment_meta($payment_id = 0, $meta_key = '_give_payment_meta', $single = true) {
888
+	$payment = new Give_Payment($payment_id);
889 889
 
890
-	return $payment->get_meta( $meta_key, $single );
890
+	return $payment->get_meta($meta_key, $single);
891 891
 }
892 892
 
893 893
 /**
@@ -900,10 +900,10 @@  discard block
 block discarded – undo
900 900
  *
901 901
  * @return mixed               Meta ID if successful, false if unsuccessful
902 902
  */
903
-function give_update_payment_meta( $payment_id = 0, $meta_key = '', $meta_value = '', $prev_value = '' ) {
904
-	$payment = new Give_Payment( $payment_id );
903
+function give_update_payment_meta($payment_id = 0, $meta_key = '', $meta_value = '', $prev_value = '') {
904
+	$payment = new Give_Payment($payment_id);
905 905
 
906
-	return $payment->update_meta( $meta_key, $meta_value, $prev_value );
906
+	return $payment->update_meta($meta_key, $meta_value, $prev_value);
907 907
 }
908 908
 
909 909
 /**
@@ -915,8 +915,8 @@  discard block
 block discarded – undo
915 915
  *
916 916
  * @return array $user_info User Info Meta Values
917 917
  */
918
-function give_get_payment_meta_user_info( $payment_id ) {
919
-	$payment = new Give_Payment( $payment_id );
918
+function give_get_payment_meta_user_info($payment_id) {
919
+	$payment = new Give_Payment($payment_id);
920 920
 
921 921
 	return $payment->user_info;
922 922
 }
@@ -931,8 +931,8 @@  discard block
 block discarded – undo
931 931
  *
932 932
  * @return int $form_id
933 933
  */
934
-function give_get_payment_form_id( $payment_id ) {
935
-	$payment = new Give_Payment( $payment_id );
934
+function give_get_payment_form_id($payment_id) {
935
+	$payment = new Give_Payment($payment_id);
936 936
 
937 937
 	return $payment->form_id;
938 938
 }
@@ -946,8 +946,8 @@  discard block
 block discarded – undo
946 946
  *
947 947
  * @return string $email User Email
948 948
  */
949
-function give_get_payment_user_email( $payment_id ) {
950
-	$payment = new Give_Payment( $payment_id );
949
+function give_get_payment_user_email($payment_id) {
950
+	$payment = new Give_Payment($payment_id);
951 951
 
952 952
 	return $payment->email;
953 953
 }
@@ -961,11 +961,11 @@  discard block
 block discarded – undo
961 961
  *
962 962
  * @return bool            If the payment is associated with a user (false) or not (true)
963 963
  */
964
-function give_is_guest_payment( $payment_id ) {
965
-	$payment_user_id  = give_get_payment_user_id( $payment_id );
966
-	$is_guest_payment = ! empty( $payment_user_id ) && $payment_user_id > 0 ? false : true;
964
+function give_is_guest_payment($payment_id) {
965
+	$payment_user_id  = give_get_payment_user_id($payment_id);
966
+	$is_guest_payment = ! empty($payment_user_id) && $payment_user_id > 0 ? false : true;
967 967
 
968
-	return (bool) apply_filters( 'give_is_guest_payment', $is_guest_payment, $payment_id );
968
+	return (bool) apply_filters('give_is_guest_payment', $is_guest_payment, $payment_id);
969 969
 }
970 970
 
971 971
 /**
@@ -977,8 +977,8 @@  discard block
 block discarded – undo
977 977
  *
978 978
  * @return string $user_id User ID
979 979
  */
980
-function give_get_payment_user_id( $payment_id ) {
981
-	$payment = new Give_Payment( $payment_id );
980
+function give_get_payment_user_id($payment_id) {
981
+	$payment = new Give_Payment($payment_id);
982 982
 
983 983
 	return $payment->user_id;
984 984
 }
@@ -992,8 +992,8 @@  discard block
 block discarded – undo
992 992
  *
993 993
  * @return string $customer_id Customer ID
994 994
  */
995
-function give_get_payment_customer_id( $payment_id ) {
996
-	$payment = new Give_Payment( $payment_id );
995
+function give_get_payment_customer_id($payment_id) {
996
+	$payment = new Give_Payment($payment_id);
997 997
 
998 998
 	return $payment->customer_id;
999 999
 }
@@ -1007,8 +1007,8 @@  discard block
 block discarded – undo
1007 1007
  *
1008 1008
  * @return string $ip User IP
1009 1009
  */
1010
-function give_get_payment_user_ip( $payment_id ) {
1011
-	$payment = new Give_Payment( $payment_id );
1010
+function give_get_payment_user_ip($payment_id) {
1011
+	$payment = new Give_Payment($payment_id);
1012 1012
 
1013 1013
 	return $payment->ip;
1014 1014
 }
@@ -1022,8 +1022,8 @@  discard block
 block discarded – undo
1022 1022
  *
1023 1023
  * @return string $date The date the payment was completed
1024 1024
  */
1025
-function give_get_payment_completed_date( $payment_id = 0 ) {
1026
-	$payment = new Give_Payment( $payment_id );
1025
+function give_get_payment_completed_date($payment_id = 0) {
1026
+	$payment = new Give_Payment($payment_id);
1027 1027
 
1028 1028
 	return $payment->completed_date;
1029 1029
 }
@@ -1037,8 +1037,8 @@  discard block
 block discarded – undo
1037 1037
  *
1038 1038
  * @return string $gateway Gateway
1039 1039
  */
1040
-function give_get_payment_gateway( $payment_id ) {
1041
-	$payment = new Give_Payment( $payment_id );
1040
+function give_get_payment_gateway($payment_id) {
1041
+	$payment = new Give_Payment($payment_id);
1042 1042
 
1043 1043
 	return $payment->gateway;
1044 1044
 }
@@ -1052,8 +1052,8 @@  discard block
 block discarded – undo
1052 1052
  *
1053 1053
  * @return string $currency The currency code
1054 1054
  */
1055
-function give_get_payment_currency_code( $payment_id = 0 ) {
1056
-	$payment = new Give_Payment( $payment_id );
1055
+function give_get_payment_currency_code($payment_id = 0) {
1056
+	$payment = new Give_Payment($payment_id);
1057 1057
 
1058 1058
 	return $payment->currency;
1059 1059
 }
@@ -1067,10 +1067,10 @@  discard block
 block discarded – undo
1067 1067
  *
1068 1068
  * @return string $currency The currency name
1069 1069
  */
1070
-function give_get_payment_currency( $payment_id = 0 ) {
1071
-	$currency = give_get_payment_currency_code( $payment_id );
1070
+function give_get_payment_currency($payment_id = 0) {
1071
+	$currency = give_get_payment_currency_code($payment_id);
1072 1072
 
1073
-	return apply_filters( 'give_payment_currency', give_get_currency_name( $currency ), $payment_id );
1073
+	return apply_filters('give_payment_currency', give_get_currency_name($currency), $payment_id);
1074 1074
 }
1075 1075
 
1076 1076
 /**
@@ -1082,8 +1082,8 @@  discard block
 block discarded – undo
1082 1082
  *
1083 1083
  * @return string $key Purchase key
1084 1084
  */
1085
-function give_get_payment_key( $payment_id = 0 ) {
1086
-	$payment = new Give_Payment( $payment_id );
1085
+function give_get_payment_key($payment_id = 0) {
1086
+	$payment = new Give_Payment($payment_id);
1087 1087
 
1088 1088
 	return $payment->key;
1089 1089
 }
@@ -1099,8 +1099,8 @@  discard block
 block discarded – undo
1099 1099
  *
1100 1100
  * @return string $number Payment order number
1101 1101
  */
1102
-function give_get_payment_number( $payment_id = 0 ) {
1103
-	$payment = new Give_Payment( $payment_id );
1102
+function give_get_payment_number($payment_id = 0) {
1103
+	$payment = new Give_Payment($payment_id);
1104 1104
 
1105 1105
 	return $payment->number;
1106 1106
 }
@@ -1114,23 +1114,23 @@  discard block
 block discarded – undo
1114 1114
  *
1115 1115
  * @return string      The formatted payment number
1116 1116
  */
1117
-function give_format_payment_number( $number ) {
1117
+function give_format_payment_number($number) {
1118 1118
 
1119
-	if ( ! give_get_option( 'enable_sequential' ) ) {
1119
+	if ( ! give_get_option('enable_sequential')) {
1120 1120
 		return $number;
1121 1121
 	}
1122 1122
 
1123
-	if ( ! is_numeric( $number ) ) {
1123
+	if ( ! is_numeric($number)) {
1124 1124
 		return $number;
1125 1125
 	}
1126 1126
 
1127
-	$prefix  = give_get_option( 'sequential_prefix' );
1128
-	$number  = absint( $number );
1129
-	$postfix = give_get_option( 'sequential_postfix' );
1127
+	$prefix  = give_get_option('sequential_prefix');
1128
+	$number  = absint($number);
1129
+	$postfix = give_get_option('sequential_postfix');
1130 1130
 
1131
-	$formatted_number = $prefix . $number . $postfix;
1131
+	$formatted_number = $prefix.$number.$postfix;
1132 1132
 
1133
-	return apply_filters( 'give_format_payment_number', $formatted_number, $prefix, $number, $postfix );
1133
+	return apply_filters('give_format_payment_number', $formatted_number, $prefix, $number, $postfix);
1134 1134
 }
1135 1135
 
1136 1136
 /**
@@ -1143,17 +1143,17 @@  discard block
 block discarded – undo
1143 1143
  */
1144 1144
 function give_get_next_payment_number() {
1145 1145
 
1146
-	if ( ! give_get_option( 'enable_sequential' ) ) {
1146
+	if ( ! give_get_option('enable_sequential')) {
1147 1147
 		return false;
1148 1148
 	}
1149 1149
 
1150
-	$number           = get_option( 'give_last_payment_number' );
1151
-	$start            = give_get_option( 'sequential_start', 1 );
1150
+	$number           = get_option('give_last_payment_number');
1151
+	$start            = give_get_option('sequential_start', 1);
1152 1152
 	$increment_number = true;
1153 1153
 
1154
-	if ( false !== $number ) {
1154
+	if (false !== $number) {
1155 1155
 
1156
-		if ( empty( $number ) ) {
1156
+		if (empty($number)) {
1157 1157
 
1158 1158
 			$number           = $start;
1159 1159
 			$increment_number = false;
@@ -1163,24 +1163,24 @@  discard block
 block discarded – undo
1163 1163
 	} else {
1164 1164
 
1165 1165
 		// This case handles the first addition of the new option, as well as if it get's deleted for any reason
1166
-		$payments     = new Give_Payments_Query( array(
1166
+		$payments = new Give_Payments_Query(array(
1167 1167
 			'number'  => 1,
1168 1168
 			'order'   => 'DESC',
1169 1169
 			'orderby' => 'ID',
1170 1170
 			'output'  => 'posts',
1171 1171
 			'fields'  => 'ids'
1172
-		) );
1172
+		));
1173 1173
 		$last_payment = $payments->get_payments();
1174 1174
 
1175
-		if ( ! empty( $last_payment ) ) {
1175
+		if ( ! empty($last_payment)) {
1176 1176
 
1177
-			$number = give_get_payment_number( $last_payment[0] );
1177
+			$number = give_get_payment_number($last_payment[0]);
1178 1178
 
1179 1179
 		}
1180 1180
 
1181
-		if ( ! empty( $number ) && $number !== (int) $last_payment[0] ) {
1181
+		if ( ! empty($number) && $number !== (int) $last_payment[0]) {
1182 1182
 
1183
-			$number = give_remove_payment_prefix_postfix( $number );
1183
+			$number = give_remove_payment_prefix_postfix($number);
1184 1184
 
1185 1185
 		} else {
1186 1186
 
@@ -1190,13 +1190,13 @@  discard block
 block discarded – undo
1190 1190
 
1191 1191
 	}
1192 1192
 
1193
-	$increment_number = apply_filters( 'give_increment_payment_number', $increment_number, $number );
1193
+	$increment_number = apply_filters('give_increment_payment_number', $increment_number, $number);
1194 1194
 
1195
-	if ( $increment_number ) {
1196
-		$number ++;
1195
+	if ($increment_number) {
1196
+		$number++;
1197 1197
 	}
1198 1198
 
1199
-	return apply_filters( 'give_get_next_payment_number', $number );
1199
+	return apply_filters('give_get_next_payment_number', $number);
1200 1200
 }
1201 1201
 
1202 1202
 /**
@@ -1208,25 +1208,25 @@  discard block
 block discarded – undo
1208 1208
  *
1209 1209
  * @return string          The new Payment number without prefix and postfix
1210 1210
  */
1211
-function give_remove_payment_prefix_postfix( $number ) {
1211
+function give_remove_payment_prefix_postfix($number) {
1212 1212
 
1213
-	$prefix  = give_get_option( 'sequential_prefix' );
1214
-	$postfix = give_get_option( 'sequential_postfix' );
1213
+	$prefix  = give_get_option('sequential_prefix');
1214
+	$postfix = give_get_option('sequential_postfix');
1215 1215
 
1216 1216
 	// Remove prefix
1217
-	$number = preg_replace( '/' . $prefix . '/', '', $number, 1 );
1217
+	$number = preg_replace('/'.$prefix.'/', '', $number, 1);
1218 1218
 
1219 1219
 	// Remove the postfix
1220
-	$length      = strlen( $number );
1221
-	$postfix_pos = strrpos( $number, $postfix );
1222
-	if ( false !== $postfix_pos ) {
1223
-		$number = substr_replace( $number, '', $postfix_pos, $length );
1220
+	$length      = strlen($number);
1221
+	$postfix_pos = strrpos($number, $postfix);
1222
+	if (false !== $postfix_pos) {
1223
+		$number = substr_replace($number, '', $postfix_pos, $length);
1224 1224
 	}
1225 1225
 
1226 1226
 	// Ensure it's a whole number
1227
-	$number = intval( $number );
1227
+	$number = intval($number);
1228 1228
 
1229
-	return apply_filters( 'give_remove_payment_prefix_postfix', $number, $prefix, $postfix );
1229
+	return apply_filters('give_remove_payment_prefix_postfix', $number, $prefix, $postfix);
1230 1230
 
1231 1231
 }
1232 1232
 
@@ -1242,10 +1242,10 @@  discard block
 block discarded – undo
1242 1242
  *
1243 1243
  * @return string $amount Fully formatted payment amount
1244 1244
  */
1245
-function give_payment_amount( $payment_id = 0 ) {
1246
-	$amount = give_get_payment_amount( $payment_id );
1245
+function give_payment_amount($payment_id = 0) {
1246
+	$amount = give_get_payment_amount($payment_id);
1247 1247
 
1248
-	return give_currency_filter( give_format_amount( $amount ), give_get_payment_currency_code( $payment_id ) );
1248
+	return give_currency_filter(give_format_amount($amount), give_get_payment_currency_code($payment_id));
1249 1249
 }
1250 1250
 
1251 1251
 /**
@@ -1258,11 +1258,11 @@  discard block
 block discarded – undo
1258 1258
  *
1259 1259
  * @return mixed|void
1260 1260
  */
1261
-function give_get_payment_amount( $payment_id ) {
1261
+function give_get_payment_amount($payment_id) {
1262 1262
 
1263
-	$payment = new Give_Payment( $payment_id );
1263
+	$payment = new Give_Payment($payment_id);
1264 1264
 
1265
-	return apply_filters( 'give_payment_amount', floatval( $payment->total ), $payment_id );
1265
+	return apply_filters('give_payment_amount', floatval($payment->total), $payment_id);
1266 1266
 }
1267 1267
 
1268 1268
 /**
@@ -1278,10 +1278,10 @@  discard block
 block discarded – undo
1278 1278
  *
1279 1279
  * @return array Fully formatted payment subtotal
1280 1280
  */
1281
-function give_payment_subtotal( $payment_id = 0 ) {
1282
-	$subtotal = give_get_payment_subtotal( $payment_id );
1281
+function give_payment_subtotal($payment_id = 0) {
1282
+	$subtotal = give_get_payment_subtotal($payment_id);
1283 1283
 
1284
-	return give_currency_filter( give_format_amount( $subtotal ), give_get_payment_currency_code( $payment_id ) );
1284
+	return give_currency_filter(give_format_amount($subtotal), give_get_payment_currency_code($payment_id));
1285 1285
 }
1286 1286
 
1287 1287
 /**
@@ -1295,8 +1295,8 @@  discard block
 block discarded – undo
1295 1295
  *
1296 1296
  * @return float $subtotal Subtotal for payment (non formatted)
1297 1297
  */
1298
-function give_get_payment_subtotal( $payment_id = 0 ) {
1299
-	$payment = new G_Payment( $payment_id );
1298
+function give_get_payment_subtotal($payment_id = 0) {
1299
+	$payment = new G_Payment($payment_id);
1300 1300
 
1301 1301
 	return $payment->subtotal;
1302 1302
 }
@@ -1311,10 +1311,10 @@  discard block
 block discarded – undo
1311 1311
  *
1312 1312
  * @return mixed array if payment fees found, false otherwise
1313 1313
  */
1314
-function give_get_payment_fees( $payment_id = 0, $type = 'all' ) {
1315
-	$payment = new Give_Payment( $payment_id );
1314
+function give_get_payment_fees($payment_id = 0, $type = 'all') {
1315
+	$payment = new Give_Payment($payment_id);
1316 1316
 
1317
-	return $payment->get_fees( $type );
1317
+	return $payment->get_fees($type);
1318 1318
 }
1319 1319
 
1320 1320
 /**
@@ -1326,8 +1326,8 @@  discard block
 block discarded – undo
1326 1326
  *
1327 1327
  * @return string The Transaction ID
1328 1328
  */
1329
-function give_get_payment_transaction_id( $payment_id = 0 ) {
1330
-	$payment = new Give_Payment( $payment_id );
1329
+function give_get_payment_transaction_id($payment_id = 0) {
1330
+	$payment = new Give_Payment($payment_id);
1331 1331
 
1332 1332
 	return $payment->transaction_id;
1333 1333
 }
@@ -1342,15 +1342,15 @@  discard block
 block discarded – undo
1342 1342
  *
1343 1343
  * @return bool|mixed
1344 1344
  */
1345
-function give_set_payment_transaction_id( $payment_id = 0, $transaction_id = '' ) {
1345
+function give_set_payment_transaction_id($payment_id = 0, $transaction_id = '') {
1346 1346
 
1347
-	if ( empty( $payment_id ) || empty( $transaction_id ) ) {
1347
+	if (empty($payment_id) || empty($transaction_id)) {
1348 1348
 		return false;
1349 1349
 	}
1350 1350
 
1351
-	$transaction_id = apply_filters( 'give_set_payment_transaction_id', $transaction_id, $payment_id );
1351
+	$transaction_id = apply_filters('give_set_payment_transaction_id', $transaction_id, $payment_id);
1352 1352
 
1353
-	return give_update_payment_meta( $payment_id, '_give_payment_transaction_id', $transaction_id );
1353
+	return give_update_payment_meta($payment_id, '_give_payment_transaction_id', $transaction_id);
1354 1354
 }
1355 1355
 
1356 1356
 /**
@@ -1364,12 +1364,12 @@  discard block
 block discarded – undo
1364 1364
  *
1365 1365
  * @return int $purchase Purchase ID
1366 1366
  */
1367
-function give_get_purchase_id_by_key( $key ) {
1367
+function give_get_purchase_id_by_key($key) {
1368 1368
 	global $wpdb;
1369 1369
 
1370
-	$purchase = $wpdb->get_var( $wpdb->prepare( "SELECT post_id FROM $wpdb->postmeta WHERE meta_key = '_give_payment_purchase_key' AND meta_value = %s LIMIT 1", $key ) );
1370
+	$purchase = $wpdb->get_var($wpdb->prepare("SELECT post_id FROM $wpdb->postmeta WHERE meta_key = '_give_payment_purchase_key' AND meta_value = %s LIMIT 1", $key));
1371 1371
 
1372
-	if ( $purchase != null ) {
1372
+	if ($purchase != null) {
1373 1373
 		return $purchase;
1374 1374
 	}
1375 1375
 
@@ -1388,12 +1388,12 @@  discard block
 block discarded – undo
1388 1388
  *
1389 1389
  * @return int $purchase Purchase ID
1390 1390
  */
1391
-function give_get_purchase_id_by_transaction_id( $key ) {
1391
+function give_get_purchase_id_by_transaction_id($key) {
1392 1392
 	global $wpdb;
1393 1393
 
1394
-	$purchase = $wpdb->get_var( $wpdb->prepare( "SELECT post_id FROM $wpdb->postmeta WHERE meta_key = '_give_payment_transaction_id' AND meta_value = %s LIMIT 1", $key ) );
1394
+	$purchase = $wpdb->get_var($wpdb->prepare("SELECT post_id FROM $wpdb->postmeta WHERE meta_key = '_give_payment_transaction_id' AND meta_value = %s LIMIT 1", $key));
1395 1395
 
1396
-	if ( $purchase != null ) {
1396
+	if ($purchase != null) {
1397 1397
 		return $purchase;
1398 1398
 	}
1399 1399
 
@@ -1410,19 +1410,19 @@  discard block
 block discarded – undo
1410 1410
  *
1411 1411
  * @return array $notes Payment Notes
1412 1412
  */
1413
-function give_get_payment_notes( $payment_id = 0, $search = '' ) {
1413
+function give_get_payment_notes($payment_id = 0, $search = '') {
1414 1414
 
1415
-	if ( empty( $payment_id ) && empty( $search ) ) {
1415
+	if (empty($payment_id) && empty($search)) {
1416 1416
 		return false;
1417 1417
 	}
1418 1418
 
1419
-	remove_action( 'pre_get_comments', 'give_hide_payment_notes', 10 );
1420
-	remove_filter( 'comments_clauses', 'give_hide_payment_notes_pre_41', 10, 2 );
1419
+	remove_action('pre_get_comments', 'give_hide_payment_notes', 10);
1420
+	remove_filter('comments_clauses', 'give_hide_payment_notes_pre_41', 10, 2);
1421 1421
 
1422
-	$notes = get_comments( array( 'post_id' => $payment_id, 'order' => 'ASC', 'search' => $search ) );
1422
+	$notes = get_comments(array('post_id' => $payment_id, 'order' => 'ASC', 'search' => $search));
1423 1423
 
1424
-	add_action( 'pre_get_comments', 'give_hide_payment_notes', 10 );
1425
-	add_filter( 'comments_clauses', 'give_hide_payment_notes_pre_41', 10, 2 );
1424
+	add_action('pre_get_comments', 'give_hide_payment_notes', 10);
1425
+	add_filter('comments_clauses', 'give_hide_payment_notes_pre_41', 10, 2);
1426 1426
 
1427 1427
 	return $notes;
1428 1428
 }
@@ -1438,19 +1438,19 @@  discard block
 block discarded – undo
1438 1438
  *
1439 1439
  * @return int The new note ID
1440 1440
  */
1441
-function give_insert_payment_note( $payment_id = 0, $note = '' ) {
1442
-	if ( empty( $payment_id ) ) {
1441
+function give_insert_payment_note($payment_id = 0, $note = '') {
1442
+	if (empty($payment_id)) {
1443 1443
 		return false;
1444 1444
 	}
1445 1445
 
1446
-	do_action( 'give_pre_insert_payment_note', $payment_id, $note );
1446
+	do_action('give_pre_insert_payment_note', $payment_id, $note);
1447 1447
 
1448
-	$note_id = wp_insert_comment( wp_filter_comment( array(
1448
+	$note_id = wp_insert_comment(wp_filter_comment(array(
1449 1449
 		'comment_post_ID'      => $payment_id,
1450 1450
 		'comment_content'      => $note,
1451 1451
 		'user_id'              => is_admin() ? get_current_user_id() : 0,
1452
-		'comment_date'         => current_time( 'mysql' ),
1453
-		'comment_date_gmt'     => current_time( 'mysql', 1 ),
1452
+		'comment_date'         => current_time('mysql'),
1453
+		'comment_date_gmt'     => current_time('mysql', 1),
1454 1454
 		'comment_approved'     => 1,
1455 1455
 		'comment_parent'       => 0,
1456 1456
 		'comment_author'       => '',
@@ -1459,9 +1459,9 @@  discard block
 block discarded – undo
1459 1459
 		'comment_author_email' => '',
1460 1460
 		'comment_type'         => 'give_payment_note'
1461 1461
 
1462
-	) ) );
1462
+	)));
1463 1463
 
1464
-	do_action( 'give_insert_payment_note', $note_id, $payment_id, $note );
1464
+	do_action('give_insert_payment_note', $note_id, $payment_id, $note);
1465 1465
 
1466 1466
 	return $note_id;
1467 1467
 }
@@ -1476,14 +1476,14 @@  discard block
 block discarded – undo
1476 1476
  *
1477 1477
  * @return bool True on success, false otherwise
1478 1478
  */
1479
-function give_delete_payment_note( $comment_id = 0, $payment_id = 0 ) {
1480
-	if ( empty( $comment_id ) ) {
1479
+function give_delete_payment_note($comment_id = 0, $payment_id = 0) {
1480
+	if (empty($comment_id)) {
1481 1481
 		return false;
1482 1482
 	}
1483 1483
 
1484
-	do_action( 'give_pre_delete_payment_note', $comment_id, $payment_id );
1485
-	$ret = wp_delete_comment( $comment_id, true );
1486
-	do_action( 'give_post_delete_payment_note', $comment_id, $payment_id );
1484
+	do_action('give_pre_delete_payment_note', $comment_id, $payment_id);
1485
+	$ret = wp_delete_comment($comment_id, true);
1486
+	do_action('give_post_delete_payment_note', $comment_id, $payment_id);
1487 1487
 
1488 1488
 	return $ret;
1489 1489
 }
@@ -1498,32 +1498,32 @@  discard block
 block discarded – undo
1498 1498
  *
1499 1499
  * @return string
1500 1500
  */
1501
-function give_get_payment_note_html( $note, $payment_id = 0 ) {
1501
+function give_get_payment_note_html($note, $payment_id = 0) {
1502 1502
 
1503
-	if ( is_numeric( $note ) ) {
1504
-		$note = get_comment( $note );
1503
+	if (is_numeric($note)) {
1504
+		$note = get_comment($note);
1505 1505
 	}
1506 1506
 
1507
-	if ( ! empty( $note->user_id ) ) {
1508
-		$user = get_userdata( $note->user_id );
1507
+	if ( ! empty($note->user_id)) {
1508
+		$user = get_userdata($note->user_id);
1509 1509
 		$user = $user->display_name;
1510 1510
 	} else {
1511
-		$user = esc_html__( 'System', 'give' );
1511
+		$user = esc_html__('System', 'give');
1512 1512
 	}
1513 1513
 
1514
-	$date_format = get_option( 'date_format' ) . ', ' . get_option( 'time_format' );
1514
+	$date_format = get_option('date_format').', '.get_option('time_format');
1515 1515
 
1516
-	$delete_note_url = wp_nonce_url( add_query_arg( array(
1516
+	$delete_note_url = wp_nonce_url(add_query_arg(array(
1517 1517
 		'give-action' => 'delete_payment_note',
1518 1518
 		'note_id'     => $note->comment_ID,
1519 1519
 		'payment_id'  => $payment_id
1520
-	) ), 'give_delete_payment_note_' . $note->comment_ID );
1520
+	)), 'give_delete_payment_note_'.$note->comment_ID);
1521 1521
 
1522
-	$note_html = '<div class="give-payment-note" id="give-payment-note-' . $note->comment_ID . '">';
1522
+	$note_html = '<div class="give-payment-note" id="give-payment-note-'.$note->comment_ID.'">';
1523 1523
 	$note_html .= '<p>';
1524
-	$note_html .= '<strong>' . $user . '</strong>&nbsp;&ndash;&nbsp;<span style="color:#aaa;font-style:italic;">' . date_i18n( $date_format, strtotime( $note->comment_date ) ) . '</span><br/>';
1524
+	$note_html .= '<strong>'.$user.'</strong>&nbsp;&ndash;&nbsp;<span style="color:#aaa;font-style:italic;">'.date_i18n($date_format, strtotime($note->comment_date)).'</span><br/>';
1525 1525
 	$note_html .= $note->comment_content;
1526
-	$note_html .= '&nbsp;&ndash;&nbsp;<a href="' . esc_url( $delete_note_url ) . '" class="give-delete-payment-note" data-note-id="' . absint( $note->comment_ID ) . '" data-payment-id="' . absint( $payment_id ) . '" title="' . esc_attr__( 'Delete this payment note', 'give' ) . '">' . esc_html__( 'Delete', 'give' ) . '</a>';
1526
+	$note_html .= '&nbsp;&ndash;&nbsp;<a href="'.esc_url($delete_note_url).'" class="give-delete-payment-note" data-note-id="'.absint($note->comment_ID).'" data-payment-id="'.absint($payment_id).'" title="'.esc_attr__('Delete this payment note', 'give').'">'.esc_html__('Delete', 'give').'</a>';
1527 1527
 	$note_html .= '</p>';
1528 1528
 	$note_html .= '</div>';
1529 1529
 
@@ -1541,20 +1541,20 @@  discard block
 block discarded – undo
1541 1541
  *
1542 1542
  * @return void
1543 1543
  */
1544
-function give_hide_payment_notes( $query ) {
1544
+function give_hide_payment_notes($query) {
1545 1545
 	global $wp_version;
1546 1546
 
1547
-	if ( version_compare( floatval( $wp_version ), '4.1', '>=' ) ) {
1548
-		$types = isset( $query->query_vars['type__not_in'] ) ? $query->query_vars['type__not_in'] : array();
1549
-		if ( ! is_array( $types ) ) {
1550
-			$types = array( $types );
1547
+	if (version_compare(floatval($wp_version), '4.1', '>=')) {
1548
+		$types = isset($query->query_vars['type__not_in']) ? $query->query_vars['type__not_in'] : array();
1549
+		if ( ! is_array($types)) {
1550
+			$types = array($types);
1551 1551
 		}
1552 1552
 		$types[]                           = 'give_payment_note';
1553 1553
 		$query->query_vars['type__not_in'] = $types;
1554 1554
 	}
1555 1555
 }
1556 1556
 
1557
-add_action( 'pre_get_comments', 'give_hide_payment_notes', 10 );
1557
+add_action('pre_get_comments', 'give_hide_payment_notes', 10);
1558 1558
 
1559 1559
 /**
1560 1560
  * Exclude notes (comments) on give_payment post type from showing in Recent Comments widgets
@@ -1566,17 +1566,17 @@  discard block
 block discarded – undo
1566 1566
  *
1567 1567
  * @return array $clauses Updated comment clauses
1568 1568
  */
1569
-function give_hide_payment_notes_pre_41( $clauses, $wp_comment_query ) {
1569
+function give_hide_payment_notes_pre_41($clauses, $wp_comment_query) {
1570 1570
 	global $wpdb, $wp_version;
1571 1571
 
1572
-	if ( version_compare( floatval( $wp_version ), '4.1', '<' ) ) {
1572
+	if (version_compare(floatval($wp_version), '4.1', '<')) {
1573 1573
 		$clauses['where'] .= ' AND comment_type != "give_payment_note"';
1574 1574
 	}
1575 1575
 
1576 1576
 	return $clauses;
1577 1577
 }
1578 1578
 
1579
-add_filter( 'comments_clauses', 'give_hide_payment_notes_pre_41', 10, 2 );
1579
+add_filter('comments_clauses', 'give_hide_payment_notes_pre_41', 10, 2);
1580 1580
 
1581 1581
 
1582 1582
 /**
@@ -1589,15 +1589,15 @@  discard block
 block discarded – undo
1589 1589
  *
1590 1590
  * @return array $where
1591 1591
  */
1592
-function give_hide_payment_notes_from_feeds( $where, $wp_comment_query ) {
1592
+function give_hide_payment_notes_from_feeds($where, $wp_comment_query) {
1593 1593
 	global $wpdb;
1594 1594
 
1595
-	$where .= $wpdb->prepare( " AND comment_type != %s", 'give_payment_note' );
1595
+	$where .= $wpdb->prepare(" AND comment_type != %s", 'give_payment_note');
1596 1596
 
1597 1597
 	return $where;
1598 1598
 }
1599 1599
 
1600
-add_filter( 'comment_feed_where', 'give_hide_payment_notes_from_feeds', 10, 2 );
1600
+add_filter('comment_feed_where', 'give_hide_payment_notes_from_feeds', 10, 2);
1601 1601
 
1602 1602
 
1603 1603
 /**
@@ -1611,32 +1611,32 @@  discard block
 block discarded – undo
1611 1611
  *
1612 1612
  * @return array Array of comment counts
1613 1613
  */
1614
-function give_remove_payment_notes_in_comment_counts( $stats, $post_id ) {
1614
+function give_remove_payment_notes_in_comment_counts($stats, $post_id) {
1615 1615
 	global $wpdb, $pagenow;
1616 1616
 
1617
-	if ( 'index.php' != $pagenow ) {
1617
+	if ('index.php' != $pagenow) {
1618 1618
 		return $stats;
1619 1619
 	}
1620 1620
 
1621 1621
 	$post_id = (int) $post_id;
1622 1622
 
1623
-	if ( apply_filters( 'give_count_payment_notes_in_comments', false ) ) {
1623
+	if (apply_filters('give_count_payment_notes_in_comments', false)) {
1624 1624
 		return $stats;
1625 1625
 	}
1626 1626
 
1627
-	$stats = wp_cache_get( "comments-{$post_id}", 'counts' );
1627
+	$stats = wp_cache_get("comments-{$post_id}", 'counts');
1628 1628
 
1629
-	if ( false !== $stats ) {
1629
+	if (false !== $stats) {
1630 1630
 		return $stats;
1631 1631
 	}
1632 1632
 
1633 1633
 	$where = 'WHERE comment_type != "give_payment_note"';
1634 1634
 
1635
-	if ( $post_id > 0 ) {
1636
-		$where .= $wpdb->prepare( " AND comment_post_ID = %d", $post_id );
1635
+	if ($post_id > 0) {
1636
+		$where .= $wpdb->prepare(" AND comment_post_ID = %d", $post_id);
1637 1637
 	}
1638 1638
 
1639
-	$count = $wpdb->get_results( "SELECT comment_approved, COUNT( * ) AS num_comments FROM {$wpdb->comments} {$where} GROUP BY comment_approved", ARRAY_A );
1639
+	$count = $wpdb->get_results("SELECT comment_approved, COUNT( * ) AS num_comments FROM {$wpdb->comments} {$where} GROUP BY comment_approved", ARRAY_A);
1640 1640
 
1641 1641
 	$total    = 0;
1642 1642
 	$approved = array(
@@ -1646,30 +1646,30 @@  discard block
 block discarded – undo
1646 1646
 		'trash'        => 'trash',
1647 1647
 		'post-trashed' => 'post-trashed'
1648 1648
 	);
1649
-	foreach ( (array) $count as $row ) {
1649
+	foreach ((array) $count as $row) {
1650 1650
 		// Don't count post-trashed toward totals
1651
-		if ( 'post-trashed' != $row['comment_approved'] && 'trash' != $row['comment_approved'] ) {
1651
+		if ('post-trashed' != $row['comment_approved'] && 'trash' != $row['comment_approved']) {
1652 1652
 			$total += $row['num_comments'];
1653 1653
 		}
1654
-		if ( isset( $approved[ $row['comment_approved'] ] ) ) {
1655
-			$stats[ $approved[ $row['comment_approved'] ] ] = $row['num_comments'];
1654
+		if (isset($approved[$row['comment_approved']])) {
1655
+			$stats[$approved[$row['comment_approved']]] = $row['num_comments'];
1656 1656
 		}
1657 1657
 	}
1658 1658
 
1659 1659
 	$stats['total_comments'] = $total;
1660
-	foreach ( $approved as $key ) {
1661
-		if ( empty( $stats[ $key ] ) ) {
1662
-			$stats[ $key ] = 0;
1660
+	foreach ($approved as $key) {
1661
+		if (empty($stats[$key])) {
1662
+			$stats[$key] = 0;
1663 1663
 		}
1664 1664
 	}
1665 1665
 
1666 1666
 	$stats = (object) $stats;
1667
-	wp_cache_set( "comments-{$post_id}", $stats, 'counts' );
1667
+	wp_cache_set("comments-{$post_id}", $stats, 'counts');
1668 1668
 
1669 1669
 	return $stats;
1670 1670
 }
1671 1671
 
1672
-add_filter( 'wp_count_comments', 'give_remove_payment_notes_in_comment_counts', 10, 2 );
1672
+add_filter('wp_count_comments', 'give_remove_payment_notes_in_comment_counts', 10, 2);
1673 1673
 
1674 1674
 
1675 1675
 /**
@@ -1682,9 +1682,9 @@  discard block
 block discarded – undo
1682 1682
  *
1683 1683
  * @return string $where Modified where clause
1684 1684
  */
1685
-function give_filter_where_older_than_week( $where = '' ) {
1685
+function give_filter_where_older_than_week($where = '') {
1686 1686
 	// Payments older than one week
1687
-	$start = date( 'Y-m-d', strtotime( '-7 days' ) );
1687
+	$start = date('Y-m-d', strtotime('-7 days'));
1688 1688
 	$where .= " AND post_date <= '{$start}'";
1689 1689
 
1690 1690
 	return $where;
@@ -1703,37 +1703,37 @@  discard block
 block discarded – undo
1703 1703
  *
1704 1704
  * @return string $form_title Returns the full title if $level_title false, otherwise returns the levels title
1705 1705
  */
1706
-function give_get_payment_form_title( $payment_meta, $level_title = false, $separator = '' ) {
1706
+function give_get_payment_form_title($payment_meta, $level_title = false, $separator = '') {
1707 1707
 
1708
-	$form_id    = isset( $payment_meta['form_id'] ) ? $payment_meta['form_id'] : 0;
1709
-	$form_title = isset( $payment_meta['form_title'] ) ? $payment_meta['form_title'] : '';
1710
-	$price_id   = isset( $payment_meta['price_id'] ) ? $payment_meta['price_id'] : null;
1708
+	$form_id    = isset($payment_meta['form_id']) ? $payment_meta['form_id'] : 0;
1709
+	$form_title = isset($payment_meta['form_title']) ? $payment_meta['form_title'] : '';
1710
+	$price_id   = isset($payment_meta['price_id']) ? $payment_meta['price_id'] : null;
1711 1711
 
1712
-	if ( $level_title == true ) {
1712
+	if ($level_title == true) {
1713 1713
 		$form_title = '';
1714 1714
 	}
1715 1715
 
1716
-	if ( give_has_variable_prices( $form_id ) ) {
1716
+	if (give_has_variable_prices($form_id)) {
1717 1717
 
1718
-		if ( ! empty( $separator ) ) {
1719
-			$form_title .= ' ' . $separator;
1718
+		if ( ! empty($separator)) {
1719
+			$form_title .= ' '.$separator;
1720 1720
 		}
1721 1721
 		$form_title .= ' <span class="donation-level-text-wrap">';
1722 1722
 
1723
-		if ( $price_id == 'custom' ) {
1723
+		if ($price_id == 'custom') {
1724 1724
 
1725
-			$custom_amount_text = get_post_meta( $form_id, '_give_custom_amount_text', true );
1726
-			$form_title .= ! empty( $custom_amount_text ) ? $custom_amount_text : esc_html__( 'Custom Amount', 'give' );
1725
+			$custom_amount_text = get_post_meta($form_id, '_give_custom_amount_text', true);
1726
+			$form_title .= ! empty($custom_amount_text) ? $custom_amount_text : esc_html__('Custom Amount', 'give');
1727 1727
 
1728 1728
 		} else {
1729
-			$form_title .= give_get_price_option_name( $form_id, $price_id );
1729
+			$form_title .= give_get_price_option_name($form_id, $price_id);
1730 1730
 		}
1731 1731
 
1732 1732
 		$form_title .= '</span>';
1733 1733
 
1734 1734
 	}
1735 1735
 
1736
-	return apply_filters( 'give_get_payment_form_title', $form_title, $payment_meta );
1736
+	return apply_filters('give_get_payment_form_title', $form_title, $payment_meta);
1737 1737
 
1738 1738
 }
1739 1739
 
@@ -1747,20 +1747,20 @@  discard block
 block discarded – undo
1747 1747
  *
1748 1748
  * @return string $price_id
1749 1749
  */
1750
-function give_get_price_id( $form_id, $price ) {
1750
+function give_get_price_id($form_id, $price) {
1751 1751
 
1752 1752
 	$price_id = 0;
1753 1753
 
1754
-	if ( give_has_variable_prices( $form_id ) ) {
1754
+	if (give_has_variable_prices($form_id)) {
1755 1755
 
1756
-		$levels = maybe_unserialize( get_post_meta( $form_id, '_give_donation_levels', true ) );
1756
+		$levels = maybe_unserialize(get_post_meta($form_id, '_give_donation_levels', true));
1757 1757
 
1758
-		foreach ( $levels as $level ) {
1758
+		foreach ($levels as $level) {
1759 1759
 
1760
-			$level_amount = (float) give_sanitize_amount( $level['_give_amount'] );
1760
+			$level_amount = (float) give_sanitize_amount($level['_give_amount']);
1761 1761
 
1762 1762
 			//check that this indeed the recurring price
1763
-			if ( $level_amount == $price ) {
1763
+			if ($level_amount == $price) {
1764 1764
 
1765 1765
 				$price_id = $level['_give_id']['level_id'];
1766 1766
 
Please login to merge, or discard this patch.
includes/payments/actions.php 1 patch
Spacing   +53 added lines, -53 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
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
 
@@ -28,21 +28,21 @@  discard block
 block discarded – undo
28 28
  *
29 29
  * @return void
30 30
  */
31
-function give_complete_purchase( $payment_id, $new_status, $old_status ) {
31
+function give_complete_purchase($payment_id, $new_status, $old_status) {
32 32
 
33 33
 	// Make sure that payments are only completed once
34
-	if ( $old_status == 'publish' || $old_status == 'complete' ) {
34
+	if ($old_status == 'publish' || $old_status == 'complete') {
35 35
 		return;
36 36
 	}
37 37
 
38 38
 	// Make sure the payment completion is only processed when new status is complete
39
-	if ( $new_status != 'publish' && $new_status != 'complete' ) {
39
+	if ($new_status != 'publish' && $new_status != 'complete') {
40 40
 		return;
41 41
 	}
42 42
 	
43
-	$payment = new Give_Payment( $payment_id );
43
+	$payment = new Give_Payment($payment_id);
44 44
 
45
-	$creation_date  = get_post_field( 'post_date', $payment_id, 'raw' );
45
+	$creation_date  = get_post_field('post_date', $payment_id, 'raw');
46 46
 	$payment_meta   = $payment->payment_meta;
47 47
 	$completed_date = $payment->completed_date;
48 48
 	$user_info      = $payment->user_info;
@@ -51,45 +51,45 @@  discard block
 block discarded – undo
51 51
 	$price_id       = $payment->price_id;
52 52
 	$form_id        = $payment->form_id;
53 53
 
54
-	do_action( 'give_pre_complete_purchase', $payment_id );
54
+	do_action('give_pre_complete_purchase', $payment_id);
55 55
 
56 56
 	// Ensure these actions only run once, ever
57
-	if ( empty( $completed_date ) ) {
57
+	if (empty($completed_date)) {
58 58
 
59
-		give_record_sale_in_log( $form_id, $payment_id, $price_id, $creation_date );
60
-		do_action( 'give_complete_form_donation', $form_id, $payment_id, $payment_meta );
59
+		give_record_sale_in_log($form_id, $payment_id, $price_id, $creation_date);
60
+		do_action('give_complete_form_donation', $form_id, $payment_id, $payment_meta);
61 61
 
62 62
 	}
63 63
 
64 64
 	// Increase the earnings for this form ID
65
-	give_increase_earnings( $form_id, $amount );
66
-	give_increase_purchase_count( $form_id );
65
+	give_increase_earnings($form_id, $amount);
66
+	give_increase_purchase_count($form_id);
67 67
 
68 68
 	// Clear the total earnings cache
69
-	delete_transient( 'give_earnings_total' );
69
+	delete_transient('give_earnings_total');
70 70
 	// Clear the This Month earnings (this_monththis_month is NOT a typo)
71
-	delete_transient( md5( 'give_earnings_this_monththis_month' ) );
72
-	delete_transient( md5( 'give_earnings_todaytoday' ) );
71
+	delete_transient(md5('give_earnings_this_monththis_month'));
72
+	delete_transient(md5('give_earnings_todaytoday'));
73 73
 	
74 74
 	// Increase the donor's purchase stats
75
-	$customer = new Give_Customer( $customer_id );
75
+	$customer = new Give_Customer($customer_id);
76 76
 	$customer->increase_purchase_count();
77
-	$customer->increase_value( $amount );
77
+	$customer->increase_value($amount);
78 78
 
79
-	give_increase_total_earnings( $amount );
79
+	give_increase_total_earnings($amount);
80 80
 
81 81
 	// Ensure this action only runs once ever
82
-	if ( empty( $completed_date ) ) {
82
+	if (empty($completed_date)) {
83 83
 
84 84
 		// Save the completed date
85
-		$payment->completed_date = current_time( 'mysql' );
85
+		$payment->completed_date = current_time('mysql');
86 86
 		$payment->save();
87
-		do_action( 'give_complete_purchase', $payment_id );
87
+		do_action('give_complete_purchase', $payment_id);
88 88
 	}
89 89
 
90 90
 }
91 91
 
92
-add_action( 'give_update_payment_status', 'give_complete_purchase', 100, 3 );
92
+add_action('give_update_payment_status', 'give_complete_purchase', 100, 3);
93 93
 
94 94
 
95 95
 /**
@@ -103,24 +103,24 @@  discard block
 block discarded – undo
103 103
  *
104 104
  * @return void
105 105
  */
106
-function give_record_status_change( $payment_id, $new_status, $old_status ) {
106
+function give_record_status_change($payment_id, $new_status, $old_status) {
107 107
 
108 108
 	// Get the list of statuses so that status in the payment note can be translated
109 109
 	$stati      = give_get_payment_statuses();
110
-	$old_status = isset( $stati[ $old_status ] ) ? $stati[ $old_status ] : $old_status;
111
-	$new_status = isset( $stati[ $new_status ] ) ? $stati[ $new_status ] : $new_status;
110
+	$old_status = isset($stati[$old_status]) ? $stati[$old_status] : $old_status;
111
+	$new_status = isset($stati[$new_status]) ? $stati[$new_status] : $new_status;
112 112
 
113 113
 	$status_change = sprintf(
114 114
 		/* translators: 1: old status 2: new status */
115
-		esc_html__( 'Status changed from %1$s to %2$s.', 'give' ),
115
+		esc_html__('Status changed from %1$s to %2$s.', 'give'),
116 116
 		$old_status,
117 117
 		$new_status
118 118
 	);
119 119
 
120
-	give_insert_payment_note( $payment_id, $status_change );
120
+	give_insert_payment_note($payment_id, $status_change);
121 121
 }
122 122
 
123
-add_action( 'give_update_payment_status', 'give_record_status_change', 100, 3 );
123
+add_action('give_update_payment_status', 'give_record_status_change', 100, 3);
124 124
 
125 125
 
126 126
 /**
@@ -133,17 +133,17 @@  discard block
 block discarded – undo
133 133
  * @param $new_status the status of the payment, probably "publish"
134 134
  * @param $old_status the status of the payment prior to being marked as "complete", probably "pending"
135 135
  */
136
-function give_clear_user_history_cache( $payment_id, $new_status, $old_status ) {
136
+function give_clear_user_history_cache($payment_id, $new_status, $old_status) {
137 137
 
138
-	$payment = new Give_Payment( $payment_id );
138
+	$payment = new Give_Payment($payment_id);
139 139
 
140
-	if ( ! empty( $payment->user_id ) ) {
141
-		delete_transient( 'give_user_' . $payment->user_id . '_purchases' );
140
+	if ( ! empty($payment->user_id)) {
141
+		delete_transient('give_user_'.$payment->user_id.'_purchases');
142 142
 	}
143 143
 
144 144
 }
145 145
 
146
-add_action( 'give_update_payment_status', 'give_clear_user_history_cache', 10, 3 );
146
+add_action('give_update_payment_status', 'give_clear_user_history_cache', 10, 3);
147 147
 
148 148
 /**
149 149
  * Updates all old payments, prior to 1.2, with new
@@ -157,25 +157,25 @@  discard block
 block discarded – undo
157 157
  *
158 158
  * @return void
159 159
  */
160
-function give_update_old_payments_with_totals( $data ) {
161
-	if ( ! wp_verify_nonce( $data['_wpnonce'], 'give_upgrade_payments_nonce' ) ) {
160
+function give_update_old_payments_with_totals($data) {
161
+	if ( ! wp_verify_nonce($data['_wpnonce'], 'give_upgrade_payments_nonce')) {
162 162
 		return;
163 163
 	}
164 164
 
165
-	if ( get_option( 'give_payment_totals_upgraded' ) ) {
165
+	if (get_option('give_payment_totals_upgraded')) {
166 166
 		return;
167 167
 	}
168 168
 
169
-	$payments = give_get_payments( array(
169
+	$payments = give_get_payments(array(
170 170
 		'offset' => 0,
171
-		'number' => - 1,
171
+		'number' => -1,
172 172
 		'mode'   => 'all'
173
-	) );
173
+	));
174 174
 
175
-	if ( $payments ) {
176
-		foreach ( $payments as $payment ) {
175
+	if ($payments) {
176
+		foreach ($payments as $payment) {
177 177
 
178
-			$payment = new Give_Payment( $payment->ID );
178
+			$payment = new Give_Payment($payment->ID);
179 179
 			$meta    = $payment->get_meta();
180 180
 
181 181
 			$payment->total = $meta['amount'];
@@ -184,10 +184,10 @@  discard block
 block discarded – undo
184 184
 		}
185 185
 	}
186 186
 
187
-	add_option( 'give_payment_totals_upgraded', 1 );
187
+	add_option('give_payment_totals_upgraded', 1);
188 188
 }
189 189
 
190
-add_action( 'give_upgrade_payments', 'give_update_old_payments_with_totals' );
190
+add_action('give_upgrade_payments', 'give_update_old_payments_with_totals');
191 191
 
192 192
 /**
193 193
  * Updates week-old+ 'pending' orders to 'abandoned'
@@ -198,21 +198,21 @@  discard block
 block discarded – undo
198 198
 function give_mark_abandoned_donations() {
199 199
 	$args = array(
200 200
 		'status' => 'pending',
201
-		'number' => - 1,
201
+		'number' => -1,
202 202
 		'output' => 'give_payments',
203 203
 	);
204 204
 
205
-	add_filter( 'posts_where', 'give_filter_where_older_than_week' );
205
+	add_filter('posts_where', 'give_filter_where_older_than_week');
206 206
 
207
-	$payments = give_get_payments( $args );
207
+	$payments = give_get_payments($args);
208 208
 
209
-	remove_filter( 'posts_where', 'give_filter_where_older_than_week' );
209
+	remove_filter('posts_where', 'give_filter_where_older_than_week');
210 210
 
211
-	if ( $payments ) {
212
-		foreach ( $payments as $payment ) {
213
-			$gateway = give_get_payment_gateway( $payment );
211
+	if ($payments) {
212
+		foreach ($payments as $payment) {
213
+			$gateway = give_get_payment_gateway($payment);
214 214
 			//Skip offline gateway payments
215
-			if ( $gateway == 'offline' ) {
215
+			if ($gateway == 'offline') {
216 216
 				continue;
217 217
 			}
218 218
 			$payment->status = 'abandoned';
@@ -221,4 +221,4 @@  discard block
 block discarded – undo
221 221
 	}
222 222
 }
223 223
 
224
-add_action( 'give_weekly_scheduled_events', 'give_mark_abandoned_donations' );
225 224
\ No newline at end of file
225
+add_action('give_weekly_scheduled_events', 'give_mark_abandoned_donations');
226 226
\ No newline at end of file
Please login to merge, or discard this patch.
includes/class-give-email-access.php 1 patch
Spacing   +62 added lines, -62 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
  * @since       1.4
11 11
  */
12 12
 
13
-defined( 'ABSPATH' ) or exit;
13
+defined('ABSPATH') or exit;
14 14
 
15 15
 /**
16 16
  * Class Give_Email_Access
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 	function __construct() {
31 31
 
32 32
 		// get it started
33
-		add_action( 'init', array( $this, 'init' ) );
33
+		add_action('init', array($this, 'init'));
34 34
 	}
35 35
 
36 36
 
@@ -39,30 +39,30 @@  discard block
 block discarded – undo
39 39
 	 */
40 40
 	function init() {
41 41
 
42
-		$is_enabled = give_get_option( 'email_access' );
42
+		$is_enabled = give_get_option('email_access');
43 43
 
44 44
 		//Non-logged in users only
45
-		if ( is_user_logged_in() || $is_enabled !== 'on' || is_admin() ) {
45
+		if (is_user_logged_in() || $is_enabled !== 'on' || is_admin()) {
46 46
 			return;
47 47
 		}
48 48
 
49 49
 		//Are db columns setup?
50
-		$is_setup = give_get_option( 'email_access_installed' );
51
-		if ( empty( $is_setup ) ) {
50
+		$is_setup = give_get_option('email_access_installed');
51
+		if (empty($is_setup)) {
52 52
 			$this->create_columns();
53 53
 		}
54 54
 
55 55
 		// Timeouts
56
-		$this->verify_throttle  = apply_filters( 'give_nl_verify_throttle', 300 );
57
-		$this->token_expiration = apply_filters( 'give_nl_token_expiration', 7200 );
56
+		$this->verify_throttle  = apply_filters('give_nl_verify_throttle', 300);
57
+		$this->token_expiration = apply_filters('give_nl_token_expiration', 7200);
58 58
 
59 59
 		// Setup login
60 60
 		$this->check_for_token();
61 61
 
62
-		if ( $this->token_exists ) {
63
-			add_filter( 'give_can_view_receipt', '__return_true' );
64
-			add_filter( 'give_user_pending_verification', '__return_false' );
65
-			add_filter( 'give_get_users_purchases_args', array( $this, 'users_purchases_args' ) );
62
+		if ($this->token_exists) {
63
+			add_filter('give_can_view_receipt', '__return_true');
64
+			add_filter('give_user_pending_verification', '__return_false');
65
+			add_filter('give_get_users_purchases_args', array($this, 'users_purchases_args'));
66 66
 		}
67 67
 	}
68 68
 
@@ -73,24 +73,24 @@  discard block
 block discarded – undo
73 73
 	 *
74 74
 	 * @return bool
75 75
 	 */
76
-	function can_send_email( $customer_id ) {
76
+	function can_send_email($customer_id) {
77 77
 		global $wpdb;
78 78
 
79 79
 		// Prevent multiple emails within X minutes
80
-		$throttle = date( 'Y-m-d H:i:s', time() - $this->verify_throttle );
80
+		$throttle = date('Y-m-d H:i:s', time() - $this->verify_throttle);
81 81
 
82 82
 		// Does a user row exist?
83 83
 		$exists = (int) $wpdb->get_var(
84
-			$wpdb->prepare( "SELECT COUNT(*) FROM {$wpdb->prefix}give_customers WHERE id = %d", $customer_id )
84
+			$wpdb->prepare("SELECT COUNT(*) FROM {$wpdb->prefix}give_customers WHERE id = %d", $customer_id)
85 85
 		);
86 86
 
87
-		if ( 0 < $exists ) {
87
+		if (0 < $exists) {
88 88
 			$row_id = (int) $wpdb->get_var(
89
-				$wpdb->prepare( "SELECT id FROM {$wpdb->prefix}give_customers WHERE id = %d AND (verify_throttle < %s OR verify_key = '') LIMIT 1", $customer_id, $throttle )
89
+				$wpdb->prepare("SELECT id FROM {$wpdb->prefix}give_customers WHERE id = %d AND (verify_throttle < %s OR verify_key = '') LIMIT 1", $customer_id, $throttle)
90 90
 			);
91 91
 
92
-			if ( $row_id < 1 ) {
93
-				give_set_error( 'give_email_access_attempts_exhausted', esc_html__( 'Please wait a few minutes before requesting a new email access link.', 'give' ) );
92
+			if ($row_id < 1) {
93
+				give_set_error('give_email_access_attempts_exhausted', esc_html__('Please wait a few minutes before requesting a new email access link.', 'give'));
94 94
 
95 95
 				return false;
96 96
 			}
@@ -106,38 +106,38 @@  discard block
 block discarded – undo
106 106
 	 * @param $customer_id
107 107
 	 * @param $email
108 108
 	 */
109
-	function send_email( $customer_id, $email ) {
109
+	function send_email($customer_id, $email) {
110 110
 
111
-		$verify_key = wp_generate_password( 20, false );
111
+		$verify_key = wp_generate_password(20, false);
112 112
 
113 113
 		// Generate a new verify key
114
-		$this->set_verify_key( $customer_id, $email, $verify_key );
114
+		$this->set_verify_key($customer_id, $email, $verify_key);
115 115
 
116 116
 		// Get the purchase history URL
117
-		$page_id = give_get_option( 'history_page' );
117
+		$page_id = give_get_option('history_page');
118 118
 
119
-		$access_url = add_query_arg( array(
119
+		$access_url = add_query_arg(array(
120 120
 			'give_nl' => $verify_key,
121
-		), get_permalink( $page_id ) );
121
+		), get_permalink($page_id));
122 122
 
123 123
 		//Nice subject and message
124
-		$subject = apply_filters( 'give_email_access_token_subject', sprintf( esc_html__( 'Your Access Link to %s', 'give' ), get_bloginfo( 'name' ) ) );
124
+		$subject = apply_filters('give_email_access_token_subject', sprintf(esc_html__('Your Access Link to %s', 'give'), get_bloginfo('name')));
125 125
 
126
-		$message = esc_html__( 'You or someone in your organization requested an access link be sent to this email address. This is a temporary access link for you to view your donation information. Click on the link below to view:', 'give' ) . "\n\n";
126
+		$message = esc_html__('You or someone in your organization requested an access link be sent to this email address. This is a temporary access link for you to view your donation information. Click on the link below to view:', 'give')."\n\n";
127 127
 
128
-		$message .= '<a href="' . esc_url( $access_url ) . '" target="_blank">' . esc_html__( 'Access My Donation Details', 'give' ) . ' &raquo;</a>';
128
+		$message .= '<a href="'.esc_url($access_url).'" target="_blank">'.esc_html__('Access My Donation Details', 'give').' &raquo;</a>';
129 129
 
130 130
 		$message .= "\n\n";
131 131
 		$message .= "\n\n";
132
-		$message .= esc_html__( 'Sincerely,', 'give' );
133
-		$message .= "\n" . get_bloginfo( 'name' ) . "\n";
132
+		$message .= esc_html__('Sincerely,', 'give');
133
+		$message .= "\n".get_bloginfo('name')."\n";
134 134
 
135
-		$message = apply_filters( 'give_email_access_token_message', $message );
135
+		$message = apply_filters('give_email_access_token_message', $message);
136 136
 
137 137
 
138 138
 		// Send the email
139
-		Give()->emails->__set( 'heading', apply_filters( 'give_email_access_token_heading', esc_html__( 'Your Access Link', 'give' ) ) );
140
-		Give()->emails->send( $email, $subject, $message );
139
+		Give()->emails->__set('heading', apply_filters('give_email_access_token_heading', esc_html__('Your Access Link', 'give')));
140
+		Give()->emails->send($email, $subject, $message);
141 141
 
142 142
 	}
143 143
 
@@ -147,24 +147,24 @@  discard block
 block discarded – undo
147 147
 	 */
148 148
 	function check_for_token() {
149 149
 
150
-		$token = isset( $_GET['give_nl'] ) ? $_GET['give_nl'] : '';
150
+		$token = isset($_GET['give_nl']) ? $_GET['give_nl'] : '';
151 151
 
152 152
 		// Check for cookie
153
-		if ( empty( $token ) ) {
154
-			$token = isset( $_COOKIE['give_nl'] ) ? $_COOKIE['give_nl'] : '';
153
+		if (empty($token)) {
154
+			$token = isset($_COOKIE['give_nl']) ? $_COOKIE['give_nl'] : '';
155 155
 		}
156 156
 
157
-		if ( ! empty( $token ) ) {
158
-			if ( ! $this->is_valid_token( $token ) ) {
159
-				if ( ! $this->is_valid_verify_key( $token ) ) {
157
+		if ( ! empty($token)) {
158
+			if ( ! $this->is_valid_token($token)) {
159
+				if ( ! $this->is_valid_verify_key($token)) {
160 160
 					return;
161 161
 				}
162 162
 			}
163 163
 
164 164
 			$this->token_exists = true;
165 165
 			// Set cookie
166
-			$lifetime = current_time( 'timestamp' ) + Give()->session->set_expiration_time();
167
-			@setcookie( 'give_nl', $token, $lifetime, COOKIEPATH, COOKIE_DOMAIN, false );
166
+			$lifetime = current_time('timestamp') + Give()->session->set_expiration_time();
167
+			@setcookie('give_nl', $token, $lifetime, COOKIEPATH, COOKIE_DOMAIN, false);
168 168
 		}
169 169
 	}
170 170
 
@@ -175,18 +175,18 @@  discard block
 block discarded – undo
175 175
 	 *
176 176
 	 * @return bool
177 177
 	 */
178
-	function is_valid_token( $token ) {
178
+	function is_valid_token($token) {
179 179
 
180 180
 		global $wpdb;
181 181
 
182 182
 		// Make sure token isn't expired
183
-		$expires = date( 'Y-m-d H:i:s', time() - $this->token_expiration );
183
+		$expires = date('Y-m-d H:i:s', time() - $this->token_expiration);
184 184
 
185 185
 		$email = $wpdb->get_var(
186
-			$wpdb->prepare( "SELECT email FROM {$wpdb->prefix}give_customers WHERE token = %s AND verify_throttle >= %s LIMIT 1", $token, $expires )
186
+			$wpdb->prepare("SELECT email FROM {$wpdb->prefix}give_customers WHERE token = %s AND verify_throttle >= %s LIMIT 1", $token, $expires)
187 187
 		);
188 188
 
189
-		if ( ! empty( $email ) ) {
189
+		if ( ! empty($email)) {
190 190
 			$this->token_email = $email;
191 191
 			$this->token       = $token;
192 192
 
@@ -194,8 +194,8 @@  discard block
 block discarded – undo
194 194
 		}
195 195
 
196 196
 		//Set error only if email access form isn't being submitted
197
-		if ( ! isset( $_POST['give_email'] ) && ! isset( $_POST['_wpnonce'] ) ) {
198
-			give_set_error( 'give_email_token_expired', apply_filters( 'give_email_token_expired_message', 'Sorry, your access token has expired. Please request a new one below:', 'give' ) );
197
+		if ( ! isset($_POST['give_email']) && ! isset($_POST['_wpnonce'])) {
198
+			give_set_error('give_email_token_expired', apply_filters('give_email_token_expired_message', 'Sorry, your access token has expired. Please request a new one below:', 'give'));
199 199
 		}
200 200
 
201 201
 
@@ -210,25 +210,25 @@  discard block
 block discarded – undo
210 210
 	 * @param $email
211 211
 	 * @param $verify_key
212 212
 	 */
213
-	function set_verify_key( $customer_id, $email, $verify_key ) {
213
+	function set_verify_key($customer_id, $email, $verify_key) {
214 214
 		global $wpdb;
215 215
 
216
-		$now = date( 'Y-m-d H:i:s' );
216
+		$now = date('Y-m-d H:i:s');
217 217
 
218 218
 		// Insert or update?
219 219
 		$row_id = (int) $wpdb->get_var(
220
-			$wpdb->prepare( "SELECT id FROM {$wpdb->prefix}give_customers WHERE id = %d LIMIT 1", $customer_id )
220
+			$wpdb->prepare("SELECT id FROM {$wpdb->prefix}give_customers WHERE id = %d LIMIT 1", $customer_id)
221 221
 		);
222 222
 
223 223
 		// Update
224
-		if ( ! empty( $row_id ) ) {
224
+		if ( ! empty($row_id)) {
225 225
 			$wpdb->query(
226
-				$wpdb->prepare( "UPDATE {$wpdb->prefix}give_customers SET verify_key = %s, verify_throttle = %s WHERE id = %d LIMIT 1", $verify_key, $now, $row_id )
226
+				$wpdb->prepare("UPDATE {$wpdb->prefix}give_customers SET verify_key = %s, verify_throttle = %s WHERE id = %d LIMIT 1", $verify_key, $now, $row_id)
227 227
 			);
228 228
 		} // Insert
229 229
 		else {
230 230
 			$wpdb->query(
231
-				$wpdb->prepare( "INSERT INTO {$wpdb->prefix}give_customers ( verify_key, verify_throttle) VALUES (%s, %s)", $verify_key, $now )
231
+				$wpdb->prepare("INSERT INTO {$wpdb->prefix}give_customers ( verify_key, verify_throttle) VALUES (%s, %s)", $verify_key, $now)
232 232
 			);
233 233
 		}
234 234
 	}
@@ -240,20 +240,20 @@  discard block
 block discarded – undo
240 240
 	 *
241 241
 	 * @return bool
242 242
 	 */
243
-	function is_valid_verify_key( $token ) {
243
+	function is_valid_verify_key($token) {
244 244
 		global $wpdb;
245 245
 
246 246
 		// See if the verify_key exists
247 247
 		$row = $wpdb->get_row(
248
-			$wpdb->prepare( "SELECT id, email FROM {$wpdb->prefix}give_customers WHERE verify_key = %s LIMIT 1", $token )
248
+			$wpdb->prepare("SELECT id, email FROM {$wpdb->prefix}give_customers WHERE verify_key = %s LIMIT 1", $token)
249 249
 		);
250 250
 
251
-		$now = date( 'Y-m-d H:i:s' );
251
+		$now = date('Y-m-d H:i:s');
252 252
 
253 253
 		// Set token
254
-		if ( ! empty( $row ) ) {
254
+		if ( ! empty($row)) {
255 255
 			$wpdb->query(
256
-				$wpdb->prepare( "UPDATE {$wpdb->prefix}give_customers SET verify_key = '', token = %s, verify_throttle = %s WHERE id = %d LIMIT 1", $token, $now, $row->id )
256
+				$wpdb->prepare("UPDATE {$wpdb->prefix}give_customers SET verify_key = '', token = %s, verify_throttle = %s WHERE id = %d LIMIT 1", $token, $now, $row->id)
257 257
 			);
258 258
 
259 259
 			$this->token_email = $row->email;
@@ -272,7 +272,7 @@  discard block
 block discarded – undo
272 272
 	 *
273 273
 	 * @return mixed
274 274
 	 */
275
-	function users_purchases_args( $args ) {
275
+	function users_purchases_args($args) {
276 276
 		$args['user'] = $this->token_email;
277 277
 
278 278
 		return $args;
@@ -289,11 +289,11 @@  discard block
 block discarded – undo
289 289
 		global $wpdb;
290 290
 
291 291
 		//Create columns in customers table
292
-		$query = $wpdb->query( "ALTER TABLE {$wpdb->prefix}give_customers ADD `token` VARCHAR(255) CHARACTER SET utf8 NOT NULL, ADD `verify_key` VARCHAR(255) CHARACTER SET utf8 NOT NULL AFTER `token`, ADD `verify_throttle` DATETIME NOT NULL AFTER `verify_key`" );
292
+		$query = $wpdb->query("ALTER TABLE {$wpdb->prefix}give_customers ADD `token` VARCHAR(255) CHARACTER SET utf8 NOT NULL, ADD `verify_key` VARCHAR(255) CHARACTER SET utf8 NOT NULL AFTER `token`, ADD `verify_throttle` DATETIME NOT NULL AFTER `verify_key`");
293 293
 
294 294
 		//Columns added properly
295
-		if ( $query ) {
296
-			give_update_option( 'email_access_installed', 1 );
295
+		if ($query) {
296
+			give_update_option('email_access_installed', 1);
297 297
 		}
298 298
 
299 299
 	}
Please login to merge, or discard this patch.
includes/emails/functions.php 1 patch
Spacing   +95 added lines, -95 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
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
 
@@ -26,39 +26,39 @@  discard block
 block discarded – undo
26 26
  *
27 27
  * @return void
28 28
  */
29
-function give_email_donation_receipt( $payment_id, $admin_notice = true ) {
29
+function give_email_donation_receipt($payment_id, $admin_notice = true) {
30 30
 
31
-	$payment_data = give_get_payment_meta( $payment_id );
31
+	$payment_data = give_get_payment_meta($payment_id);
32 32
 
33
-	$from_name = give_get_option( 'from_name', wp_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES ) );
34
-	$from_name = apply_filters( 'give_purchase_from_name', $from_name, $payment_id, $payment_data );
33
+	$from_name = give_get_option('from_name', wp_specialchars_decode(get_bloginfo('name'), ENT_QUOTES));
34
+	$from_name = apply_filters('give_purchase_from_name', $from_name, $payment_id, $payment_data);
35 35
 
36
-	$from_email = give_get_option( 'from_email', get_bloginfo( 'admin_email' ) );
37
-	$from_email = apply_filters( 'give_purchase_from_address', $from_email, $payment_id, $payment_data );
36
+	$from_email = give_get_option('from_email', get_bloginfo('admin_email'));
37
+	$from_email = apply_filters('give_purchase_from_address', $from_email, $payment_id, $payment_data);
38 38
 
39
-	$to_email = give_get_payment_user_email( $payment_id );
39
+	$to_email = give_get_payment_user_email($payment_id);
40 40
 
41
-	$subject = give_get_option( 'donation_subject', esc_html__( 'Donation Receipt', 'give' ) );
42
-	$subject = apply_filters( 'give_donation_subject', wp_strip_all_tags( $subject ), $payment_id );
43
-	$subject = give_do_email_tags( $subject, $payment_id );
41
+	$subject = give_get_option('donation_subject', esc_html__('Donation Receipt', 'give'));
42
+	$subject = apply_filters('give_donation_subject', wp_strip_all_tags($subject), $payment_id);
43
+	$subject = give_do_email_tags($subject, $payment_id);
44 44
 
45
-	$attachments = apply_filters( 'give_receipt_attachments', array(), $payment_id, $payment_data );
46
-	$message     = give_do_email_tags( give_get_email_body_content( $payment_id, $payment_data ), $payment_id );
45
+	$attachments = apply_filters('give_receipt_attachments', array(), $payment_id, $payment_data);
46
+	$message     = give_do_email_tags(give_get_email_body_content($payment_id, $payment_data), $payment_id);
47 47
 
48 48
 	$emails = Give()->emails;
49 49
 
50
-	$emails->__set( 'from_name', $from_name );
51
-	$emails->__set( 'from_email', $from_email );
52
-	$emails->__set( 'heading', esc_html__( 'Donation Receipt', 'give' ) );
50
+	$emails->__set('from_name', $from_name);
51
+	$emails->__set('from_email', $from_email);
52
+	$emails->__set('heading', esc_html__('Donation Receipt', 'give'));
53 53
 
54 54
 
55
-	$headers = apply_filters( 'give_receipt_headers', $emails->get_headers(), $payment_id, $payment_data );
56
-	$emails->__set( 'headers', $headers );
55
+	$headers = apply_filters('give_receipt_headers', $emails->get_headers(), $payment_id, $payment_data);
56
+	$emails->__set('headers', $headers);
57 57
 
58
-	$emails->send( $to_email, $subject, $message, $attachments );
58
+	$emails->send($to_email, $subject, $message, $attachments);
59 59
 
60
-	if ( $admin_notice && ! give_admin_notices_disabled( $payment_id ) ) {
61
-		do_action( 'give_admin_sale_notice', $payment_id, $payment_data );
60
+	if ($admin_notice && ! give_admin_notices_disabled($payment_id)) {
61
+		do_action('give_admin_sale_notice', $payment_id, $payment_data);
62 62
 	}
63 63
 }
64 64
 
@@ -71,29 +71,29 @@  discard block
 block discarded – undo
71 71
  */
72 72
 function give_email_test_donation_receipt() {
73 73
 
74
-	$from_name = give_get_option( 'from_name', wp_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES ) );
75
-	$from_name = apply_filters( 'give_purchase_from_name', $from_name, 0, array() );
74
+	$from_name = give_get_option('from_name', wp_specialchars_decode(get_bloginfo('name'), ENT_QUOTES));
75
+	$from_name = apply_filters('give_purchase_from_name', $from_name, 0, array());
76 76
 
77
-	$from_email = give_get_option( 'from_email', get_bloginfo( 'admin_email' ) );
78
-	$from_email = apply_filters( 'give_purchase_from_address', $from_email, 0, array() );
77
+	$from_email = give_get_option('from_email', get_bloginfo('admin_email'));
78
+	$from_email = apply_filters('give_purchase_from_address', $from_email, 0, array());
79 79
 
80
-	$subject = give_get_option( 'donation_subject', esc_html__( 'Donation Receipt', 'give' ) );
81
-	$subject = apply_filters( 'give_donation_subject', wp_strip_all_tags( $subject ), 0 );
82
-	$subject = give_do_email_tags( $subject, 0 );
80
+	$subject = give_get_option('donation_subject', esc_html__('Donation Receipt', 'give'));
81
+	$subject = apply_filters('give_donation_subject', wp_strip_all_tags($subject), 0);
82
+	$subject = give_do_email_tags($subject, 0);
83 83
 
84
-	$attachments = apply_filters( 'give_receipt_attachments', array(), 0, array() );
84
+	$attachments = apply_filters('give_receipt_attachments', array(), 0, array());
85 85
 
86
-	$message = give_email_preview_template_tags( give_get_email_body_content( 0, array() ) );
86
+	$message = give_email_preview_template_tags(give_get_email_body_content(0, array()));
87 87
 
88 88
 	$emails = Give()->emails;
89
-	$emails->__set( 'from_name', $from_name );
90
-	$emails->__set( 'from_email', $from_email );
91
-	$emails->__set( 'heading', esc_html__( 'Donation Receipt', 'give' ) );
89
+	$emails->__set('from_name', $from_name);
90
+	$emails->__set('from_email', $from_email);
91
+	$emails->__set('heading', esc_html__('Donation Receipt', 'give'));
92 92
 
93
-	$headers = apply_filters( 'give_receipt_headers', $emails->get_headers(), 0, array() );
94
-	$emails->__set( 'headers', $headers );
93
+	$headers = apply_filters('give_receipt_headers', $emails->get_headers(), 0, array());
94
+	$emails->__set('headers', $headers);
95 95
 
96
-	$emails->send( give_get_admin_notice_emails(), $subject, $message, $attachments );
96
+	$emails->send(give_get_admin_notice_emails(), $subject, $message, $attachments);
97 97
 
98 98
 }
99 99
 
@@ -107,50 +107,50 @@  discard block
 block discarded – undo
107 107
  *
108 108
  * @return void
109 109
  */
110
-function give_admin_email_notice( $payment_id = 0, $payment_data = array() ) {
110
+function give_admin_email_notice($payment_id = 0, $payment_data = array()) {
111 111
 
112
-	$payment_id = absint( $payment_id );
112
+	$payment_id = absint($payment_id);
113 113
 
114
-	if ( empty( $payment_id ) ) {
114
+	if (empty($payment_id)) {
115 115
 		return;
116 116
 	}
117 117
 
118
-	if ( ! give_get_payment_by( 'id', $payment_id ) ) {
118
+	if ( ! give_get_payment_by('id', $payment_id)) {
119 119
 		return;
120 120
 	}
121 121
 
122
-	$from_name = give_get_option( 'from_name', wp_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES ) );
123
-	$from_name = apply_filters( 'give_purchase_from_name', $from_name, $payment_id, $payment_data );
122
+	$from_name = give_get_option('from_name', wp_specialchars_decode(get_bloginfo('name'), ENT_QUOTES));
123
+	$from_name = apply_filters('give_purchase_from_name', $from_name, $payment_id, $payment_data);
124 124
 
125
-	$from_email = give_get_option( 'from_email', get_bloginfo( 'admin_email' ) );
126
-	$from_email = apply_filters( 'give_purchase_from_address', $from_email, $payment_id, $payment_data );
125
+	$from_email = give_get_option('from_email', get_bloginfo('admin_email'));
126
+	$from_email = apply_filters('give_purchase_from_address', $from_email, $payment_id, $payment_data);
127 127
 
128 128
 	/* translators: %s: payment id */
129
-	$subject = give_get_option( 'donation_notification_subject', sprintf( esc_html__( 'New Donation - Payment #%s', 'give' ), $payment_id ) );
130
-	$subject = apply_filters( 'give_admin_donation_notification_subject', wp_strip_all_tags( $subject ), $payment_id );
131
-	$subject = give_do_email_tags( $subject, $payment_id );
129
+	$subject = give_get_option('donation_notification_subject', sprintf(esc_html__('New Donation - Payment #%s', 'give'), $payment_id));
130
+	$subject = apply_filters('give_admin_donation_notification_subject', wp_strip_all_tags($subject), $payment_id);
131
+	$subject = give_do_email_tags($subject, $payment_id);
132 132
 
133
-	$headers = "From: " . stripslashes_deep( html_entity_decode( $from_name, ENT_COMPAT, 'UTF-8' ) ) . " <$from_email>\r\n";
134
-	$headers .= "Reply-To: " . $from_email . "\r\n";
133
+	$headers = "From: ".stripslashes_deep(html_entity_decode($from_name, ENT_COMPAT, 'UTF-8'))." <$from_email>\r\n";
134
+	$headers .= "Reply-To: ".$from_email."\r\n";
135 135
 	//$headers  .= "MIME-Version: 1.0\r\n";
136 136
 	$headers .= "Content-Type: text/html; charset=utf-8\r\n";
137
-	$headers = apply_filters( 'give_admin_donation_notification_headers', $headers, $payment_id, $payment_data );
137
+	$headers = apply_filters('give_admin_donation_notification_headers', $headers, $payment_id, $payment_data);
138 138
 
139
-	$attachments = apply_filters( 'give_admin_donation_notification_attachments', array(), $payment_id, $payment_data );
139
+	$attachments = apply_filters('give_admin_donation_notification_attachments', array(), $payment_id, $payment_data);
140 140
 
141
-	$message = give_get_donation_notification_body_content( $payment_id, $payment_data );
141
+	$message = give_get_donation_notification_body_content($payment_id, $payment_data);
142 142
 
143 143
 	$emails = Give()->emails;
144
-	$emails->__set( 'from_name', $from_name );
145
-	$emails->__set( 'from_email', $from_email );
146
-	$emails->__set( 'headers', $headers );
147
-	$emails->__set( 'heading', esc_html__( 'New Donation!', 'give' ) );
144
+	$emails->__set('from_name', $from_name);
145
+	$emails->__set('from_email', $from_email);
146
+	$emails->__set('headers', $headers);
147
+	$emails->__set('heading', esc_html__('New Donation!', 'give'));
148 148
 
149
-	$emails->send( give_get_admin_notice_emails(), $subject, $message, $attachments );
149
+	$emails->send(give_get_admin_notice_emails(), $subject, $message, $attachments);
150 150
 
151 151
 }
152 152
 
153
-add_action( 'give_admin_sale_notice', 'give_admin_email_notice', 10, 2 );
153
+add_action('give_admin_sale_notice', 'give_admin_email_notice', 10, 2);
154 154
 
155 155
 /**
156 156
  * Retrieves the emails for which admin notifications are sent to (these can be
@@ -163,10 +163,10 @@  discard block
 block discarded – undo
163 163
 function give_get_admin_notice_emails() {
164 164
 	global $give_options;
165 165
 
166
-	$emails = isset( $give_options['admin_notice_emails'] ) && strlen( trim( $give_options['admin_notice_emails'] ) ) > 0 ? $give_options['admin_notice_emails'] : get_bloginfo( 'admin_email' );
167
-	$emails = array_map( 'trim', explode( "\n", $emails ) );
166
+	$emails = isset($give_options['admin_notice_emails']) && strlen(trim($give_options['admin_notice_emails'])) > 0 ? $give_options['admin_notice_emails'] : get_bloginfo('admin_email');
167
+	$emails = array_map('trim', explode("\n", $emails));
168 168
 
169
-	return apply_filters( 'give_admin_notice_emails', $emails );
169
+	return apply_filters('give_admin_notice_emails', $emails);
170 170
 }
171 171
 
172 172
 /**
@@ -178,11 +178,11 @@  discard block
 block discarded – undo
178 178
  *
179 179
  * @return mixed
180 180
  */
181
-function give_admin_notices_disabled( $payment_id = 0 ) {
181
+function give_admin_notices_disabled($payment_id = 0) {
182 182
 
183
-	$retval = give_get_option( 'disable_admin_notices' );
183
+	$retval = give_get_option('disable_admin_notices');
184 184
 
185
-	return apply_filters( 'give_admin_notices_disabled', $retval, $payment_id );
185
+	return apply_filters('give_admin_notices_disabled', $retval, $payment_id);
186 186
 }
187 187
 
188 188
 /**
@@ -195,17 +195,17 @@  discard block
 block discarded – undo
195 195
  */
196 196
 function give_get_default_donation_notification_email() {
197 197
 
198
-	$default_email_body = esc_html__( 'Hi there,', 'give' ) . "\n\n" . esc_html__( 'This email is to inform you that a new donation has been made on your website: ', 'give' ) . '<a href="' . get_bloginfo( 'url' ) . '" target="_blank">' . get_bloginfo( 'url' ) . '</a>' . ".\n\n";
199
-	$default_email_body .= '<strong>' . esc_html__( 'Donor: ', 'give' ) . '</strong> ' . ' {name}' . "\n";
200
-	$default_email_body .= '<strong>' . esc_html__( 'Donation: ', 'give' ) . '</strong> ' . ' {donation}' . "\n";
201
-	$default_email_body .= '<strong>' . esc_html__( 'Amount: ', 'give' ) . '</strong> ' . ' {price}' . "\n";
202
-	$default_email_body .= '<strong>' . esc_html__( 'Payment Method: ', 'give' ) . '</strong> ' . ' {payment_method}' . "\n\n";
203
-	$default_email_body .= esc_html__( 'Thank you,', 'give' ) . "\n\n" . '{sitename}';
198
+	$default_email_body = esc_html__('Hi there,', 'give')."\n\n".esc_html__('This email is to inform you that a new donation has been made on your website: ', 'give').'<a href="'.get_bloginfo('url').'" target="_blank">'.get_bloginfo('url').'</a>'.".\n\n";
199
+	$default_email_body .= '<strong>'.esc_html__('Donor: ', 'give').'</strong> '.' {name}'."\n";
200
+	$default_email_body .= '<strong>'.esc_html__('Donation: ', 'give').'</strong> '.' {donation}'."\n";
201
+	$default_email_body .= '<strong>'.esc_html__('Amount: ', 'give').'</strong> '.' {price}'."\n";
202
+	$default_email_body .= '<strong>'.esc_html__('Payment Method: ', 'give').'</strong> '.' {payment_method}'."\n\n";
203
+	$default_email_body .= esc_html__('Thank you,', 'give')."\n\n".'{sitename}';
204 204
 
205
-	$custom_message = give_get_option( 'donation_notification' );
206
-	$message        = ! empty( $custom_message ) ? $custom_message : $default_email_body;
205
+	$custom_message = give_get_option('donation_notification');
206
+	$message        = ! empty($custom_message) ? $custom_message : $default_email_body;
207 207
 
208
-	return apply_filters( 'give_default_donation_notification_email', $message );
208
+	return apply_filters('give_default_donation_notification_email', $message);
209 209
 }
210 210
 
211 211
 
@@ -219,26 +219,26 @@  discard block
 block discarded – undo
219 219
  */
220 220
 function give_get_default_donation_receipt_email() {
221 221
 
222
-	$default_email_body = esc_html__( 'Dear', 'give' ) . " {name},\n\n";
223
-	$default_email_body .= esc_html__( 'Thank you for your donation. Your generosity is appreciated! Here are the details of your donation:', 'give' ) . "\n\n";
224
-	$default_email_body .= '<strong>' . esc_html__( 'Donor', 'give' ) . ':</strong> ' . '{fullname}' . "\n";
225
-	$default_email_body .= '<strong>' . esc_html__( 'Donation', 'give' ) . ':</strong> ' . '{donation}' . "\n";
226
-	$default_email_body .= '<strong>' . esc_html__( 'Donation Date', 'give' ) . ':</strong> ' . '{date}' . "\n";
227
-	$default_email_body .= '<strong>' . esc_html__( 'Amount', 'give' ) . ':</strong> ' . '{price}' . "\n";
228
-	$default_email_body .= '<strong>' . esc_html__( 'Payment Method', 'give' ) . ':</strong> ' . '{payment_method}' . "\n";
229
-	$default_email_body .= '<strong>' . esc_html__( 'Payment ID', 'give' ) . ':</strong> ' . '{payment_id}' . "\n";
230
-	$default_email_body .= '<strong>' . esc_html__( 'Receipt ID', 'give' ) . ':</strong> ' . '{receipt_id}' . "\n\n";
231
-	$default_email_body .= '{receipt_link}' . "\n\n";
222
+	$default_email_body = esc_html__('Dear', 'give')." {name},\n\n";
223
+	$default_email_body .= esc_html__('Thank you for your donation. Your generosity is appreciated! Here are the details of your donation:', 'give')."\n\n";
224
+	$default_email_body .= '<strong>'.esc_html__('Donor', 'give').':</strong> '.'{fullname}'."\n";
225
+	$default_email_body .= '<strong>'.esc_html__('Donation', 'give').':</strong> '.'{donation}'."\n";
226
+	$default_email_body .= '<strong>'.esc_html__('Donation Date', 'give').':</strong> '.'{date}'."\n";
227
+	$default_email_body .= '<strong>'.esc_html__('Amount', 'give').':</strong> '.'{price}'."\n";
228
+	$default_email_body .= '<strong>'.esc_html__('Payment Method', 'give').':</strong> '.'{payment_method}'."\n";
229
+	$default_email_body .= '<strong>'.esc_html__('Payment ID', 'give').':</strong> '.'{payment_id}'."\n";
230
+	$default_email_body .= '<strong>'.esc_html__('Receipt ID', 'give').':</strong> '.'{receipt_id}'."\n\n";
231
+	$default_email_body .= '{receipt_link}'."\n\n";
232 232
 
233 233
 	$default_email_body .= "\n\n";
234
-	$default_email_body .= esc_html__( 'Sincerely,', 'give' );
235
-	$default_email_body .= "\n" . '{sitename}' . "\n";
234
+	$default_email_body .= esc_html__('Sincerely,', 'give');
235
+	$default_email_body .= "\n".'{sitename}'."\n";
236 236
 
237
-	$custom_message = give_get_option( 'donation_receipt' );
237
+	$custom_message = give_get_option('donation_receipt');
238 238
 
239
-	$message = ! empty( $custom_message ) ? $custom_message : $default_email_body;
239
+	$message = ! empty($custom_message) ? $custom_message : $default_email_body;
240 240
 
241
-	return apply_filters( 'give_default_donation_receipt_email', $message );
241
+	return apply_filters('give_default_donation_receipt_email', $message);
242 242
 }
243 243
 
244 244
 /**
@@ -250,19 +250,19 @@  discard block
 block discarded – undo
250 250
  *
251 251
  * @return array $email_names
252 252
  */
253
-function give_get_email_names( $user_info ) {
253
+function give_get_email_names($user_info) {
254 254
 	$email_names = array();
255
-	$user_info   = maybe_unserialize( $user_info );
255
+	$user_info   = maybe_unserialize($user_info);
256 256
 
257 257
 	$email_names['fullname'] = '';
258
-	if ( isset( $user_info['id'] ) && $user_info['id'] > 0 && isset( $user_info['first_name'] ) ) {
259
-		$user_data               = get_userdata( $user_info['id'] );
258
+	if (isset($user_info['id']) && $user_info['id'] > 0 && isset($user_info['first_name'])) {
259
+		$user_data               = get_userdata($user_info['id']);
260 260
 		$email_names['name']     = $user_info['first_name'];
261
-		$email_names['fullname'] = $user_info['first_name'] . ' ' . $user_info['last_name'];
261
+		$email_names['fullname'] = $user_info['first_name'].' '.$user_info['last_name'];
262 262
 		$email_names['username'] = $user_data->user_login;
263
-	} elseif ( isset( $user_info['first_name'] ) ) {
263
+	} elseif (isset($user_info['first_name'])) {
264 264
 		$email_names['name']     = $user_info['first_name'];
265
-		$email_names['fullname'] = $user_info['first_name'] . ' ' . $user_info['last_name'];
265
+		$email_names['fullname'] = $user_info['first_name'].' '.$user_info['last_name'];
266 266
 		$email_names['username'] = $user_info['first_name'];
267 267
 	} else {
268 268
 		$email_names['name']     = $user_info['email'];
Please login to merge, or discard this patch.
includes/emails/class-give-emails.php 1 patch
Spacing   +58 added lines, -58 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
  */
13 13
 
14 14
 // Exit if accessed directly
15
-if ( ! defined( 'ABSPATH' ) ) {
15
+if ( ! defined('ABSPATH')) {
16 16
 	exit;
17 17
 }
18 18
 
@@ -79,12 +79,12 @@  discard block
 block discarded – undo
79 79
 	 */
80 80
 	public function __construct() {
81 81
 
82
-		if ( 'none' === $this->get_template() ) {
82
+		if ('none' === $this->get_template()) {
83 83
 			$this->html = false;
84 84
 		}
85 85
 
86
-		add_action( 'give_email_send_before', array( $this, 'send_before' ) );
87
-		add_action( 'give_email_send_after', array( $this, 'send_after' ) );
86
+		add_action('give_email_send_before', array($this, 'send_before'));
87
+		add_action('give_email_send_after', array($this, 'send_after'));
88 88
 
89 89
 	}
90 90
 
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 	 *
94 94
 	 * @since 1.0
95 95
 	 */
96
-	public function __set( $key, $value ) {
96
+	public function __set($key, $value) {
97 97
 		$this->$key = $value;
98 98
 	}
99 99
 
@@ -103,11 +103,11 @@  discard block
 block discarded – undo
103 103
 	 * @since 1.0
104 104
 	 */
105 105
 	public function get_from_name() {
106
-		if ( ! $this->from_name ) {
107
-			$this->from_name = give_get_option( 'from_name', get_bloginfo( 'name' ) );
106
+		if ( ! $this->from_name) {
107
+			$this->from_name = give_get_option('from_name', get_bloginfo('name'));
108 108
 		}
109 109
 
110
-		return apply_filters( 'give_email_from_name', wp_specialchars_decode( $this->from_name ), $this );
110
+		return apply_filters('give_email_from_name', wp_specialchars_decode($this->from_name), $this);
111 111
 	}
112 112
 
113 113
 	/**
@@ -116,11 +116,11 @@  discard block
 block discarded – undo
116 116
 	 * @since 1.0
117 117
 	 */
118 118
 	public function get_from_address() {
119
-		if ( ! $this->from_address ) {
120
-			$this->from_address = give_get_option( 'from_email', get_option( 'admin_email' ) );
119
+		if ( ! $this->from_address) {
120
+			$this->from_address = give_get_option('from_email', get_option('admin_email'));
121 121
 		}
122 122
 
123
-		return apply_filters( 'give_email_from_address', $this->from_address, $this );
123
+		return apply_filters('give_email_from_address', $this->from_address, $this);
124 124
 	}
125 125
 
126 126
 	/**
@@ -129,13 +129,13 @@  discard block
 block discarded – undo
129 129
 	 * @since 1.0
130 130
 	 */
131 131
 	public function get_content_type() {
132
-		if ( ! $this->content_type && $this->html ) {
133
-			$this->content_type = apply_filters( 'give_email_default_content_type', 'text/html', $this );
134
-		} else if ( ! $this->html ) {
132
+		if ( ! $this->content_type && $this->html) {
133
+			$this->content_type = apply_filters('give_email_default_content_type', 'text/html', $this);
134
+		} else if ( ! $this->html) {
135 135
 			$this->content_type = 'text/plain';
136 136
 		}
137 137
 
138
-		return apply_filters( 'give_email_content_type', $this->content_type, $this );
138
+		return apply_filters('give_email_content_type', $this->content_type, $this);
139 139
 	}
140 140
 
141 141
 	/**
@@ -144,13 +144,13 @@  discard block
 block discarded – undo
144 144
 	 * @since 1.0
145 145
 	 */
146 146
 	public function get_headers() {
147
-		if ( ! $this->headers ) {
147
+		if ( ! $this->headers) {
148 148
 			$this->headers = "From: {$this->get_from_name()} <{$this->get_from_address()}>\r\n";
149 149
 			$this->headers .= "Reply-To: {$this->get_from_address()}\r\n";
150 150
 			$this->headers .= "Content-Type: {$this->get_content_type()}; charset=utf-8\r\n";
151 151
 		}
152 152
 
153
-		return apply_filters( 'give_email_headers', $this->headers, $this );
153
+		return apply_filters('give_email_headers', $this->headers, $this);
154 154
 	}
155 155
 
156 156
 	/**
@@ -160,11 +160,11 @@  discard block
 block discarded – undo
160 160
 	 */
161 161
 	public function get_templates() {
162 162
 		$templates = array(
163
-			'default' => esc_html__( 'Default Template', 'give' ),
164
-			'none'    => esc_html__( 'No template, plain text only', 'give' )
163
+			'default' => esc_html__('Default Template', 'give'),
164
+			'none'    => esc_html__('No template, plain text only', 'give')
165 165
 		);
166 166
 
167
-		return apply_filters( 'give_email_templates', $templates );
167
+		return apply_filters('give_email_templates', $templates);
168 168
 	}
169 169
 
170 170
 	/**
@@ -173,11 +173,11 @@  discard block
 block discarded – undo
173 173
 	 * @since 1.0
174 174
 	 */
175 175
 	public function get_template() {
176
-		if ( ! $this->template ) {
177
-			$this->template = give_get_option( 'email_template', 'default' );
176
+		if ( ! $this->template) {
177
+			$this->template = give_get_option('email_template', 'default');
178 178
 		}
179 179
 
180
-		return apply_filters( 'give_email_template', $this->template );
180
+		return apply_filters('give_email_template', $this->template);
181 181
 	}
182 182
 
183 183
 	/**
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
 	 * @since 1.0
187 187
 	 */
188 188
 	public function get_heading() {
189
-		return apply_filters( 'give_email_heading', $this->heading );
189
+		return apply_filters('give_email_heading', $this->heading);
190 190
 	}
191 191
 
192 192
 	/**
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
 	 *
197 197
 	 * @return mixed
198 198
 	 */
199
-	public function parse_tags( $content ) {
199
+	public function parse_tags($content) {
200 200
 		return $content;
201 201
 	}
202 202
 
@@ -205,36 +205,36 @@  discard block
 block discarded – undo
205 205
 	 *
206 206
 	 * @since 1.0
207 207
 	 */
208
-	public function build_email( $message ) {
208
+	public function build_email($message) {
209 209
 
210
-		if ( false === $this->html ) {
211
-			return apply_filters( 'give_email_message', wp_strip_all_tags( $message ), $this );
210
+		if (false === $this->html) {
211
+			return apply_filters('give_email_message', wp_strip_all_tags($message), $this);
212 212
 		}
213 213
 
214
-		$message = $this->text_to_html( $message );
214
+		$message = $this->text_to_html($message);
215 215
 
216 216
 		ob_start();
217 217
 
218
-		give_get_template_part( 'emails/header', $this->get_template(), true );
218
+		give_get_template_part('emails/header', $this->get_template(), true);
219 219
 
220
-		do_action( 'give_email_header', $this );
220
+		do_action('give_email_header', $this);
221 221
 
222
-		if ( has_action( 'give_email_template_' . $this->get_template() ) ) {
223
-			do_action( 'give_email_template_' . $this->get_template() );
222
+		if (has_action('give_email_template_'.$this->get_template())) {
223
+			do_action('give_email_template_'.$this->get_template());
224 224
 		} else {
225
-			give_get_template_part( 'emails/body', $this->get_template(), true );
225
+			give_get_template_part('emails/body', $this->get_template(), true);
226 226
 		}
227 227
 
228
-		do_action( 'give_email_body', $this );
228
+		do_action('give_email_body', $this);
229 229
 
230
-		give_get_template_part( 'emails/footer', $this->get_template(), true );
230
+		give_get_template_part('emails/footer', $this->get_template(), true);
231 231
 
232
-		do_action( 'give_email_footer', $this );
232
+		do_action('give_email_footer', $this);
233 233
 
234 234
 		$body    = ob_get_clean();
235
-		$message = str_replace( '{email}', $message, $body );
235
+		$message = str_replace('{email}', $message, $body);
236 236
 
237
-		return apply_filters( 'give_email_message', $message, $this );
237
+		return apply_filters('give_email_message', $message, $this);
238 238
 	}
239 239
 
240 240
 	/**
@@ -247,26 +247,26 @@  discard block
 block discarded – undo
247 247
 	 *
248 248
 	 * @return bool
249 249
 	 */
250
-	public function send( $to, $subject, $message, $attachments = '' ) {
250
+	public function send($to, $subject, $message, $attachments = '') {
251 251
 
252
-		if ( ! did_action( 'init' ) && ! did_action( 'admin_init' ) ) {
253
-			_doing_it_wrong( __FUNCTION__, esc_html__( 'You cannot send email with Give_Emails until init/admin_init has been reached.', 'give' ), null );
252
+		if ( ! did_action('init') && ! did_action('admin_init')) {
253
+			_doing_it_wrong(__FUNCTION__, esc_html__('You cannot send email with Give_Emails until init/admin_init has been reached.', 'give'), null);
254 254
 
255 255
 			return false;
256 256
 		}
257 257
 
258
-		do_action( 'give_email_send_before', $this );
258
+		do_action('give_email_send_before', $this);
259 259
 
260
-		$subject = $this->parse_tags( $subject );
261
-		$message = $this->parse_tags( $message );
260
+		$subject = $this->parse_tags($subject);
261
+		$message = $this->parse_tags($message);
262 262
 
263
-		$message = $this->build_email( $message );
263
+		$message = $this->build_email($message);
264 264
 
265
-		$attachments = apply_filters( 'give_email_attachments', $attachments, $this );
265
+		$attachments = apply_filters('give_email_attachments', $attachments, $this);
266 266
 
267
-		$sent = wp_mail( $to, $subject, $message, $this->get_headers(), $attachments );
267
+		$sent = wp_mail($to, $subject, $message, $this->get_headers(), $attachments);
268 268
 
269
-		do_action( 'give_email_send_after', $this );
269
+		do_action('give_email_send_after', $this);
270 270
 
271 271
 		return $sent;
272 272
 
@@ -278,9 +278,9 @@  discard block
 block discarded – undo
278 278
 	 * @since 1.0
279 279
 	 */
280 280
 	public function send_before() {
281
-		add_filter( 'wp_mail_from', array( $this, 'get_from_address' ) );
282
-		add_filter( 'wp_mail_from_name', array( $this, 'get_from_name' ) );
283
-		add_filter( 'wp_mail_content_type', array( $this, 'get_content_type' ) );
281
+		add_filter('wp_mail_from', array($this, 'get_from_address'));
282
+		add_filter('wp_mail_from_name', array($this, 'get_from_name'));
283
+		add_filter('wp_mail_content_type', array($this, 'get_content_type'));
284 284
 	}
285 285
 
286 286
 	/**
@@ -289,9 +289,9 @@  discard block
 block discarded – undo
289 289
 	 * @since 1.0
290 290
 	 */
291 291
 	public function send_after() {
292
-		remove_filter( 'wp_mail_from', array( $this, 'get_from_address' ) );
293
-		remove_filter( 'wp_mail_from_name', array( $this, 'get_from_name' ) );
294
-		remove_filter( 'wp_mail_content_type', array( $this, 'get_content_type' ) );
292
+		remove_filter('wp_mail_from', array($this, 'get_from_address'));
293
+		remove_filter('wp_mail_from_name', array($this, 'get_from_name'));
294
+		remove_filter('wp_mail_content_type', array($this, 'get_content_type'));
295 295
 
296 296
 		// Reset heading to an empty string
297 297
 		$this->heading = '';
@@ -302,10 +302,10 @@  discard block
 block discarded – undo
302 302
 	 *
303 303
 	 * @since 1.0
304 304
 	 */
305
-	public function text_to_html( $message ) {
305
+	public function text_to_html($message) {
306 306
 
307
-		if ( 'text/html' == $this->content_type || true === $this->html ) {
308
-			$message = wpautop( $message );
307
+		if ('text/html' == $this->content_type || true === $this->html) {
308
+			$message = wpautop($message);
309 309
 		}
310 310
 
311 311
 		return $message;
Please login to merge, or discard this patch.
includes/emails/actions.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
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,17 +23,17 @@  discard block
 block discarded – undo
23 23
  *
24 24
  * @return void
25 25
  */
26
-function give_trigger_donation_receipt( $payment_id ) {
26
+function give_trigger_donation_receipt($payment_id) {
27 27
 	// Make sure we don't send a purchase receipt while editing a payment
28
-	if ( isset( $_POST['give-action'] ) && 'edit_payment' == $_POST['give-action'] ) {
28
+	if (isset($_POST['give-action']) && 'edit_payment' == $_POST['give-action']) {
29 29
 		return;
30 30
 	}
31 31
 
32 32
 	// Send email
33
-	give_email_donation_receipt( $payment_id );
33
+	give_email_donation_receipt($payment_id);
34 34
 }
35 35
 
36
-add_action( 'give_complete_purchase', 'give_trigger_donation_receipt', 999, 1 );
36
+add_action('give_complete_purchase', 'give_trigger_donation_receipt', 999, 1);
37 37
 
38 38
 /**
39 39
  * Resend the Email Purchase Receipt. (This can be done from the Payment History page)
@@ -44,29 +44,29 @@  discard block
 block discarded – undo
44 44
  *
45 45
  * @return void
46 46
  */
47
-function give_resend_donation_receipt( $data ) {
47
+function give_resend_donation_receipt($data) {
48 48
 
49
-	$purchase_id = absint( $data['purchase_id'] );
49
+	$purchase_id = absint($data['purchase_id']);
50 50
 
51
-	if ( empty( $purchase_id ) ) {
51
+	if (empty($purchase_id)) {
52 52
 		return;
53 53
 	}
54 54
 
55
-	if ( ! current_user_can( 'edit_give_payments', $purchase_id ) ) {
56
-		wp_die( esc_html__( 'You do not have permission to edit payment records.', 'give' ), esc_html__( 'Error', 'give' ), array( 'response' => 403 ) );
55
+	if ( ! current_user_can('edit_give_payments', $purchase_id)) {
56
+		wp_die(esc_html__('You do not have permission to edit payment records.', 'give'), esc_html__('Error', 'give'), array('response' => 403));
57 57
 	}
58 58
 
59
-	give_email_donation_receipt( $purchase_id, false );
59
+	give_email_donation_receipt($purchase_id, false);
60 60
 
61
-	wp_redirect( add_query_arg( array(
61
+	wp_redirect(add_query_arg(array(
62 62
 		'give-message' => 'email_sent',
63 63
 		'give-action'  => false,
64 64
 		'purchase_id'  => false
65
-	) ) );
65
+	)));
66 66
 	exit;
67 67
 }
68 68
 
69
-add_action( 'give_email_links', 'give_resend_donation_receipt' );
69
+add_action('give_email_links', 'give_resend_donation_receipt');
70 70
 
71 71
 /**
72 72
  * Trigger the sending of a Test Email
@@ -77,8 +77,8 @@  discard block
 block discarded – undo
77 77
  *
78 78
  * @return void
79 79
  */
80
-function give_send_test_email( $data ) {
81
-	if ( ! wp_verify_nonce( $data['_wpnonce'], 'give-test-email' ) ) {
80
+function give_send_test_email($data) {
81
+	if ( ! wp_verify_nonce($data['_wpnonce'], 'give-test-email')) {
82 82
 		return;
83 83
 	}
84 84
 
@@ -86,8 +86,8 @@  discard block
 block discarded – undo
86 86
 	give_email_test_donation_receipt();
87 87
 
88 88
 	// Remove the test email query arg
89
-	wp_redirect( remove_query_arg( 'give_action' ) );
89
+	wp_redirect(remove_query_arg('give_action'));
90 90
 	exit;
91 91
 }
92 92
 
93
-add_action( 'give_send_test_email', 'give_send_test_email' );
93
+add_action('give_send_test_email', 'give_send_test_email');
Please login to merge, or discard this patch.