@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | * @since 1.0.0 |
7 | 7 | */ |
8 | 8 | |
9 | -defined( 'ABSPATH' ) || exit; |
|
9 | +defined('ABSPATH') || exit; |
|
10 | 10 | |
11 | 11 | /** |
12 | 12 | * Main Invoicing class. |
@@ -56,8 +56,8 @@ discard block |
||
56 | 56 | * @param string $prop The prop to set. |
57 | 57 | * @param mixed $value The value to retrieve. |
58 | 58 | */ |
59 | - public function set( $prop, $value ) { |
|
60 | - $this->data[ $prop ] = $value; |
|
59 | + public function set($prop, $value) { |
|
60 | + $this->data[$prop] = $value; |
|
61 | 61 | } |
62 | 62 | |
63 | 63 | /** |
@@ -66,10 +66,10 @@ discard block |
||
66 | 66 | * @param string $prop The prop to set. |
67 | 67 | * @return mixed The value. |
68 | 68 | */ |
69 | - public function get( $prop ) { |
|
69 | + public function get($prop) { |
|
70 | 70 | |
71 | - if ( isset( $this->data[ $prop ] ) ) { |
|
72 | - return $this->data[ $prop ]; |
|
71 | + if (isset($this->data[$prop])) { |
|
72 | + return $this->data[$prop]; |
|
73 | 73 | } |
74 | 74 | |
75 | 75 | return null; |
@@ -81,23 +81,23 @@ discard block |
||
81 | 81 | public function set_properties() { |
82 | 82 | |
83 | 83 | // Sessions. |
84 | - $this->set( 'session', new WPInv_Session_Handler() ); |
|
85 | - $GLOBALS['wpi_session'] = $this->get( 'session' ); // Backwards compatibility. |
|
84 | + $this->set('session', new WPInv_Session_Handler()); |
|
85 | + $GLOBALS['wpi_session'] = $this->get('session'); // Backwards compatibility. |
|
86 | 86 | $GLOBALS['wpinv_euvat'] = new WPInv_EUVat(); // Backwards compatibility. |
87 | 87 | |
88 | 88 | // Init other objects. |
89 | - $this->set( 'session', new WPInv_Session_Handler() ); |
|
90 | - $this->set( 'notes', new WPInv_Notes() ); |
|
91 | - $this->set( 'api', new WPInv_API() ); |
|
92 | - $this->set( 'post_types', new GetPaid_Post_Types() ); |
|
93 | - $this->set( 'template', new GetPaid_Template() ); |
|
94 | - $this->set( 'admin', new GetPaid_Admin() ); |
|
95 | - $this->set( 'subscriptions', new WPInv_Subscriptions() ); |
|
96 | - $this->set( 'invoice_emails', new GetPaid_Invoice_Notification_Emails() ); |
|
97 | - $this->set( 'subscription_emails', new GetPaid_Subscription_Notification_Emails() ); |
|
98 | - $this->set( 'daily_maintenace', new GetPaid_Daily_Maintenance() ); |
|
99 | - $this->set( 'payment_forms', new GetPaid_Payment_Forms() ); |
|
100 | - $this->set( 'maxmind', new GetPaid_MaxMind_Geolocation() ); |
|
89 | + $this->set('session', new WPInv_Session_Handler()); |
|
90 | + $this->set('notes', new WPInv_Notes()); |
|
91 | + $this->set('api', new WPInv_API()); |
|
92 | + $this->set('post_types', new GetPaid_Post_Types()); |
|
93 | + $this->set('template', new GetPaid_Template()); |
|
94 | + $this->set('admin', new GetPaid_Admin()); |
|
95 | + $this->set('subscriptions', new WPInv_Subscriptions()); |
|
96 | + $this->set('invoice_emails', new GetPaid_Invoice_Notification_Emails()); |
|
97 | + $this->set('subscription_emails', new GetPaid_Subscription_Notification_Emails()); |
|
98 | + $this->set('daily_maintenace', new GetPaid_Daily_Maintenance()); |
|
99 | + $this->set('payment_forms', new GetPaid_Payment_Forms()); |
|
100 | + $this->set('maxmind', new GetPaid_MaxMind_Geolocation()); |
|
101 | 101 | |
102 | 102 | } |
103 | 103 | |
@@ -105,8 +105,8 @@ discard block |
||
105 | 105 | * Define plugin constants. |
106 | 106 | */ |
107 | 107 | public function define_constants() { |
108 | - define( 'WPINV_PLUGIN_DIR', plugin_dir_path( WPINV_PLUGIN_FILE ) ); |
|
109 | - define( 'WPINV_PLUGIN_URL', plugin_dir_url( WPINV_PLUGIN_FILE ) ); |
|
108 | + define('WPINV_PLUGIN_DIR', plugin_dir_path(WPINV_PLUGIN_FILE)); |
|
109 | + define('WPINV_PLUGIN_URL', plugin_dir_url(WPINV_PLUGIN_FILE)); |
|
110 | 110 | $this->version = WPINV_VERSION; |
111 | 111 | } |
112 | 112 | |
@@ -117,27 +117,27 @@ discard block |
||
117 | 117 | */ |
118 | 118 | protected function init_hooks() { |
119 | 119 | /* Internationalize the text strings used. */ |
120 | - add_action( 'plugins_loaded', array( &$this, 'plugins_loaded' ) ); |
|
120 | + add_action('plugins_loaded', array(&$this, 'plugins_loaded')); |
|
121 | 121 | |
122 | 122 | // Init the plugin after WordPress inits. |
123 | - add_action( 'init', array( $this, 'init' ), 1 ); |
|
124 | - add_action( 'init', array( $this, 'maybe_process_ipn' ), 10 ); |
|
125 | - add_action( 'init', array( $this, 'wpinv_actions' ) ); |
|
126 | - add_action( 'init', array( $this, 'maybe_do_authenticated_action' ), 100 ); |
|
127 | - add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), 11 ); |
|
128 | - add_action( 'wp_footer', array( $this, 'wp_footer' ) ); |
|
129 | - add_action( 'wp_head', array( $this, 'wp_head' ) ); |
|
130 | - add_action( 'widgets_init', array( $this, 'register_widgets' ) ); |
|
131 | - add_filter( 'wpseo_exclude_from_sitemap_by_post_ids', array( $this, 'wpseo_exclude_from_sitemap_by_post_ids' ) ); |
|
132 | - add_filter( 'pre_get_posts', array( &$this, 'pre_get_posts' ) ); |
|
133 | - |
|
134 | - add_filter( 'query_vars', array( $this, 'custom_query_vars' ) ); |
|
135 | - add_action( 'init', array( $this, 'add_rewrite_rule' ), 10, 0 ); |
|
136 | - add_action( 'pre_get_posts', array( $this, 'maybe_process_new_ipn' ), 1 ); |
|
123 | + add_action('init', array($this, 'init'), 1); |
|
124 | + add_action('init', array($this, 'maybe_process_ipn'), 10); |
|
125 | + add_action('init', array($this, 'wpinv_actions')); |
|
126 | + add_action('init', array($this, 'maybe_do_authenticated_action'), 100); |
|
127 | + add_action('wp_enqueue_scripts', array($this, 'enqueue_scripts'), 11); |
|
128 | + add_action('wp_footer', array($this, 'wp_footer')); |
|
129 | + add_action('wp_head', array($this, 'wp_head')); |
|
130 | + add_action('widgets_init', array($this, 'register_widgets')); |
|
131 | + add_filter('wpseo_exclude_from_sitemap_by_post_ids', array($this, 'wpseo_exclude_from_sitemap_by_post_ids')); |
|
132 | + add_filter('pre_get_posts', array(&$this, 'pre_get_posts')); |
|
133 | + |
|
134 | + add_filter('query_vars', array($this, 'custom_query_vars')); |
|
135 | + add_action('init', array($this, 'add_rewrite_rule'), 10, 0); |
|
136 | + add_action('pre_get_posts', array($this, 'maybe_process_new_ipn'), 1); |
|
137 | 137 | |
138 | 138 | // Fires after registering actions. |
139 | - do_action( 'wpinv_actions', $this ); |
|
140 | - do_action( 'getpaid_actions', $this ); |
|
139 | + do_action('wpinv_actions', $this); |
|
140 | + do_action('getpaid_actions', $this); |
|
141 | 141 | |
142 | 142 | } |
143 | 143 | |
@@ -145,10 +145,10 @@ discard block |
||
145 | 145 | /* Internationalize the text strings used. */ |
146 | 146 | $this->load_textdomain(); |
147 | 147 | |
148 | - do_action( 'wpinv_loaded' ); |
|
148 | + do_action('wpinv_loaded'); |
|
149 | 149 | |
150 | 150 | // Fix oxygen page builder conflict |
151 | - if ( function_exists( 'ct_css_output' ) ) { |
|
151 | + if (function_exists('ct_css_output')) { |
|
152 | 152 | wpinv_oxygen_fix_conflict(); |
153 | 153 | } |
154 | 154 | } |
@@ -169,7 +169,7 @@ discard block |
||
169 | 169 | load_plugin_textdomain( |
170 | 170 | 'invoicing', |
171 | 171 | false, |
172 | - plugin_basename( dirname( WPINV_PLUGIN_FILE ) ) . '/languages/' |
|
172 | + plugin_basename(dirname(WPINV_PLUGIN_FILE)) . '/languages/' |
|
173 | 173 | ); |
174 | 174 | |
175 | 175 | } |
@@ -180,78 +180,78 @@ discard block |
||
180 | 180 | public function includes() { |
181 | 181 | |
182 | 182 | // Start with the settings. |
183 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/register-settings.php' ); |
|
183 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/register-settings.php'); |
|
184 | 184 | |
185 | 185 | // Packages/libraries. |
186 | - require_once( WPINV_PLUGIN_DIR . 'vendor/autoload.php' ); |
|
187 | - require_once( WPINV_PLUGIN_DIR . 'vendor/ayecode/wp-ayecode-ui/ayecode-ui-loader.php' ); |
|
186 | + require_once(WPINV_PLUGIN_DIR . 'vendor/autoload.php'); |
|
187 | + require_once(WPINV_PLUGIN_DIR . 'vendor/ayecode/wp-ayecode-ui/ayecode-ui-loader.php'); |
|
188 | 188 | |
189 | 189 | // Load functions. |
190 | - require_once( WPINV_PLUGIN_DIR . 'includes/deprecated-functions.php' ); |
|
191 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-email-functions.php' ); |
|
192 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-general-functions.php' ); |
|
193 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-helper-functions.php' ); |
|
194 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-tax-functions.php' ); |
|
195 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-template-functions.php' ); |
|
196 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-address-functions.php' ); |
|
197 | - require_once( WPINV_PLUGIN_DIR . 'includes/invoice-functions.php' ); |
|
198 | - require_once( WPINV_PLUGIN_DIR . 'includes/subscription-functions.php' ); |
|
199 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-item-functions.php' ); |
|
200 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-discount-functions.php' ); |
|
201 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-gateway-functions.php' ); |
|
202 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-payment-functions.php' ); |
|
203 | - require_once( WPINV_PLUGIN_DIR . 'includes/user-functions.php' ); |
|
204 | - require_once( WPINV_PLUGIN_DIR . 'includes/error-functions.php' ); |
|
190 | + require_once(WPINV_PLUGIN_DIR . 'includes/deprecated-functions.php'); |
|
191 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-email-functions.php'); |
|
192 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-general-functions.php'); |
|
193 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-helper-functions.php'); |
|
194 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-tax-functions.php'); |
|
195 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-template-functions.php'); |
|
196 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-address-functions.php'); |
|
197 | + require_once(WPINV_PLUGIN_DIR . 'includes/invoice-functions.php'); |
|
198 | + require_once(WPINV_PLUGIN_DIR . 'includes/subscription-functions.php'); |
|
199 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-item-functions.php'); |
|
200 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-discount-functions.php'); |
|
201 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-gateway-functions.php'); |
|
202 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-payment-functions.php'); |
|
203 | + require_once(WPINV_PLUGIN_DIR . 'includes/user-functions.php'); |
|
204 | + require_once(WPINV_PLUGIN_DIR . 'includes/error-functions.php'); |
|
205 | 205 | |
206 | 206 | // Register autoloader. |
207 | 207 | try { |
208 | - spl_autoload_register( array( $this, 'autoload' ), true ); |
|
209 | - } catch ( Exception $e ) { |
|
210 | - wpinv_error_log( $e->getMessage(), '', __FILE__, 149, true ); |
|
208 | + spl_autoload_register(array($this, 'autoload'), true); |
|
209 | + } catch (Exception $e) { |
|
210 | + wpinv_error_log($e->getMessage(), '', __FILE__, 149, true); |
|
211 | 211 | } |
212 | 212 | |
213 | - require_once( WPINV_PLUGIN_DIR . 'includes/abstracts/abstract-wpinv-session.php' ); |
|
214 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-session-handler.php' ); |
|
215 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-ajax.php' ); |
|
216 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-api.php' ); |
|
217 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-cache-helper.php' ); |
|
218 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-db.php' ); |
|
219 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/subscriptions.php' ); |
|
220 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-subscriptions-db.php' ); |
|
221 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-subscription.php' ); |
|
222 | - require_once( WPINV_PLUGIN_DIR . 'includes/abstracts/abstract-wpinv-privacy.php' ); |
|
223 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-privacy.php' ); |
|
224 | - require_once( WPINV_PLUGIN_DIR . 'includes/libraries/class-ayecode-addons.php' ); |
|
225 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-addons.php' ); |
|
226 | - require_once( WPINV_PLUGIN_DIR . 'widgets/checkout.php' ); |
|
227 | - require_once( WPINV_PLUGIN_DIR . 'widgets/invoice-history.php' ); |
|
228 | - require_once( WPINV_PLUGIN_DIR . 'widgets/invoice-receipt.php' ); |
|
229 | - require_once( WPINV_PLUGIN_DIR . 'widgets/invoice-messages.php' ); |
|
230 | - require_once( WPINV_PLUGIN_DIR . 'widgets/subscriptions.php' ); |
|
231 | - require_once( WPINV_PLUGIN_DIR . 'widgets/buy-item.php' ); |
|
232 | - require_once( WPINV_PLUGIN_DIR . 'widgets/getpaid.php' ); |
|
233 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/admin-pages.php' ); |
|
234 | - |
|
235 | - if ( is_admin() || ( defined( 'WP_CLI' ) && WP_CLI ) ) { |
|
213 | + require_once(WPINV_PLUGIN_DIR . 'includes/abstracts/abstract-wpinv-session.php'); |
|
214 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-session-handler.php'); |
|
215 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-ajax.php'); |
|
216 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-api.php'); |
|
217 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-cache-helper.php'); |
|
218 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-db.php'); |
|
219 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/subscriptions.php'); |
|
220 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-subscriptions-db.php'); |
|
221 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-subscription.php'); |
|
222 | + require_once(WPINV_PLUGIN_DIR . 'includes/abstracts/abstract-wpinv-privacy.php'); |
|
223 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-privacy.php'); |
|
224 | + require_once(WPINV_PLUGIN_DIR . 'includes/libraries/class-ayecode-addons.php'); |
|
225 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-addons.php'); |
|
226 | + require_once(WPINV_PLUGIN_DIR . 'widgets/checkout.php'); |
|
227 | + require_once(WPINV_PLUGIN_DIR . 'widgets/invoice-history.php'); |
|
228 | + require_once(WPINV_PLUGIN_DIR . 'widgets/invoice-receipt.php'); |
|
229 | + require_once(WPINV_PLUGIN_DIR . 'widgets/invoice-messages.php'); |
|
230 | + require_once(WPINV_PLUGIN_DIR . 'widgets/subscriptions.php'); |
|
231 | + require_once(WPINV_PLUGIN_DIR . 'widgets/buy-item.php'); |
|
232 | + require_once(WPINV_PLUGIN_DIR . 'widgets/getpaid.php'); |
|
233 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/admin-pages.php'); |
|
234 | + |
|
235 | + if (is_admin() || (defined('WP_CLI') && WP_CLI)) { |
|
236 | 236 | GetPaid_Post_Types_Admin::init(); |
237 | 237 | |
238 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/wpinv-admin-functions.php' ); |
|
239 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-payment-form.php' ); |
|
240 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-invoice-notes.php' ); |
|
241 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-admin-menus.php' ); |
|
242 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-users.php' ); |
|
243 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-getpaid-admin-profile.php' ); |
|
238 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/wpinv-admin-functions.php'); |
|
239 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-payment-form.php'); |
|
240 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-invoice-notes.php'); |
|
241 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-admin-menus.php'); |
|
242 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-users.php'); |
|
243 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/class-getpaid-admin-profile.php'); |
|
244 | 244 | // load the user class only on the users.php page |
245 | 245 | global $pagenow; |
246 | - if($pagenow=='users.php'){ |
|
246 | + if ($pagenow == 'users.php') { |
|
247 | 247 | new WPInv_Admin_Users(); |
248 | 248 | } |
249 | 249 | } |
250 | 250 | |
251 | 251 | // Register cli commands |
252 | - if ( defined( 'WP_CLI' ) && WP_CLI ) { |
|
253 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-cli.php' ); |
|
254 | - WP_CLI::add_command( 'invoicing', 'WPInv_CLI' ); |
|
252 | + if (defined('WP_CLI') && WP_CLI) { |
|
253 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-cli.php'); |
|
254 | + WP_CLI::add_command('invoicing', 'WPInv_CLI'); |
|
255 | 255 | } |
256 | 256 | |
257 | 257 | } |
@@ -264,21 +264,21 @@ discard block |
||
264 | 264 | * @since 1.0.19 |
265 | 265 | * @return void |
266 | 266 | */ |
267 | - public function autoload( $class_name ) { |
|
267 | + public function autoload($class_name) { |
|
268 | 268 | |
269 | 269 | // Normalize the class name... |
270 | - $class_name = strtolower( $class_name ); |
|
270 | + $class_name = strtolower($class_name); |
|
271 | 271 | |
272 | 272 | // ... and make sure it is our class. |
273 | - if ( false === strpos( $class_name, 'getpaid_' ) && false === strpos( $class_name, 'wpinv_' ) ) { |
|
273 | + if (false === strpos($class_name, 'getpaid_') && false === strpos($class_name, 'wpinv_')) { |
|
274 | 274 | return; |
275 | 275 | } |
276 | 276 | |
277 | 277 | // Next, prepare the file name from the class. |
278 | - $file_name = 'class-' . str_replace( '_', '-', $class_name ) . '.php'; |
|
278 | + $file_name = 'class-' . str_replace('_', '-', $class_name) . '.php'; |
|
279 | 279 | |
280 | 280 | // Base path of the classes. |
281 | - $plugin_path = untrailingslashit( WPINV_PLUGIN_DIR ); |
|
281 | + $plugin_path = untrailingslashit(WPINV_PLUGIN_DIR); |
|
282 | 282 | |
283 | 283 | // And an array of possible locations in order of importance. |
284 | 284 | $locations = array( |
@@ -293,10 +293,10 @@ discard block |
||
293 | 293 | "$plugin_path/includes/admin/meta-boxes", |
294 | 294 | ); |
295 | 295 | |
296 | - foreach ( apply_filters( 'getpaid_autoload_locations', $locations ) as $location ) { |
|
296 | + foreach (apply_filters('getpaid_autoload_locations', $locations) as $location) { |
|
297 | 297 | |
298 | - if ( file_exists( trailingslashit( $location ) . $file_name ) ) { |
|
299 | - include trailingslashit( $location ) . $file_name; |
|
298 | + if (file_exists(trailingslashit($location) . $file_name)) { |
|
299 | + include trailingslashit($location) . $file_name; |
|
300 | 300 | break; |
301 | 301 | } |
302 | 302 | |
@@ -310,7 +310,7 @@ discard block |
||
310 | 310 | public function init() { |
311 | 311 | |
312 | 312 | // Fires before getpaid inits. |
313 | - do_action( 'before_getpaid_init', $this ); |
|
313 | + do_action('before_getpaid_init', $this); |
|
314 | 314 | |
315 | 315 | // Maybe upgrade. |
316 | 316 | $this->maybe_upgrade_database(); |
@@ -327,17 +327,17 @@ discard block |
||
327 | 327 | ) |
328 | 328 | ); |
329 | 329 | |
330 | - foreach ( $gateways as $id => $class ) { |
|
331 | - $this->gateways[ $id ] = new $class(); |
|
330 | + foreach ($gateways as $id => $class) { |
|
331 | + $this->gateways[$id] = new $class(); |
|
332 | 332 | } |
333 | 333 | |
334 | - if ( 'yes' != get_option( 'wpinv_renamed_gateways' ) ) { |
|
334 | + if ('yes' != get_option('wpinv_renamed_gateways')) { |
|
335 | 335 | GetPaid_Installer::rename_gateways_label(); |
336 | - update_option( 'wpinv_renamed_gateways', 'yes' ); |
|
336 | + update_option('wpinv_renamed_gateways', 'yes'); |
|
337 | 337 | } |
338 | 338 | |
339 | 339 | // Fires after getpaid inits. |
340 | - do_action( 'getpaid_init', $this ); |
|
340 | + do_action('getpaid_init', $this); |
|
341 | 341 | |
342 | 342 | } |
343 | 343 | |
@@ -347,14 +347,14 @@ discard block |
||
347 | 347 | public function maybe_process_ipn() { |
348 | 348 | |
349 | 349 | // Ensure that this is an IPN request. |
350 | - if ( empty( $_GET['wpi-listener'] ) || 'IPN' !== $_GET['wpi-listener'] || empty( $_GET['wpi-gateway'] ) ) { |
|
350 | + if (empty($_GET['wpi-listener']) || 'IPN' !== $_GET['wpi-listener'] || empty($_GET['wpi-gateway'])) { |
|
351 | 351 | return; |
352 | 352 | } |
353 | 353 | |
354 | - $gateway = wpinv_clean( $_GET['wpi-gateway'] ); |
|
354 | + $gateway = wpinv_clean($_GET['wpi-gateway']); |
|
355 | 355 | |
356 | - do_action( 'wpinv_verify_payment_ipn', $gateway ); |
|
357 | - do_action( "wpinv_verify_{$gateway}_ipn" ); |
|
356 | + do_action('wpinv_verify_payment_ipn', $gateway); |
|
357 | + do_action("wpinv_verify_{$gateway}_ipn"); |
|
358 | 358 | exit; |
359 | 359 | |
360 | 360 | } |
@@ -362,33 +362,33 @@ discard block |
||
362 | 362 | public function enqueue_scripts() { |
363 | 363 | |
364 | 364 | // Fires before adding scripts. |
365 | - do_action( 'getpaid_enqueue_scripts' ); |
|
365 | + do_action('getpaid_enqueue_scripts'); |
|
366 | 366 | |
367 | 367 | $localize = array(); |
368 | - $localize['ajax_url'] = admin_url( 'admin-ajax.php' ); |
|
368 | + $localize['ajax_url'] = admin_url('admin-ajax.php'); |
|
369 | 369 | $localize['thousands'] = wpinv_thousands_separator(); |
370 | 370 | $localize['decimals'] = wpinv_decimal_separator(); |
371 | - $localize['nonce'] = wp_create_nonce( 'wpinv-nonce' ); |
|
372 | - $localize['txtComplete'] = __( 'Continue', 'invoicing' ); |
|
371 | + $localize['nonce'] = wp_create_nonce('wpinv-nonce'); |
|
372 | + $localize['txtComplete'] = __('Continue', 'invoicing'); |
|
373 | 373 | $localize['UseTaxes'] = wpinv_use_taxes(); |
374 | - $localize['formNonce'] = wp_create_nonce( 'getpaid_form_nonce' ); |
|
375 | - $localize['loading'] = __( 'Loading...', 'invoicing' ); |
|
376 | - $localize['connectionError'] = __( 'Could not establish a connection to the server.', 'invoicing' ); |
|
374 | + $localize['formNonce'] = wp_create_nonce('getpaid_form_nonce'); |
|
375 | + $localize['loading'] = __('Loading...', 'invoicing'); |
|
376 | + $localize['connectionError'] = __('Could not establish a connection to the server.', 'invoicing'); |
|
377 | 377 | |
378 | - $localize = apply_filters( 'wpinv_front_js_localize', $localize ); |
|
378 | + $localize = apply_filters('wpinv_front_js_localize', $localize); |
|
379 | 379 | |
380 | - $version = filemtime( WPINV_PLUGIN_DIR . 'assets/js/payment-forms.js' ); |
|
381 | - wp_enqueue_script( 'wpinv-front-script', WPINV_PLUGIN_URL . 'assets/js/payment-forms.js', array( 'jquery' ), $version, true ); |
|
382 | - wp_localize_script( 'wpinv-front-script', 'WPInv', $localize ); |
|
380 | + $version = filemtime(WPINV_PLUGIN_DIR . 'assets/js/payment-forms.js'); |
|
381 | + wp_enqueue_script('wpinv-front-script', WPINV_PLUGIN_URL . 'assets/js/payment-forms.js', array('jquery'), $version, true); |
|
382 | + wp_localize_script('wpinv-front-script', 'WPInv', $localize); |
|
383 | 383 | } |
384 | 384 | |
385 | 385 | public function wpinv_actions() { |
386 | - if ( isset( $_REQUEST['wpi_action'] ) ) { |
|
387 | - do_action( 'wpinv_' . wpinv_sanitize_key( $_REQUEST['wpi_action'] ), $_REQUEST ); |
|
386 | + if (isset($_REQUEST['wpi_action'])) { |
|
387 | + do_action('wpinv_' . wpinv_sanitize_key($_REQUEST['wpi_action']), $_REQUEST); |
|
388 | 388 | } |
389 | 389 | |
390 | - if ( defined( 'WP_ALL_IMPORT_ROOT_DIR' ) ) { |
|
391 | - include plugin_dir_path( __FILE__ ) . 'libraries/wp-all-import/class-getpaid-wp-all-import.php'; |
|
390 | + if (defined('WP_ALL_IMPORT_ROOT_DIR')) { |
|
391 | + include plugin_dir_path(__FILE__) . 'libraries/wp-all-import/class-getpaid-wp-all-import.php'; |
|
392 | 392 | } |
393 | 393 | } |
394 | 394 | |
@@ -400,24 +400,24 @@ discard block |
||
400 | 400 | */ |
401 | 401 | public function maybe_do_authenticated_action() { |
402 | 402 | |
403 | - if ( isset( $_REQUEST['getpaid-action'] ) && isset( $_REQUEST['getpaid-nonce'] ) && wp_verify_nonce( $_REQUEST['getpaid-nonce'], 'getpaid-nonce' ) ) { |
|
403 | + if (isset($_REQUEST['getpaid-action']) && isset($_REQUEST['getpaid-nonce']) && wp_verify_nonce($_REQUEST['getpaid-nonce'], 'getpaid-nonce')) { |
|
404 | 404 | |
405 | - $key = sanitize_key( $_REQUEST['getpaid-action'] ); |
|
406 | - $data = wp_unslash( $_REQUEST ); |
|
407 | - if ( is_user_logged_in() ) { |
|
408 | - do_action( "getpaid_authenticated_action_$key", $data ); |
|
405 | + $key = sanitize_key($_REQUEST['getpaid-action']); |
|
406 | + $data = wp_unslash($_REQUEST); |
|
407 | + if (is_user_logged_in()) { |
|
408 | + do_action("getpaid_authenticated_action_$key", $data); |
|
409 | 409 | } |
410 | 410 | |
411 | - do_action( "getpaid_unauthenticated_action_$key", $data ); |
|
411 | + do_action("getpaid_unauthenticated_action_$key", $data); |
|
412 | 412 | |
413 | 413 | } |
414 | 414 | |
415 | 415 | } |
416 | 416 | |
417 | - public function pre_get_posts( $wp_query ) { |
|
417 | + public function pre_get_posts($wp_query) { |
|
418 | 418 | |
419 | - if ( ! is_admin() && ! empty( $wp_query->query_vars['post_type'] ) && getpaid_is_invoice_post_type( $wp_query->query_vars['post_type'] ) && is_user_logged_in() && is_single() && $wp_query->is_main_query() ) { |
|
420 | - $wp_query->query_vars['post_status'] = array_keys( wpinv_get_invoice_statuses( false, false, $wp_query->query_vars['post_type'] ) ); |
|
419 | + if (!is_admin() && !empty($wp_query->query_vars['post_type']) && getpaid_is_invoice_post_type($wp_query->query_vars['post_type']) && is_user_logged_in() && is_single() && $wp_query->is_main_query()) { |
|
420 | + $wp_query->query_vars['post_status'] = array_keys(wpinv_get_invoice_statuses(false, false, $wp_query->query_vars['post_type'])); |
|
421 | 421 | } |
422 | 422 | |
423 | 423 | return $wp_query; |
@@ -432,18 +432,18 @@ discard block |
||
432 | 432 | |
433 | 433 | // Currently, UX Builder does not work particulaly well with SuperDuper. |
434 | 434 | // So we disable our widgets when editing a page with UX Builder. |
435 | - if ( function_exists( 'ux_builder_is_active' ) && ux_builder_is_active() ) { |
|
435 | + if (function_exists('ux_builder_is_active') && ux_builder_is_active()) { |
|
436 | 436 | return; |
437 | 437 | } |
438 | 438 | |
439 | 439 | $block_widget_init_screens = function_exists('sd_pagenow_exclude') ? sd_pagenow_exclude() : array(); |
440 | 440 | |
441 | - if ( is_admin() && $pagenow && in_array($pagenow, $block_widget_init_screens)) { |
|
441 | + if (is_admin() && $pagenow && in_array($pagenow, $block_widget_init_screens)) { |
|
442 | 442 | // don't initiate in these conditions. |
443 | - }else{ |
|
443 | + } else { |
|
444 | 444 | |
445 | 445 | // Only load allowed widgets. |
446 | - $exclude = function_exists( 'sd_widget_exclude' ) ? sd_widget_exclude() : array(); |
|
446 | + $exclude = function_exists('sd_widget_exclude') ? sd_widget_exclude() : array(); |
|
447 | 447 | $widgets = apply_filters( |
448 | 448 | 'getpaid_widget_classes', |
449 | 449 | array( |
@@ -458,16 +458,16 @@ discard block |
||
458 | 458 | ); |
459 | 459 | |
460 | 460 | // For each widget... |
461 | - foreach ( $widgets as $widget ) { |
|
461 | + foreach ($widgets as $widget) { |
|
462 | 462 | |
463 | 463 | // Abort early if it is excluded for this page. |
464 | - if ( in_array( $widget, $exclude ) ) { |
|
464 | + if (in_array($widget, $exclude)) { |
|
465 | 465 | continue; |
466 | 466 | } |
467 | 467 | |
468 | 468 | // SD V1 used to extend the widget class. V2 does not, so we cannot call register widget on it. |
469 | - if ( is_subclass_of( $widget, 'WP_Widget' ) ) { |
|
470 | - register_widget( $widget ); |
|
469 | + if (is_subclass_of($widget, 'WP_Widget')) { |
|
470 | + register_widget($widget); |
|
471 | 471 | } else { |
472 | 472 | new $widget(); |
473 | 473 | } |
@@ -485,29 +485,29 @@ discard block |
||
485 | 485 | */ |
486 | 486 | public function maybe_upgrade_database() { |
487 | 487 | |
488 | - $wpi_version = get_option( 'wpinv_version', 0 ); |
|
488 | + $wpi_version = get_option('wpinv_version', 0); |
|
489 | 489 | |
490 | - if ( $wpi_version == WPINV_VERSION ) { |
|
490 | + if ($wpi_version == WPINV_VERSION) { |
|
491 | 491 | return; |
492 | 492 | } |
493 | 493 | |
494 | 494 | $installer = new GetPaid_Installer(); |
495 | 495 | |
496 | - if ( empty( $wpi_version ) ) { |
|
497 | - return $installer->upgrade_db( 0 ); |
|
496 | + if (empty($wpi_version)) { |
|
497 | + return $installer->upgrade_db(0); |
|
498 | 498 | } |
499 | 499 | |
500 | - $upgrades = array( |
|
500 | + $upgrades = array( |
|
501 | 501 | '0.0.5' => '004', |
502 | 502 | '1.0.3' => '102', |
503 | 503 | '2.0.0' => '118', |
504 | 504 | '2.0.8' => '207', |
505 | 505 | ); |
506 | 506 | |
507 | - foreach ( $upgrades as $key => $method ) { |
|
507 | + foreach ($upgrades as $key => $method) { |
|
508 | 508 | |
509 | - if ( version_compare( $wpi_version, $key, '<' ) ) { |
|
510 | - return $installer->upgrade_db( $method ); |
|
509 | + if (version_compare($wpi_version, $key, '<')) { |
|
510 | + return $installer->upgrade_db($method); |
|
511 | 511 | } |
512 | 512 | |
513 | 513 | } |
@@ -521,11 +521,11 @@ discard block |
||
521 | 521 | */ |
522 | 522 | public function maybe_flush_permalinks() { |
523 | 523 | |
524 | - $flush = get_option( 'wpinv_flush_permalinks', 0 ); |
|
524 | + $flush = get_option('wpinv_flush_permalinks', 0); |
|
525 | 525 | |
526 | - if ( ! empty( $flush ) ) { |
|
526 | + if (!empty($flush)) { |
|
527 | 527 | flush_rewrite_rules(); |
528 | - delete_option( 'wpinv_flush_permalinks' ); |
|
528 | + delete_option('wpinv_flush_permalinks'); |
|
529 | 529 | } |
530 | 530 | |
531 | 531 | } |
@@ -536,10 +536,10 @@ discard block |
||
536 | 536 | * @since 1.0.19 |
537 | 537 | * @param int[] $excluded_posts_ids |
538 | 538 | */ |
539 | - public function wpseo_exclude_from_sitemap_by_post_ids( $excluded_posts_ids ){ |
|
539 | + public function wpseo_exclude_from_sitemap_by_post_ids($excluded_posts_ids) { |
|
540 | 540 | |
541 | 541 | // Ensure that we have an array. |
542 | - if ( ! is_array( $excluded_posts_ids ) ) { |
|
542 | + if (!is_array($excluded_posts_ids)) { |
|
543 | 543 | $excluded_posts_ids = array(); |
544 | 544 | } |
545 | 545 | |
@@ -547,24 +547,24 @@ discard block |
||
547 | 547 | $our_pages = array(); |
548 | 548 | |
549 | 549 | // Checkout page. |
550 | - $our_pages[] = wpinv_get_option( 'checkout_page', false ); |
|
550 | + $our_pages[] = wpinv_get_option('checkout_page', false); |
|
551 | 551 | |
552 | 552 | // Success page. |
553 | - $our_pages[] = wpinv_get_option( 'success_page', false ); |
|
553 | + $our_pages[] = wpinv_get_option('success_page', false); |
|
554 | 554 | |
555 | 555 | // Failure page. |
556 | - $our_pages[] = wpinv_get_option( 'failure_page', false ); |
|
556 | + $our_pages[] = wpinv_get_option('failure_page', false); |
|
557 | 557 | |
558 | 558 | // History page. |
559 | - $our_pages[] = wpinv_get_option( 'invoice_history_page', false ); |
|
559 | + $our_pages[] = wpinv_get_option('invoice_history_page', false); |
|
560 | 560 | |
561 | 561 | // Subscriptions page. |
562 | - $our_pages[] = wpinv_get_option( 'invoice_subscription_page', false ); |
|
562 | + $our_pages[] = wpinv_get_option('invoice_subscription_page', false); |
|
563 | 563 | |
564 | - $our_pages = array_map( 'intval', array_filter( $our_pages ) ); |
|
564 | + $our_pages = array_map('intval', array_filter($our_pages)); |
|
565 | 565 | |
566 | 566 | $excluded_posts_ids = $excluded_posts_ids + $our_pages; |
567 | - return array_unique( $excluded_posts_ids ); |
|
567 | + return array_unique($excluded_posts_ids); |
|
568 | 568 | |
569 | 569 | } |
570 | 570 | |
@@ -574,7 +574,7 @@ discard block |
||
574 | 574 | * @since 2.0.0 |
575 | 575 | */ |
576 | 576 | public function wp_footer() { |
577 | - wpinv_get_template( 'frontend-footer.php' ); |
|
577 | + wpinv_get_template('frontend-footer.php'); |
|
578 | 578 | } |
579 | 579 | |
580 | 580 | /** |
@@ -583,14 +583,14 @@ discard block |
||
583 | 583 | * @since 2.0.0 |
584 | 584 | */ |
585 | 585 | public function wp_head() { |
586 | - wpinv_get_template( 'frontend-head.php' ); |
|
586 | + wpinv_get_template('frontend-head.php'); |
|
587 | 587 | } |
588 | 588 | |
589 | 589 | /** |
590 | 590 | * Custom query vars. |
591 | 591 | * |
592 | 592 | */ |
593 | - public function custom_query_vars( $vars ) { |
|
593 | + public function custom_query_vars($vars) { |
|
594 | 594 | $vars[] = 'getpaid-ipn'; |
595 | 595 | return $vars; |
596 | 596 | } |
@@ -601,28 +601,28 @@ discard block |
||
601 | 601 | */ |
602 | 602 | public function add_rewrite_rule() { |
603 | 603 | $tag = 'getpaid-ipn'; |
604 | - add_rewrite_tag( "%$tag%", '([^&]+)' ); |
|
605 | - add_rewrite_rule( "^$tag/([^/]*)/?", "index.php?$tag=\$matches[1]",'top' ); |
|
604 | + add_rewrite_tag("%$tag%", '([^&]+)'); |
|
605 | + add_rewrite_rule("^$tag/([^/]*)/?", "index.php?$tag=\$matches[1]", 'top'); |
|
606 | 606 | } |
607 | 607 | |
608 | 608 | /** |
609 | 609 | * Processes non-query string ipns. |
610 | 610 | * |
611 | 611 | */ |
612 | - public function maybe_process_new_ipn( $query ) { |
|
612 | + public function maybe_process_new_ipn($query) { |
|
613 | 613 | |
614 | - if ( is_admin() || ! $query->is_main_query() ) { |
|
614 | + if (is_admin() || !$query->is_main_query()) { |
|
615 | 615 | return; |
616 | 616 | } |
617 | 617 | |
618 | - $gateway = get_query_var( 'getpaid-ipn' ); |
|
618 | + $gateway = get_query_var('getpaid-ipn'); |
|
619 | 619 | |
620 | - if ( ! empty( $gateway ) ){ |
|
620 | + if (!empty($gateway)) { |
|
621 | 621 | |
622 | - $gateway = sanitize_text_field( $gateway ); |
|
622 | + $gateway = sanitize_text_field($gateway); |
|
623 | 623 | nocache_headers(); |
624 | - do_action( 'wpinv_verify_payment_ipn', $gateway ); |
|
625 | - do_action( "wpinv_verify_{$gateway}_ipn" ); |
|
624 | + do_action('wpinv_verify_payment_ipn', $gateway); |
|
625 | + do_action("wpinv_verify_{$gateway}_ipn"); |
|
626 | 626 | exit; |
627 | 627 | |
628 | 628 | } |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | function __construct($name, $slug) { |
61 | 61 | $this->name = $name; |
62 | 62 | $this->slug = $slug; |
63 | - if (!empty($_GET['id'])){ |
|
63 | + if (!empty($_GET['id'])) { |
|
64 | 64 | $this->isWizard = false; |
65 | 65 | } |
66 | 66 | } |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | |
76 | 76 | function is_active_addon($post_type = null) { |
77 | 77 | |
78 | - if ( ! class_exists( 'PMXI_Plugin' ) ) { |
|
78 | + if (!class_exists('PMXI_Plugin')) { |
|
79 | 79 | return false; |
80 | 80 | } |
81 | 81 | |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | } |
88 | 88 | } |
89 | 89 | |
90 | - if ($addon_active){ |
|
90 | + if ($addon_active) { |
|
91 | 91 | |
92 | 92 | $current_theme = wp_get_theme(); |
93 | 93 | |
@@ -97,18 +97,18 @@ discard block |
||
97 | 97 | |
98 | 98 | $addon_active = (@in_array($theme_name, $this->active_themes) or empty($this->active_themes)) ? true : false; |
99 | 99 | |
100 | - if ( ! $addon_active and $parent_theme ){ |
|
100 | + if (!$addon_active and $parent_theme) { |
|
101 | 101 | $parent_theme_name = $parent_theme->get('Name'); |
102 | 102 | $addon_active = (@in_array($parent_theme_name, $this->active_themes) or empty($this->active_themes)) ? true : false; |
103 | 103 | |
104 | 104 | } |
105 | 105 | |
106 | - if ( $addon_active and ! empty($this->active_plugins) ){ |
|
106 | + if ($addon_active and !empty($this->active_plugins)) { |
|
107 | 107 | |
108 | - include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); |
|
108 | + include_once(ABSPATH . 'wp-admin/includes/plugin.php'); |
|
109 | 109 | |
110 | 110 | foreach ($this->active_plugins as $plugin) { |
111 | - if ( ! is_plugin_active($plugin) ) { |
|
111 | + if (!is_plugin_active($plugin)) { |
|
112 | 112 | $addon_active = false; |
113 | 113 | break; |
114 | 114 | } |
@@ -137,9 +137,9 @@ discard block |
||
137 | 137 | $this->when_to_run = "always"; |
138 | 138 | } |
139 | 139 | |
140 | - @$this->active_post_types = ( ! empty($conditions['post_types'])) ? $conditions['post_types'] : array(); |
|
141 | - @$this->active_themes = ( ! empty($conditions['themes'])) ? $conditions['themes'] : array(); |
|
142 | - @$this->active_plugins = ( ! empty($conditions['plugins'])) ? $conditions['plugins'] : array(); |
|
140 | + @$this->active_post_types = (!empty($conditions['post_types'])) ? $conditions['post_types'] : array(); |
|
141 | + @$this->active_themes = (!empty($conditions['themes'])) ? $conditions['themes'] : array(); |
|
142 | + @$this->active_plugins = (!empty($conditions['plugins'])) ? $conditions['plugins'] : array(); |
|
143 | 143 | |
144 | 144 | add_filter('pmxi_addons', array($this, 'wpai_api_register')); |
145 | 145 | add_filter('wp_all_import_addon_parse', array($this, 'wpai_api_parse')); |
@@ -148,15 +148,15 @@ discard block |
||
148 | 148 | add_filter('pmxi_options_options', array($this, 'wpai_api_options')); |
149 | 149 | add_filter('wp_all_import_image_sections', array($this, 'additional_sections'), 10, 1); |
150 | 150 | add_filter('pmxi_custom_types', array($this, 'filter_post_types'), 10, 2); |
151 | - add_filter('pmxi_post_list_order', array($this,'sort_post_types'), 10, 1); |
|
152 | - add_filter('wp_all_import_post_type_image', array($this, 'post_type_image'), 10, 1 ); |
|
153 | - add_action('pmxi_extend_options_featured', array($this, 'wpai_api_metabox'), 10, 2); |
|
151 | + add_filter('pmxi_post_list_order', array($this, 'sort_post_types'), 10, 1); |
|
152 | + add_filter('wp_all_import_post_type_image', array($this, 'post_type_image'), 10, 1); |
|
153 | + add_action('pmxi_extend_options_featured', array($this, 'wpai_api_metabox'), 10, 2); |
|
154 | 154 | add_action('admin_init', array($this, 'admin_notice_ignore')); |
155 | 155 | } |
156 | 156 | |
157 | 157 | function parse($data) { |
158 | 158 | |
159 | - if ( ! $this->is_active_addon($data['import']->options['custom_type'])) return false; |
|
159 | + if (!$this->is_active_addon($data['import']->options['custom_type'])) return false; |
|
160 | 160 | |
161 | 161 | $parsedData = $this->helper_parse($data, $this->options_array()); |
162 | 162 | return $parsedData; |
@@ -166,11 +166,11 @@ discard block |
||
166 | 166 | |
167 | 167 | function add_field($field_slug, $field_name, $field_type, $enum_values = null, $tooltip = "", $is_html = true, $default_text = '') { |
168 | 168 | |
169 | - $field = array("name" => $field_name, "type" => $field_type, "enum_values" => $enum_values, "tooltip" => $tooltip, "is_sub_field" => false, "is_main_field" => false, "slug" => $field_slug, "is_html" => $is_html, 'default_text' => $default_text); |
|
169 | + $field = array("name" => $field_name, "type" => $field_type, "enum_values" => $enum_values, "tooltip" => $tooltip, "is_sub_field" => false, "is_main_field" => false, "slug" => $field_slug, "is_html" => $is_html, 'default_text' => $default_text); |
|
170 | 170 | |
171 | 171 | $this->fields[$field_slug] = $field; |
172 | 172 | |
173 | - if ( ! empty($enum_values) ){ |
|
173 | + if (!empty($enum_values)) { |
|
174 | 174 | foreach ($enum_values as $key => $value) { |
175 | 175 | if (is_array($value)) |
176 | 176 | { |
@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | else |
182 | 182 | { |
183 | 183 | foreach ($value as $n => $param) { |
184 | - if (is_array($param) and ! empty($this->fields[$param['slug']])){ |
|
184 | + if (is_array($param) and !empty($this->fields[$param['slug']])) { |
|
185 | 185 | $this->fields[$param['slug']]['is_sub_field'] = true; |
186 | 186 | } |
187 | 187 | } |
@@ -194,7 +194,7 @@ discard block |
||
194 | 194 | |
195 | 195 | } |
196 | 196 | |
197 | - function add_acf_field($field){ |
|
197 | + function add_acf_field($field) { |
|
198 | 198 | $this->fields[$field->post_name] = array( |
199 | 199 | 'type' => 'acf', |
200 | 200 | 'field_obj' => $field |
@@ -203,13 +203,13 @@ discard block |
||
203 | 203 | |
204 | 204 | private $acfGroups = array(); |
205 | 205 | |
206 | - function use_acf_group($acf_group){ |
|
206 | + function use_acf_group($acf_group) { |
|
207 | 207 | $this->add_text( |
208 | 208 | '<div class="postbox acf_postbox default acf_signle_group rad4"> |
209 | - <h3 class="hndle" style="margin-top:0;"><span>'.$acf_group['title'].'</span></h3> |
|
209 | + <h3 class="hndle" style="margin-top:0;"><span>'.$acf_group['title'] . '</span></h3> |
|
210 | 210 | <div class="inside">'); |
211 | 211 | $acf_fields = get_posts(array('posts_per_page' => -1, 'post_type' => 'acf-field', 'post_parent' => $acf_group['ID'], 'post_status' => 'publish', 'orderby' => 'menu_order', 'order' => 'ASC')); |
212 | - if (!empty($acf_fields)){ |
|
212 | + if (!empty($acf_fields)) { |
|
213 | 213 | foreach ($acf_fields as $field) { |
214 | 214 | $this->add_acf_field($field); |
215 | 215 | } |
@@ -219,7 +219,7 @@ discard block |
||
219 | 219 | add_filter('wp_all_import_acf_is_show_group', array($this, 'acf_is_show_group'), 10, 2); |
220 | 220 | } |
221 | 221 | |
222 | - function acf_is_show_group($is_show, $acf_group){ |
|
222 | + function acf_is_show_group($is_show, $acf_group) { |
|
223 | 223 | return (in_array($acf_group['ID'], $this->acfGroups)) ? false : true; |
224 | 224 | } |
225 | 225 | |
@@ -231,7 +231,7 @@ discard block |
||
231 | 231 | * @param string $default_value - default option value |
232 | 232 | * |
233 | 233 | */ |
234 | - function add_option($slug, $default_value = ''){ |
|
234 | + function add_option($slug, $default_value = '') { |
|
235 | 235 | $this->options[$slug] = $default_value; |
236 | 236 | } |
237 | 237 | |
@@ -239,12 +239,12 @@ discard block |
||
239 | 239 | |
240 | 240 | $options_list = array(); |
241 | 241 | |
242 | - if ( ! empty( $this->fields ) ) { |
|
242 | + if (!empty($this->fields)) { |
|
243 | 243 | |
244 | 244 | foreach ($this->fields as $field_slug => $field_params) { |
245 | 245 | if (in_array($field_params['type'], array('title', 'plain_text', 'acf'))) continue; |
246 | 246 | $default_value = ''; |
247 | - if (!empty($field_params['enum_values'])){ |
|
247 | + if (!empty($field_params['enum_values'])) { |
|
248 | 248 | foreach ($field_params['enum_values'] as $key => $value) { |
249 | 249 | $default_value = $key; |
250 | 250 | break; |
@@ -255,14 +255,14 @@ discard block |
||
255 | 255 | |
256 | 256 | } |
257 | 257 | |
258 | - if ( ! empty($this->options) ){ |
|
258 | + if (!empty($this->options)) { |
|
259 | 259 | foreach ($this->options as $slug => $value) { |
260 | 260 | $options_arr[$slug] = $value; |
261 | 261 | } |
262 | 262 | } |
263 | 263 | |
264 | 264 | $options_arr[$this->slug] = $options_list; |
265 | - $options_arr['rapid_addon'] = plugin_basename( __FILE__ ); |
|
265 | + $options_arr['rapid_addon'] = plugin_basename(__FILE__); |
|
266 | 266 | |
267 | 267 | return $options_arr; |
268 | 268 | |
@@ -295,7 +295,7 @@ discard block |
||
295 | 295 | |
296 | 296 | } |
297 | 297 | |
298 | - function wpai_api_post_saved($functions){ |
|
298 | + function wpai_api_post_saved($functions) { |
|
299 | 299 | $functions[$this->slug] = array($this, 'post_saved'); |
300 | 300 | return $functions; |
301 | 301 | } |
@@ -308,7 +308,7 @@ discard block |
||
308 | 308 | |
309 | 309 | } |
310 | 310 | |
311 | - function post_saved( $importData ){ |
|
311 | + function post_saved($importData) { |
|
312 | 312 | |
313 | 313 | if (is_callable($this->post_saved_function)) |
314 | 314 | call_user_func($this->post_saved_function, $importData['pid'], $importData['import'], $importData['logger']); |
@@ -327,14 +327,14 @@ discard block |
||
327 | 327 | // print_r($import_options); |
328 | 328 | // echo "</pre>"; |
329 | 329 | |
330 | - if ( ! empty($parsedData) ) { |
|
330 | + if (!empty($parsedData)) { |
|
331 | 331 | |
332 | 332 | $this->logger = $importData['logger']; |
333 | 333 | |
334 | 334 | $post_id = $importData['pid']; |
335 | 335 | $index = $importData['i']; |
336 | 336 | $data = array(); |
337 | - if (!empty($this->fields)){ |
|
337 | + if (!empty($this->fields)) { |
|
338 | 338 | foreach ($this->fields as $field_slug => $field_params) { |
339 | 339 | if (in_array($field_params['type'], array('title', 'plain_text'))) continue; |
340 | 340 | switch ($field_params['type']) { |
@@ -345,7 +345,7 @@ discard block |
||
345 | 345 | |
346 | 346 | $image_url_or_path = $parsedData[$field_slug][$index]; |
347 | 347 | |
348 | - if ( ! array_key_exists( $field_slug, $import_options['download_image'] ) ) { |
|
348 | + if (!array_key_exists($field_slug, $import_options['download_image'])) { |
|
349 | 349 | continue 2; |
350 | 350 | } |
351 | 351 | |
@@ -365,7 +365,7 @@ discard block |
||
365 | 365 | |
366 | 366 | $image_url_or_path = $parsedData[$field_slug][$index]; |
367 | 367 | |
368 | - if ( ! array_key_exists( $field_slug, $import_options['download_image'] ) ) { |
|
368 | + if (!array_key_exists($field_slug, $import_options['download_image'])) { |
|
369 | 369 | continue 2; |
370 | 370 | } |
371 | 371 | |
@@ -393,7 +393,7 @@ discard block |
||
393 | 393 | |
394 | 394 | if (!empty($mapping_rules) and is_array($mapping_rules)) { |
395 | 395 | foreach ($mapping_rules as $rule_number => $map_to) { |
396 | - if (isset($map_to[trim($data[$field_slug])])){ |
|
396 | + if (isset($map_to[trim($data[$field_slug])])) { |
|
397 | 397 | $data[$field_slug] = trim($map_to[trim($data[$field_slug])]); |
398 | 398 | break; |
399 | 399 | } |
@@ -442,14 +442,14 @@ discard block |
||
442 | 442 | |
443 | 443 | echo $this->helper_metabox_bottom(); |
444 | 444 | |
445 | - if ( ! empty($this->image_sections) ){ |
|
445 | + if (!empty($this->image_sections)) { |
|
446 | 446 | $is_images_section_enabled = apply_filters('wp_all_import_is_images_section_enabled', true, $post_type); |
447 | 447 | foreach ($this->image_sections as $k => $section) { |
448 | 448 | $section_options = array(); |
449 | 449 | foreach ($this->image_options as $slug => $value) { |
450 | 450 | $section_options[$section['slug'] . $slug] = $value; |
451 | 451 | } |
452 | - if ( ! $is_images_section_enabled and ! $k ){ |
|
452 | + if (!$is_images_section_enabled and !$k) { |
|
453 | 453 | $section_options[$section['slug'] . 'is_featured'] = 1; |
454 | 454 | } |
455 | 455 | PMXI_API::add_additional_images_section($section['title'], $section['slug'], $current_values, '', true, false, $section['type']); |
@@ -458,7 +458,7 @@ discard block |
||
458 | 458 | |
459 | 459 | } |
460 | 460 | |
461 | - function render_field($field_params, $field_slug, $current_values, $in_the_bottom = false){ |
|
461 | + function render_field($field_params, $field_slug, $current_values, $in_the_bottom = false) { |
|
462 | 462 | |
463 | 463 | if (!isset($current_values[$this->slug][$field_slug])) { |
464 | 464 | $current_values[$this->slug][$field_slug] = isset($field_params['default_text']) ? $field_params['default_text'] : ''; |
@@ -471,8 +471,8 @@ discard block |
||
471 | 471 | $field_params['name'], |
472 | 472 | array( |
473 | 473 | 'tooltip' => $field_params['tooltip'], |
474 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
475 | - 'field_value' => ( $current_values[$this->slug][$field_slug] == '' && $this->isWizard ) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
474 | + 'field_name' => $this->slug . "[" . $field_slug . "]", |
|
475 | + 'field_value' => ($current_values[$this->slug][$field_slug] == '' && $this->isWizard) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
476 | 476 | ) |
477 | 477 | ); |
478 | 478 | |
@@ -483,8 +483,8 @@ discard block |
||
483 | 483 | $field_params['name'], |
484 | 484 | array( |
485 | 485 | 'tooltip' => $field_params['tooltip'], |
486 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
487 | - 'field_value' => ( $current_values[$this->slug][$field_slug] == '' && $this->isWizard ) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
486 | + 'field_name' => $this->slug . "[" . $field_slug . "]", |
|
487 | + 'field_value' => ($current_values[$this->slug][$field_slug] == '' && $this->isWizard) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
488 | 488 | ) |
489 | 489 | ); |
490 | 490 | |
@@ -495,8 +495,8 @@ discard block |
||
495 | 495 | $field_params['name'], |
496 | 496 | array( |
497 | 497 | 'tooltip' => $field_params['tooltip'], |
498 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
499 | - 'field_value' => ( $current_values[$this->slug][$field_slug] == '' && $this->isWizard ) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
498 | + 'field_name' => $this->slug . "[" . $field_slug . "]", |
|
499 | + 'field_value' => ($current_values[$this->slug][$field_slug] == '' && $this->isWizard) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
500 | 500 | ) |
501 | 501 | ); |
502 | 502 | |
@@ -509,7 +509,7 @@ discard block |
||
509 | 509 | $field_params['name'], |
510 | 510 | array( |
511 | 511 | 'tooltip' => $field_params['tooltip'], |
512 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
512 | + 'field_name' => $this->slug . "[" . $field_slug . "]", |
|
513 | 513 | 'field_value' => $current_values[$this->slug][$field_slug], |
514 | 514 | 'download_image' => $current_values[$this->slug]['download_image'][$field_slug], |
515 | 515 | 'field_key' => $field_slug, |
@@ -528,7 +528,7 @@ discard block |
||
528 | 528 | $field_params['name'], |
529 | 529 | array( |
530 | 530 | 'tooltip' => $field_params['tooltip'], |
531 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
531 | + 'field_name' => $this->slug . "[" . $field_slug . "]", |
|
532 | 532 | 'field_value' => $current_values[$this->slug][$field_slug], |
533 | 533 | 'enum_values' => $field_params['enum_values'], |
534 | 534 | 'mapping' => true, |
@@ -540,14 +540,14 @@ discard block |
||
540 | 540 | ) |
541 | 541 | ); |
542 | 542 | |
543 | - } else if($field_params['type'] == 'accordion') { |
|
543 | + } else if ($field_params['type'] == 'accordion') { |
|
544 | 544 | |
545 | 545 | PMXI_API::add_field( |
546 | 546 | 'accordion', |
547 | 547 | $field_params['name'], |
548 | 548 | array( |
549 | 549 | 'tooltip' => $field_params['tooltip'], |
550 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
550 | + 'field_name' => $this->slug . "[" . $field_slug . "]", |
|
551 | 551 | 'field_key' => $field_slug, |
552 | 552 | 'addon_prefix' => $this->slug, |
553 | 553 | 'sub_fields' => $this->get_sub_fields($field_params, $field_slug, $current_values), |
@@ -555,7 +555,7 @@ discard block |
||
555 | 555 | ) |
556 | 556 | ); |
557 | 557 | |
558 | - } else if($field_params['type'] == 'acf') { |
|
558 | + } else if ($field_params['type'] == 'acf') { |
|
559 | 559 | $fieldData = (!empty($field_params['field_obj']->post_content)) ? unserialize($field_params['field_obj']->post_content) : array(); |
560 | 560 | $fieldData['ID'] = $field_params['field_obj']->ID; |
561 | 561 | $fieldData['id'] = $field_params['field_obj']->ID; |
@@ -563,19 +563,19 @@ discard block |
||
563 | 563 | $fieldData['key'] = $field_params['field_obj']->post_name; |
564 | 564 | if (empty($fieldData['name'])) $fieldData['name'] = $field_params['field_obj']->post_excerpt; |
565 | 565 | if (function_exists('pmai_render_field')) { |
566 | - echo pmai_render_field($fieldData, ( ! empty($current_values) ) ? $current_values : array() ); |
|
566 | + echo pmai_render_field($fieldData, (!empty($current_values)) ? $current_values : array()); |
|
567 | 567 | } |
568 | - } else if($field_params['type'] == 'title'){ |
|
568 | + } else if ($field_params['type'] == 'title') { |
|
569 | 569 | ?> |
570 | - <h4 class="wpallimport-add-on-options-title"><?php _e($field_params['name'], 'wp_all_import_plugin'); ?><?php if ( ! empty($field_params['tooltip'])): ?><a href="#help" class="wpallimport-help" title="<?php echo $field_params['tooltip']; ?>" style="position:relative; top: -1px;">?</a><?php endif; ?></h4> |
|
570 | + <h4 class="wpallimport-add-on-options-title"><?php _e($field_params['name'], 'wp_all_import_plugin'); ?><?php if (!empty($field_params['tooltip'])): ?><a href="#help" class="wpallimport-help" title="<?php echo $field_params['tooltip']; ?>" style="position:relative; top: -1px;">?</a><?php endif; ?></h4> |
|
571 | 571 | <?php |
572 | 572 | |
573 | - } else if($field_params['type'] == 'plain_text'){ |
|
573 | + } else if ($field_params['type'] == 'plain_text') { |
|
574 | 574 | if ($field_params['is_html']): |
575 | 575 | echo $field_params['name']; |
576 | 576 | else: |
577 | 577 | ?> |
578 | - <p style="margin: 0 0 12px 0;"><?php echo $field_params['name'];?></p> |
|
578 | + <p style="margin: 0 0 12px 0;"><?php echo $field_params['name']; ?></p> |
|
579 | 579 | <?php |
580 | 580 | endif; |
581 | 581 | } |
@@ -587,19 +587,19 @@ discard block |
||
587 | 587 | * Helper function for nested radio fields |
588 | 588 | * |
589 | 589 | */ |
590 | - function get_sub_fields($field_params, $field_slug, $current_values){ |
|
590 | + function get_sub_fields($field_params, $field_slug, $current_values) { |
|
591 | 591 | $sub_fields = array(); |
592 | - if ( ! empty($field_params['enum_values']) ){ |
|
592 | + if (!empty($field_params['enum_values'])) { |
|
593 | 593 | foreach ($field_params['enum_values'] as $key => $value) { |
594 | 594 | $sub_fields[$key] = array(); |
595 | - if (is_array($value)){ |
|
596 | - if ($field_params['type'] == 'accordion'){ |
|
595 | + if (is_array($value)) { |
|
596 | + if ($field_params['type'] == 'accordion') { |
|
597 | 597 | $sub_fields[$key][] = $this->convert_field($value, $current_values); |
598 | 598 | } |
599 | 599 | else |
600 | 600 | { |
601 | 601 | foreach ($value as $k => $sub_field) { |
602 | - if (is_array($sub_field) and ! empty($this->fields[$sub_field['slug']])) |
|
602 | + if (is_array($sub_field) and !empty($this->fields[$sub_field['slug']])) |
|
603 | 603 | { |
604 | 604 | $sub_fields[$key][] = $this->convert_field($sub_field, $current_values); |
605 | 605 | } |
@@ -611,7 +611,7 @@ discard block |
||
611 | 611 | return $sub_fields; |
612 | 612 | } |
613 | 613 | |
614 | - function convert_field($sub_field, $current_values){ |
|
614 | + function convert_field($sub_field, $current_values) { |
|
615 | 615 | $field = array(); |
616 | 616 | if (!isset($current_values[$this->slug][$sub_field['slug']])) { |
617 | 617 | $current_values[$this->slug][$sub_field['slug']] = isset($sub_field['default_text']) ? $sub_field['default_text'] : ''; |
@@ -623,7 +623,7 @@ discard block |
||
623 | 623 | 'label' => $this->fields[$sub_field['slug']]['name'], |
624 | 624 | 'params' => array( |
625 | 625 | 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
626 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
626 | + 'field_name' => $this->slug . "[" . $sub_field['slug'] . "]", |
|
627 | 627 | 'field_value' => ($current_values[$this->slug][$sub_field['slug']] == '' && $this->isWizard) ? $sub_field['default_text'] : $current_values[$this->slug][$sub_field['slug']], |
628 | 628 | 'is_main_field' => $sub_field['is_main_field'] |
629 | 629 | ) |
@@ -635,7 +635,7 @@ discard block |
||
635 | 635 | 'label' => $this->fields[$sub_field['slug']]['name'], |
636 | 636 | 'params' => array( |
637 | 637 | 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
638 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
638 | + 'field_name' => $this->slug . "[" . $sub_field['slug'] . "]", |
|
639 | 639 | 'field_value' => ($current_values[$this->slug][$sub_field['slug']] == '' && $this->isWizard) ? $sub_field['default_text'] : $current_values[$this->slug][$sub_field['slug']], |
640 | 640 | 'is_main_field' => $sub_field['is_main_field'] |
641 | 641 | ) |
@@ -647,7 +647,7 @@ discard block |
||
647 | 647 | 'label' => $this->fields[$sub_field['slug']]['name'], |
648 | 648 | 'params' => array( |
649 | 649 | 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
650 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
650 | + 'field_name' => $this->slug . "[" . $sub_field['slug'] . "]", |
|
651 | 651 | 'field_value' => ($current_values[$this->slug][$sub_field['slug']] == '' && $this->isWizard) ? $sub_field['default_text'] : $current_values[$this->slug][$sub_field['slug']], |
652 | 652 | 'is_main_field' => $sub_field['is_main_field'] |
653 | 653 | ) |
@@ -659,7 +659,7 @@ discard block |
||
659 | 659 | 'label' => $this->fields[$sub_field['slug']]['name'], |
660 | 660 | 'params' => array( |
661 | 661 | 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
662 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
662 | + 'field_name' => $this->slug . "[" . $sub_field['slug'] . "]", |
|
663 | 663 | 'field_value' => $current_values[$this->slug][$sub_field['slug']], |
664 | 664 | 'download_image' => null, |
665 | 665 | 'field_key' => $sub_field['slug'], |
@@ -668,7 +668,7 @@ discard block |
||
668 | 668 | ) |
669 | 669 | ); |
670 | 670 | |
671 | - if ( array_key_exists( 'download_image', $current_values[$this->slug] ) && array_key_exists( $sub_field['slug'], $current_values[$this->slug]['download_image'] ) ) { |
|
671 | + if (array_key_exists('download_image', $current_values[$this->slug]) && array_key_exists($sub_field['slug'], $current_values[$this->slug]['download_image'])) { |
|
672 | 672 | $field['params']['download_image'] = $current_values[$this->slug]['download_image'][$sub_field['slug']]; |
673 | 673 | } |
674 | 674 | break; |
@@ -678,7 +678,7 @@ discard block |
||
678 | 678 | 'label' => $this->fields[$sub_field['slug']]['name'], |
679 | 679 | 'params' => array( |
680 | 680 | 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
681 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
681 | + 'field_name' => $this->slug . "[" . $sub_field['slug'] . "]", |
|
682 | 682 | 'field_value' => $current_values[$this->slug][$sub_field['slug']], |
683 | 683 | 'download_image' => null, |
684 | 684 | 'field_key' => $sub_field['slug'], |
@@ -687,7 +687,7 @@ discard block |
||
687 | 687 | ) |
688 | 688 | ); |
689 | 689 | |
690 | - if ( array_key_exists( 'download_image', $current_values[$this->slug] ) && array_key_exists( $sub_field['slug'], $current_values[$this->slug]['download_image'] ) ) { |
|
690 | + if (array_key_exists('download_image', $current_values[$this->slug]) && array_key_exists($sub_field['slug'], $current_values[$this->slug]['download_image'])) { |
|
691 | 691 | $field['params']['download_image'] = $current_values[$this->slug]['download_image'][$sub_field['slug']]; |
692 | 692 | } |
693 | 693 | |
@@ -698,7 +698,7 @@ discard block |
||
698 | 698 | 'label' => $this->fields[$sub_field['slug']]['name'], |
699 | 699 | 'params' => array( |
700 | 700 | 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
701 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
701 | + 'field_name' => $this->slug . "[" . $sub_field['slug'] . "]", |
|
702 | 702 | 'field_value' => $current_values[$this->slug][$sub_field['slug']], |
703 | 703 | 'enum_values' => $this->fields[$sub_field['slug']]['enum_values'], |
704 | 704 | 'mapping' => true, |
@@ -717,7 +717,7 @@ discard block |
||
717 | 717 | 'label' => $this->fields[$sub_field['slug']]['name'], |
718 | 718 | 'params' => array( |
719 | 719 | 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
720 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
720 | + 'field_name' => $this->slug . "[" . $sub_field['slug'] . "]", |
|
721 | 721 | 'field_key' => $sub_field['slug'], |
722 | 722 | 'addon_prefix' => $this->slug, |
723 | 723 | 'sub_fields' => $this->get_sub_fields($this->fields[$sub_field['slug']], $sub_field['slug'], $current_values), |
@@ -738,12 +738,12 @@ discard block |
||
738 | 738 | * |
739 | 739 | * |
740 | 740 | */ |
741 | - function add_options( $main_field = false, $title = '', $fields = array() ){ |
|
741 | + function add_options($main_field = false, $title = '', $fields = array()) { |
|
742 | 742 | |
743 | - if ( ! empty($fields) ) |
|
743 | + if (!empty($fields)) |
|
744 | 744 | { |
745 | 745 | |
746 | - if ($main_field){ |
|
746 | + if ($main_field) { |
|
747 | 747 | |
748 | 748 | $main_field['is_main_field'] = true; |
749 | 749 | $fields[] = $main_field; |
@@ -756,7 +756,7 @@ discard block |
||
756 | 756 | |
757 | 757 | } |
758 | 758 | |
759 | - function add_title($title = '', $tooltip = ''){ |
|
759 | + function add_title($title = '', $tooltip = '') { |
|
760 | 760 | |
761 | 761 | if (empty($title)) return; |
762 | 762 | |
@@ -764,7 +764,7 @@ discard block |
||
764 | 764 | |
765 | 765 | } |
766 | 766 | |
767 | - function add_text($text = '', $is_html = false){ |
|
767 | + function add_text($text = '', $is_html = false) { |
|
768 | 768 | |
769 | 769 | if (empty($text)) return; |
770 | 770 | |
@@ -862,10 +862,10 @@ discard block |
||
862 | 862 | margin: 45px 0 15px 0; |
863 | 863 | } |
864 | 864 | </style> |
865 | - <div class="wpallimport-collapsed wpallimport-section wpallimport-addon '.$this->slug.' closed"> |
|
865 | + <div class="wpallimport-collapsed wpallimport-section wpallimport-addon '.$this->slug . ' closed"> |
|
866 | 866 | <div class="wpallimport-content-section"> |
867 | 867 | <div class="wpallimport-collapsed-header"> |
868 | - <h3>'.__($name,'pmxi_plugin').'</h3> |
|
868 | + <h3>'.__($name, 'pmxi_plugin') . '</h3> |
|
869 | 869 | </div> |
870 | 870 | <div class="wpallimport-collapsed-content" style="padding: 0;"> |
871 | 871 | <div class="wpallimport-collapsed-content-inner"> |
@@ -891,8 +891,8 @@ discard block |
||
891 | 891 | * simply add an additional section for attachments |
892 | 892 | * |
893 | 893 | */ |
894 | - function import_files( $slug, $title, $callback = NULL ){ |
|
895 | - $this->import_images( $slug, $title, 'files', $callback); |
|
894 | + function import_files($slug, $title, $callback = NULL) { |
|
895 | + $this->import_images($slug, $title, 'files', $callback); |
|
896 | 896 | } |
897 | 897 | |
898 | 898 | /** |
@@ -900,9 +900,9 @@ discard block |
||
900 | 900 | * simply add an additional section |
901 | 901 | * |
902 | 902 | */ |
903 | - function import_images( $slug, $title, $type = 'images', $callback = NULL ){ |
|
903 | + function import_images($slug, $title, $type = 'images', $callback = NULL) { |
|
904 | 904 | |
905 | - if ( empty($title) or empty($slug) ) return; |
|
905 | + if (empty($title) or empty($slug)) return; |
|
906 | 906 | |
907 | 907 | if (is_array($slug)) { |
908 | 908 | $section_slug = 'pmxi_' . md5(serialize($slug)); |
@@ -920,17 +920,17 @@ discard block |
||
920 | 920 | $this->add_option($section_slug . $option_slug, $value); |
921 | 921 | } |
922 | 922 | |
923 | - if (count($this->image_sections) > 1){ |
|
923 | + if (count($this->image_sections) > 1) { |
|
924 | 924 | add_filter('wp_all_import_is_show_add_new_images', array($this, 'filter_is_show_add_new_images'), 10, 2); |
925 | 925 | } |
926 | 926 | |
927 | 927 | add_filter('wp_all_import_is_allow_import_images', array($this, 'is_allow_import_images'), 10, 2); |
928 | 928 | |
929 | 929 | if ($callback && is_callable($callback)) { |
930 | - add_action( $section_slug, $callback, 10, 4); |
|
930 | + add_action($section_slug, $callback, 10, 4); |
|
931 | 931 | } else { |
932 | 932 | if (function_exists($slug)) { |
933 | - add_action( $section_slug, $slug, 10, 4); |
|
933 | + add_action($section_slug, $slug, 10, 4); |
|
934 | 934 | } |
935 | 935 | } |
936 | 936 | } |
@@ -939,7 +939,7 @@ discard block |
||
939 | 939 | * filter to allow import images for free edition of WP All Import |
940 | 940 | * |
941 | 941 | */ |
942 | - function is_allow_import_images($is_allow, $post_type){ |
|
942 | + function is_allow_import_images($is_allow, $post_type) { |
|
943 | 943 | return ($this->is_active_addon($post_type)) ? true : $is_allow; |
944 | 944 | } |
945 | 945 | |
@@ -948,8 +948,8 @@ discard block |
||
948 | 948 | * filter to control additional images sections |
949 | 949 | * |
950 | 950 | */ |
951 | - function additional_sections($sections){ |
|
952 | - if ( ! empty($this->image_sections) ){ |
|
951 | + function additional_sections($sections) { |
|
952 | + if (!empty($this->image_sections)) { |
|
953 | 953 | foreach ($this->image_sections as $add_section) { |
954 | 954 | $sections[] = $add_section; |
955 | 955 | } |
@@ -962,7 +962,7 @@ discard block |
||
962 | 962 | * remove the 'Don't touch existing images, append new images' when more than one image section is in use. |
963 | 963 | * |
964 | 964 | */ |
965 | - function filter_is_show_add_new_images($is_show, $post_type){ |
|
965 | + function filter_is_show_add_new_images($is_show, $post_type) { |
|
966 | 966 | return ($this->is_active_addon($post_type)) ? false : $is_show; |
967 | 967 | } |
968 | 968 | |
@@ -971,12 +971,12 @@ discard block |
||
971 | 971 | * disable the default images section |
972 | 972 | * |
973 | 973 | */ |
974 | - function disable_default_images($post_type = false){ |
|
974 | + function disable_default_images($post_type = false) { |
|
975 | 975 | |
976 | 976 | add_filter('wp_all_import_is_images_section_enabled', array($this, 'is_enable_default_images_section'), 10, 2); |
977 | 977 | |
978 | 978 | } |
979 | - function is_enable_default_images_section($is_enabled, $post_type){ |
|
979 | + function is_enable_default_images_section($is_enabled, $post_type) { |
|
980 | 980 | |
981 | 981 | return ($this->is_active_addon($post_type)) ? false : true; |
982 | 982 | |
@@ -988,7 +988,7 @@ discard block |
||
988 | 988 | |
989 | 989 | $data = array(); // parsed data |
990 | 990 | |
991 | - if ( ! empty($import->options[$this->slug])){ |
|
991 | + if (!empty($import->options[$this->slug])) { |
|
992 | 992 | |
993 | 993 | $this->logger = $parsingData['logger']; |
994 | 994 | |
@@ -997,9 +997,9 @@ discard block |
||
997 | 997 | $tmp_files = array(); |
998 | 998 | |
999 | 999 | foreach ($options[$this->slug] as $option_name => $option_value) { |
1000 | - if ( isset($import->options[$this->slug][$option_name]) and $import->options[$this->slug][$option_name] != '') { |
|
1000 | + if (isset($import->options[$this->slug][$option_name]) and $import->options[$this->slug][$option_name] != '') { |
|
1001 | 1001 | if ($import->options[$this->slug][$option_name] == "xpath") { |
1002 | - if ($import->options[$this->slug]['xpaths'][$option_name] == ""){ |
|
1002 | + if ($import->options[$this->slug]['xpaths'][$option_name] == "") { |
|
1003 | 1003 | $count and $data[$option_name] = array_fill(0, $count, ""); |
1004 | 1004 | } else { |
1005 | 1005 | $data[$option_name] = XmlImportParser::factory($xml, $cxpath, (string) $import->options[$this->slug]['xpaths'][$option_name], $file)->parse(); |
@@ -1038,11 +1038,11 @@ discard block |
||
1038 | 1038 | |
1039 | 1039 | if ($import_options['update_all_data'] == 'yes') return true; |
1040 | 1040 | |
1041 | - if ( ! $import_options['is_update_custom_fields'] ) return false; |
|
1041 | + if (!$import_options['is_update_custom_fields']) return false; |
|
1042 | 1042 | |
1043 | 1043 | if ($import_options['update_custom_fields_logic'] == "full_update") return true; |
1044 | - if ($import_options['update_custom_fields_logic'] == "only" and ! empty($import_options['custom_fields_list']) and is_array($import_options['custom_fields_list']) and in_array($meta_key, $import_options['custom_fields_list']) ) return true; |
|
1045 | - if ($import_options['update_custom_fields_logic'] == "all_except" and ( empty($import_options['custom_fields_list']) or ! in_array($meta_key, $import_options['custom_fields_list']) )) return true; |
|
1044 | + if ($import_options['update_custom_fields_logic'] == "only" and !empty($import_options['custom_fields_list']) and is_array($import_options['custom_fields_list']) and in_array($meta_key, $import_options['custom_fields_list'])) return true; |
|
1045 | + if ($import_options['update_custom_fields_logic'] == "all_except" and (empty($import_options['custom_fields_list']) or !in_array($meta_key, $import_options['custom_fields_list']))) return true; |
|
1046 | 1046 | |
1047 | 1047 | return false; |
1048 | 1048 | |
@@ -1058,11 +1058,11 @@ discard block |
||
1058 | 1058 | |
1059 | 1059 | if ($import_options['update_all_data'] == 'yes') return true; |
1060 | 1060 | |
1061 | - if ( ! $import_options['is_update_categories'] ) return false; |
|
1061 | + if (!$import_options['is_update_categories']) return false; |
|
1062 | 1062 | |
1063 | 1063 | if ($import_options['update_categories_logic'] == "full_update") return true; |
1064 | - if ($import_options['update_categories_logic'] == "only" and ! empty($import_options['taxonomies_list']) and is_array($import_options['taxonomies_list']) and in_array($tax_name, $import_options['taxonomies_list']) ) return true; |
|
1065 | - if ($import_options['update_categories_logic'] == "all_except" and ( empty($import_options['taxonomies_list']) or ! in_array($tax_name, $import_options['taxonomies_list']) )) return true; |
|
1064 | + if ($import_options['update_categories_logic'] == "only" and !empty($import_options['taxonomies_list']) and is_array($import_options['taxonomies_list']) and in_array($tax_name, $import_options['taxonomies_list'])) return true; |
|
1065 | + if ($import_options['update_categories_logic'] == "all_except" and (empty($import_options['taxonomies_list']) or !in_array($tax_name, $import_options['taxonomies_list']))) return true; |
|
1066 | 1066 | |
1067 | 1067 | return false; |
1068 | 1068 | |
@@ -1083,8 +1083,8 @@ discard block |
||
1083 | 1083 | |
1084 | 1084 | |
1085 | 1085 | function admin_notice_ignore() { |
1086 | - if (isset($_GET[$this->slug.'_ignore']) && '0' == $_GET[$this->slug.'_ignore'] ) { |
|
1087 | - update_option($this->slug.'_ignore', 'true'); |
|
1086 | + if (isset($_GET[$this->slug . '_ignore']) && '0' == $_GET[$this->slug . '_ignore']) { |
|
1087 | + update_option($this->slug . '_ignore', 'true'); |
|
1088 | 1088 | } |
1089 | 1089 | } |
1090 | 1090 | |
@@ -1094,10 +1094,10 @@ discard block |
||
1094 | 1094 | if ($this->notice_text) { |
1095 | 1095 | $notice_text = $this->notice_text; |
1096 | 1096 | } else { |
1097 | - $notice_text = $this->name.' requires WP All Import <a href="http://www.wpallimport.com/" target="_blank">Pro</a> or <a href="http://wordpress.org/plugins/wp-all-import" target="_blank">Free</a>.'; |
|
1097 | + $notice_text = $this->name . ' requires WP All Import <a href="http://www.wpallimport.com/" target="_blank">Pro</a> or <a href="http://wordpress.org/plugins/wp-all-import" target="_blank">Free</a>.'; |
|
1098 | 1098 | } |
1099 | 1099 | |
1100 | - if (!get_option(sanitize_key($this->slug).'_notice_ignore')) { |
|
1100 | + if (!get_option(sanitize_key($this->slug) . '_notice_ignore')) { |
|
1101 | 1101 | |
1102 | 1102 | ?> |
1103 | 1103 | |
@@ -1105,9 +1105,9 @@ discard block |
||
1105 | 1105 | <p><?php _e( |
1106 | 1106 | sprintf( |
1107 | 1107 | $notice_text, |
1108 | - '?'.$this->slug.'_ignore=0' |
|
1108 | + '?' . $this->slug . '_ignore=0' |
|
1109 | 1109 | ), |
1110 | - 'rapid_addon_'.$this->slug |
|
1110 | + 'rapid_addon_' . $this->slug |
|
1111 | 1111 | ); ?></p> |
1112 | 1112 | </div> |
1113 | 1113 | |
@@ -1126,14 +1126,14 @@ discard block |
||
1126 | 1126 | |
1127 | 1127 | $is_show_notice = false; |
1128 | 1128 | |
1129 | - include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); |
|
1129 | + include_once(ABSPATH . 'wp-admin/includes/plugin.php'); |
|
1130 | 1130 | |
1131 | - if ( ! class_exists( 'PMXI_Plugin' ) ) { |
|
1131 | + if (!class_exists('PMXI_Plugin')) { |
|
1132 | 1132 | $is_show_notice = true; |
1133 | 1133 | } |
1134 | 1134 | |
1135 | 1135 | // Supported Themes |
1136 | - if ( ! $is_show_notice and ! empty($conditions['themes']) ){ |
|
1136 | + if (!$is_show_notice and !empty($conditions['themes'])) { |
|
1137 | 1137 | |
1138 | 1138 | $themeInfo = wp_get_theme(); |
1139 | 1139 | $parentInfo = $themeInfo->parent(); |
@@ -1141,7 +1141,7 @@ discard block |
||
1141 | 1141 | |
1142 | 1142 | $is_show_notice = in_array($currentTheme, $conditions['themes']) ? false : true; |
1143 | 1143 | |
1144 | - if ( $is_show_notice and $parentInfo ){ |
|
1144 | + if ($is_show_notice and $parentInfo) { |
|
1145 | 1145 | $parent_theme = $parentInfo->get('Name'); |
1146 | 1146 | $is_show_notice = in_array($parent_theme, $conditions['themes']) ? false : true; |
1147 | 1147 | } |
@@ -1149,22 +1149,22 @@ discard block |
||
1149 | 1149 | } |
1150 | 1150 | |
1151 | 1151 | // Required Plugins |
1152 | - if ( ! $is_show_notice and ! empty($conditions['plugins']) ){ |
|
1152 | + if (!$is_show_notice and !empty($conditions['plugins'])) { |
|
1153 | 1153 | |
1154 | 1154 | $requires_counter = 0; |
1155 | 1155 | foreach ($conditions['plugins'] as $plugin) { |
1156 | - if ( is_plugin_active($plugin) ) $requires_counter++; |
|
1156 | + if (is_plugin_active($plugin)) $requires_counter++; |
|
1157 | 1157 | } |
1158 | 1158 | |
1159 | - if ($requires_counter != count($conditions['plugins'])){ |
|
1159 | + if ($requires_counter != count($conditions['plugins'])) { |
|
1160 | 1160 | $is_show_notice = true; |
1161 | 1161 | } |
1162 | 1162 | |
1163 | 1163 | } |
1164 | 1164 | |
1165 | - if ( $is_show_notice ){ |
|
1165 | + if ($is_show_notice) { |
|
1166 | 1166 | |
1167 | - if ( $notice_text != '' ) { |
|
1167 | + if ($notice_text != '') { |
|
1168 | 1168 | $this->notice_text = $notice_text; |
1169 | 1169 | } |
1170 | 1170 | |
@@ -1173,34 +1173,34 @@ discard block |
||
1173 | 1173 | |
1174 | 1174 | } |
1175 | 1175 | |
1176 | - function log( $m = false){ |
|
1176 | + function log($m = false) { |
|
1177 | 1177 | |
1178 | 1178 | $m and $this->logger and call_user_func($this->logger, $m); |
1179 | 1179 | |
1180 | 1180 | } |
1181 | 1181 | |
1182 | - public function remove_post_type( $type = '' ) { |
|
1183 | - if ( ! empty( $type ) ) { |
|
1184 | - $this->add_option( 'post_types_to_remove', $type ); |
|
1182 | + public function remove_post_type($type = '') { |
|
1183 | + if (!empty($type)) { |
|
1184 | + $this->add_option('post_types_to_remove', $type); |
|
1185 | 1185 | } |
1186 | 1186 | } |
1187 | 1187 | |
1188 | - public function filter_post_types( $custom_types = array(), $custom_type = '' ) { |
|
1188 | + public function filter_post_types($custom_types = array(), $custom_type = '') { |
|
1189 | 1189 | $options = $this->options_array(); |
1190 | 1190 | $option_key = 'post_types_to_remove'; |
1191 | 1191 | |
1192 | - if ( array_key_exists( $option_key, $options ) ) { |
|
1193 | - $type = $options[ $option_key ]; |
|
1192 | + if (array_key_exists($option_key, $options)) { |
|
1193 | + $type = $options[$option_key]; |
|
1194 | 1194 | |
1195 | - if ( ! empty( $type ) ) { |
|
1196 | - if ( ! is_array( $type ) ) { |
|
1197 | - if ( array_key_exists( $type, $custom_types ) ) { |
|
1198 | - unset( $custom_types[ $type ] ); |
|
1195 | + if (!empty($type)) { |
|
1196 | + if (!is_array($type)) { |
|
1197 | + if (array_key_exists($type, $custom_types)) { |
|
1198 | + unset($custom_types[$type]); |
|
1199 | 1199 | } |
1200 | 1200 | } else { |
1201 | - foreach ( $type as $key => $post_type ) { |
|
1202 | - if ( array_key_exists( $post_type, $custom_types ) ) { |
|
1203 | - unset( $custom_types[ $post_type ] ); |
|
1201 | + foreach ($type as $key => $post_type) { |
|
1202 | + if (array_key_exists($post_type, $custom_types)) { |
|
1203 | + unset($custom_types[$post_type]); |
|
1204 | 1204 | } |
1205 | 1205 | } |
1206 | 1206 | } |
@@ -1209,26 +1209,26 @@ discard block |
||
1209 | 1209 | return $custom_types; |
1210 | 1210 | } |
1211 | 1211 | |
1212 | - public function sort_post_types( array $order ) { |
|
1212 | + public function sort_post_types(array $order) { |
|
1213 | 1213 | $options = $this->options_array(); |
1214 | 1214 | $option_key = 'post_type_move'; |
1215 | 1215 | |
1216 | - if ( array_key_exists( $option_key, $options ) ) { |
|
1217 | - $move_rules = maybe_unserialize( $options[ $option_key ] ); |
|
1216 | + if (array_key_exists($option_key, $options)) { |
|
1217 | + $move_rules = maybe_unserialize($options[$option_key]); |
|
1218 | 1218 | |
1219 | - foreach ( $move_rules as $rule ) { |
|
1219 | + foreach ($move_rules as $rule) { |
|
1220 | 1220 | $move_this = $rule['move_this']; |
1221 | 1221 | $move_to = $rule['move_to']; |
1222 | - if ( $move_to > count( $order ) ) { |
|
1223 | - if ( ( $rm_key = array_search( $move_this, $order ) ) !== false ) { |
|
1224 | - unset( $order[ $rm_key ] ); |
|
1222 | + if ($move_to > count($order)) { |
|
1223 | + if (($rm_key = array_search($move_this, $order)) !== false) { |
|
1224 | + unset($order[$rm_key]); |
|
1225 | 1225 | } |
1226 | - array_push( $order, $move_this ); |
|
1226 | + array_push($order, $move_this); |
|
1227 | 1227 | } else { |
1228 | - if ( ( $rm_key = array_search( $move_this, $order ) ) !== false ) { |
|
1229 | - unset( $order[ $rm_key ] ); |
|
1228 | + if (($rm_key = array_search($move_this, $order)) !== false) { |
|
1229 | + unset($order[$rm_key]); |
|
1230 | 1230 | } |
1231 | - array_splice( $order, $move_to, 0, $move_this ); |
|
1231 | + array_splice($order, $move_to, 0, $move_this); |
|
1232 | 1232 | } |
1233 | 1233 | } |
1234 | 1234 | |
@@ -1238,57 +1238,57 @@ discard block |
||
1238 | 1238 | return $order; |
1239 | 1239 | } |
1240 | 1240 | |
1241 | - public function move_post_type( $move_this = null, $move_to = null ) { |
|
1241 | + public function move_post_type($move_this = null, $move_to = null) { |
|
1242 | 1242 | $move_rules = array(); |
1243 | 1243 | |
1244 | - if ( ! is_array( $move_this ) && ! is_array( $move_to ) ) { |
|
1244 | + if (!is_array($move_this) && !is_array($move_to)) { |
|
1245 | 1245 | $move_rules[] = array( |
1246 | 1246 | 'move_this' => $move_this, |
1247 | 1247 | 'move_to' => $move_to |
1248 | 1248 | ); |
1249 | 1249 | } else { |
1250 | - foreach ( $move_this as $key => $move_post ) { |
|
1250 | + foreach ($move_this as $key => $move_post) { |
|
1251 | 1251 | $move_rules[] = array( |
1252 | 1252 | 'move_this' => $move_post, |
1253 | - 'move_to' => $move_to[ $key ] |
|
1253 | + 'move_to' => $move_to[$key] |
|
1254 | 1254 | ); |
1255 | 1255 | } |
1256 | 1256 | } |
1257 | 1257 | |
1258 | - $this->add_option( 'post_type_move', $move_rules ); |
|
1258 | + $this->add_option('post_type_move', $move_rules); |
|
1259 | 1259 | } |
1260 | 1260 | |
1261 | - public function set_post_type_image( $post_type = null, $image = null ) { |
|
1261 | + public function set_post_type_image($post_type = null, $image = null) { |
|
1262 | 1262 | $post_type_image_rules = array(); |
1263 | 1263 | |
1264 | - if ( ! is_array( $post_type ) ) { |
|
1264 | + if (!is_array($post_type)) { |
|
1265 | 1265 | |
1266 | - $post_type_image_rules[ $post_type ] = array( |
|
1266 | + $post_type_image_rules[$post_type] = array( |
|
1267 | 1267 | 'post_type' => $post_type, |
1268 | 1268 | 'image' => $image |
1269 | 1269 | ); |
1270 | 1270 | |
1271 | 1271 | } else { |
1272 | 1272 | |
1273 | - if ( count( $post_type ) == count( $image ) ) { |
|
1273 | + if (count($post_type) == count($image)) { |
|
1274 | 1274 | |
1275 | - foreach ( $post_type as $key => $post_name ) { |
|
1276 | - $post_type_image_rules[ $post_name ] = array( |
|
1275 | + foreach ($post_type as $key => $post_name) { |
|
1276 | + $post_type_image_rules[$post_name] = array( |
|
1277 | 1277 | 'post_type' => $post_name, |
1278 | - 'image' => $image[ $key ] |
|
1278 | + 'image' => $image[$key] |
|
1279 | 1279 | ); |
1280 | 1280 | } |
1281 | 1281 | } |
1282 | 1282 | } |
1283 | 1283 | |
1284 | - $this->add_option( 'post_type_image', $post_type_image_rules ); |
|
1284 | + $this->add_option('post_type_image', $post_type_image_rules); |
|
1285 | 1285 | } |
1286 | 1286 | |
1287 | - public function post_type_image( $image ) { |
|
1287 | + public function post_type_image($image) { |
|
1288 | 1288 | $options = $this->options_array(); |
1289 | 1289 | $option_key = 'post_type_image'; |
1290 | - if ( array_key_exists( $option_key, $options ) ) { |
|
1291 | - $post_type_image_rules = maybe_unserialize( $options[ $option_key ] ); |
|
1290 | + if (array_key_exists($option_key, $options)) { |
|
1291 | + $post_type_image_rules = maybe_unserialize($options[$option_key]); |
|
1292 | 1292 | return $post_type_image_rules; |
1293 | 1293 | } |
1294 | 1294 | return $image; |
@@ -5,9 +5,9 @@ discard block |
||
5 | 5 | * @package GetPaid |
6 | 6 | */ |
7 | 7 | |
8 | -defined( 'ABSPATH' ) || exit; |
|
8 | +defined('ABSPATH') || exit; |
|
9 | 9 | |
10 | -include plugin_dir_path( __FILE__ ) . 'rapid-addon.php'; |
|
10 | +include plugin_dir_path(__FILE__) . 'rapid-addon.php'; |
|
11 | 11 | |
12 | 12 | /** |
13 | 13 | * WP All Import class. |
@@ -34,8 +34,8 @@ discard block |
||
34 | 34 | public function __construct() { |
35 | 35 | |
36 | 36 | // Init each store separately. |
37 | - foreach ( array_keys( $this->datastores ) as $key ) { |
|
38 | - $this->init_store( $key ); |
|
37 | + foreach (array_keys($this->datastores) as $key) { |
|
38 | + $this->init_store($key); |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | } |
@@ -43,51 +43,51 @@ discard block |
||
43 | 43 | /** |
44 | 44 | * Inits a store. |
45 | 45 | */ |
46 | - public function init_store( $key ) { |
|
46 | + public function init_store($key) { |
|
47 | 47 | |
48 | 48 | // Register the add-on. |
49 | - $this->add_ons[ $key ] = new RapidAddon( 'GetPaid', 'getpaid_wp_al_import_' . $key ); |
|
49 | + $this->add_ons[$key] = new RapidAddon('GetPaid', 'getpaid_wp_al_import_' . $key); |
|
50 | 50 | |
51 | 51 | // Create import function. |
52 | - $import_function = function ( $post_id, $data, $import_options, $_post ) use ( $key ) { |
|
53 | - $this->import_store( $key, $post_id, $data, $import_options, $_post ); |
|
52 | + $import_function = function($post_id, $data, $import_options, $_post) use ($key) { |
|
53 | + $this->import_store($key, $post_id, $data, $import_options, $_post); |
|
54 | 54 | }; |
55 | 55 | |
56 | - $this->add_ons[ $key ]->set_import_function( $import_function ); |
|
56 | + $this->add_ons[$key]->set_import_function($import_function); |
|
57 | 57 | |
58 | 58 | // Register store fields. |
59 | - $this->add_store_fields( $key ); |
|
59 | + $this->add_store_fields($key); |
|
60 | 60 | |
61 | 61 | // Only load on the correct post type. |
62 | - $this->add_ons[ $key ]->run( array( 'post_types' => array( 'wpi_' . $key ) ) ); |
|
62 | + $this->add_ons[$key]->run(array('post_types' => array('wpi_' . $key))); |
|
63 | 63 | |
64 | 64 | // Disable images. |
65 | - $this->add_ons[ $key ]->disable_default_images(); |
|
65 | + $this->add_ons[$key]->disable_default_images(); |
|
66 | 66 | |
67 | 67 | } |
68 | 68 | |
69 | 69 | /** |
70 | 70 | * Retrieves store fields. |
71 | 71 | */ |
72 | - public function get_store_fields( $key ) { |
|
72 | + public function get_store_fields($key) { |
|
73 | 73 | |
74 | 74 | // Fetch from data/invoice-schema.php, from data/discount-schema.php, from data/item-schema.php |
75 | - $fields = wpinv_get_data( $key . '-schema' ); |
|
75 | + $fields = wpinv_get_data($key . '-schema'); |
|
76 | 76 | |
77 | - if ( empty( $fields ) ) { |
|
77 | + if (empty($fields)) { |
|
78 | 78 | return array(); |
79 | 79 | } |
80 | 80 | |
81 | 81 | // Clean the fields. |
82 | 82 | $prepared = array(); |
83 | - foreach ( $fields as $id => $field ) { |
|
83 | + foreach ($fields as $id => $field) { |
|
84 | 84 | |
85 | 85 | // Skip read only fields. |
86 | - if ( ! empty( $field['readonly'] ) ) { |
|
86 | + if (!empty($field['readonly'])) { |
|
87 | 87 | continue; |
88 | 88 | } |
89 | 89 | |
90 | - $prepared[ $id ] = $field; |
|
90 | + $prepared[$id] = $field; |
|
91 | 91 | |
92 | 92 | } |
93 | 93 | |
@@ -98,10 +98,10 @@ discard block |
||
98 | 98 | /** |
99 | 99 | * Registers store fields. |
100 | 100 | */ |
101 | - public function add_store_fields( $key ) { |
|
101 | + public function add_store_fields($key) { |
|
102 | 102 | |
103 | - foreach ( $this->get_store_fields( $key ) as $field_id => $data ) { |
|
104 | - $this->add_ons[ $key ]->add_field( $field_id, $data['description'], 'text' ); |
|
103 | + foreach ($this->get_store_fields($key) as $field_id => $data) { |
|
104 | + $this->add_ons[$key]->add_field($field_id, $data['description'], 'text'); |
|
105 | 105 | } |
106 | 106 | |
107 | 107 | } |
@@ -109,36 +109,36 @@ discard block |
||
109 | 109 | /** |
110 | 110 | * Handles store imports. |
111 | 111 | */ |
112 | - public function import_store( $key, $post_id, $data, $import_options, $_post ) { |
|
112 | + public function import_store($key, $post_id, $data, $import_options, $_post) { |
|
113 | 113 | |
114 | 114 | // Is the store class set? |
115 | - if ( ! isset( $this->datastores[ $key ] ) ) { |
|
115 | + if (!isset($this->datastores[$key])) { |
|
116 | 116 | return; |
117 | 117 | } |
118 | 118 | |
119 | 119 | /**@var GetPaid_Data */ |
120 | - $data_store = new $this->datastores[ $key ]( $post_id ); |
|
120 | + $data_store = new $this->datastores[$key]($post_id); |
|
121 | 121 | |
122 | 122 | // Abort if the invoice/item/discount does not exist. |
123 | - if ( ! $data_store->exists() ) { |
|
123 | + if (!$data_store->exists()) { |
|
124 | 124 | return; |
125 | 125 | } |
126 | 126 | |
127 | 127 | // Prepare data props. |
128 | 128 | $prepared = array(); |
129 | 129 | |
130 | - foreach ( array_keys( $this->get_store_fields( $key ) ) as $field ) { |
|
130 | + foreach (array_keys($this->get_store_fields($key)) as $field) { |
|
131 | 131 | // Make sure the user has allowed this field to be updated. |
132 | - if ( empty( $_post['ID'] ) || $this->add_ons[ $key ]->can_update_meta( $field, $import_options ) ) { |
|
132 | + if (empty($_post['ID']) || $this->add_ons[$key]->can_update_meta($field, $import_options)) { |
|
133 | 133 | |
134 | 134 | // Update the custom field with the imported data. |
135 | - $prepared[ $field ] = $data[ $field ]; |
|
135 | + $prepared[$field] = $data[$field]; |
|
136 | 136 | } |
137 | 137 | } |
138 | 138 | |
139 | 139 | // Only update if we have something to update. |
140 | - if ( ! empty( $prepared ) ) { |
|
141 | - $data_store->set_props( $prepared ); |
|
140 | + if (!empty($prepared)) { |
|
141 | + $data_store->set_props($prepared); |
|
142 | 142 | $data_store->save(); |
143 | 143 | } |
144 | 144 |
@@ -12,75 +12,75 @@ discard block |
||
12 | 12 | * @var GetPaid_Payment_Form $form |
13 | 13 | */ |
14 | 14 | |
15 | -defined( 'ABSPATH' ) || exit; |
|
15 | +defined('ABSPATH') || exit; |
|
16 | 16 | |
17 | -$field_type = sanitize_key( $field_type ); |
|
17 | +$field_type = sanitize_key($field_type); |
|
18 | 18 | |
19 | 19 | echo "<div class='row $field_type'>"; |
20 | 20 | |
21 | 21 | // Prepare current user. |
22 | -if ( ! empty( $form->invoice ) ) { |
|
22 | +if (!empty($form->invoice)) { |
|
23 | 23 | $user_id = $form->invoice->get_user_id(); |
24 | 24 | } |
25 | 25 | |
26 | -if ( empty( $user_id ) && is_user_logged_in() ) { |
|
26 | +if (empty($user_id) && is_user_logged_in()) { |
|
27 | 27 | $user_id = get_current_user_id(); |
28 | 28 | } |
29 | 29 | |
30 | -if ( ! empty( $user_id ) ) { |
|
31 | - $user = wp_get_current_user(); |
|
30 | +if (!empty($user_id)) { |
|
31 | + $user = wp_get_current_user(); |
|
32 | 32 | } |
33 | 33 | |
34 | -foreach ( $fields as $address_field ) { |
|
34 | +foreach ($fields as $address_field) { |
|
35 | 35 | |
36 | 36 | // Skip if it is hidden. |
37 | - if ( empty( $address_field['visible'] ) ) { |
|
37 | + if (empty($address_field['visible'])) { |
|
38 | 38 | continue; |
39 | 39 | } |
40 | 40 | |
41 | - do_action( 'getpaid_payment_form_address_field_before_' . $address_field['name'], $field_type, $address_field ); |
|
41 | + do_action('getpaid_payment_form_address_field_before_' . $address_field['name'], $field_type, $address_field); |
|
42 | 42 | |
43 | 43 | // Prepare variables. |
44 | 44 | $field_name = $address_field['name']; |
45 | 45 | $field_name = "{$field_type}[$field_name]"; |
46 | - $wrap_class = getpaid_get_form_element_grid_class( $address_field ); |
|
47 | - $wrap_class = esc_attr( "$wrap_class getpaid-address-field-wrapper" ); |
|
48 | - $placeholder = empty( $address_field['placeholder'] ) ? '' : esc_attr( $address_field['placeholder'] ); |
|
49 | - $description = empty( $address_field['description'] ) ? '' : wp_kses_post( $address_field['description'] ); |
|
50 | - $value = ! empty( $user_id ) ? get_user_meta( $user_id, '_' . $address_field['name'], true ) : ''; |
|
51 | - $label = empty( $address_field['label'] ) ? '' : wp_kses_post( $address_field['label'] ); |
|
52 | - |
|
53 | - $method_name = 'get_' . str_replace( 'wpinv_', '', $address_field['name'] ); |
|
54 | - if ( ! empty( $form->invoice ) && is_callable( array( $form->invoice, $method_name ) ) ) { |
|
55 | - $value = call_user_func( array( $form->invoice, $method_name ) ); |
|
46 | + $wrap_class = getpaid_get_form_element_grid_class($address_field); |
|
47 | + $wrap_class = esc_attr("$wrap_class getpaid-address-field-wrapper"); |
|
48 | + $placeholder = empty($address_field['placeholder']) ? '' : esc_attr($address_field['placeholder']); |
|
49 | + $description = empty($address_field['description']) ? '' : wp_kses_post($address_field['description']); |
|
50 | + $value = !empty($user_id) ? get_user_meta($user_id, '_' . $address_field['name'], true) : ''; |
|
51 | + $label = empty($address_field['label']) ? '' : wp_kses_post($address_field['label']); |
|
52 | + |
|
53 | + $method_name = 'get_' . str_replace('wpinv_', '', $address_field['name']); |
|
54 | + if (!empty($form->invoice) && is_callable(array($form->invoice, $method_name))) { |
|
55 | + $value = call_user_func(array($form->invoice, $method_name)); |
|
56 | 56 | } |
57 | 57 | |
58 | - if ( empty( $value ) && 'wpinv_first_name' == $address_field['name'] && ! empty( $user ) ) { |
|
58 | + if (empty($value) && 'wpinv_first_name' == $address_field['name'] && !empty($user)) { |
|
59 | 59 | $value = $user->first_name; |
60 | 60 | } |
61 | 61 | |
62 | - if ( empty( $value ) && 'wpinv_last_name' == $address_field['name'] && ! empty( $user ) ) { |
|
62 | + if (empty($value) && 'wpinv_last_name' == $address_field['name'] && !empty($user)) { |
|
63 | 63 | $value = $user->last_name; |
64 | 64 | } |
65 | 65 | |
66 | - if ( ! empty( $address_field['required'] ) ) { |
|
66 | + if (!empty($address_field['required'])) { |
|
67 | 67 | $label .= "<span class='text-danger'> *</span>"; |
68 | 68 | } |
69 | 69 | |
70 | 70 | // Display the country. |
71 | - if ( 'wpinv_country' == $address_field['name'] ) { |
|
71 | + if ('wpinv_country' == $address_field['name']) { |
|
72 | 72 | |
73 | 73 | echo "<div class='form-group $wrap_class getpaid-address-field-wrapper__country'"; |
74 | 74 | |
75 | 75 | echo aui()->select( |
76 | 76 | array( |
77 | 77 | 'options' => wpinv_get_country_list(), |
78 | - 'name' => esc_attr( $field_name ), |
|
79 | - 'id' => sanitize_html_class( $field_name ) . $uniqid, |
|
80 | - 'value' => esc_attr( $country ), |
|
78 | + 'name' => esc_attr($field_name), |
|
79 | + 'id' => sanitize_html_class($field_name) . $uniqid, |
|
80 | + 'value' => esc_attr($country), |
|
81 | 81 | 'placeholder' => $placeholder, |
82 | - 'required' => ! empty( $address_field['required'] ), |
|
83 | - 'label' => wp_kses_post( $label ), |
|
82 | + 'required' => !empty($address_field['required']), |
|
83 | + 'label' => wp_kses_post($label), |
|
84 | 84 | 'label_type' => 'vertical', |
85 | 85 | 'help_text' => $description, |
86 | 86 | 'class' => 'getpaid-address-field wpinv_country', |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | ) |
94 | 94 | ); |
95 | 95 | |
96 | - if ( wpinv_should_validate_vat_number() ) { |
|
96 | + if (wpinv_should_validate_vat_number()) { |
|
97 | 97 | |
98 | 98 | echo aui()->input( |
99 | 99 | array( |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | 'id' => "shipping-toggle$uniqid", |
103 | 103 | 'wrap_class' => "getpaid-address-field-wrapper__address-confirm mt-1 d-none", |
104 | 104 | 'required' => false, |
105 | - 'label' => __( 'I certify that I live in the country selected above', 'invoicing' ) . "<span class='text-danger'> *</span>", |
|
105 | + 'label' => __('I certify that I live in the country selected above', 'invoicing') . "<span class='text-danger'> *</span>", |
|
106 | 106 | 'value' => 1, |
107 | 107 | 'checked' => true, |
108 | 108 | 'class' => 'w-auto', |
@@ -116,27 +116,27 @@ discard block |
||
116 | 116 | } |
117 | 117 | |
118 | 118 | // Display the state. |
119 | - else if ( 'wpinv_state' == $address_field['name'] ) { |
|
119 | + else if ('wpinv_state' == $address_field['name']) { |
|
120 | 120 | |
121 | - if ( empty( $value ) ) { |
|
121 | + if (empty($value)) { |
|
122 | 122 | $value = wpinv_get_default_state(); |
123 | 123 | } |
124 | 124 | |
125 | - echo getpaid_get_states_select_markup ( |
|
125 | + echo getpaid_get_states_select_markup( |
|
126 | 126 | $country, |
127 | 127 | $value, |
128 | 128 | $placeholder, |
129 | 129 | $label, |
130 | 130 | $description, |
131 | - ! empty( $address_field['required'] ), |
|
131 | + !empty($address_field['required']), |
|
132 | 132 | $wrap_class, |
133 | 133 | $field_name |
134 | 134 | ); |
135 | 135 | |
136 | 136 | } else { |
137 | 137 | |
138 | - $key = str_replace( 'wpinv_', '', $address_field['name'] ); |
|
139 | - $key = esc_attr( str_replace( '_', '-', $key ) ); |
|
138 | + $key = str_replace('wpinv_', '', $address_field['name']); |
|
139 | + $key = esc_attr(str_replace('_', '-', $key)); |
|
140 | 140 | $autocomplete = ''; |
141 | 141 | $replacements = array( |
142 | 142 | 'zip' => 'postal-code', |
@@ -149,37 +149,37 @@ discard block |
||
149 | 149 | ); |
150 | 150 | |
151 | 151 | |
152 | - if ( isset( $replacements[ $key ] ) ) { |
|
152 | + if (isset($replacements[$key])) { |
|
153 | 153 | $autocomplete = array( |
154 | - 'autocomplete' => "$field_type {$replacements[ $key ]}", |
|
154 | + 'autocomplete' => "$field_type {$replacements[$key]}", |
|
155 | 155 | ); |
156 | 156 | } |
157 | 157 | |
158 | 158 | $append = ''; |
159 | 159 | |
160 | - if ( 'billing' === $field_type && wpinv_should_validate_vat_number() && 'vat-number' === $key ) { |
|
161 | - $valid = esc_attr__( 'Valid', 'invoicing' ); |
|
162 | - $invalid = esc_attr__( 'Invalid', 'invoicing' ); |
|
163 | - $validate = esc_attr__( 'Validate', 'invoicing' ); |
|
160 | + if ('billing' === $field_type && wpinv_should_validate_vat_number() && 'vat-number' === $key) { |
|
161 | + $valid = esc_attr__('Valid', 'invoicing'); |
|
162 | + $invalid = esc_attr__('Invalid', 'invoicing'); |
|
163 | + $validate = esc_attr__('Validate', 'invoicing'); |
|
164 | 164 | $append = "<span class='btn btn-primary getpaid-vat-number-validate' data-valid='$valid' data-invalid='$invalid' data-validate='$validate'>$validate</span>"; |
165 | 165 | } |
166 | 166 | |
167 | - if ( 'billing' === $field_type ) { |
|
168 | - $description .= '<div class="getpaid-error-' . sanitize_html_class( $field_name ) . ' getpaid-custom-payment-form-errors alert alert-danger d-none"></div>'; |
|
167 | + if ('billing' === $field_type) { |
|
168 | + $description .= '<div class="getpaid-error-' . sanitize_html_class($field_name) . ' getpaid-custom-payment-form-errors alert alert-danger d-none"></div>'; |
|
169 | 169 | } |
170 | 170 | |
171 | 171 | echo aui()->input( |
172 | 172 | array( |
173 | - 'name' => esc_attr( $field_name ), |
|
174 | - 'id' => sanitize_html_class( $field_name ) . $uniqid, |
|
175 | - 'required' => ! empty( $address_field['required'] ), |
|
173 | + 'name' => esc_attr($field_name), |
|
174 | + 'id' => sanitize_html_class($field_name) . $uniqid, |
|
175 | + 'required' => !empty($address_field['required']), |
|
176 | 176 | 'placeholder' => $placeholder, |
177 | - 'label' => wp_kses_post( $label ), |
|
177 | + 'label' => wp_kses_post($label), |
|
178 | 178 | 'label_type' => 'vertical', |
179 | 179 | 'help_text' => $description, |
180 | 180 | 'type' => 'text', |
181 | - 'value' => esc_attr( $value ), |
|
182 | - 'class' => 'getpaid-address-field ' . esc_attr( $address_field['name'] ), |
|
181 | + 'value' => esc_attr($value), |
|
182 | + 'class' => 'getpaid-address-field ' . esc_attr($address_field['name']), |
|
183 | 183 | 'wrap_class' => "$wrap_class getpaid-address-field-wrapper__$key", |
184 | 184 | 'label_class' => 'getpaid-address-field-label getpaid-address-field-label__' . $key, |
185 | 185 | 'extra_attributes' => $autocomplete, |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | |
190 | 190 | } |
191 | 191 | |
192 | - do_action( 'getpaid_payment_form_address_field_after_' . $address_field['name'], $field_type, $address_field ); |
|
192 | + do_action('getpaid_payment_form_address_field_after_' . $address_field['name'], $field_type, $address_field); |
|
193 | 193 | } |
194 | 194 | |
195 | 195 | echo "</div>"; |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | * |
5 | 5 | */ |
6 | 6 | |
7 | -defined( 'ABSPATH' ) || exit; |
|
7 | +defined('ABSPATH') || exit; |
|
8 | 8 | |
9 | 9 | /** |
10 | 10 | * Payment form submission refresh prices class |
@@ -23,24 +23,24 @@ discard block |
||
23 | 23 | * |
24 | 24 | * @param GetPaid_Payment_Form_Submission $submission |
25 | 25 | */ |
26 | - public function __construct( $submission ) { |
|
26 | + public function __construct($submission) { |
|
27 | 27 | |
28 | 28 | $this->response = array( |
29 | 29 | 'submission_id' => $submission->id, |
30 | 30 | 'has_recurring' => $submission->has_recurring, |
31 | 31 | 'has_subscription_group' => $submission->has_subscription_group(), |
32 | 32 | 'has_multiple_subscription_groups' => $submission->has_multiple_subscription_groups(), |
33 | - 'is_free' => ! $submission->should_collect_payment_details(), |
|
33 | + 'is_free' => !$submission->should_collect_payment_details(), |
|
34 | 34 | ); |
35 | 35 | |
36 | - $this->add_totals( $submission ); |
|
37 | - $this->add_texts( $submission ); |
|
38 | - $this->add_items( $submission ); |
|
39 | - $this->add_fees( $submission ); |
|
40 | - $this->add_discounts( $submission ); |
|
41 | - $this->add_taxes( $submission ); |
|
42 | - $this->add_gateways( $submission ); |
|
43 | - $this->add_data( $submission ); |
|
36 | + $this->add_totals($submission); |
|
37 | + $this->add_texts($submission); |
|
38 | + $this->add_items($submission); |
|
39 | + $this->add_fees($submission); |
|
40 | + $this->add_discounts($submission); |
|
41 | + $this->add_taxes($submission); |
|
42 | + $this->add_gateways($submission); |
|
43 | + $this->add_data($submission); |
|
44 | 44 | |
45 | 45 | } |
46 | 46 | |
@@ -49,30 +49,30 @@ discard block |
||
49 | 49 | * |
50 | 50 | * @param GetPaid_Payment_Form_Submission $submission |
51 | 51 | */ |
52 | - public function add_totals( $submission ) { |
|
52 | + public function add_totals($submission) { |
|
53 | 53 | |
54 | 54 | $this->response = array_merge( |
55 | 55 | $this->response, |
56 | 56 | array( |
57 | 57 | |
58 | 58 | 'totals' => array( |
59 | - 'subtotal' => $submission->format_amount( $submission->get_subtotal() ), |
|
60 | - 'discount' => $submission->format_amount( $submission->get_discount() ), |
|
61 | - 'fees' => $submission->format_amount( $submission->get_fee() ), |
|
62 | - 'tax' => $submission->format_amount( $submission->get_tax() ), |
|
63 | - 'total' => $submission->format_amount( $submission->get_total() ), |
|
64 | - 'raw_total' => html_entity_decode( sanitize_text_field( $submission->format_amount( $submission->get_total() ) ), ENT_QUOTES ), |
|
59 | + 'subtotal' => $submission->format_amount($submission->get_subtotal()), |
|
60 | + 'discount' => $submission->format_amount($submission->get_discount()), |
|
61 | + 'fees' => $submission->format_amount($submission->get_fee()), |
|
62 | + 'tax' => $submission->format_amount($submission->get_tax()), |
|
63 | + 'total' => $submission->format_amount($submission->get_total()), |
|
64 | + 'raw_total' => html_entity_decode(sanitize_text_field($submission->format_amount($submission->get_total())), ENT_QUOTES), |
|
65 | 65 | ), |
66 | 66 | |
67 | 67 | 'recurring' => array( |
68 | - 'subtotal' => $submission->format_amount( $submission->get_recurring_subtotal() ), |
|
69 | - 'discount' => $submission->format_amount( $submission->get_recurring_discount() ), |
|
70 | - 'fees' => $submission->format_amount( $submission->get_recurring_fee() ), |
|
71 | - 'tax' => $submission->format_amount( $submission->get_recurring_tax() ), |
|
72 | - 'total' => $submission->format_amount( $submission->get_recurring_total() ), |
|
68 | + 'subtotal' => $submission->format_amount($submission->get_recurring_subtotal()), |
|
69 | + 'discount' => $submission->format_amount($submission->get_recurring_discount()), |
|
70 | + 'fees' => $submission->format_amount($submission->get_recurring_fee()), |
|
71 | + 'tax' => $submission->format_amount($submission->get_recurring_tax()), |
|
72 | + 'total' => $submission->format_amount($submission->get_recurring_total()), |
|
73 | 73 | ), |
74 | 74 | |
75 | - 'initial_amt' => wpinv_round_amount( $submission->get_total(), null, true ), |
|
75 | + 'initial_amt' => wpinv_round_amount($submission->get_total(), null, true), |
|
76 | 76 | 'currency' => $submission->get_currency(), |
77 | 77 | |
78 | 78 | ) |
@@ -85,53 +85,53 @@ discard block |
||
85 | 85 | * |
86 | 86 | * @param GetPaid_Payment_Form_Submission $submission |
87 | 87 | */ |
88 | - public function add_texts( $submission ) { |
|
88 | + public function add_texts($submission) { |
|
89 | 89 | |
90 | - $payable = $submission->format_amount( $submission->get_total() ); |
|
91 | - $groups = getpaid_get_subscription_groups( $submission ); |
|
90 | + $payable = $submission->format_amount($submission->get_total()); |
|
91 | + $groups = getpaid_get_subscription_groups($submission); |
|
92 | 92 | |
93 | - if ( $submission->has_recurring && 2 > count( $groups ) ) { |
|
93 | + if ($submission->has_recurring && 2 > count($groups)) { |
|
94 | 94 | |
95 | - $recurring = new WPInv_Item( $submission->has_recurring ); |
|
96 | - $period = getpaid_get_subscription_period_label( $recurring->get_recurring_period( true ), $recurring->get_recurring_interval(), '' ); |
|
97 | - $main_item = reset( $groups ); |
|
95 | + $recurring = new WPInv_Item($submission->has_recurring); |
|
96 | + $period = getpaid_get_subscription_period_label($recurring->get_recurring_period(true), $recurring->get_recurring_interval(), ''); |
|
97 | + $main_item = reset($groups); |
|
98 | 98 | |
99 | - if ( $submission->get_total() == $submission->get_recurring_total() ) { |
|
99 | + if ($submission->get_total() == $submission->get_recurring_total()) { |
|
100 | 100 | $payable = "$payable / $period"; |
101 | - } else if ( $main_item ) { |
|
101 | + } else if ($main_item) { |
|
102 | 102 | |
103 | - $main_item = reset( $main_item ); |
|
103 | + $main_item = reset($main_item); |
|
104 | 104 | |
105 | 105 | // Calculate the next renewal date. |
106 | - $_period = $main_item->get_recurring_period( true ); |
|
106 | + $_period = $main_item->get_recurring_period(true); |
|
107 | 107 | $_interval = $main_item->get_recurring_interval(); |
108 | 108 | |
109 | 109 | // If the subscription item has a trial period... |
110 | - if ( $main_item->has_free_trial() ) { |
|
111 | - $_period = $main_item->get_trial_period( true ); |
|
110 | + if ($main_item->has_free_trial()) { |
|
111 | + $_period = $main_item->get_trial_period(true); |
|
112 | 112 | $_interval = $main_item->get_trial_interval(); |
113 | 113 | } |
114 | 114 | |
115 | 115 | $payable = sprintf( |
116 | - __( '%1$s (renews at %2$s / %3$s)', 'invoicing' ), |
|
117 | - $submission->format_amount( $submission->get_total() ), |
|
118 | - $submission->format_amount( $submission->get_recurring_total() ), |
|
116 | + __('%1$s (renews at %2$s / %3$s)', 'invoicing'), |
|
117 | + $submission->format_amount($submission->get_total()), |
|
118 | + $submission->format_amount($submission->get_recurring_total()), |
|
119 | 119 | $period |
120 | 120 | ); |
121 | 121 | |
122 | 122 | $payable .= sprintf( |
123 | 123 | '<small class="text-muted form-text">%s</small>', |
124 | 124 | sprintf( |
125 | - __( 'First renewal on %s', 'invoicing' ), |
|
126 | - getpaid_format_date( date( 'Y-m-d H:i:s', strtotime( "+$_interval $_period", current_time( 'timestamp' ) ) ) ) |
|
125 | + __('First renewal on %s', 'invoicing'), |
|
126 | + getpaid_format_date(date('Y-m-d H:i:s', strtotime("+$_interval $_period", current_time('timestamp')))) |
|
127 | 127 | ) |
128 | 128 | ); |
129 | 129 | |
130 | 130 | } else { |
131 | 131 | $payable = sprintf( |
132 | - __( '%1$s (renews at %2$s / %3$s)', 'invoicing' ), |
|
133 | - $submission->format_amount( $submission->get_total() ), |
|
134 | - $submission->format_amount( $submission->get_recurring_total() ), |
|
132 | + __('%1$s (renews at %2$s / %3$s)', 'invoicing'), |
|
133 | + $submission->format_amount($submission->get_total()), |
|
134 | + $submission->format_amount($submission->get_recurring_total()), |
|
135 | 135 | $period |
136 | 136 | ); |
137 | 137 | } |
@@ -142,20 +142,20 @@ discard block |
||
142 | 142 | '.getpaid-checkout-total-payable' => $payable, |
143 | 143 | ); |
144 | 144 | |
145 | - foreach ( $submission->get_items() as $item ) { |
|
145 | + foreach ($submission->get_items() as $item) { |
|
146 | 146 | $item_id = $item->get_id(); |
147 | - $initial_price = $submission->format_amount( $item->get_sub_total() - $item->item_discount ); |
|
148 | - $recurring_price = $submission->format_amount( $item->get_recurring_sub_total() - $item->recurring_item_discount ); |
|
149 | - $texts[".item-$item_id .getpaid-form-item-price-desc"] = getpaid_item_recurring_price_help_text( $item, $submission->get_currency(), $initial_price, $recurring_price ); |
|
150 | - $texts[".item-$item_id .getpaid-mobile-item-subtotal"] = sprintf( __( 'Subtotal: %s', 'invoicing' ), $submission->format_amount( $item->get_sub_total() ) ); |
|
147 | + $initial_price = $submission->format_amount($item->get_sub_total() - $item->item_discount); |
|
148 | + $recurring_price = $submission->format_amount($item->get_recurring_sub_total() - $item->recurring_item_discount); |
|
149 | + $texts[".item-$item_id .getpaid-form-item-price-desc"] = getpaid_item_recurring_price_help_text($item, $submission->get_currency(), $initial_price, $recurring_price); |
|
150 | + $texts[".item-$item_id .getpaid-mobile-item-subtotal"] = sprintf(__('Subtotal: %s', 'invoicing'), $submission->format_amount($item->get_sub_total())); |
|
151 | 151 | |
152 | - if ( $item->get_quantity() == 1 ) { |
|
152 | + if ($item->get_quantity() == 1) { |
|
153 | 153 | $texts[".item-$item_id .getpaid-mobile-item-subtotal"] = ''; |
154 | 154 | } |
155 | 155 | |
156 | 156 | } |
157 | 157 | |
158 | - $this->response = array_merge( $this->response, array( 'texts' => $texts ) ); |
|
158 | + $this->response = array_merge($this->response, array('texts' => $texts)); |
|
159 | 159 | |
160 | 160 | } |
161 | 161 | |
@@ -164,19 +164,19 @@ discard block |
||
164 | 164 | * |
165 | 165 | * @param GetPaid_Payment_Form_Submission $submission |
166 | 166 | */ |
167 | - public function add_items( $submission ) { |
|
167 | + public function add_items($submission) { |
|
168 | 168 | |
169 | 169 | // Add items. |
170 | 170 | $items = array(); |
171 | 171 | |
172 | - foreach ( $submission->get_items() as $item ) { |
|
172 | + foreach ($submission->get_items() as $item) { |
|
173 | 173 | $item_id = $item->get_id(); |
174 | - $items["$item_id"] = $submission->format_amount( $item->get_sub_total() ); |
|
174 | + $items["$item_id"] = $submission->format_amount($item->get_sub_total()); |
|
175 | 175 | } |
176 | 176 | |
177 | 177 | $this->response = array_merge( |
178 | 178 | $this->response, |
179 | - array( 'items' => $items ) |
|
179 | + array('items' => $items) |
|
180 | 180 | ); |
181 | 181 | |
182 | 182 | } |
@@ -186,17 +186,17 @@ discard block |
||
186 | 186 | * |
187 | 187 | * @param GetPaid_Payment_Form_Submission $submission |
188 | 188 | */ |
189 | - public function add_fees( $submission ) { |
|
189 | + public function add_fees($submission) { |
|
190 | 190 | |
191 | 191 | $fees = array(); |
192 | 192 | |
193 | - foreach ( $submission->get_fees() as $name => $data ) { |
|
194 | - $fees[$name] = $submission->format_amount( $data['initial_fee'] ); |
|
193 | + foreach ($submission->get_fees() as $name => $data) { |
|
194 | + $fees[$name] = $submission->format_amount($data['initial_fee']); |
|
195 | 195 | } |
196 | 196 | |
197 | 197 | $this->response = array_merge( |
198 | 198 | $this->response, |
199 | - array( 'fees' => $fees ) |
|
199 | + array('fees' => $fees) |
|
200 | 200 | ); |
201 | 201 | |
202 | 202 | } |
@@ -206,17 +206,17 @@ discard block |
||
206 | 206 | * |
207 | 207 | * @param GetPaid_Payment_Form_Submission $submission |
208 | 208 | */ |
209 | - public function add_discounts( $submission ) { |
|
209 | + public function add_discounts($submission) { |
|
210 | 210 | |
211 | 211 | $discounts = array(); |
212 | 212 | |
213 | - foreach ( $submission->get_discounts() as $name => $data ) { |
|
214 | - $discounts[$name] = $submission->format_amount( $data['initial_discount'] ); |
|
213 | + foreach ($submission->get_discounts() as $name => $data) { |
|
214 | + $discounts[$name] = $submission->format_amount($data['initial_discount']); |
|
215 | 215 | } |
216 | 216 | |
217 | 217 | $this->response = array_merge( |
218 | 218 | $this->response, |
219 | - array( 'discounts' => $discounts ) |
|
219 | + array('discounts' => $discounts) |
|
220 | 220 | ); |
221 | 221 | |
222 | 222 | } |
@@ -226,24 +226,24 @@ discard block |
||
226 | 226 | * |
227 | 227 | * @param GetPaid_Payment_Form_Submission $submission |
228 | 228 | */ |
229 | - public function add_taxes( $submission ) { |
|
229 | + public function add_taxes($submission) { |
|
230 | 230 | |
231 | 231 | $taxes = array(); |
232 | 232 | $markup = ''; |
233 | - foreach ( $submission->get_taxes() as $name => $data ) { |
|
234 | - $name = sanitize_text_field( $name ); |
|
235 | - $amount = $submission->format_amount( $data['initial_tax'] ); |
|
233 | + foreach ($submission->get_taxes() as $name => $data) { |
|
234 | + $name = sanitize_text_field($name); |
|
235 | + $amount = $submission->format_amount($data['initial_tax']); |
|
236 | 236 | $taxes[$name] = $amount; |
237 | 237 | $markup .= "<small class='form-text'>$name : $amount</small>"; |
238 | 238 | } |
239 | 239 | |
240 | - if ( wpinv_display_individual_tax_rates() && ! empty( $taxes ) ) { |
|
240 | + if (wpinv_display_individual_tax_rates() && !empty($taxes)) { |
|
241 | 241 | $this->response['texts']['.getpaid-form-cart-totals-total-tax'] = $markup; |
242 | 242 | } |
243 | 243 | |
244 | 244 | $this->response = array_merge( |
245 | 245 | $this->response, |
246 | - array( 'taxes' => $taxes ) |
|
246 | + array('taxes' => $taxes) |
|
247 | 247 | ); |
248 | 248 | |
249 | 249 | } |
@@ -253,29 +253,29 @@ discard block |
||
253 | 253 | * |
254 | 254 | * @param GetPaid_Payment_Form_Submission $submission |
255 | 255 | */ |
256 | - public function add_gateways( $submission ) { |
|
256 | + public function add_gateways($submission) { |
|
257 | 257 | |
258 | - $gateways = array_keys( wpinv_get_enabled_payment_gateways() ); |
|
258 | + $gateways = array_keys(wpinv_get_enabled_payment_gateways()); |
|
259 | 259 | |
260 | - if ( $this->response['has_recurring'] ) { |
|
260 | + if ($this->response['has_recurring']) { |
|
261 | 261 | |
262 | - foreach ( $gateways as $i => $gateway ) { |
|
262 | + foreach ($gateways as $i => $gateway) { |
|
263 | 263 | |
264 | 264 | if ( |
265 | - ! getpaid_payment_gateway_supports( $gateway, 'subscription' ) |
|
266 | - || ( $this->response['has_subscription_group'] && ! getpaid_payment_gateway_supports( $gateway, 'single_subscription_group' ) ) |
|
267 | - || ( $this->response['has_multiple_subscription_groups'] && ! getpaid_payment_gateway_supports( $gateway, 'multiple_subscription_groups' ) ) ) { |
|
268 | - unset( $gateways[ $i ] ); |
|
265 | + !getpaid_payment_gateway_supports($gateway, 'subscription') |
|
266 | + || ($this->response['has_subscription_group'] && !getpaid_payment_gateway_supports($gateway, 'single_subscription_group')) |
|
267 | + || ($this->response['has_multiple_subscription_groups'] && !getpaid_payment_gateway_supports($gateway, 'multiple_subscription_groups')) ) { |
|
268 | + unset($gateways[$i]); |
|
269 | 269 | } |
270 | 270 | |
271 | 271 | } |
272 | 272 | |
273 | 273 | } |
274 | 274 | |
275 | - $gateways = apply_filters( 'getpaid_submission_gateways', $gateways, $submission ); |
|
275 | + $gateways = apply_filters('getpaid_submission_gateways', $gateways, $submission); |
|
276 | 276 | $this->response = array_merge( |
277 | 277 | $this->response, |
278 | - array( 'gateways' => $gateways ) |
|
278 | + array('gateways' => $gateways) |
|
279 | 279 | ); |
280 | 280 | |
281 | 281 | } |
@@ -285,7 +285,7 @@ discard block |
||
285 | 285 | * |
286 | 286 | * @param GetPaid_Payment_Form_Submission $submission |
287 | 287 | */ |
288 | - public function add_data( $submission ) { |
|
288 | + public function add_data($submission) { |
|
289 | 289 | |
290 | 290 | $this->response = array_merge( |
291 | 291 | $this->response, |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | * |
5 | 5 | */ |
6 | 6 | |
7 | -defined( 'ABSPATH' ) || exit; |
|
7 | +defined('ABSPATH') || exit; |
|
8 | 8 | |
9 | 9 | /** |
10 | 10 | * Paypal Payment Gateway class. |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | * |
25 | 25 | * @var array |
26 | 26 | */ |
27 | - protected $supports = array( 'subscription', 'sandbox', 'single_subscription_group' ); |
|
27 | + protected $supports = array('subscription', 'sandbox', 'single_subscription_group'); |
|
28 | 28 | |
29 | 29 | /** |
30 | 30 | * Payment method order. |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | * |
60 | 60 | * @var array |
61 | 61 | */ |
62 | - public $currencies = array( 'AUD', 'BRL', 'CAD', 'MXN', 'NZD', 'HKD', 'SGD', 'USD', 'EUR', 'JPY', 'TRY', 'NOK', 'CZK', 'DKK', 'HUF', 'ILS', 'MYR', 'PHP', 'PLN', 'SEK', 'CHF', 'TWD', 'THB', 'GBP', 'RMB', 'RUB', 'INR' ); |
|
62 | + public $currencies = array('AUD', 'BRL', 'CAD', 'MXN', 'NZD', 'HKD', 'SGD', 'USD', 'EUR', 'JPY', 'TRY', 'NOK', 'CZK', 'DKK', 'HUF', 'ILS', 'MYR', 'PHP', 'PLN', 'SEK', 'CHF', 'TWD', 'THB', 'GBP', 'RMB', 'RUB', 'INR'); |
|
63 | 63 | |
64 | 64 | /** |
65 | 65 | * URL to view a transaction. |
@@ -80,15 +80,15 @@ discard block |
||
80 | 80 | */ |
81 | 81 | public function __construct() { |
82 | 82 | |
83 | - $this->title = __( 'PayPal Standard', 'invoicing' ); |
|
84 | - $this->method_title = __( 'PayPal Standard', 'invoicing' ); |
|
85 | - $this->checkout_button_text = __( 'Proceed to PayPal', 'invoicing' ); |
|
86 | - $this->notify_url = wpinv_get_ipn_url( $this->id ); |
|
83 | + $this->title = __('PayPal Standard', 'invoicing'); |
|
84 | + $this->method_title = __('PayPal Standard', 'invoicing'); |
|
85 | + $this->checkout_button_text = __('Proceed to PayPal', 'invoicing'); |
|
86 | + $this->notify_url = wpinv_get_ipn_url($this->id); |
|
87 | 87 | |
88 | - add_filter( 'getpaid_paypal_args', array( $this, 'process_subscription' ), 10, 2 ); |
|
89 | - add_filter( 'getpaid_paypal_sandbox_notice', array( $this, 'sandbox_notice' ) ); |
|
90 | - add_filter( 'getpaid_get_paypal_connect_url', array( $this, 'maybe_get_connect_url' ), 10, 2 ); |
|
91 | - add_action( 'getpaid_authenticated_admin_action_connect_paypal', array( $this, 'connect_paypal' ) ); |
|
88 | + add_filter('getpaid_paypal_args', array($this, 'process_subscription'), 10, 2); |
|
89 | + add_filter('getpaid_paypal_sandbox_notice', array($this, 'sandbox_notice')); |
|
90 | + add_filter('getpaid_get_paypal_connect_url', array($this, 'maybe_get_connect_url'), 10, 2); |
|
91 | + add_action('getpaid_authenticated_admin_action_connect_paypal', array($this, 'connect_paypal')); |
|
92 | 92 | |
93 | 93 | parent::__construct(); |
94 | 94 | } |
@@ -102,16 +102,16 @@ discard block |
||
102 | 102 | * @param GetPaid_Payment_Form_Submission $submission Checkout submission. |
103 | 103 | * @return array |
104 | 104 | */ |
105 | - public function process_payment( $invoice, $submission_data, $submission ) { |
|
105 | + public function process_payment($invoice, $submission_data, $submission) { |
|
106 | 106 | |
107 | 107 | // Get redirect url. |
108 | - $paypal_redirect = $this->get_request_url( $invoice ); |
|
108 | + $paypal_redirect = $this->get_request_url($invoice); |
|
109 | 109 | |
110 | 110 | // Add a note about the request url. |
111 | 111 | $invoice->add_note( |
112 | 112 | sprintf( |
113 | - __( 'Redirecting to PayPal: %s', 'invoicing' ), |
|
114 | - esc_url( $paypal_redirect ) |
|
113 | + __('Redirecting to PayPal: %s', 'invoicing'), |
|
114 | + esc_url($paypal_redirect) |
|
115 | 115 | ), |
116 | 116 | false, |
117 | 117 | false, |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | ); |
120 | 120 | |
121 | 121 | // Redirect to PayPal |
122 | - wp_redirect( $paypal_redirect ); |
|
122 | + wp_redirect($paypal_redirect); |
|
123 | 123 | exit; |
124 | 124 | |
125 | 125 | } |
@@ -130,21 +130,21 @@ discard block |
||
130 | 130 | * @param WPInv_Invoice $invoice Invoice object. |
131 | 131 | * @return string |
132 | 132 | */ |
133 | - public function get_request_url( $invoice ) { |
|
133 | + public function get_request_url($invoice) { |
|
134 | 134 | |
135 | 135 | // Endpoint for this request |
136 | - $this->endpoint = $this->is_sandbox( $invoice ) ? 'https://www.sandbox.paypal.com/cgi-bin/webscr?test_ipn=1&' : 'https://www.paypal.com/cgi-bin/webscr?'; |
|
136 | + $this->endpoint = $this->is_sandbox($invoice) ? 'https://www.sandbox.paypal.com/cgi-bin/webscr?test_ipn=1&' : 'https://www.paypal.com/cgi-bin/webscr?'; |
|
137 | 137 | |
138 | 138 | // Retrieve paypal args. |
139 | - $paypal_args = map_deep( $this->get_paypal_args( $invoice ), 'urlencode' ); |
|
139 | + $paypal_args = map_deep($this->get_paypal_args($invoice), 'urlencode'); |
|
140 | 140 | |
141 | - if ( $invoice->is_recurring() ) { |
|
141 | + if ($invoice->is_recurring()) { |
|
142 | 142 | $paypal_args['bn'] = 'GetPaid_Subscribe_WPS_US'; |
143 | 143 | } else { |
144 | 144 | $paypal_args['bn'] = 'GetPaid_ShoppingCart_WPS_US'; |
145 | 145 | } |
146 | 146 | |
147 | - return add_query_arg( $paypal_args, $this->endpoint ); |
|
147 | + return add_query_arg($paypal_args, $this->endpoint); |
|
148 | 148 | |
149 | 149 | } |
150 | 150 | |
@@ -154,25 +154,25 @@ discard block |
||
154 | 154 | * @param WPInv_Invoice $invoice Invoice object. |
155 | 155 | * @return array |
156 | 156 | */ |
157 | - protected function get_paypal_args( $invoice ) { |
|
157 | + protected function get_paypal_args($invoice) { |
|
158 | 158 | |
159 | 159 | // Whether or not to send the line items as one item. |
160 | - $force_one_line_item = apply_filters( 'getpaid_paypal_force_one_line_item', true, $invoice ); |
|
160 | + $force_one_line_item = apply_filters('getpaid_paypal_force_one_line_item', true, $invoice); |
|
161 | 161 | |
162 | - if ( $invoice->is_recurring() || ( wpinv_use_taxes() && wpinv_prices_include_tax() ) ) { |
|
162 | + if ($invoice->is_recurring() || (wpinv_use_taxes() && wpinv_prices_include_tax())) { |
|
163 | 163 | $force_one_line_item = true; |
164 | 164 | } |
165 | 165 | |
166 | 166 | $paypal_args = apply_filters( |
167 | 167 | 'getpaid_paypal_args', |
168 | 168 | array_merge( |
169 | - $this->get_transaction_args( $invoice ), |
|
170 | - $this->get_line_item_args( $invoice, $force_one_line_item ) |
|
169 | + $this->get_transaction_args($invoice), |
|
170 | + $this->get_line_item_args($invoice, $force_one_line_item) |
|
171 | 171 | ), |
172 | 172 | $invoice |
173 | 173 | ); |
174 | 174 | |
175 | - return $this->fix_request_length( $invoice, $paypal_args ); |
|
175 | + return $this->fix_request_length($invoice, $paypal_args); |
|
176 | 176 | } |
177 | 177 | |
178 | 178 | /** |
@@ -181,9 +181,9 @@ discard block |
||
181 | 181 | * @param WPInv_Invoice $invoice Invoice object. |
182 | 182 | * @return array |
183 | 183 | */ |
184 | - protected function get_transaction_args( $invoice ) { |
|
184 | + protected function get_transaction_args($invoice) { |
|
185 | 185 | |
186 | - $email = $this->is_sandbox( $invoice ) ? wpinv_get_option( 'paypal_sandbox_email', wpinv_get_option( 'paypal_email', '' ) ) : wpinv_get_option( 'paypal_email', '' ); |
|
186 | + $email = $this->is_sandbox($invoice) ? wpinv_get_option('paypal_sandbox_email', wpinv_get_option('paypal_email', '')) : wpinv_get_option('paypal_email', ''); |
|
187 | 187 | return array( |
188 | 188 | 'cmd' => '_cart', |
189 | 189 | 'business' => $email, |
@@ -194,16 +194,16 @@ discard block |
||
194 | 194 | 'rm' => is_ssl() ? 2 : 1, |
195 | 195 | 'upload' => 1, |
196 | 196 | 'currency_code' => $invoice->get_currency(), // https://developer.paypal.com/docs/nvp-soap-api/currency-codes/#paypal |
197 | - 'return' => esc_url_raw( $this->get_return_url( $invoice ) ), |
|
198 | - 'cancel_return' => esc_url_raw( $invoice->get_checkout_payment_url() ), |
|
199 | - 'notify_url' => getpaid_limit_length( $this->notify_url, 255 ), |
|
200 | - 'invoice' => getpaid_limit_length( $invoice->get_number(), 127 ), |
|
197 | + 'return' => esc_url_raw($this->get_return_url($invoice)), |
|
198 | + 'cancel_return' => esc_url_raw($invoice->get_checkout_payment_url()), |
|
199 | + 'notify_url' => getpaid_limit_length($this->notify_url, 255), |
|
200 | + 'invoice' => getpaid_limit_length($invoice->get_number(), 127), |
|
201 | 201 | 'custom' => $invoice->get_id(), |
202 | - 'first_name' => getpaid_limit_length( $invoice->get_first_name(), 32 ), |
|
203 | - 'last_name' => getpaid_limit_length( $invoice->get_last_name(), 64 ), |
|
204 | - 'country' => getpaid_limit_length( $invoice->get_country(), 2 ), |
|
205 | - 'email' => getpaid_limit_length( $invoice->get_email(), 127 ), |
|
206 | - 'cbt' => get_bloginfo( 'name' ) |
|
202 | + 'first_name' => getpaid_limit_length($invoice->get_first_name(), 32), |
|
203 | + 'last_name' => getpaid_limit_length($invoice->get_last_name(), 64), |
|
204 | + 'country' => getpaid_limit_length($invoice->get_country(), 2), |
|
205 | + 'email' => getpaid_limit_length($invoice->get_email(), 127), |
|
206 | + 'cbt' => get_bloginfo('name') |
|
207 | 207 | ); |
208 | 208 | |
209 | 209 | } |
@@ -215,30 +215,30 @@ discard block |
||
215 | 215 | * @param bool $force_one_line_item Create only one item for this invoice. |
216 | 216 | * @return array |
217 | 217 | */ |
218 | - protected function get_line_item_args( $invoice, $force_one_line_item = false ) { |
|
218 | + protected function get_line_item_args($invoice, $force_one_line_item = false) { |
|
219 | 219 | |
220 | 220 | // Maybe send invoice as a single item. |
221 | - if ( $force_one_line_item ) { |
|
222 | - return $this->get_line_item_args_single_item( $invoice ); |
|
221 | + if ($force_one_line_item) { |
|
222 | + return $this->get_line_item_args_single_item($invoice); |
|
223 | 223 | } |
224 | 224 | |
225 | 225 | // Send each line item individually. |
226 | 226 | $line_item_args = array(); |
227 | 227 | |
228 | 228 | // Prepare line items. |
229 | - $this->prepare_line_items( $invoice ); |
|
229 | + $this->prepare_line_items($invoice); |
|
230 | 230 | |
231 | 231 | // Add taxes to the cart |
232 | - if ( wpinv_use_taxes() && $invoice->is_taxable() ) { |
|
233 | - $line_item_args['tax_cart'] = wpinv_sanitize_amount( (float) $invoice->get_total_tax(), 2 ); |
|
232 | + if (wpinv_use_taxes() && $invoice->is_taxable()) { |
|
233 | + $line_item_args['tax_cart'] = wpinv_sanitize_amount((float) $invoice->get_total_tax(), 2); |
|
234 | 234 | } |
235 | 235 | |
236 | 236 | // Add discount. |
237 | - if ( $invoice->get_total_discount() > 0 ) { |
|
238 | - $line_item_args['discount_amount_cart'] = wpinv_sanitize_amount( (float) $invoice->get_total_discount(), 2 ); |
|
237 | + if ($invoice->get_total_discount() > 0) { |
|
238 | + $line_item_args['discount_amount_cart'] = wpinv_sanitize_amount((float) $invoice->get_total_discount(), 2); |
|
239 | 239 | } |
240 | 240 | |
241 | - return array_merge( $line_item_args, $this->get_line_items() ); |
|
241 | + return array_merge($line_item_args, $this->get_line_items()); |
|
242 | 242 | |
243 | 243 | } |
244 | 244 | |
@@ -248,11 +248,11 @@ discard block |
||
248 | 248 | * @param WPInv_Invoice $invoice Invoice object. |
249 | 249 | * @return array |
250 | 250 | */ |
251 | - protected function get_line_item_args_single_item( $invoice ) { |
|
251 | + protected function get_line_item_args_single_item($invoice) { |
|
252 | 252 | $this->delete_line_items(); |
253 | 253 | |
254 | - $item_name = sprintf( __( 'Invoice #%s', 'invoicing' ), $invoice->get_number() ); |
|
255 | - $this->add_line_item( $item_name, 1, wpinv_round_amount( (float) $invoice->get_total(), 2, true ), $invoice->get_id() ); |
|
254 | + $item_name = sprintf(__('Invoice #%s', 'invoicing'), $invoice->get_number()); |
|
255 | + $this->add_line_item($item_name, 1, wpinv_round_amount((float) $invoice->get_total(), 2, true), $invoice->get_id()); |
|
256 | 256 | |
257 | 257 | return $this->get_line_items(); |
258 | 258 | } |
@@ -276,19 +276,19 @@ discard block |
||
276 | 276 | * |
277 | 277 | * @param WPInv_Invoice $invoice Invoice object. |
278 | 278 | */ |
279 | - protected function prepare_line_items( $invoice ) { |
|
279 | + protected function prepare_line_items($invoice) { |
|
280 | 280 | $this->delete_line_items(); |
281 | 281 | |
282 | 282 | // Items. |
283 | - foreach ( $invoice->get_items() as $item ) { |
|
283 | + foreach ($invoice->get_items() as $item) { |
|
284 | 284 | $amount = $item->get_price(); |
285 | 285 | $quantity = $invoice->get_template() == 'amount' ? 1 : $item->get_quantity(); |
286 | - $this->add_line_item( $item->get_raw_name(), $quantity, $amount, $item->get_id() ); |
|
286 | + $this->add_line_item($item->get_raw_name(), $quantity, $amount, $item->get_id()); |
|
287 | 287 | } |
288 | 288 | |
289 | 289 | // Fees. |
290 | - foreach ( $invoice->get_fees() as $fee => $data ) { |
|
291 | - $this->add_line_item( $fee, 1, wpinv_sanitize_amount( $data['initial_fee'] ) ); |
|
290 | + foreach ($invoice->get_fees() as $fee => $data) { |
|
291 | + $this->add_line_item($fee, 1, wpinv_sanitize_amount($data['initial_fee'])); |
|
292 | 292 | } |
293 | 293 | |
294 | 294 | } |
@@ -301,15 +301,15 @@ discard block |
||
301 | 301 | * @param float $amount Amount. |
302 | 302 | * @param string $item_number Item number. |
303 | 303 | */ |
304 | - protected function add_line_item( $item_name, $quantity = 1, $amount = 0.0, $item_number = '' ) { |
|
305 | - $index = ( count( $this->line_items ) / 4 ) + 1; |
|
304 | + protected function add_line_item($item_name, $quantity = 1, $amount = 0.0, $item_number = '') { |
|
305 | + $index = (count($this->line_items) / 4) + 1; |
|
306 | 306 | |
307 | 307 | $item = apply_filters( |
308 | 308 | 'getpaid_paypal_line_item', |
309 | 309 | array( |
310 | - 'item_name' => html_entity_decode( getpaid_limit_length( $item_name ? wp_strip_all_tags( $item_name ) : __( 'Item', 'invoicing' ), 127 ), ENT_NOQUOTES, 'UTF-8' ), |
|
310 | + 'item_name' => html_entity_decode(getpaid_limit_length($item_name ? wp_strip_all_tags($item_name) : __('Item', 'invoicing'), 127), ENT_NOQUOTES, 'UTF-8'), |
|
311 | 311 | 'quantity' => (float) $quantity, |
312 | - 'amount' => wpinv_sanitize_amount( (float) $amount, 2 ), |
|
312 | + 'amount' => wpinv_sanitize_amount((float) $amount, 2), |
|
313 | 313 | 'item_number' => $item_number, |
314 | 314 | ), |
315 | 315 | $item_name, |
@@ -318,12 +318,12 @@ discard block |
||
318 | 318 | $item_number |
319 | 319 | ); |
320 | 320 | |
321 | - $this->line_items[ 'item_name_' . $index ] = getpaid_limit_length( $item['item_name'], 127 ); |
|
322 | - $this->line_items[ 'quantity_' . $index ] = $item['quantity']; |
|
321 | + $this->line_items['item_name_' . $index] = getpaid_limit_length($item['item_name'], 127); |
|
322 | + $this->line_items['quantity_' . $index] = $item['quantity']; |
|
323 | 323 | |
324 | 324 | // The price or amount of the product, service, or contribution, not including shipping, handling, or tax. |
325 | - $this->line_items[ 'amount_' . $index ] = $item['amount'] * $item['quantity']; |
|
326 | - $this->line_items[ 'item_number_' . $index ] = getpaid_limit_length( $item['item_number'], 127 ); |
|
325 | + $this->line_items['amount_' . $index] = $item['amount'] * $item['quantity']; |
|
326 | + $this->line_items['item_number_' . $index] = getpaid_limit_length($item['item_number'], 127); |
|
327 | 327 | } |
328 | 328 | |
329 | 329 | /** |
@@ -335,19 +335,19 @@ discard block |
||
335 | 335 | * @param array $paypal_args Arguments sent to Paypal in the request. |
336 | 336 | * @return array |
337 | 337 | */ |
338 | - protected function fix_request_length( $invoice, $paypal_args ) { |
|
338 | + protected function fix_request_length($invoice, $paypal_args) { |
|
339 | 339 | $max_paypal_length = 2083; |
340 | - $query_candidate = http_build_query( $paypal_args, '', '&' ); |
|
340 | + $query_candidate = http_build_query($paypal_args, '', '&'); |
|
341 | 341 | |
342 | - if ( strlen( $this->endpoint . $query_candidate ) <= $max_paypal_length ) { |
|
342 | + if (strlen($this->endpoint . $query_candidate) <= $max_paypal_length) { |
|
343 | 343 | return $paypal_args; |
344 | 344 | } |
345 | 345 | |
346 | 346 | return apply_filters( |
347 | 347 | 'getpaid_paypal_args', |
348 | 348 | array_merge( |
349 | - $this->get_transaction_args( $invoice ), |
|
350 | - $this->get_line_item_args( $invoice, true ) |
|
349 | + $this->get_transaction_args($invoice), |
|
350 | + $this->get_line_item_args($invoice, true) |
|
351 | 351 | ), |
352 | 352 | $invoice |
353 | 353 | ); |
@@ -360,10 +360,10 @@ discard block |
||
360 | 360 | * @param array $paypal_args PayPal args. |
361 | 361 | * @param WPInv_Invoice $invoice Invoice object. |
362 | 362 | */ |
363 | - public function process_subscription( $paypal_args, $invoice ) { |
|
363 | + public function process_subscription($paypal_args, $invoice) { |
|
364 | 364 | |
365 | 365 | // Make sure this is a subscription. |
366 | - if ( ! $invoice->is_recurring() || ! $subscription = getpaid_get_invoice_subscription( $invoice ) ) { |
|
366 | + if (!$invoice->is_recurring() || !$subscription = getpaid_get_invoice_subscription($invoice)) { |
|
367 | 367 | return $paypal_args; |
368 | 368 | } |
369 | 369 | |
@@ -371,23 +371,23 @@ discard block |
||
371 | 371 | $paypal_args['cmd'] = '_xclick-subscriptions'; |
372 | 372 | |
373 | 373 | // Subscription name. |
374 | - $paypal_args['item_name'] = sprintf( __( 'Invoice #%s', 'invoicing' ), $invoice->get_number() ); |
|
374 | + $paypal_args['item_name'] = sprintf(__('Invoice #%s', 'invoicing'), $invoice->get_number()); |
|
375 | 375 | |
376 | 376 | // Get subscription args. |
377 | - $period = strtoupper( substr( $subscription->get_period(), 0, 1) ); |
|
377 | + $period = strtoupper(substr($subscription->get_period(), 0, 1)); |
|
378 | 378 | $interval = (int) $subscription->get_frequency(); |
379 | 379 | $bill_times = (int) $subscription->get_bill_times(); |
380 | - $initial_amount = (float) wpinv_sanitize_amount( $invoice->get_initial_total(), 2 ); |
|
381 | - $recurring_amount = (float) wpinv_sanitize_amount( $invoice->get_recurring_total(), 2 ); |
|
382 | - $subscription_item = $invoice->get_recurring( true ); |
|
380 | + $initial_amount = (float) wpinv_sanitize_amount($invoice->get_initial_total(), 2); |
|
381 | + $recurring_amount = (float) wpinv_sanitize_amount($invoice->get_recurring_total(), 2); |
|
382 | + $subscription_item = $invoice->get_recurring(true); |
|
383 | 383 | |
384 | 384 | // Convert 365 days to 1 year. |
385 | - if ( 'D' == $period && 365 == $interval ) { |
|
385 | + if ('D' == $period && 365 == $interval) { |
|
386 | 386 | $period = 'Y'; |
387 | 387 | $interval = 1; |
388 | 388 | } |
389 | 389 | |
390 | - if ( $subscription_item->has_free_trial() ) { |
|
390 | + if ($subscription_item->has_free_trial()) { |
|
391 | 391 | |
392 | 392 | $paypal_args['a1'] = 0 == $initial_amount ? 0 : $initial_amount; |
393 | 393 | |
@@ -397,28 +397,28 @@ discard block |
||
397 | 397 | // Trial period. |
398 | 398 | $paypal_args['t1'] = $subscription_item->get_trial_period(); |
399 | 399 | |
400 | - } else if ( $initial_amount != $recurring_amount ) { |
|
400 | + } else if ($initial_amount != $recurring_amount) { |
|
401 | 401 | |
402 | 402 | // No trial period, but initial amount includes a sign-up fee and/or other items, so charge it as a separate period. |
403 | 403 | |
404 | - if ( 1 == $bill_times ) { |
|
404 | + if (1 == $bill_times) { |
|
405 | 405 | $param_number = 3; |
406 | 406 | } else { |
407 | 407 | $param_number = 1; |
408 | 408 | } |
409 | 409 | |
410 | - $paypal_args[ 'a' . $param_number ] = $initial_amount ? $initial_amount : 0; |
|
410 | + $paypal_args['a' . $param_number] = $initial_amount ? $initial_amount : 0; |
|
411 | 411 | |
412 | 412 | // Sign Up interval |
413 | - $paypal_args[ 'p' . $param_number ] = $interval; |
|
413 | + $paypal_args['p' . $param_number] = $interval; |
|
414 | 414 | |
415 | 415 | // Sign Up unit of duration |
416 | - $paypal_args[ 't' . $param_number ] = $period; |
|
416 | + $paypal_args['t' . $param_number] = $period; |
|
417 | 417 | |
418 | 418 | } |
419 | 419 | |
420 | 420 | // We have a recurring payment |
421 | - if ( ! isset( $param_number ) || 1 == $param_number ) { |
|
421 | + if (!isset($param_number) || 1 == $param_number) { |
|
422 | 422 | |
423 | 423 | // Subscription price |
424 | 424 | $paypal_args['a3'] = $recurring_amount; |
@@ -432,7 +432,7 @@ discard block |
||
432 | 432 | } |
433 | 433 | |
434 | 434 | // Recurring payments |
435 | - if ( 1 == $bill_times || ( $initial_amount != $recurring_amount && ! $subscription_item->has_free_trial() && 2 == $bill_times ) ) { |
|
435 | + if (1 == $bill_times || ($initial_amount != $recurring_amount && !$subscription_item->has_free_trial() && 2 == $bill_times)) { |
|
436 | 436 | |
437 | 437 | // Non-recurring payments |
438 | 438 | $paypal_args['src'] = 0; |
@@ -441,15 +441,15 @@ discard block |
||
441 | 441 | |
442 | 442 | $paypal_args['src'] = 1; |
443 | 443 | |
444 | - if ( $bill_times > 0 ) { |
|
444 | + if ($bill_times > 0) { |
|
445 | 445 | |
446 | 446 | // An initial period is being used to charge a sign-up fee |
447 | - if ( $initial_amount != $recurring_amount && ! $subscription_item->has_free_trial() ) { |
|
447 | + if ($initial_amount != $recurring_amount && !$subscription_item->has_free_trial()) { |
|
448 | 448 | $bill_times--; |
449 | 449 | } |
450 | 450 | |
451 | 451 | // Make sure it's not over the max of 52 |
452 | - $paypal_args['srt'] = ( $bill_times <= 52 ? absint( $bill_times ) : 52 ); |
|
452 | + $paypal_args['srt'] = ($bill_times <= 52 ? absint($bill_times) : 52); |
|
453 | 453 | |
454 | 454 | } |
455 | 455 | } |
@@ -458,10 +458,10 @@ discard block |
||
458 | 458 | $paypal_args['rm'] = 2; |
459 | 459 | |
460 | 460 | // Get rid of redudant items. |
461 | - foreach ( array( 'item_name_1', 'quantity_1', 'amount_1', 'item_number_1' ) as $arg ) { |
|
461 | + foreach (array('item_name_1', 'quantity_1', 'amount_1', 'item_number_1') as $arg) { |
|
462 | 462 | |
463 | - if ( isset( $paypal_args[ $arg ] ) ) { |
|
464 | - unset( $paypal_args[ $arg ] ); |
|
463 | + if (isset($paypal_args[$arg])) { |
|
464 | + unset($paypal_args[$arg]); |
|
465 | 465 | } |
466 | 466 | |
467 | 467 | } |
@@ -480,7 +480,7 @@ discard block |
||
480 | 480 | * @return void |
481 | 481 | */ |
482 | 482 | public function verify_ipn() { |
483 | - new GetPaid_Paypal_Gateway_IPN_Handler( $this ); |
|
483 | + new GetPaid_Paypal_Gateway_IPN_Handler($this); |
|
484 | 484 | } |
485 | 485 | |
486 | 486 | /** |
@@ -489,7 +489,7 @@ discard block |
||
489 | 489 | public function sandbox_notice() { |
490 | 490 | |
491 | 491 | return sprintf( |
492 | - __( 'SANDBOX ENABLED. You can use sandbox testing accounts only. See the %sPayPal Sandbox Testing Guide%s for more details.', 'invoicing' ), |
|
492 | + __('SANDBOX ENABLED. You can use sandbox testing accounts only. See the %sPayPal Sandbox Testing Guide%s for more details.', 'invoicing'), |
|
493 | 493 | '<a href="https://developer.paypal.com/docs/classic/lifecycle/ug_sandbox/">', |
494 | 494 | '</a>' |
495 | 495 | ); |
@@ -501,30 +501,30 @@ discard block |
||
501 | 501 | * |
502 | 502 | * @param array $admin_settings |
503 | 503 | */ |
504 | - public function admin_settings( $admin_settings ) { |
|
504 | + public function admin_settings($admin_settings) { |
|
505 | 505 | |
506 | 506 | $currencies = sprintf( |
507 | - __( 'Supported Currencies: %s', 'invoicing' ), |
|
508 | - implode( ', ', $this->currencies ) |
|
507 | + __('Supported Currencies: %s', 'invoicing'), |
|
508 | + implode(', ', $this->currencies) |
|
509 | 509 | ); |
510 | 510 | |
511 | 511 | $admin_settings['paypal_active']['desc'] .= " ($currencies)"; |
512 | - $admin_settings['paypal_desc']['std'] = __( 'Pay via PayPal: you can pay with your credit card if you don\'t have a PayPal account.', 'invoicing' ); |
|
512 | + $admin_settings['paypal_desc']['std'] = __('Pay via PayPal: you can pay with your credit card if you don\'t have a PayPal account.', 'invoicing'); |
|
513 | 513 | |
514 | 514 | // Access tokens. |
515 | - $live_email = wpinv_get_option( 'paypal_email' ); |
|
516 | - $sandbox_email = wpinv_get_option( 'paypal_sandbox_email' ); |
|
515 | + $live_email = wpinv_get_option('paypal_email'); |
|
516 | + $sandbox_email = wpinv_get_option('paypal_sandbox_email'); |
|
517 | 517 | |
518 | 518 | $admin_settings['paypal_connect'] = array( |
519 | 519 | 'type' => 'raw_html', |
520 | 520 | 'id' => 'paypal_connect', |
521 | - 'name' => __( 'Connect to PayPal', 'invoicing' ), |
|
521 | + 'name' => __('Connect to PayPal', 'invoicing'), |
|
522 | 522 | 'desc' => sprintf( |
523 | 523 | '<div class="wpinv-paypal-connect-live"><a class="button button-primary" href="%s">%s</a></div><div class="wpinv-paypal-connect-sandbox"><a class="button button-primary" href="%s">%s</a></div>%s', |
524 | - esc_url( self::get_connect_url( false ) ), |
|
525 | - __( 'Connect to PayPal', 'invoicing' ), |
|
526 | - esc_url( self::get_connect_url( true ) ), |
|
527 | - __( 'Connect to PayPal Sandox', 'invoicing' ), |
|
524 | + esc_url(self::get_connect_url(false)), |
|
525 | + __('Connect to PayPal', 'invoicing'), |
|
526 | + esc_url(self::get_connect_url(true)), |
|
527 | + __('Connect to PayPal Sandox', 'invoicing'), |
|
528 | 528 | $this->get_js() |
529 | 529 | ), |
530 | 530 | ); |
@@ -533,25 +533,25 @@ discard block |
||
533 | 533 | 'type' => 'text', |
534 | 534 | 'class' => 'live-auth-data', |
535 | 535 | 'id' => 'paypal_email', |
536 | - 'name' => __( 'Live Email Address', 'invoicing' ), |
|
537 | - 'desc' => __( 'The email address of your PayPal account.', 'invoicing' ), |
|
536 | + 'name' => __('Live Email Address', 'invoicing'), |
|
537 | + 'desc' => __('The email address of your PayPal account.', 'invoicing'), |
|
538 | 538 | ); |
539 | 539 | |
540 | 540 | $admin_settings['paypal_sandbox_email'] = array( |
541 | 541 | 'type' => 'text', |
542 | 542 | 'class' => 'sandbox-auth-data', |
543 | 543 | 'id' => 'paypal_sandbox_email', |
544 | - 'name' => __( 'Sandbox Email Address', 'invoicing' ), |
|
545 | - 'desc' => __( 'The email address of your sandbox PayPal account.', 'invoicing' ), |
|
546 | - 'std' => wpinv_get_option( 'paypal_email', '' ), |
|
544 | + 'name' => __('Sandbox Email Address', 'invoicing'), |
|
545 | + 'desc' => __('The email address of your sandbox PayPal account.', 'invoicing'), |
|
546 | + 'std' => wpinv_get_option('paypal_email', ''), |
|
547 | 547 | ); |
548 | 548 | |
549 | 549 | $admin_settings['paypal_ipn_url'] = array( |
550 | 550 | 'type' => 'ipn_url', |
551 | 551 | 'id' => 'paypal_ipn_url', |
552 | - 'name' => __( 'IPN Url', 'invoicing' ), |
|
552 | + 'name' => __('IPN Url', 'invoicing'), |
|
553 | 553 | 'std' => $this->notify_url, |
554 | - 'desc' => __( "If you've not enabled IPNs in your paypal account, use the above URL to enable them.", 'invoicing' ) . ' <a href="https://developer.paypal.com/docs/api-basics/notifications/ipn/"><em>' . __( 'Learn more.', 'invoicing' ) . '</em></a>', |
|
554 | + 'desc' => __("If you've not enabled IPNs in your paypal account, use the above URL to enable them.", 'invoicing') . ' <a href="https://developer.paypal.com/docs/api-basics/notifications/ipn/"><em>' . __('Learn more.', 'invoicing') . '</em></a>', |
|
555 | 555 | 'readonly' => true, |
556 | 556 | ); |
557 | 557 | |
@@ -565,8 +565,8 @@ discard block |
||
565 | 565 | * @param array $data |
566 | 566 | * @return string |
567 | 567 | */ |
568 | - public static function maybe_get_connect_url( $url = '', $data = array() ) { |
|
569 | - return self::get_connect_url( false, urldecode( $data['redirect'] ) ); |
|
568 | + public static function maybe_get_connect_url($url = '', $data = array()) { |
|
569 | + return self::get_connect_url(false, urldecode($data['redirect'])); |
|
570 | 570 | } |
571 | 571 | |
572 | 572 | /** |
@@ -577,25 +577,25 @@ discard block |
||
577 | 577 | * @param string $redirect |
578 | 578 | * @return string |
579 | 579 | */ |
580 | - public static function get_connect_url( $is_sandbox, $redirect = '' ) { |
|
580 | + public static function get_connect_url($is_sandbox, $redirect = '') { |
|
581 | 581 | |
582 | 582 | $redirect_url = add_query_arg( |
583 | 583 | array( |
584 | 584 | 'getpaid-admin-action' => 'connect_paypal', |
585 | 585 | 'page' => 'wpinv-settings', |
586 | - 'live_mode' => (int) empty( $is_sandbox ), |
|
586 | + 'live_mode' => (int) empty($is_sandbox), |
|
587 | 587 | 'tab' => 'gateways', |
588 | 588 | 'section' => 'paypal', |
589 | - 'getpaid-nonce' => wp_create_nonce( 'getpaid-nonce' ), |
|
590 | - 'redirect' => urlencode( $redirect ), |
|
589 | + 'getpaid-nonce' => wp_create_nonce('getpaid-nonce'), |
|
590 | + 'redirect' => urlencode($redirect), |
|
591 | 591 | ), |
592 | - admin_url( 'admin.php' ) |
|
592 | + admin_url('admin.php') |
|
593 | 593 | ); |
594 | 594 | |
595 | 595 | return add_query_arg( |
596 | 596 | array( |
597 | - 'live_mode' => (int) empty( $is_sandbox ), |
|
598 | - 'redirect_url' => urlencode( str_replace( '&', '&', $redirect_url ) ) |
|
597 | + 'live_mode' => (int) empty($is_sandbox), |
|
598 | + 'redirect_url' => urlencode(str_replace('&', '&', $redirect_url)) |
|
599 | 599 | ), |
600 | 600 | 'https://ayecode.io/oauth/paypal' |
601 | 601 | ); |
@@ -649,26 +649,26 @@ discard block |
||
649 | 649 | * @param array $data Connection data. |
650 | 650 | * @return void |
651 | 651 | */ |
652 | - public function connect_paypal( $data ) { |
|
652 | + public function connect_paypal($data) { |
|
653 | 653 | |
654 | 654 | $sandbox = $this->is_sandbox(); |
655 | - $data = wp_unslash( $data ); |
|
656 | - $access_token = empty( $data['access_token'] ) ? '' : sanitize_text_field( $data['access_token'] ); |
|
655 | + $data = wp_unslash($data); |
|
656 | + $access_token = empty($data['access_token']) ? '' : sanitize_text_field($data['access_token']); |
|
657 | 657 | |
658 | - if ( isset( $data['live_mode'] ) ) { |
|
659 | - $sandbox = empty( $data['live_mode'] ); |
|
658 | + if (isset($data['live_mode'])) { |
|
659 | + $sandbox = empty($data['live_mode']); |
|
660 | 660 | } |
661 | 661 | |
662 | - wpinv_update_option( 'paypal_sandbox', (int) $sandbox ); |
|
663 | - wpinv_update_option( 'paypal_active', 1 ); |
|
662 | + wpinv_update_option('paypal_sandbox', (int) $sandbox); |
|
663 | + wpinv_update_option('paypal_active', 1); |
|
664 | 664 | |
665 | - if ( ! empty( $data['error_description'] ) ) { |
|
666 | - getpaid_admin()->show_error( wp_kses_post( urldecode( $data['error_description'] ) ) ); |
|
665 | + if (!empty($data['error_description'])) { |
|
666 | + getpaid_admin()->show_error(wp_kses_post(urldecode($data['error_description']))); |
|
667 | 667 | } else { |
668 | 668 | |
669 | 669 | // Retrieve the user info. |
670 | 670 | $user_info = wp_remote_get( |
671 | - ! $sandbox ? 'https://api-m.paypal.com/v1/identity/oauth2/userinfo?schema=paypalv1.1' : 'https://api-m.sandbox.paypal.com/v1/identity/oauth2/userinfo?schema=paypalv1.1', |
|
671 | + !$sandbox ? 'https://api-m.paypal.com/v1/identity/oauth2/userinfo?schema=paypalv1.1' : 'https://api-m.sandbox.paypal.com/v1/identity/oauth2/userinfo?schema=paypalv1.1', |
|
672 | 672 | array( |
673 | 673 | |
674 | 674 | 'headers' => array( |
@@ -679,35 +679,35 @@ discard block |
||
679 | 679 | ) |
680 | 680 | ); |
681 | 681 | |
682 | - if ( is_wp_error( $user_info ) ) { |
|
683 | - getpaid_admin()->show_error( wp_kses_post( $user_info->get_error_message() ) ); |
|
682 | + if (is_wp_error($user_info)) { |
|
683 | + getpaid_admin()->show_error(wp_kses_post($user_info->get_error_message())); |
|
684 | 684 | } else { |
685 | 685 | |
686 | 686 | // Create application. |
687 | - $user_info = json_decode( wp_remote_retrieve_body( $user_info ) ); |
|
687 | + $user_info = json_decode(wp_remote_retrieve_body($user_info)); |
|
688 | 688 | |
689 | - if ( $sandbox ) { |
|
690 | - wpinv_update_option( 'paypal_sandbox_email', sanitize_email( $user_info->emails[0]->value ) ); |
|
691 | - wpinv_update_option( 'paypal_sandbox_refresh_token', sanitize_text_field( urldecode( $data['refresh_token'] ) ) ); |
|
692 | - set_transient( 'getpaid_paypal_sandbox_access_token', sanitize_text_field( urldecode( $data['access_token'] ) ), (int) $data['expires_in'] ); |
|
693 | - getpaid_admin()->show_success( __( 'Successfully connected your PayPal sandbox account', 'invoicing' ) ); |
|
689 | + if ($sandbox) { |
|
690 | + wpinv_update_option('paypal_sandbox_email', sanitize_email($user_info->emails[0]->value)); |
|
691 | + wpinv_update_option('paypal_sandbox_refresh_token', sanitize_text_field(urldecode($data['refresh_token']))); |
|
692 | + set_transient('getpaid_paypal_sandbox_access_token', sanitize_text_field(urldecode($data['access_token'])), (int) $data['expires_in']); |
|
693 | + getpaid_admin()->show_success(__('Successfully connected your PayPal sandbox account', 'invoicing')); |
|
694 | 694 | } else { |
695 | - wpinv_update_option( 'paypal_email', sanitize_email( $user_info->emails[0]->value ) ); |
|
696 | - wpinv_update_option( 'paypal_refresh_token', sanitize_text_field( urldecode( $data['refresh_token'] ) ) ); |
|
697 | - set_transient( 'getpaid_paypal_access_token', sanitize_text_field( urldecode( $data['access_token'] ) ), (int) $data['expires_in'] ); |
|
698 | - getpaid_admin()->show_success( __( 'Successfully connected your PayPal account', 'invoicing' ) ); |
|
695 | + wpinv_update_option('paypal_email', sanitize_email($user_info->emails[0]->value)); |
|
696 | + wpinv_update_option('paypal_refresh_token', sanitize_text_field(urldecode($data['refresh_token']))); |
|
697 | + set_transient('getpaid_paypal_access_token', sanitize_text_field(urldecode($data['access_token'])), (int) $data['expires_in']); |
|
698 | + getpaid_admin()->show_success(__('Successfully connected your PayPal account', 'invoicing')); |
|
699 | 699 | } |
700 | 700 | |
701 | 701 | } |
702 | 702 | |
703 | 703 | } |
704 | 704 | |
705 | - $redirect = empty( $data['redirect'] ) ? admin_url( 'admin.php?page=wpinv-settings&tab=gateways§ion=paypal' ) : urldecode( $data['redirect'] ); |
|
705 | + $redirect = empty($data['redirect']) ? admin_url('admin.php?page=wpinv-settings&tab=gateways§ion=paypal') : urldecode($data['redirect']); |
|
706 | 706 | |
707 | - if ( isset( $data['step'] ) ) { |
|
708 | - $redirect = add_query_arg( 'step', $data['step'], $redirect ); |
|
707 | + if (isset($data['step'])) { |
|
708 | + $redirect = add_query_arg('step', $data['step'], $redirect); |
|
709 | 709 | } |
710 | - wp_redirect( $redirect ); |
|
710 | + wp_redirect($redirect); |
|
711 | 711 | exit; |
712 | 712 | } |
713 | 713 |
@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | * @package Invoicing |
7 | 7 | */ |
8 | 8 | |
9 | -defined( 'ABSPATH' ) || exit; |
|
9 | +defined('ABSPATH') || exit; |
|
10 | 10 | |
11 | 11 | /** |
12 | 12 | * @deprecated |
@@ -19,48 +19,48 @@ discard block |
||
19 | 19 | * @deprecated |
20 | 20 | */ |
21 | 21 | function wpinv_get_invoice_cart() { |
22 | - return wpinv_get_invoice( getpaid_get_current_invoice_id() ); |
|
22 | + return wpinv_get_invoice(getpaid_get_current_invoice_id()); |
|
23 | 23 | } |
24 | 24 | |
25 | 25 | /** |
26 | 26 | * @deprecated |
27 | 27 | */ |
28 | -function wpinv_get_invoice_description( $invoice ) { |
|
29 | - $invoice = new WPInv_Invoice( $invoice ); |
|
28 | +function wpinv_get_invoice_description($invoice) { |
|
29 | + $invoice = new WPInv_Invoice($invoice); |
|
30 | 30 | return $invoice->get_description(); |
31 | 31 | } |
32 | 32 | |
33 | 33 | /** |
34 | 34 | * @deprecated |
35 | 35 | */ |
36 | -function wpinv_get_invoice_currency_code( $invoice ) { |
|
37 | - $invoice = new WPInv_Invoice( $invoice ); |
|
36 | +function wpinv_get_invoice_currency_code($invoice) { |
|
37 | + $invoice = new WPInv_Invoice($invoice); |
|
38 | 38 | return $invoice->get_currency(); |
39 | 39 | } |
40 | 40 | |
41 | 41 | /** |
42 | 42 | * @deprecated |
43 | 43 | */ |
44 | -function wpinv_get_payment_user_email( $invoice ) { |
|
45 | - $invoice = new WPInv_Invoice( $invoice ); |
|
44 | +function wpinv_get_payment_user_email($invoice) { |
|
45 | + $invoice = new WPInv_Invoice($invoice); |
|
46 | 46 | return $invoice->get_email(); |
47 | 47 | } |
48 | 48 | |
49 | 49 | /** |
50 | 50 | * @deprecated |
51 | 51 | */ |
52 | -function wpinv_get_user_id( $invoice ) { |
|
53 | - $invoice = new WPInv_Invoice( $invoice ); |
|
52 | +function wpinv_get_user_id($invoice) { |
|
53 | + $invoice = new WPInv_Invoice($invoice); |
|
54 | 54 | return $invoice->get_user_id(); |
55 | 55 | } |
56 | 56 | |
57 | 57 | /** |
58 | 58 | * @deprecated |
59 | 59 | */ |
60 | -function wpinv_get_invoice_status( $invoice, $return_label = false ) { |
|
61 | - $invoice = new WPInv_Invoice( $invoice ); |
|
60 | +function wpinv_get_invoice_status($invoice, $return_label = false) { |
|
61 | + $invoice = new WPInv_Invoice($invoice); |
|
62 | 62 | |
63 | - if ( $return_label ) { |
|
63 | + if ($return_label) { |
|
64 | 64 | return $invoice->get_status_nicename(); |
65 | 65 | } |
66 | 66 | |
@@ -70,10 +70,10 @@ discard block |
||
70 | 70 | /** |
71 | 71 | * @deprecated |
72 | 72 | */ |
73 | -function wpinv_get_payment_gateway( $invoice, $return_label = false ) { |
|
74 | - $invoice = new WPInv_Invoice( $invoice ); |
|
73 | +function wpinv_get_payment_gateway($invoice, $return_label = false) { |
|
74 | + $invoice = new WPInv_Invoice($invoice); |
|
75 | 75 | |
76 | - if ( $return_label ) { |
|
76 | + if ($return_label) { |
|
77 | 77 | return $invoice->get_gateway_title(); |
78 | 78 | } |
79 | 79 | |
@@ -83,75 +83,75 @@ discard block |
||
83 | 83 | /** |
84 | 84 | * @deprecated |
85 | 85 | */ |
86 | -function wpinv_get_payment_gateway_name( $invoice ) { |
|
87 | - return wpinv_get_payment_gateway( $invoice, true ); |
|
86 | +function wpinv_get_payment_gateway_name($invoice) { |
|
87 | + return wpinv_get_payment_gateway($invoice, true); |
|
88 | 88 | } |
89 | 89 | |
90 | 90 | /** |
91 | 91 | * @deprecated |
92 | 92 | */ |
93 | -function wpinv_get_payment_transaction_id( $invoice ) { |
|
94 | - $invoice = new WPInv_Invoice( $invoice ); |
|
93 | +function wpinv_get_payment_transaction_id($invoice) { |
|
94 | + $invoice = new WPInv_Invoice($invoice); |
|
95 | 95 | return $invoice->get_transaction_id(); |
96 | 96 | } |
97 | 97 | |
98 | 98 | /** |
99 | 99 | * @deprecated |
100 | 100 | */ |
101 | -function wpinv_get_invoice_meta( $invoice_id = 0, $meta_key = '_wpinv_payment_meta', $single = true ) { |
|
102 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
103 | - return $invoice->get_meta( $meta_key, $single ); |
|
101 | +function wpinv_get_invoice_meta($invoice_id = 0, $meta_key = '_wpinv_payment_meta', $single = true) { |
|
102 | + $invoice = new WPInv_Invoice($invoice_id); |
|
103 | + return $invoice->get_meta($meta_key, $single); |
|
104 | 104 | } |
105 | 105 | |
106 | 106 | /** |
107 | 107 | * @deprecated |
108 | 108 | */ |
109 | -function wpinv_update_invoice_meta( $invoice_id = 0, $meta_key = '', $meta_value = '' ) { |
|
110 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
111 | - return $invoice->update_meta_data( $meta_key, $meta_value ); |
|
109 | +function wpinv_update_invoice_meta($invoice_id = 0, $meta_key = '', $meta_value = '') { |
|
110 | + $invoice = new WPInv_Invoice($invoice_id); |
|
111 | + return $invoice->update_meta_data($meta_key, $meta_value); |
|
112 | 112 | } |
113 | 113 | |
114 | 114 | /** |
115 | 115 | * @deprecated |
116 | 116 | */ |
117 | -function wpinv_get_items( $invoice = 0 ) { |
|
118 | - $invoice = new WPInv_Invoice( $invoice ); |
|
117 | +function wpinv_get_items($invoice = 0) { |
|
118 | + $invoice = new WPInv_Invoice($invoice); |
|
119 | 119 | return $invoice->get_items(); |
120 | 120 | } |
121 | 121 | |
122 | 122 | /** |
123 | 123 | * @deprecated |
124 | 124 | */ |
125 | -function wpinv_get_fees( $invoice = 0 ) { |
|
126 | - $invoice = new WPInv_Invoice( $invoice ); |
|
125 | +function wpinv_get_fees($invoice = 0) { |
|
126 | + $invoice = new WPInv_Invoice($invoice); |
|
127 | 127 | return $invoice->get_fees(); |
128 | 128 | } |
129 | 129 | |
130 | 130 | /** |
131 | 131 | * @deprecated |
132 | 132 | */ |
133 | -function wpinv_get_invoice_ip( $invoice ) { |
|
134 | - $invoice = new WPInv_Invoice( $invoice ); |
|
133 | +function wpinv_get_invoice_ip($invoice) { |
|
134 | + $invoice = new WPInv_Invoice($invoice); |
|
135 | 135 | return $invoice->get_ip(); |
136 | 136 | } |
137 | 137 | |
138 | 138 | /** |
139 | 139 | * @deprecated |
140 | 140 | */ |
141 | -function wpinv_get_invoice_user_info( $invoice ) { |
|
142 | - $invoice = new WPInv_Invoice( $invoice ); |
|
141 | +function wpinv_get_invoice_user_info($invoice) { |
|
142 | + $invoice = new WPInv_Invoice($invoice); |
|
143 | 143 | return $invoice->get_user_info(); |
144 | 144 | } |
145 | 145 | |
146 | 146 | /** |
147 | 147 | * @deprecated |
148 | 148 | */ |
149 | -function wpinv_subtotal( $invoice = 0, $currency = false ) { |
|
150 | - $invoice = new WPInv_Invoice( $invoice ); |
|
149 | +function wpinv_subtotal($invoice = 0, $currency = false) { |
|
150 | + $invoice = new WPInv_Invoice($invoice); |
|
151 | 151 | $subtotal = $invoice->get_subtotal(); |
152 | 152 | |
153 | - if ( $currency ) { |
|
154 | - return wpinv_price( $subtotal, $invoice->get_currency() ); |
|
153 | + if ($currency) { |
|
154 | + return wpinv_price($subtotal, $invoice->get_currency()); |
|
155 | 155 | } |
156 | 156 | |
157 | 157 | return $subtotal; |
@@ -160,12 +160,12 @@ discard block |
||
160 | 160 | /** |
161 | 161 | * @deprecated |
162 | 162 | */ |
163 | -function wpinv_tax( $invoice = 0, $currency = false ) { |
|
164 | - $invoice = new WPInv_Invoice( $invoice ); |
|
163 | +function wpinv_tax($invoice = 0, $currency = false) { |
|
164 | + $invoice = new WPInv_Invoice($invoice); |
|
165 | 165 | $tax = $invoice->get_total_tax(); |
166 | 166 | |
167 | - if ( $currency ) { |
|
168 | - return wpinv_price( $tax, $invoice->get_currency() ); |
|
167 | + if ($currency) { |
|
168 | + return wpinv_price($tax, $invoice->get_currency()); |
|
169 | 169 | } |
170 | 170 | |
171 | 171 | return $tax; |
@@ -174,12 +174,12 @@ discard block |
||
174 | 174 | /** |
175 | 175 | * @deprecated |
176 | 176 | */ |
177 | -function wpinv_discount( $invoice = 0, $currency = false ) { |
|
178 | - $invoice = new WPInv_Invoice( $invoice ); |
|
177 | +function wpinv_discount($invoice = 0, $currency = false) { |
|
178 | + $invoice = new WPInv_Invoice($invoice); |
|
179 | 179 | $discount = $invoice->get_total_discount(); |
180 | 180 | |
181 | - if ( $currency ) { |
|
182 | - return wpinv_price( $discount, $invoice->get_currency() ); |
|
181 | + if ($currency) { |
|
182 | + return wpinv_price($discount, $invoice->get_currency()); |
|
183 | 183 | } |
184 | 184 | |
185 | 185 | return $discount; |
@@ -188,20 +188,20 @@ discard block |
||
188 | 188 | /** |
189 | 189 | * @deprecated |
190 | 190 | */ |
191 | -function wpinv_discount_code( $invoice = 0 ) { |
|
192 | - $invoice = new WPInv_Invoice( $invoice ); |
|
191 | +function wpinv_discount_code($invoice = 0) { |
|
192 | + $invoice = new WPInv_Invoice($invoice); |
|
193 | 193 | return $invoice->get_discount_code(); |
194 | 194 | } |
195 | 195 | |
196 | 196 | /** |
197 | 197 | * @deprecated |
198 | 198 | */ |
199 | -function wpinv_payment_total( $invoice = 0, $currency = false ) { |
|
200 | - $invoice = new WPInv_Invoice( $invoice ); |
|
199 | +function wpinv_payment_total($invoice = 0, $currency = false) { |
|
200 | + $invoice = new WPInv_Invoice($invoice); |
|
201 | 201 | $total = $invoice->get_total(); |
202 | 202 | |
203 | - if ( $currency ) { |
|
204 | - return wpinv_price( $total, $invoice->get_currency() ); |
|
203 | + if ($currency) { |
|
204 | + return wpinv_price($total, $invoice->get_currency()); |
|
205 | 205 | } |
206 | 206 | |
207 | 207 | return $total; |
@@ -210,51 +210,51 @@ discard block |
||
210 | 210 | /** |
211 | 211 | * @deprecated |
212 | 212 | */ |
213 | -function wpinv_get_date_created( $invoice = 0, $format = '' ) { |
|
214 | - $invoice = new WPInv_Invoice( $invoice ); |
|
213 | +function wpinv_get_date_created($invoice = 0, $format = '') { |
|
214 | + $invoice = new WPInv_Invoice($invoice); |
|
215 | 215 | |
216 | - $format = ! empty( $format ) ? $format : get_option( 'date_format' ); |
|
216 | + $format = !empty($format) ? $format : get_option('date_format'); |
|
217 | 217 | $date_created = $invoice->get_created_date(); |
218 | 218 | |
219 | - return empty( $date_created ) ? date_i18n( $format, strtotime( $date_created ) ) : ''; |
|
219 | + return empty($date_created) ? date_i18n($format, strtotime($date_created)) : ''; |
|
220 | 220 | } |
221 | 221 | |
222 | 222 | /** |
223 | 223 | * @deprecated |
224 | 224 | */ |
225 | -function wpinv_get_invoice_date( $invoice = 0, $format = '' ) { |
|
226 | - wpinv_get_date_created( $invoice, $format ); |
|
225 | +function wpinv_get_invoice_date($invoice = 0, $format = '') { |
|
226 | + wpinv_get_date_created($invoice, $format); |
|
227 | 227 | } |
228 | 228 | |
229 | 229 | /** |
230 | 230 | * @deprecated |
231 | 231 | */ |
232 | -function wpinv_get_invoice_vat_number( $invoice = 0 ) { |
|
233 | - $invoice = new WPInv_Invoice( $invoice ); |
|
232 | +function wpinv_get_invoice_vat_number($invoice = 0) { |
|
233 | + $invoice = new WPInv_Invoice($invoice); |
|
234 | 234 | return $invoice->get_vat_number(); |
235 | 235 | } |
236 | 236 | |
237 | 237 | /** |
238 | 238 | * @deprecated |
239 | 239 | */ |
240 | -function wpinv_insert_payment_note( $invoice = 0, $note = '', $user_type = false, $added_by_user = false, $system = false ) { |
|
241 | - $invoice = new WPInv_Invoice( $invoice ); |
|
242 | - return $invoice->add_note( $note, $user_type, $added_by_user, $system ); |
|
240 | +function wpinv_insert_payment_note($invoice = 0, $note = '', $user_type = false, $added_by_user = false, $system = false) { |
|
241 | + $invoice = new WPInv_Invoice($invoice); |
|
242 | + return $invoice->add_note($note, $user_type, $added_by_user, $system); |
|
243 | 243 | } |
244 | 244 | |
245 | 245 | /** |
246 | 246 | * @deprecated |
247 | 247 | */ |
248 | -function wpinv_get_payment_key( $invoice = 0 ) { |
|
249 | - $invoice = new WPInv_Invoice( $invoice ); |
|
248 | +function wpinv_get_payment_key($invoice = 0) { |
|
249 | + $invoice = new WPInv_Invoice($invoice); |
|
250 | 250 | return $invoice->get_key(); |
251 | 251 | } |
252 | 252 | |
253 | 253 | /** |
254 | 254 | * @deprecated |
255 | 255 | */ |
256 | -function wpinv_get_invoice_number( $invoice = 0 ) { |
|
257 | - $invoice = new WPInv_Invoice( $invoice ); |
|
256 | +function wpinv_get_invoice_number($invoice = 0) { |
|
257 | + $invoice = new WPInv_Invoice($invoice); |
|
258 | 258 | return $invoice->get_number(); |
259 | 259 | } |
260 | 260 | |
@@ -401,9 +401,9 @@ discard block |
||
401 | 401 | /** |
402 | 402 | * @deprecated |
403 | 403 | */ |
404 | -function wpinv_update_payment_status( $invoice, $new_status = 'publish' ) { |
|
405 | - $invoice = new WPInv_Invoice( $invoice ); |
|
406 | - return $invoice->update_status( $new_status ); |
|
404 | +function wpinv_update_payment_status($invoice, $new_status = 'publish') { |
|
405 | + $invoice = new WPInv_Invoice($invoice); |
|
406 | + return $invoice->update_status($new_status); |
|
407 | 407 | } |
408 | 408 | |
409 | 409 | /** |
@@ -456,22 +456,22 @@ discard block |
||
456 | 456 | /** |
457 | 457 | * @deprecated |
458 | 458 | */ |
459 | -function wpinv_set_payment_transaction_id( $invoice_id = 0, $transaction_id = '' ) { |
|
459 | +function wpinv_set_payment_transaction_id($invoice_id = 0, $transaction_id = '') { |
|
460 | 460 | |
461 | 461 | // Fetch the invoice. |
462 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
462 | + $invoice = new WPInv_Invoice($invoice_id); |
|
463 | 463 | |
464 | - if ( 0 == $invoice->get_id() ) { |
|
464 | + if (0 == $invoice->get_id()) { |
|
465 | 465 | return false; |
466 | 466 | } |
467 | 467 | |
468 | 468 | // Prepare the transaction id. |
469 | - if ( empty( $transaction_id ) ) { |
|
469 | + if (empty($transaction_id)) { |
|
470 | 470 | $transaction_id = $invoice_id; |
471 | 471 | } |
472 | 472 | |
473 | 473 | // Set the transaction id; |
474 | - $invoice->set_transaction_id( apply_filters( 'wpinv_set_payment_transaction_id', $transaction_id, $invoice ) ); |
|
474 | + $invoice->set_transaction_id(apply_filters('wpinv_set_payment_transaction_id', $transaction_id, $invoice)); |
|
475 | 475 | |
476 | 476 | // Save the invoice. |
477 | 477 | return $invoice->save(); |
@@ -484,12 +484,12 @@ discard block |
||
484 | 484 | * @param WPInv_Invoice $invoice |
485 | 485 | * @param string $gateway |
486 | 486 | */ |
487 | -function wpinv_send_to_gateway( $gateway, $invoice ) { |
|
487 | +function wpinv_send_to_gateway($gateway, $invoice) { |
|
488 | 488 | |
489 | 489 | $payment_data = array( |
490 | 490 | 'invoice_id' => $invoice->get_id(), |
491 | 491 | 'items' => $invoice->get_cart_details(), |
492 | - 'cart_discounts' => array( $invoice->get_discount_code() ), |
|
492 | + 'cart_discounts' => array($invoice->get_discount_code()), |
|
493 | 493 | 'fees' => $invoice->get_total_fees(), |
494 | 494 | 'subtotal' => $invoice->get_subtotal(), |
495 | 495 | 'discount' => $invoice->get_total_discount(), |
@@ -497,16 +497,16 @@ discard block |
||
497 | 497 | 'price' => $invoice->get_total(), |
498 | 498 | 'invoice_key' => $invoice->get_key(), |
499 | 499 | 'user_email' => $invoice->get_email(), |
500 | - 'date' => date( 'Y-m-d H:i:s', current_time( 'timestamp' ) ), |
|
500 | + 'date' => date('Y-m-d H:i:s', current_time('timestamp')), |
|
501 | 501 | 'user_info' => $invoice->get_user_info(), |
502 | - 'post_data' => stripslashes_deep( $_POST ), |
|
502 | + 'post_data' => stripslashes_deep($_POST), |
|
503 | 503 | 'cart_details' => $invoice->get_cart_details(), |
504 | 504 | 'gateway' => $gateway, |
505 | 505 | 'card_info' => array(), |
506 | 506 | 'gateway_nonce' => wp_create_nonce('wpi-gateway'), |
507 | 507 | ); |
508 | 508 | |
509 | - do_action( 'wpinv_gateway_' . $gateway, $payment_data ); |
|
509 | + do_action('wpinv_gateway_' . $gateway, $payment_data); |
|
510 | 510 | } |
511 | 511 | |
512 | 512 | /** |
@@ -519,10 +519,10 @@ discard block |
||
519 | 519 | /** |
520 | 520 | * @deprecated |
521 | 521 | */ |
522 | -function wpinv_die( $message = '', $title = '', $status = 400 ) { |
|
523 | - add_filter( 'wp_die_ajax_handler', 'wpinv_die_handler', 10, 3 ); |
|
524 | - add_filter( 'wp_die_handler', 'wpinv_die_handler', 10, 3 ); |
|
525 | - wp_die( $message, $title, array( 'response' => $status )); |
|
522 | +function wpinv_die($message = '', $title = '', $status = 400) { |
|
523 | + add_filter('wp_die_ajax_handler', 'wpinv_die_handler', 10, 3); |
|
524 | + add_filter('wp_die_handler', 'wpinv_die_handler', 10, 3); |
|
525 | + wp_die($message, $title, array('response' => $status)); |
|
526 | 526 | } |
527 | 527 | |
528 | 528 | /** |
@@ -640,14 +640,14 @@ discard block |
||
640 | 640 | /** |
641 | 641 | * @deprecated |
642 | 642 | */ |
643 | -function wpinv_invoice_status_label( $status, $status_display = '' ) { |
|
644 | - return empty( $status_display ) ? sanitize_text_field( $status ) : sanitize_text_field( $status_display ); |
|
643 | +function wpinv_invoice_status_label($status, $status_display = '') { |
|
644 | + return empty($status_display) ? sanitize_text_field($status) : sanitize_text_field($status_display); |
|
645 | 645 | } |
646 | 646 | |
647 | 647 | /** |
648 | 648 | * @deprecated |
649 | 649 | */ |
650 | -function wpinv_clean_invoice_number( $number ) { |
|
650 | +function wpinv_clean_invoice_number($number) { |
|
651 | 651 | return $number; |
652 | 652 | } |
653 | 653 | |
@@ -852,12 +852,12 @@ discard block |
||
852 | 852 | /** |
853 | 853 | * @deprecated |
854 | 854 | */ |
855 | -function wpinv_item_show_price( $item_id = 0, $echo = true ) { |
|
855 | +function wpinv_item_show_price($item_id = 0, $echo = true) { |
|
856 | 856 | |
857 | - if ( $echo ) { |
|
858 | - echo wpinv_item_price( $item_id ); |
|
857 | + if ($echo) { |
|
858 | + echo wpinv_item_price($item_id); |
|
859 | 859 | } else { |
860 | - return wpinv_item_price( $item_id ); |
|
860 | + return wpinv_item_price($item_id); |
|
861 | 861 | } |
862 | 862 | |
863 | 863 | } |
@@ -1272,6 +1272,6 @@ discard block |
||
1272 | 1272 | * @return WPInv_Subscription|bool |
1273 | 1273 | * @deprecated |
1274 | 1274 | */ |
1275 | -function wpinv_get_subscription( $invoice ) { |
|
1276 | - return wpinv_get_invoice_subscription( $invoice ); |
|
1275 | +function wpinv_get_subscription($invoice) { |
|
1276 | + return wpinv_get_invoice_subscription($invoice); |
|
1277 | 1277 | } |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | * |
5 | 5 | */ |
6 | 6 | |
7 | -defined( 'ABSPATH' ) || exit; |
|
7 | +defined('ABSPATH') || exit; |
|
8 | 8 | |
9 | 9 | /** |
10 | 10 | * Authorize.net Legacy Payment Gateway class. |
@@ -28,8 +28,8 @@ discard block |
||
28 | 28 | * @param WPInv_Invoice $invoice Invoice. |
29 | 29 | * @return string |
30 | 30 | */ |
31 | - public function get_api_url( $invoice ) { |
|
32 | - return $this->is_sandbox( $invoice ) ? 'https://apitest.authorize.net/xml/v1/request.api' : 'https://api.authorize.net/xml/v1/request.api'; |
|
31 | + public function get_api_url($invoice) { |
|
32 | + return $this->is_sandbox($invoice) ? 'https://apitest.authorize.net/xml/v1/request.api' : 'https://api.authorize.net/xml/v1/request.api'; |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | /** |
@@ -40,48 +40,48 @@ discard block |
||
40 | 40 | * @param WPInv_Invoice $invoice Invoice. |
41 | 41 | * @return stdClass|WP_Error |
42 | 42 | */ |
43 | - public function post( $post, $invoice ){ |
|
43 | + public function post($post, $invoice) { |
|
44 | 44 | |
45 | - $url = $this->get_api_url( $invoice ); |
|
45 | + $url = $this->get_api_url($invoice); |
|
46 | 46 | $response = wp_remote_post( |
47 | 47 | $url, |
48 | 48 | array( |
49 | 49 | 'headers' => array( |
50 | 50 | 'Content-Type' => 'application/json; charset=utf-8' |
51 | 51 | ), |
52 | - 'body' => json_encode( $post ), |
|
52 | + 'body' => json_encode($post), |
|
53 | 53 | 'method' => 'POST' |
54 | 54 | ) |
55 | 55 | ); |
56 | 56 | |
57 | - if ( is_wp_error( $response ) ) { |
|
57 | + if (is_wp_error($response)) { |
|
58 | 58 | return $response; |
59 | 59 | } |
60 | 60 | |
61 | - $response = wp_unslash( wp_remote_retrieve_body( $response ) ); |
|
61 | + $response = wp_unslash(wp_remote_retrieve_body($response)); |
|
62 | 62 | $response = preg_replace('/\xEF\xBB\xBF/', '', $response); // https://community.developer.authorize.net/t5/Integration-and-Testing/JSON-issues/td-p/48851 |
63 | - $response = json_decode( $response ); |
|
63 | + $response = json_decode($response); |
|
64 | 64 | |
65 | - if ( empty( $response ) ) { |
|
66 | - return new WP_Error( 'invalid_reponse', __( 'Invalid gateway response', 'invoicing' ) ); |
|
65 | + if (empty($response)) { |
|
66 | + return new WP_Error('invalid_reponse', __('Invalid gateway response', 'invoicing')); |
|
67 | 67 | } |
68 | 68 | |
69 | - if ( $response->messages->resultCode == 'Error' ) { |
|
69 | + if ($response->messages->resultCode == 'Error') { |
|
70 | 70 | |
71 | - if ( $this->is_sandbox( $invoice ) ) { |
|
72 | - wpinv_error_log( $response ); |
|
71 | + if ($this->is_sandbox($invoice)) { |
|
72 | + wpinv_error_log($response); |
|
73 | 73 | } |
74 | 74 | |
75 | - if ( $response->messages->message[0]->code == 'E00039' && ! empty( $response->customerProfileId ) && ! empty( $response->customerPaymentProfileId ) ) { |
|
76 | - return new WP_Error( 'dup_payment_profile', $response->customerProfileId . '.' . $response->customerPaymentProfileId ); |
|
75 | + if ($response->messages->message[0]->code == 'E00039' && !empty($response->customerProfileId) && !empty($response->customerPaymentProfileId)) { |
|
76 | + return new WP_Error('dup_payment_profile', $response->customerProfileId . '.' . $response->customerPaymentProfileId); |
|
77 | 77 | } |
78 | 78 | |
79 | - if ( ! empty( $response->transactionResponse ) && ! empty( $response->transactionResponse->errors ) ) { |
|
79 | + if (!empty($response->transactionResponse) && !empty($response->transactionResponse->errors)) { |
|
80 | 80 | $error = $response->transactionResponse->errors[0]; |
81 | - return new WP_Error( $error->errorCode, $error->errorText ); |
|
81 | + return new WP_Error($error->errorCode, $error->errorText); |
|
82 | 82 | } |
83 | 83 | |
84 | - return new WP_Error( $response->messages->message[0]->code, $response->messages->message[0]->text ); |
|
84 | + return new WP_Error($response->messages->message[0]->code, $response->messages->message[0]->text); |
|
85 | 85 | } |
86 | 86 | |
87 | 87 | return $response; |
@@ -97,8 +97,8 @@ discard block |
||
97 | 97 | public function get_auth_params() { |
98 | 98 | |
99 | 99 | return array( |
100 | - 'name' => $this->get_option( 'login_id' ), |
|
101 | - 'transactionKey' => $this->get_option( 'transaction_key' ), |
|
100 | + 'name' => $this->get_option('login_id'), |
|
101 | + 'transactionKey' => $this->get_option('transaction_key'), |
|
102 | 102 | ); |
103 | 103 | |
104 | 104 | } |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | * @param WPInv_Subscription $subscription Subscription. |
111 | 111 | * @param WPInv_Invoice $invoice Invoice. |
112 | 112 | */ |
113 | - public function cancel_subscription( $subscription, $invoice ) { |
|
113 | + public function cancel_subscription($subscription, $invoice) { |
|
114 | 114 | |
115 | 115 | // Backwards compatibility. New version do not use authorize.net subscriptions. |
116 | 116 | $this->post( |
@@ -135,38 +135,38 @@ discard block |
||
135 | 135 | $this->maybe_process_old_ipn(); |
136 | 136 | |
137 | 137 | // Validate the IPN. |
138 | - if ( empty( $_POST ) || ! $this->validate_ipn() ) { |
|
139 | - wp_die( 'Authorize.NET IPN Request Failure', 'Authorize.NET IPN', array( 'response' => 200 ) ); |
|
138 | + if (empty($_POST) || !$this->validate_ipn()) { |
|
139 | + wp_die('Authorize.NET IPN Request Failure', 'Authorize.NET IPN', array('response' => 200)); |
|
140 | 140 | } |
141 | 141 | |
142 | 142 | // Event type. |
143 | - $posted = json_decode( file_get_contents( 'php://input' ) ); |
|
144 | - if ( empty( $posted ) ) { |
|
145 | - wp_die( 'Invalid JSON', 'Authorize.NET IPN', array( 'response' => 200 ) ); |
|
143 | + $posted = json_decode(file_get_contents('php://input')); |
|
144 | + if (empty($posted)) { |
|
145 | + wp_die('Invalid JSON', 'Authorize.NET IPN', array('response' => 200)); |
|
146 | 146 | } |
147 | 147 | |
148 | 148 | // Process the IPN. |
149 | - $posted = (object) wp_unslash( $posted ); |
|
149 | + $posted = (object) wp_unslash($posted); |
|
150 | 150 | |
151 | 151 | // Process refunds. |
152 | - if ( 'net.authorize.payment.refund.created' == $posted->eventType ) { |
|
153 | - $invoice = new WPInv_Invoice( $posted->payload->merchantReferenceId ); |
|
154 | - $this->validate_ipn_invoice( $invoice, $posted->payload ); |
|
152 | + if ('net.authorize.payment.refund.created' == $posted->eventType) { |
|
153 | + $invoice = new WPInv_Invoice($posted->payload->merchantReferenceId); |
|
154 | + $this->validate_ipn_invoice($invoice, $posted->payload); |
|
155 | 155 | $invoice->refund(); |
156 | 156 | } |
157 | 157 | |
158 | 158 | // Held funds approved. |
159 | - if ( 'net.authorize.payment.fraud.approved' == $posted->eventType ) { |
|
160 | - $invoice = new WPInv_Invoice( $posted->payload->id ); |
|
161 | - $this->validate_ipn_invoice( $invoice, $posted->payload ); |
|
162 | - $invoice->mark_paid( false, __( 'Payment released', 'invoicing' ) ); |
|
159 | + if ('net.authorize.payment.fraud.approved' == $posted->eventType) { |
|
160 | + $invoice = new WPInv_Invoice($posted->payload->id); |
|
161 | + $this->validate_ipn_invoice($invoice, $posted->payload); |
|
162 | + $invoice->mark_paid(false, __('Payment released', 'invoicing')); |
|
163 | 163 | } |
164 | 164 | |
165 | 165 | // Held funds declined. |
166 | - if ( 'net.authorize.payment.fraud.declined' == $posted->eventType ) { |
|
167 | - $invoice = new WPInv_Invoice( $posted->payload->id ); |
|
168 | - $this->validate_ipn_invoice( $invoice, $posted->payload ); |
|
169 | - $invoice->set_status( 'wpi-failed', __( 'Payment declined', 'invoicing' ) ); |
|
166 | + if ('net.authorize.payment.fraud.declined' == $posted->eventType) { |
|
167 | + $invoice = new WPInv_Invoice($posted->payload->id); |
|
168 | + $this->validate_ipn_invoice($invoice, $posted->payload); |
|
169 | + $invoice->set_status('wpi-failed', __('Payment declined', 'invoicing')); |
|
170 | 170 | $invoice->save(); |
171 | 171 | } |
172 | 172 | |
@@ -181,8 +181,8 @@ discard block |
||
181 | 181 | * @param object $payload |
182 | 182 | * @return void |
183 | 183 | */ |
184 | - public function validate_ipn_invoice( $invoice, $payload ) { |
|
185 | - if ( ! $invoice->exists() || $payload->id != $invoice->get_transaction_id() ) { |
|
184 | + public function validate_ipn_invoice($invoice, $payload) { |
|
185 | + if (!$invoice->exists() || $payload->id != $invoice->get_transaction_id()) { |
|
186 | 186 | exit; |
187 | 187 | } |
188 | 188 | } |
@@ -194,32 +194,32 @@ discard block |
||
194 | 194 | */ |
195 | 195 | public function maybe_process_old_ipn() { |
196 | 196 | |
197 | - $data = wp_kses_post_deep( wp_unslash( $_POST ) ); |
|
197 | + $data = wp_kses_post_deep(wp_unslash($_POST)); |
|
198 | 198 | |
199 | 199 | // Only process subscriptions subscriptions. |
200 | - if ( empty( $data['x_subscription_id'] ) ) { |
|
200 | + if (empty($data['x_subscription_id'])) { |
|
201 | 201 | return; |
202 | 202 | } |
203 | 203 | |
204 | 204 | // Check validity. |
205 | - $this->validate_old_ipn_signature( $data ); |
|
205 | + $this->validate_old_ipn_signature($data); |
|
206 | 206 | |
207 | 207 | // Fetch the associated subscription. |
208 | - $subscription_id = WPInv_Subscription::get_subscription_id_by_field( $data['x_subscription_id'] ); |
|
209 | - $subscription = new WPInv_Subscription( $subscription_id ); |
|
208 | + $subscription_id = WPInv_Subscription::get_subscription_id_by_field($data['x_subscription_id']); |
|
209 | + $subscription = new WPInv_Subscription($subscription_id); |
|
210 | 210 | |
211 | 211 | // Abort if it is missing or completed. |
212 | - if ( ! $subscription->get_id() || $subscription->has_status( 'completed' ) ) { |
|
212 | + if (!$subscription->get_id() || $subscription->has_status('completed')) { |
|
213 | 213 | return; |
214 | 214 | } |
215 | 215 | |
216 | 216 | // Payment status. |
217 | - if ( 1 == $data['x_response_code'] ) { |
|
217 | + if (1 == $data['x_response_code']) { |
|
218 | 218 | |
219 | 219 | // Renew the subscription. |
220 | 220 | $subscription->add_payment( |
221 | 221 | array( |
222 | - 'transaction_id' => sanitize_text_field( $data['x_trans_id'] ), |
|
222 | + 'transaction_id' => sanitize_text_field($data['x_trans_id']), |
|
223 | 223 | 'gateway' => $this->id |
224 | 224 | ) |
225 | 225 | ); |
@@ -238,17 +238,17 @@ discard block |
||
238 | 238 | * |
239 | 239 | * @param array $posted |
240 | 240 | */ |
241 | - public function validate_old_ipn_signature( $posted ) { |
|
241 | + public function validate_old_ipn_signature($posted) { |
|
242 | 242 | |
243 | - $signature = $this->get_option( 'signature_key' ); |
|
244 | - if ( ! empty( $signature ) ) { |
|
245 | - $login_id = $this->get_option( 'login_id' ); |
|
246 | - $trans_id = wpinv_clean( $_POST['x_trans_id'] ); |
|
247 | - $amount = wpinv_clean( $_POST['x_amount'] ); |
|
248 | - $hash = hash_hmac ( 'sha512', "^$login_id^$trans_id^$amount^", hex2bin( $signature ) ); |
|
243 | + $signature = $this->get_option('signature_key'); |
|
244 | + if (!empty($signature)) { |
|
245 | + $login_id = $this->get_option('login_id'); |
|
246 | + $trans_id = wpinv_clean($_POST['x_trans_id']); |
|
247 | + $amount = wpinv_clean($_POST['x_amount']); |
|
248 | + $hash = hash_hmac('sha512', "^$login_id^$trans_id^$amount^", hex2bin($signature)); |
|
249 | 249 | |
250 | - if ( ! hash_equals( $hash, $posted['x_SHA2_Hash'] ) ) { |
|
251 | - wpinv_error_log( $posted['x_SHA2_Hash'], "Invalid signature. Expected $hash" ); |
|
250 | + if (!hash_equals($hash, $posted['x_SHA2_Hash'])) { |
|
251 | + wpinv_error_log($posted['x_SHA2_Hash'], "Invalid signature. Expected $hash"); |
|
252 | 252 | exit; |
253 | 253 | } |
254 | 254 | |
@@ -261,28 +261,28 @@ discard block |
||
261 | 261 | */ |
262 | 262 | public function validate_ipn() { |
263 | 263 | |
264 | - wpinv_error_log( 'Validating Authorize.NET IPN response' ); |
|
264 | + wpinv_error_log('Validating Authorize.NET IPN response'); |
|
265 | 265 | |
266 | - if ( empty( $_SERVER['HTTP_X_ANET_SIGNATURE'] ) ) { |
|
266 | + if (empty($_SERVER['HTTP_X_ANET_SIGNATURE'])) { |
|
267 | 267 | return false; |
268 | 268 | } |
269 | 269 | |
270 | - $signature = $this->get_option( 'signature_key' ); |
|
270 | + $signature = $this->get_option('signature_key'); |
|
271 | 271 | |
272 | - if ( empty( $signature ) ) { |
|
273 | - wpinv_error_log( 'Error: You have not set a signature key' ); |
|
272 | + if (empty($signature)) { |
|
273 | + wpinv_error_log('Error: You have not set a signature key'); |
|
274 | 274 | return false; |
275 | 275 | } |
276 | 276 | |
277 | - $hash = hash_hmac ( 'sha512', file_get_contents( 'php://input' ), hex2bin( $signature ) ); |
|
277 | + $hash = hash_hmac('sha512', file_get_contents('php://input'), hex2bin($signature)); |
|
278 | 278 | |
279 | - if ( hash_equals( $hash, $_SERVER['HTTP_X_ANET_SIGNATURE'] ) ) { |
|
280 | - wpinv_error_log( 'Successfully validated the IPN' ); |
|
279 | + if (hash_equals($hash, $_SERVER['HTTP_X_ANET_SIGNATURE'])) { |
|
280 | + wpinv_error_log('Successfully validated the IPN'); |
|
281 | 281 | return true; |
282 | 282 | } |
283 | 283 | |
284 | - wpinv_error_log( 'IPN hash is not valid' ); |
|
285 | - wpinv_error_log( $_SERVER['HTTP_X_ANET_SIGNATURE'] ); |
|
284 | + wpinv_error_log('IPN hash is not valid'); |
|
285 | + wpinv_error_log($_SERVER['HTTP_X_ANET_SIGNATURE']); |
|
286 | 286 | return false; |
287 | 287 | |
288 | 288 | } |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | * |
5 | 5 | */ |
6 | 6 | |
7 | -defined( 'ABSPATH' ) || exit; |
|
7 | +defined('ABSPATH') || exit; |
|
8 | 8 | |
9 | 9 | /** |
10 | 10 | * Abstaract Payment Gateway class. |
@@ -139,51 +139,51 @@ discard block |
||
139 | 139 | public function __construct() { |
140 | 140 | |
141 | 141 | // Register gateway. |
142 | - add_filter( 'wpinv_payment_gateways', array( $this, 'register_gateway' ) ); |
|
142 | + add_filter('wpinv_payment_gateways', array($this, 'register_gateway')); |
|
143 | 143 | |
144 | - $this->enabled = wpinv_is_gateway_active( $this->id ); |
|
144 | + $this->enabled = wpinv_is_gateway_active($this->id); |
|
145 | 145 | |
146 | 146 | // Add support for various features. |
147 | - foreach ( $this->supports as $feature ) { |
|
148 | - add_filter( "wpinv_{$this->id}_support_{$feature}", '__return_true' ); |
|
149 | - add_filter( "getpaid_{$this->id}_support_{$feature}", '__return_true' ); |
|
150 | - add_filter( "getpaid_{$this->id}_supports_{$feature}", '__return_true' ); |
|
147 | + foreach ($this->supports as $feature) { |
|
148 | + add_filter("wpinv_{$this->id}_support_{$feature}", '__return_true'); |
|
149 | + add_filter("getpaid_{$this->id}_support_{$feature}", '__return_true'); |
|
150 | + add_filter("getpaid_{$this->id}_supports_{$feature}", '__return_true'); |
|
151 | 151 | } |
152 | 152 | |
153 | 153 | // Invoice addons. |
154 | - if ( $this->supports( 'addons' ) ) { |
|
155 | - add_action( "getpaid_process_{$this->id}_invoice_addons", array( $this, 'process_addons' ), 10, 2 ); |
|
154 | + if ($this->supports('addons')) { |
|
155 | + add_action("getpaid_process_{$this->id}_invoice_addons", array($this, 'process_addons'), 10, 2); |
|
156 | 156 | } |
157 | 157 | |
158 | 158 | // Gateway settings. |
159 | - add_filter( "wpinv_gateway_settings_{$this->id}", array( $this, 'admin_settings' ) ); |
|
159 | + add_filter("wpinv_gateway_settings_{$this->id}", array($this, 'admin_settings')); |
|
160 | 160 | |
161 | 161 | |
162 | 162 | // Gateway checkout fiellds. |
163 | - add_action( "wpinv_{$this->id}_cc_form", array( $this, 'payment_fields' ), 10, 2 ); |
|
163 | + add_action("wpinv_{$this->id}_cc_form", array($this, 'payment_fields'), 10, 2); |
|
164 | 164 | |
165 | 165 | // Process payment. |
166 | - add_action( "getpaid_gateway_{$this->id}", array( $this, 'process_payment' ), 10, 3 ); |
|
166 | + add_action("getpaid_gateway_{$this->id}", array($this, 'process_payment'), 10, 3); |
|
167 | 167 | |
168 | 168 | // Change the checkout button text. |
169 | - if ( ! empty( $this->checkout_button_text ) ) { |
|
170 | - add_filter( "getpaid_gateway_{$this->id}_checkout_button_label", array( $this, 'rename_checkout_button' ) ); |
|
169 | + if (!empty($this->checkout_button_text)) { |
|
170 | + add_filter("getpaid_gateway_{$this->id}_checkout_button_label", array($this, 'rename_checkout_button')); |
|
171 | 171 | } |
172 | 172 | |
173 | 173 | // Check if a gateway is valid for a given currency. |
174 | - add_filter( "getpaid_gateway_{$this->id}_is_valid_for_currency", array( $this, 'validate_currency' ), 10, 2 ); |
|
174 | + add_filter("getpaid_gateway_{$this->id}_is_valid_for_currency", array($this, 'validate_currency'), 10, 2); |
|
175 | 175 | |
176 | 176 | // Generate the transaction url. |
177 | - add_filter( "getpaid_gateway_{$this->id}_transaction_url", array( $this, 'filter_transaction_url' ), 10, 2 ); |
|
177 | + add_filter("getpaid_gateway_{$this->id}_transaction_url", array($this, 'filter_transaction_url'), 10, 2); |
|
178 | 178 | |
179 | 179 | // Generate the subscription url. |
180 | - add_filter( 'getpaid_remote_subscription_profile_url', array( $this, 'generate_subscription_url' ), 10, 2 ); |
|
180 | + add_filter('getpaid_remote_subscription_profile_url', array($this, 'generate_subscription_url'), 10, 2); |
|
181 | 181 | |
182 | 182 | // Confirm payments. |
183 | - add_filter( "wpinv_payment_confirm_{$this->id}", array( $this, 'confirm_payment' ), 10, 2 ); |
|
183 | + add_filter("wpinv_payment_confirm_{$this->id}", array($this, 'confirm_payment'), 10, 2); |
|
184 | 184 | |
185 | 185 | // Verify IPNs. |
186 | - add_action( "wpinv_verify_{$this->id}_ipn", array( $this, 'verify_ipn' ) ); |
|
186 | + add_action("wpinv_verify_{$this->id}_ipn", array($this, 'verify_ipn')); |
|
187 | 187 | |
188 | 188 | } |
189 | 189 | |
@@ -193,7 +193,7 @@ discard block |
||
193 | 193 | * @since 1.0.19 |
194 | 194 | * @return bool |
195 | 195 | */ |
196 | - public function is( $gateway ) { |
|
196 | + public function is($gateway) { |
|
197 | 197 | return $gateway == $this->id; |
198 | 198 | } |
199 | 199 | |
@@ -203,24 +203,24 @@ discard block |
||
203 | 203 | * @since 1.0.19 |
204 | 204 | * @return array |
205 | 205 | */ |
206 | - public function get_tokens( $sandbox = null ) { |
|
206 | + public function get_tokens($sandbox = null) { |
|
207 | 207 | |
208 | - if ( is_user_logged_in() && $this->supports( 'tokens' ) && 0 == count( $this->tokens ) ) { |
|
209 | - $tokens = get_user_meta( get_current_user_id(), "getpaid_{$this->id}_tokens", true ); |
|
208 | + if (is_user_logged_in() && $this->supports('tokens') && 0 == count($this->tokens)) { |
|
209 | + $tokens = get_user_meta(get_current_user_id(), "getpaid_{$this->id}_tokens", true); |
|
210 | 210 | |
211 | - if ( is_array( $tokens ) ) { |
|
211 | + if (is_array($tokens)) { |
|
212 | 212 | $this->tokens = $tokens; |
213 | 213 | } |
214 | 214 | |
215 | 215 | } |
216 | 216 | |
217 | - if ( ! is_bool( $sandbox ) ) { |
|
217 | + if (!is_bool($sandbox)) { |
|
218 | 218 | return $this->tokens; |
219 | 219 | } |
220 | 220 | |
221 | 221 | // Filter tokens. |
222 | - $args = array( 'type' => $sandbox ? 'sandbox' : 'live' ); |
|
223 | - return wp_list_filter( $this->tokens, $args ); |
|
222 | + $args = array('type' => $sandbox ? 'sandbox' : 'live'); |
|
223 | + return wp_list_filter($this->tokens, $args); |
|
224 | 224 | |
225 | 225 | } |
226 | 226 | |
@@ -229,12 +229,12 @@ discard block |
||
229 | 229 | * |
230 | 230 | * @since 1.0.19 |
231 | 231 | */ |
232 | - public function save_token( $token ) { |
|
232 | + public function save_token($token) { |
|
233 | 233 | |
234 | 234 | $tokens = $this->get_tokens(); |
235 | 235 | $tokens[] = $token; |
236 | 236 | |
237 | - update_user_meta( get_current_user_id(), "getpaid_{$this->id}_tokens", $tokens ); |
|
237 | + update_user_meta(get_current_user_id(), "getpaid_{$this->id}_tokens", $tokens); |
|
238 | 238 | |
239 | 239 | $this->tokens = $tokens; |
240 | 240 | |
@@ -246,7 +246,7 @@ discard block |
||
246 | 246 | * @return string |
247 | 247 | */ |
248 | 248 | public function get_method_title() { |
249 | - return apply_filters( 'getpaid_gateway_method_title', $this->method_title, $this ); |
|
249 | + return apply_filters('getpaid_gateway_method_title', $this->method_title, $this); |
|
250 | 250 | } |
251 | 251 | |
252 | 252 | /** |
@@ -255,7 +255,7 @@ discard block |
||
255 | 255 | * @return string |
256 | 256 | */ |
257 | 257 | public function get_method_description() { |
258 | - return apply_filters( 'getpaid_gateway_method_description', $this->method_description, $this ); |
|
258 | + return apply_filters('getpaid_gateway_method_description', $this->method_description, $this); |
|
259 | 259 | } |
260 | 260 | |
261 | 261 | /** |
@@ -264,7 +264,7 @@ discard block |
||
264 | 264 | * @param WPInv_Invoice $invoice Invoice object. |
265 | 265 | * @return string |
266 | 266 | */ |
267 | - public function get_return_url( $invoice ) { |
|
267 | + public function get_return_url($invoice) { |
|
268 | 268 | |
269 | 269 | // Payment success url |
270 | 270 | $return_url = add_query_arg( |
@@ -276,7 +276,7 @@ discard block |
||
276 | 276 | wpinv_get_success_page_uri() |
277 | 277 | ); |
278 | 278 | |
279 | - return apply_filters( 'getpaid_gateway_success_url', $return_url, $invoice, $this ); |
|
279 | + return apply_filters('getpaid_gateway_success_url', $return_url, $invoice, $this); |
|
280 | 280 | } |
281 | 281 | |
282 | 282 | /** |
@@ -285,24 +285,24 @@ discard block |
||
285 | 285 | * @param string $content Success page content. |
286 | 286 | * @return string |
287 | 287 | */ |
288 | - public function confirm_payment( $content ) { |
|
288 | + public function confirm_payment($content) { |
|
289 | 289 | |
290 | 290 | // Retrieve the invoice. |
291 | 291 | $invoice_id = getpaid_get_current_invoice_id(); |
292 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
292 | + $invoice = wpinv_get_invoice($invoice_id); |
|
293 | 293 | |
294 | 294 | // Ensure that it exists and that it is pending payment. |
295 | - if ( empty( $invoice_id ) || ! $invoice->needs_payment() ) { |
|
295 | + if (empty($invoice_id) || !$invoice->needs_payment()) { |
|
296 | 296 | return $content; |
297 | 297 | } |
298 | 298 | |
299 | 299 | // Can the user view this invoice?? |
300 | - if ( ! wpinv_user_can_view_invoice( $invoice ) ) { |
|
300 | + if (!wpinv_user_can_view_invoice($invoice)) { |
|
301 | 301 | return $content; |
302 | 302 | } |
303 | 303 | |
304 | 304 | // Show payment processing indicator. |
305 | - return wpinv_get_template_html( 'wpinv-payment-processing.php', compact( 'invoice' ) ); |
|
305 | + return wpinv_get_template_html('wpinv-payment-processing.php', compact('invoice')); |
|
306 | 306 | } |
307 | 307 | |
308 | 308 | /** |
@@ -319,7 +319,7 @@ discard block |
||
319 | 319 | * @param GetPaid_Form_Item[] $items |
320 | 320 | * @return WPInv_Invoice |
321 | 321 | */ |
322 | - public function process_addons( $invoice, $items ) { |
|
322 | + public function process_addons($invoice, $items) { |
|
323 | 323 | |
324 | 324 | } |
325 | 325 | |
@@ -330,14 +330,14 @@ discard block |
||
330 | 330 | * @param WPInv_Invoice $invoice Invoice object. |
331 | 331 | * @return string transaction URL, or empty string. |
332 | 332 | */ |
333 | - public function filter_transaction_url( $transaction_url, $invoice ) { |
|
333 | + public function filter_transaction_url($transaction_url, $invoice) { |
|
334 | 334 | |
335 | - $transaction_id = $invoice->get_transaction_id(); |
|
335 | + $transaction_id = $invoice->get_transaction_id(); |
|
336 | 336 | |
337 | - if ( ! empty( $this->view_transaction_url ) && ! empty( $transaction_id ) ) { |
|
338 | - $transaction_url = sprintf( $this->view_transaction_url, $transaction_id ); |
|
339 | - $replace = $this->is_sandbox( $invoice ) ? 'sandbox' : ''; |
|
340 | - $transaction_url = str_replace( '{sandbox}', $replace, $transaction_url ); |
|
337 | + if (!empty($this->view_transaction_url) && !empty($transaction_id)) { |
|
338 | + $transaction_url = sprintf($this->view_transaction_url, $transaction_id); |
|
339 | + $replace = $this->is_sandbox($invoice) ? 'sandbox' : ''; |
|
340 | + $transaction_url = str_replace('{sandbox}', $replace, $transaction_url); |
|
341 | 341 | } |
342 | 342 | |
343 | 343 | return $transaction_url; |
@@ -350,15 +350,15 @@ discard block |
||
350 | 350 | * @param WPInv_Subscription $subscription Subscription objectt. |
351 | 351 | * @return string subscription URL, or empty string. |
352 | 352 | */ |
353 | - public function generate_subscription_url( $subscription_url, $subscription ) { |
|
353 | + public function generate_subscription_url($subscription_url, $subscription) { |
|
354 | 354 | |
355 | - $profile_id = $subscription->get_profile_id(); |
|
355 | + $profile_id = $subscription->get_profile_id(); |
|
356 | 356 | |
357 | - if ( $this->id == $subscription->get_gateway() && ! empty( $this->view_subscription_url ) && ! empty( $profile_id ) ) { |
|
357 | + if ($this->id == $subscription->get_gateway() && !empty($this->view_subscription_url) && !empty($profile_id)) { |
|
358 | 358 | |
359 | - $subscription_url = sprintf( $this->view_subscription_url, $profile_id ); |
|
360 | - $replace = $this->is_sandbox( $subscription->get_parent_invoice() ) ? 'sandbox' : ''; |
|
361 | - $subscription_url = str_replace( '{sandbox}', $replace, $subscription_url ); |
|
359 | + $subscription_url = sprintf($this->view_subscription_url, $profile_id); |
|
360 | + $replace = $this->is_sandbox($subscription->get_parent_invoice()) ? 'sandbox' : ''; |
|
361 | + $subscription_url = str_replace('{sandbox}', $replace, $subscription_url); |
|
362 | 362 | |
363 | 363 | } |
364 | 364 | |
@@ -371,7 +371,7 @@ discard block |
||
371 | 371 | * @return bool |
372 | 372 | */ |
373 | 373 | public function is_available() { |
374 | - return ! empty( $this->enabled ); |
|
374 | + return !empty($this->enabled); |
|
375 | 375 | } |
376 | 376 | |
377 | 377 | /** |
@@ -380,7 +380,7 @@ discard block |
||
380 | 380 | * @return string |
381 | 381 | */ |
382 | 382 | public function get_title() { |
383 | - return apply_filters( 'getpaid_gateway_title', $this->title, $this ); |
|
383 | + return apply_filters('getpaid_gateway_title', $this->title, $this); |
|
384 | 384 | } |
385 | 385 | |
386 | 386 | /** |
@@ -389,7 +389,7 @@ discard block |
||
389 | 389 | * @return string |
390 | 390 | */ |
391 | 391 | public function get_description() { |
392 | - return apply_filters( 'getpaid_gateway_description', $this->description, $this ); |
|
392 | + return apply_filters('getpaid_gateway_description', $this->description, $this); |
|
393 | 393 | } |
394 | 394 | |
395 | 395 | /** |
@@ -401,9 +401,9 @@ discard block |
||
401 | 401 | * @param GetPaid_Payment_Form_Submission $submission Checkout submission. |
402 | 402 | * @return void |
403 | 403 | */ |
404 | - public function process_payment( $invoice, $submission_data, $submission ) { |
|
404 | + public function process_payment($invoice, $submission_data, $submission) { |
|
405 | 405 | // Process the payment then either redirect to the success page or the gateway. |
406 | - do_action( 'getpaid_process_invoice_payment_' . $this->id, $invoice, $submission_data, $submission ); |
|
406 | + do_action('getpaid_process_invoice_payment_' . $this->id, $invoice, $submission_data, $submission); |
|
407 | 407 | } |
408 | 408 | |
409 | 409 | /** |
@@ -417,8 +417,8 @@ discard block |
||
417 | 417 | * @param string $reason Refund reason. |
418 | 418 | * @return WP_Error|bool True or false based on success, or a WP_Error object. |
419 | 419 | */ |
420 | - public function process_refund( $invoice, $amount = null, $reason = '' ) { |
|
421 | - return apply_filters( 'getpaid_process_invoice_refund_' . $this->id, false, $invoice, $amount, $reason ); |
|
420 | + public function process_refund($invoice, $amount = null, $reason = '') { |
|
421 | + return apply_filters('getpaid_process_invoice_refund_' . $this->id, false, $invoice, $amount, $reason); |
|
422 | 422 | } |
423 | 423 | |
424 | 424 | /** |
@@ -427,8 +427,8 @@ discard block |
||
427 | 427 | * @param int $invoice_id 0 or invoice id. |
428 | 428 | * @param GetPaid_Payment_Form $form Current payment form. |
429 | 429 | */ |
430 | - public function payment_fields( $invoice_id, $form ) { |
|
431 | - do_action( 'getpaid_getpaid_gateway_payment_fields_' . $this->id, $invoice_id, $form ); |
|
430 | + public function payment_fields($invoice_id, $form) { |
|
431 | + do_action('getpaid_getpaid_gateway_payment_fields_' . $this->id, $invoice_id, $form); |
|
432 | 432 | } |
433 | 433 | |
434 | 434 | /** |
@@ -436,7 +436,7 @@ discard block |
||
436 | 436 | * |
437 | 437 | * @param array $admin_settings |
438 | 438 | */ |
439 | - public function admin_settings( $admin_settings ) { |
|
439 | + public function admin_settings($admin_settings) { |
|
440 | 440 | return $admin_settings; |
441 | 441 | } |
442 | 442 | |
@@ -445,8 +445,8 @@ discard block |
||
445 | 445 | * |
446 | 446 | * @param string $option |
447 | 447 | */ |
448 | - public function get_option( $option, $default = false ) { |
|
449 | - return wpinv_get_option( $this->id . '_' . $option, $default ); |
|
448 | + public function get_option($option, $default = false) { |
|
449 | + return wpinv_get_option($this->id . '_' . $option, $default); |
|
450 | 450 | } |
451 | 451 | |
452 | 452 | /** |
@@ -459,8 +459,8 @@ discard block |
||
459 | 459 | * @return bool True if the gateway supports the feature, false otherwise. |
460 | 460 | * @since 1.0.19 |
461 | 461 | */ |
462 | - public function supports( $feature ) { |
|
463 | - return getpaid_payment_gateway_supports( $this->id, $feature ); |
|
462 | + public function supports($feature) { |
|
463 | + return getpaid_payment_gateway_supports($this->id, $feature); |
|
464 | 464 | } |
465 | 465 | |
466 | 466 | /** |
@@ -468,36 +468,36 @@ discard block |
||
468 | 468 | * |
469 | 469 | * @param bool $save whether or not to display the save button. |
470 | 470 | */ |
471 | - public function get_cc_form( $save = false ) { |
|
471 | + public function get_cc_form($save = false) { |
|
472 | 472 | |
473 | 473 | ob_start(); |
474 | 474 | |
475 | - $id_prefix = esc_attr( uniqid( $this->id ) ); |
|
475 | + $id_prefix = esc_attr(uniqid($this->id)); |
|
476 | 476 | |
477 | 477 | $months = array( |
478 | - '01' => __( 'January', 'invoicing' ), |
|
479 | - '02' => __( 'February', 'invoicing' ), |
|
480 | - '03' => __( 'March', 'invoicing' ), |
|
481 | - '04' => __( 'April', 'invoicing' ), |
|
482 | - '05' => __( 'May', 'invoicing' ), |
|
483 | - '06' => __( 'June', 'invoicing' ), |
|
484 | - '07' => __( 'July', 'invoicing' ), |
|
485 | - '08' => __( 'August', 'invoicing' ), |
|
486 | - '09' => __( 'September', 'invoicing' ), |
|
487 | - '10' => __( 'October', 'invoicing' ), |
|
488 | - '11' => __( 'November', 'invoicing' ), |
|
489 | - '12' => __( 'December', 'invoicing' ), |
|
478 | + '01' => __('January', 'invoicing'), |
|
479 | + '02' => __('February', 'invoicing'), |
|
480 | + '03' => __('March', 'invoicing'), |
|
481 | + '04' => __('April', 'invoicing'), |
|
482 | + '05' => __('May', 'invoicing'), |
|
483 | + '06' => __('June', 'invoicing'), |
|
484 | + '07' => __('July', 'invoicing'), |
|
485 | + '08' => __('August', 'invoicing'), |
|
486 | + '09' => __('September', 'invoicing'), |
|
487 | + '10' => __('October', 'invoicing'), |
|
488 | + '11' => __('November', 'invoicing'), |
|
489 | + '12' => __('December', 'invoicing'), |
|
490 | 490 | ); |
491 | 491 | |
492 | - $year = (int) date( 'Y', current_time( 'timestamp' ) ); |
|
492 | + $year = (int) date('Y', current_time('timestamp')); |
|
493 | 493 | $years = array(); |
494 | 494 | |
495 | - for ( $i = 0; $i <= 10; $i++ ) { |
|
496 | - $years[ $year + $i ] = $year + $i; |
|
495 | + for ($i = 0; $i <= 10; $i++) { |
|
496 | + $years[$year + $i] = $year + $i; |
|
497 | 497 | } |
498 | 498 | |
499 | 499 | ?> |
500 | - <div class="<?php echo esc_attr( $this->id );?>-cc-form getpaid-cc-form mt-1"> |
|
500 | + <div class="<?php echo esc_attr($this->id); ?>-cc-form getpaid-cc-form mt-1"> |
|
501 | 501 | |
502 | 502 | |
503 | 503 | <div class="getpaid-cc-card-inner"> |
@@ -506,14 +506,14 @@ discard block |
||
506 | 506 | <div class="col-12"> |
507 | 507 | |
508 | 508 | <div class="form-group"> |
509 | - <label for="<?php echo esc_attr( "$id_prefix-cc-number" ) ?>"><?php _e( 'Card number', 'invoicing' ); ?></label> |
|
509 | + <label for="<?php echo esc_attr("$id_prefix-cc-number") ?>"><?php _e('Card number', 'invoicing'); ?></label> |
|
510 | 510 | <div class="input-group input-group-sm"> |
511 | 511 | <div class="input-group-prepend "> |
512 | 512 | <span class="input-group-text"> |
513 | 513 | <i class="fa fa-credit-card"></i> |
514 | 514 | </span> |
515 | 515 | </div> |
516 | - <input type="text" name="<?php echo esc_attr( $this->id . '[cc_number]' ) ?>" id="<?php echo esc_attr( "$id_prefix-cc-number" ) ?>" class="form-control form-control-sm" autocomplete="cc-number"> |
|
516 | + <input type="text" name="<?php echo esc_attr($this->id . '[cc_number]') ?>" id="<?php echo esc_attr("$id_prefix-cc-number") ?>" class="form-control form-control-sm" autocomplete="cc-number"> |
|
517 | 517 | </div> |
518 | 518 | </div> |
519 | 519 | |
@@ -521,17 +521,17 @@ discard block |
||
521 | 521 | |
522 | 522 | <div class="col-12"> |
523 | 523 | <div class="form-group"> |
524 | - <label><?php _e( 'Expiration', 'invoicing' ); ?></label> |
|
524 | + <label><?php _e('Expiration', 'invoicing'); ?></label> |
|
525 | 525 | <div class="form-row"> |
526 | 526 | |
527 | 527 | <div class="col"> |
528 | - <select class="form-control form-control-sm" autocomplete="cc-exp-month" name="<?php echo esc_attr( $this->id );?>[cc_expire_month]"> |
|
529 | - <option disabled selected="selected"><?php _e( 'MM', 'invoicing' ); ?></option> |
|
528 | + <select class="form-control form-control-sm" autocomplete="cc-exp-month" name="<?php echo esc_attr($this->id); ?>[cc_expire_month]"> |
|
529 | + <option disabled selected="selected"><?php _e('MM', 'invoicing'); ?></option> |
|
530 | 530 | |
531 | 531 | <?php |
532 | - foreach ( $months as $key => $month ) { |
|
533 | - $key = esc_attr( $key ); |
|
534 | - $month = wpinv_clean( $month ); |
|
532 | + foreach ($months as $key => $month) { |
|
533 | + $key = esc_attr($key); |
|
534 | + $month = wpinv_clean($month); |
|
535 | 535 | echo "<option value='$key'>$month</option>" . PHP_EOL; |
536 | 536 | } |
537 | 537 | ?> |
@@ -540,13 +540,13 @@ discard block |
||
540 | 540 | </div> |
541 | 541 | |
542 | 542 | <div class="col"> |
543 | - <select class="form-control form-control-sm" autocomplete="cc-exp-year" name="<?php echo esc_attr( $this->id );?>[cc_expire_year]"> |
|
544 | - <option disabled selected="selected"><?php _e( 'YY', 'invoicing' ); ?></option> |
|
543 | + <select class="form-control form-control-sm" autocomplete="cc-exp-year" name="<?php echo esc_attr($this->id); ?>[cc_expire_year]"> |
|
544 | + <option disabled selected="selected"><?php _e('YY', 'invoicing'); ?></option> |
|
545 | 545 | |
546 | 546 | <?php |
547 | - foreach ( $years as $key => $year ) { |
|
548 | - $key = esc_attr( $key ); |
|
549 | - $year = wpinv_clean( $year ); |
|
547 | + foreach ($years as $key => $year) { |
|
548 | + $key = esc_attr($key); |
|
549 | + $year = wpinv_clean($year); |
|
550 | 550 | echo "<option value='$key'>$year</option>" . PHP_EOL; |
551 | 551 | } |
552 | 552 | ?> |
@@ -564,7 +564,7 @@ discard block |
||
564 | 564 | array( |
565 | 565 | 'name' => $this->id . '[cc_cvv2]', |
566 | 566 | 'id' => "$id_prefix-cc-cvv2", |
567 | - 'label' => __( 'CCV', 'invoicing' ), |
|
567 | + 'label' => __('CCV', 'invoicing'), |
|
568 | 568 | 'label_type' => 'vertical', |
569 | 569 | 'class' => 'form-control-sm', |
570 | 570 | 'extra_attributes' => array( |
@@ -579,7 +579,7 @@ discard block |
||
579 | 579 | |
580 | 580 | <?php |
581 | 581 | |
582 | - if ( $save ) { |
|
582 | + if ($save) { |
|
583 | 583 | echo $this->save_payment_method_checkbox(); |
584 | 584 | } |
585 | 585 | |
@@ -598,7 +598,7 @@ discard block |
||
598 | 598 | * |
599 | 599 | * @since 1.0.19 |
600 | 600 | */ |
601 | - public function new_payment_method_entry( $form ) { |
|
601 | + public function new_payment_method_entry($form) { |
|
602 | 602 | echo "<div class='getpaid-new-payment-method-form' style='display:none;'>$form</div>"; |
603 | 603 | } |
604 | 604 | |
@@ -608,16 +608,16 @@ discard block |
||
608 | 608 | * @since 1.0.19 |
609 | 609 | */ |
610 | 610 | public function saved_payment_methods() { |
611 | - $html = '<ul class="getpaid-saved-payment-methods list-unstyled m-0 mt-2" data-count="' . esc_attr( count( $this->get_tokens( $this->is_sandbox() ) ) ) . '">'; |
|
611 | + $html = '<ul class="getpaid-saved-payment-methods list-unstyled m-0 mt-2" data-count="' . esc_attr(count($this->get_tokens($this->is_sandbox()))) . '">'; |
|
612 | 612 | |
613 | - foreach ( $this->get_tokens( $this->is_sandbox() ) as $token ) { |
|
614 | - $html .= $this->get_saved_payment_method_option_html( $token ); |
|
613 | + foreach ($this->get_tokens($this->is_sandbox()) as $token) { |
|
614 | + $html .= $this->get_saved_payment_method_option_html($token); |
|
615 | 615 | } |
616 | 616 | |
617 | 617 | $html .= $this->get_new_payment_method_option_html(); |
618 | 618 | $html .= '</ul>'; |
619 | 619 | |
620 | - echo apply_filters( 'getpaid_payment_gateway_form_saved_payment_methods_html', $html, $this ); |
|
620 | + echo apply_filters('getpaid_payment_gateway_form_saved_payment_methods_html', $html, $this); |
|
621 | 621 | } |
622 | 622 | |
623 | 623 | /** |
@@ -627,7 +627,7 @@ discard block |
||
627 | 627 | * @param array $token Payment Token. |
628 | 628 | * @return string Generated payment method HTML |
629 | 629 | */ |
630 | - public function get_saved_payment_method_option_html( $token ) { |
|
630 | + public function get_saved_payment_method_option_html($token) { |
|
631 | 631 | |
632 | 632 | return sprintf( |
633 | 633 | '<li class="getpaid-payment-method form-group"> |
@@ -636,11 +636,11 @@ discard block |
||
636 | 636 | <span>%3$s</span> |
637 | 637 | </label> |
638 | 638 | </li>', |
639 | - esc_attr( $this->id ), |
|
640 | - esc_attr( $token['id'] ), |
|
641 | - esc_html( $token['name'] ), |
|
642 | - checked( empty( $token['default'] ), false, false ), |
|
643 | - empty( $token['currency'] ) ? 'none' : esc_attr( $token['currency'] ) |
|
639 | + esc_attr($this->id), |
|
640 | + esc_attr($token['id']), |
|
641 | + esc_html($token['name']), |
|
642 | + checked(empty($token['default']), false, false), |
|
643 | + empty($token['currency']) ? 'none' : esc_attr($token['currency']) |
|
644 | 644 | ); |
645 | 645 | |
646 | 646 | } |
@@ -652,7 +652,7 @@ discard block |
||
652 | 652 | */ |
653 | 653 | public function get_new_payment_method_option_html() { |
654 | 654 | |
655 | - $label = apply_filters( 'getpaid_new_payment_method_label', $this->new_method_label ? $this->new_method_label : __( 'Use a new payment method', 'invoicing' ), $this ); |
|
655 | + $label = apply_filters('getpaid_new_payment_method_label', $this->new_method_label ? $this->new_method_label : __('Use a new payment method', 'invoicing'), $this); |
|
656 | 656 | |
657 | 657 | return sprintf( |
658 | 658 | '<li class="getpaid-new-payment-method"> |
@@ -661,8 +661,8 @@ discard block |
||
661 | 661 | <span>%2$s</span> |
662 | 662 | </label> |
663 | 663 | </li>', |
664 | - esc_attr( $this->id ), |
|
665 | - esc_html( $label ) |
|
664 | + esc_attr($this->id), |
|
665 | + esc_html($label) |
|
666 | 666 | ); |
667 | 667 | |
668 | 668 | } |
@@ -677,10 +677,10 @@ discard block |
||
677 | 677 | return aui()->input( |
678 | 678 | array( |
679 | 679 | 'type' => 'checkbox', |
680 | - 'name' => esc_attr( "getpaid-$this->id-new-payment-method" ), |
|
681 | - 'id' => esc_attr( uniqid( $this->id ) ), |
|
680 | + 'name' => esc_attr("getpaid-$this->id-new-payment-method"), |
|
681 | + 'id' => esc_attr(uniqid($this->id)), |
|
682 | 682 | 'required' => false, |
683 | - 'label' => esc_html__( 'Save payment method', 'invoicing' ), |
|
683 | + 'label' => esc_html__('Save payment method', 'invoicing'), |
|
684 | 684 | 'value' => 'true', |
685 | 685 | 'checked' => true, |
686 | 686 | 'wrap_class' => 'getpaid-save-payment-method pt-1 pb-1', |
@@ -694,9 +694,9 @@ discard block |
||
694 | 694 | * |
695 | 695 | * @return array |
696 | 696 | */ |
697 | - public function register_gateway( $gateways ) { |
|
697 | + public function register_gateway($gateways) { |
|
698 | 698 | |
699 | - $gateways[ $this->id ] = array( |
|
699 | + $gateways[$this->id] = array( |
|
700 | 700 | |
701 | 701 | 'admin_label' => $this->method_title, |
702 | 702 | 'checkout_label' => $this->title, |
@@ -714,13 +714,13 @@ discard block |
||
714 | 714 | * @param WPInv_Invoice|null $invoice Invoice object or null. |
715 | 715 | * @return bool |
716 | 716 | */ |
717 | - public function is_sandbox( $invoice = null ) { |
|
717 | + public function is_sandbox($invoice = null) { |
|
718 | 718 | |
719 | - if ( ! empty( $invoice ) && ! $invoice->needs_payment() ) { |
|
719 | + if (!empty($invoice) && !$invoice->needs_payment()) { |
|
720 | 720 | return $invoice->get_mode() == 'test'; |
721 | 721 | } |
722 | 722 | |
723 | - return wpinv_is_test_mode( $this->id ); |
|
723 | + return wpinv_is_test_mode($this->id); |
|
724 | 724 | |
725 | 725 | } |
726 | 726 | |
@@ -738,15 +738,15 @@ discard block |
||
738 | 738 | * |
739 | 739 | * @return bool |
740 | 740 | */ |
741 | - public function validate_currency( $validation, $currency ) { |
|
741 | + public function validate_currency($validation, $currency) { |
|
742 | 742 | |
743 | 743 | // Required currencies. |
744 | - if ( ! empty( $this->currencies ) && ! in_array( $currency, $this->currencies ) ) { |
|
744 | + if (!empty($this->currencies) && !in_array($currency, $this->currencies)) { |
|
745 | 745 | return false; |
746 | 746 | } |
747 | 747 | |
748 | 748 | // Excluded currencies. |
749 | - if ( ! empty( $this->exclude_currencies ) && in_array( $currency, $this->exclude_currencies ) ) { |
|
749 | + if (!empty($this->exclude_currencies) && in_array($currency, $this->exclude_currencies)) { |
|
750 | 750 | return false; |
751 | 751 | } |
752 | 752 | |
@@ -757,13 +757,13 @@ discard block |
||
757 | 757 | * Displays an error |
758 | 758 | * |
759 | 759 | */ |
760 | - public function show_error( $code, $message, $type ) { |
|
760 | + public function show_error($code, $message, $type) { |
|
761 | 761 | |
762 | - if ( is_admin() ) { |
|
763 | - getpaid_admin()->{"show_$type"}( $message ); |
|
762 | + if (is_admin()) { |
|
763 | + getpaid_admin()->{"show_$type"}($message); |
|
764 | 764 | } |
765 | 765 | |
766 | - wpinv_set_error( $code, $message, $type ); |
|
766 | + wpinv_set_error($code, $message, $type); |
|
767 | 767 | |
768 | 768 | } |
769 | 769 |