@@ -17,7 +17,7 @@ |
||
| 17 | 17 | */ |
| 18 | 18 | public function inflectPackageVars($vars) |
| 19 | 19 | { |
| 20 | - $vars['name'] = preg_replace_callback('/(-[a-z])/', function ($matches) { |
|
| 20 | + $vars['name'] = preg_replace_callback('/(-[a-z])/', function($matches) { |
|
| 21 | 21 | return strtoupper($matches[0][1]); |
| 22 | 22 | }, $vars['name']); |
| 23 | 23 | |
@@ -35,11 +35,11 @@ discard block |
||
| 35 | 35 | */ |
| 36 | 36 | protected function inflectModuleVars($vars) |
| 37 | 37 | { |
| 38 | - $vars['name'] = str_replace('pxcms-', '', $vars['name']); // strip out pxcms- just incase (legacy) |
|
| 39 | - $vars['name'] = str_replace('module-', '', $vars['name']); // strip out module- |
|
| 40 | - $vars['name'] = preg_replace('/-module$/', '', $vars['name']); // strip out -module |
|
| 41 | - $vars['name'] = str_replace('-', '_', $vars['name']); // make -'s be _'s |
|
| 42 | - $vars['name'] = ucwords($vars['name']); // make module name camelcased |
|
| 38 | + $vars['name'] = str_replace('pxcms-', '', $vars['name']); // strip out pxcms- just incase (legacy) |
|
| 39 | + $vars['name'] = str_replace('module-', '', $vars['name']); // strip out module- |
|
| 40 | + $vars['name'] = preg_replace('/-module$/', '', $vars['name']); // strip out -module |
|
| 41 | + $vars['name'] = str_replace('-', '_', $vars['name']); // make -'s be _'s |
|
| 42 | + $vars['name'] = ucwords($vars['name']); // make module name camelcased |
|
| 43 | 43 | |
| 44 | 44 | return $vars; |
| 45 | 45 | } |
@@ -52,11 +52,11 @@ discard block |
||
| 52 | 52 | */ |
| 53 | 53 | protected function inflectThemeVars($vars) |
| 54 | 54 | { |
| 55 | - $vars['name'] = str_replace('pxcms-', '', $vars['name']); // strip out pxcms- just incase (legacy) |
|
| 56 | - $vars['name'] = str_replace('theme-', '', $vars['name']); // strip out theme- |
|
| 57 | - $vars['name'] = preg_replace('/-theme$/', '', $vars['name']); // strip out -theme |
|
| 58 | - $vars['name'] = str_replace('-', '_', $vars['name']); // make -'s be _'s |
|
| 59 | - $vars['name'] = ucwords($vars['name']); // make module name camelcased |
|
| 55 | + $vars['name'] = str_replace('pxcms-', '', $vars['name']); // strip out pxcms- just incase (legacy) |
|
| 56 | + $vars['name'] = str_replace('theme-', '', $vars['name']); // strip out theme- |
|
| 57 | + $vars['name'] = preg_replace('/-theme$/', '', $vars['name']); // strip out -theme |
|
| 58 | + $vars['name'] = str_replace('-', '_', $vars['name']); // make -'s be _'s |
|
| 59 | + $vars['name'] = ucwords($vars['name']); // make module name camelcased |
|
| 60 | 60 | |
| 61 | 61 | return $vars; |
| 62 | 62 | } |
@@ -37,7 +37,7 @@ |
||
| 37 | 37 | */ |
| 38 | 38 | private function correctPluginName($vars) |
| 39 | 39 | { |
| 40 | - $camelCasedName = preg_replace_callback('/(-[a-z])/', function ($matches) { |
|
| 40 | + $camelCasedName = preg_replace_callback('/(-[a-z])/', function($matches) { |
|
| 41 | 41 | return strtoupper($matches[0][1]); |
| 42 | 42 | }, $vars['name']); |
| 43 | 43 | |
@@ -6,8 +6,8 @@ |
||
| 6 | 6 | } |
| 7 | 7 | } |
| 8 | 8 | if ((!$loader = includeIfExists(__DIR__ . '/../vendor/autoload.php')) && (!$loader = includeIfExists(__DIR__ . '/../../../autoload.php'))) { |
| 9 | - die('You must set up the project dependencies, run the following commands:'.PHP_EOL. |
|
| 10 | - 'curl -s http://getcomposer.org/installer | php'.PHP_EOL. |
|
| 11 | - 'php composer.phar install'.PHP_EOL); |
|
| 9 | + die('You must set up the project dependencies, run the following commands:' . PHP_EOL . |
|
| 10 | + 'curl -s http://getcomposer.org/installer | php' . PHP_EOL . |
|
| 11 | + 'php composer.phar install' . PHP_EOL); |
|
| 12 | 12 | } |
| 13 | 13 | return $loader; |
@@ -12,14 +12,14 @@ discard block |
||
| 12 | 12 | /** |
| 13 | 13 | * Bail if we are not in WP. |
| 14 | 14 | */ |
| 15 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 15 | +if (!defined('ABSPATH')) { |
|
| 16 | 16 | exit; |
| 17 | 17 | } |
| 18 | 18 | |
| 19 | 19 | /** |
| 20 | 20 | * Only add if the class does not already exist. |
| 21 | 21 | */ |
| 22 | -if ( ! class_exists( 'WP_Font_Awesome_Settings' ) ) { |
|
| 22 | +if (!class_exists('WP_Font_Awesome_Settings')) { |
|
| 23 | 23 | |
| 24 | 24 | /** |
| 25 | 25 | * A Class to be able to change settings for Font Awesome. |
@@ -85,17 +85,17 @@ discard block |
||
| 85 | 85 | * @return WP_Font_Awesome_Settings - Main instance. |
| 86 | 86 | */ |
| 87 | 87 | public static function instance() { |
| 88 | - if ( ! isset( self::$instance ) && ! ( self::$instance instanceof WP_Font_Awesome_Settings ) ) { |
|
| 88 | + if (!isset(self::$instance) && !(self::$instance instanceof WP_Font_Awesome_Settings)) { |
|
| 89 | 89 | self::$instance = new WP_Font_Awesome_Settings; |
| 90 | 90 | |
| 91 | - add_action( 'init', array( self::$instance, 'init' ) ); // set settings |
|
| 91 | + add_action('init', array(self::$instance, 'init')); // set settings |
|
| 92 | 92 | |
| 93 | - if ( is_admin() ) { |
|
| 94 | - add_action( 'admin_menu', array( self::$instance, 'menu_item' ) ); |
|
| 95 | - add_action( 'admin_init', array( self::$instance, 'register_settings' ) ); |
|
| 93 | + if (is_admin()) { |
|
| 94 | + add_action('admin_menu', array(self::$instance, 'menu_item')); |
|
| 95 | + add_action('admin_init', array(self::$instance, 'register_settings')); |
|
| 96 | 96 | } |
| 97 | 97 | |
| 98 | - do_action( 'wp_font_awesome_settings_loaded' ); |
|
| 98 | + do_action('wp_font_awesome_settings_loaded'); |
|
| 99 | 99 | } |
| 100 | 100 | |
| 101 | 101 | return self::$instance; |
@@ -109,30 +109,30 @@ discard block |
||
| 109 | 109 | public function init() { |
| 110 | 110 | $this->settings = $this->get_settings(); |
| 111 | 111 | |
| 112 | - if ( $this->settings['type'] == 'CSS' ) { |
|
| 112 | + if ($this->settings['type'] == 'CSS') { |
|
| 113 | 113 | |
| 114 | - if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'frontend' ) { |
|
| 115 | - add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ), 5000 );//echo '###';exit; |
|
| 114 | + if ($this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'frontend') { |
|
| 115 | + add_action('wp_enqueue_scripts', array($this, 'enqueue_style'), 5000); //echo '###';exit; |
|
| 116 | 116 | } |
| 117 | 117 | |
| 118 | - if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'backend' ) { |
|
| 119 | - add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_style' ), 5000 ); |
|
| 118 | + if ($this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'backend') { |
|
| 119 | + add_action('admin_enqueue_scripts', array($this, 'enqueue_style'), 5000); |
|
| 120 | 120 | } |
| 121 | 121 | |
| 122 | 122 | } else { |
| 123 | 123 | |
| 124 | - if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'frontend' ) { |
|
| 125 | - add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), 5000 );//echo '###';exit; |
|
| 124 | + if ($this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'frontend') { |
|
| 125 | + add_action('wp_enqueue_scripts', array($this, 'enqueue_scripts'), 5000); //echo '###';exit; |
|
| 126 | 126 | } |
| 127 | 127 | |
| 128 | - if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'backend' ) { |
|
| 129 | - add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 5000 ); |
|
| 128 | + if ($this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'backend') { |
|
| 129 | + add_action('admin_enqueue_scripts', array($this, 'enqueue_scripts'), 5000); |
|
| 130 | 130 | } |
| 131 | 131 | } |
| 132 | 132 | |
| 133 | 133 | // remove font awesome if set to do so |
| 134 | - if ( $this->settings['dequeue'] == '1' ) { |
|
| 135 | - add_action( 'clean_url', array( $this, 'remove_font_awesome' ), 5000, 3 ); |
|
| 134 | + if ($this->settings['dequeue'] == '1') { |
|
| 135 | + add_action('clean_url', array($this, 'remove_font_awesome'), 5000, 3); |
|
| 136 | 136 | } |
| 137 | 137 | |
| 138 | 138 | } |
@@ -144,15 +144,15 @@ discard block |
||
| 144 | 144 | // build url |
| 145 | 145 | $url = $this->get_url(); |
| 146 | 146 | |
| 147 | - wp_deregister_style( 'font-awesome' ); // deregister in case its already there |
|
| 148 | - wp_register_style( 'font-awesome', $url, array(), null ); |
|
| 149 | - wp_enqueue_style( 'font-awesome' ); |
|
| 147 | + wp_deregister_style('font-awesome'); // deregister in case its already there |
|
| 148 | + wp_register_style('font-awesome', $url, array(), null); |
|
| 149 | + wp_enqueue_style('font-awesome'); |
|
| 150 | 150 | |
| 151 | - if ( $this->settings['shims'] ) { |
|
| 152 | - $url = $this->get_url( true ); |
|
| 153 | - wp_deregister_style( 'font-awesome-shims' ); // deregister in case its already there |
|
| 154 | - wp_register_style( 'font-awesome-shims', $url, array(), null ); |
|
| 155 | - wp_enqueue_style( 'font-awesome-shims' ); |
|
| 151 | + if ($this->settings['shims']) { |
|
| 152 | + $url = $this->get_url(true); |
|
| 153 | + wp_deregister_style('font-awesome-shims'); // deregister in case its already there |
|
| 154 | + wp_register_style('font-awesome-shims', $url, array(), null); |
|
| 155 | + wp_enqueue_style('font-awesome-shims'); |
|
| 156 | 156 | } |
| 157 | 157 | } |
| 158 | 158 | |
@@ -163,16 +163,16 @@ discard block |
||
| 163 | 163 | // build url |
| 164 | 164 | $url = $this->get_url(); |
| 165 | 165 | |
| 166 | - $deregister_function = 'wp'.'_'.'deregister'.'_'.'script'; |
|
| 167 | - call_user_func( $deregister_function, 'font-awesome' ); // deregister in case its already there |
|
| 168 | - wp_register_script( 'font-awesome', $url, array(), null ); |
|
| 169 | - wp_enqueue_script( 'font-awesome' ); |
|
| 166 | + $deregister_function = 'wp' . '_' . 'deregister' . '_' . 'script'; |
|
| 167 | + call_user_func($deregister_function, 'font-awesome'); // deregister in case its already there |
|
| 168 | + wp_register_script('font-awesome', $url, array(), null); |
|
| 169 | + wp_enqueue_script('font-awesome'); |
|
| 170 | 170 | |
| 171 | - if ( $this->settings['shims'] ) { |
|
| 172 | - $url = $this->get_url( true ); |
|
| 173 | - call_user_func( $deregister_function, 'font-awesome-shims' ); // deregister in case its already there |
|
| 174 | - wp_register_script( 'font-awesome-shims', $url, array(), null ); |
|
| 175 | - wp_enqueue_script( 'font-awesome-shims' ); |
|
| 171 | + if ($this->settings['shims']) { |
|
| 172 | + $url = $this->get_url(true); |
|
| 173 | + call_user_func($deregister_function, 'font-awesome-shims'); // deregister in case its already there |
|
| 174 | + wp_register_script('font-awesome-shims', $url, array(), null); |
|
| 175 | + wp_enqueue_script('font-awesome-shims'); |
|
| 176 | 176 | } |
| 177 | 177 | } |
| 178 | 178 | |
@@ -183,13 +183,13 @@ discard block |
||
| 183 | 183 | * |
| 184 | 184 | * @return string The url to the file. |
| 185 | 185 | */ |
| 186 | - public function get_url( $shims = false ) { |
|
| 186 | + public function get_url($shims = false) { |
|
| 187 | 187 | $script = $shims ? 'v4-shims' : 'all'; |
| 188 | 188 | $type = $this->settings['type']; |
| 189 | 189 | $version = $this->settings['version']; |
| 190 | 190 | |
| 191 | 191 | $url = "https://use.fontawesome.com/releases/"; // CDN |
| 192 | - $url .= ! empty( $version ) ? "v" . $version . '/' : "v" . $this->get_latest_version() . '/'; // version |
|
| 192 | + $url .= !empty($version) ? "v" . $version . '/' : "v" . $this->get_latest_version() . '/'; // version |
|
| 193 | 193 | $url .= $type == 'CSS' ? 'css/' : 'js/'; // type |
| 194 | 194 | $url .= $type == 'CSS' ? $script . '.css' : $script . '.js'; // type |
| 195 | 195 | $url .= "?wpfas=true"; // set our var so our version is not removed |
@@ -208,16 +208,16 @@ discard block |
||
| 208 | 208 | * |
| 209 | 209 | * @return string The filtered url. |
| 210 | 210 | */ |
| 211 | - public function remove_font_awesome( $url, $original_url, $_context ) { |
|
| 211 | + public function remove_font_awesome($url, $original_url, $_context) { |
|
| 212 | 212 | |
| 213 | - if ( $_context == 'display' |
|
| 214 | - && ( strstr( $url, "fontawesome" ) !== false || strstr( $url, "font-awesome" ) !== false ) |
|
| 215 | - && ( strstr( $url, ".js" ) !== false || strstr( $url, ".css" ) !== false ) |
|
| 213 | + if ($_context == 'display' |
|
| 214 | + && (strstr($url, "fontawesome") !== false || strstr($url, "font-awesome") !== false) |
|
| 215 | + && (strstr($url, ".js") !== false || strstr($url, ".css") !== false) |
|
| 216 | 216 | ) {// it's a font-awesome-url (probably) |
| 217 | 217 | |
| 218 | - if ( strstr( $url, "wpfas=true" ) !== false ) { |
|
| 219 | - if ( $this->settings['type'] == 'JS' ) { |
|
| 220 | - if ( $this->settings['js-pseudo'] ) { |
|
| 218 | + if (strstr($url, "wpfas=true") !== false) { |
|
| 219 | + if ($this->settings['type'] == 'JS') { |
|
| 220 | + if ($this->settings['js-pseudo']) { |
|
| 221 | 221 | $url .= "' data-search-pseudo-elements defer='defer"; |
| 222 | 222 | } else { |
| 223 | 223 | $url .= "' defer='defer"; |
@@ -236,7 +236,7 @@ discard block |
||
| 236 | 236 | * Register the database settings with WordPress. |
| 237 | 237 | */ |
| 238 | 238 | public function register_settings() { |
| 239 | - register_setting( 'wp-font-awesome-settings', 'wp-font-awesome-settings' ); |
|
| 239 | + register_setting('wp-font-awesome-settings', 'wp-font-awesome-settings'); |
|
| 240 | 240 | } |
| 241 | 241 | |
| 242 | 242 | /** |
@@ -244,11 +244,11 @@ discard block |
||
| 244 | 244 | * @since 1.0.10 Calling function name direct will fail theme check so we don't. |
| 245 | 245 | */ |
| 246 | 246 | public function menu_item() { |
| 247 | - $menu_function = 'add'.'_'.'options'.'_'.'page'; // won't pass theme check if function name present in theme |
|
| 247 | + $menu_function = 'add' . '_' . 'options' . '_' . 'page'; // won't pass theme check if function name present in theme |
|
| 248 | 248 | call_user_func($menu_function, $this->name, $this->name, 'manage_options', 'wp-font-awesome-settings', array( |
| 249 | 249 | $this, |
| 250 | 250 | 'settings_page' |
| 251 | - ) ); |
|
| 251 | + )); |
|
| 252 | 252 | } |
| 253 | 253 | |
| 254 | 254 | /** |
@@ -258,7 +258,7 @@ discard block |
||
| 258 | 258 | */ |
| 259 | 259 | public function get_settings() { |
| 260 | 260 | |
| 261 | - $db_settings = get_option( 'wp-font-awesome-settings' ); |
|
| 261 | + $db_settings = get_option('wp-font-awesome-settings'); |
|
| 262 | 262 | |
| 263 | 263 | $defaults = array( |
| 264 | 264 | 'type' => 'CSS', // type to use, CSS or JS |
@@ -269,14 +269,14 @@ discard block |
||
| 269 | 269 | 'dequeue' => '0', // if we should try to remove other versions added by other plugins/themes |
| 270 | 270 | ); |
| 271 | 271 | |
| 272 | - $settings = wp_parse_args( $db_settings, $defaults ); |
|
| 272 | + $settings = wp_parse_args($db_settings, $defaults); |
|
| 273 | 273 | |
| 274 | 274 | /** |
| 275 | 275 | * Filter the Font Awesome settings. |
| 276 | 276 | * |
| 277 | 277 | * @todo if we add this filer people might use it and then it defeates the purpose of this class :/ |
| 278 | 278 | */ |
| 279 | - return $this->settings = apply_filters( 'wp-font-awesome-settings', $settings, $db_settings, $defaults ); |
|
| 279 | + return $this->settings = apply_filters('wp-font-awesome-settings', $settings, $db_settings, $defaults); |
|
| 280 | 280 | } |
| 281 | 281 | |
| 282 | 282 | |
@@ -284,12 +284,12 @@ discard block |
||
| 284 | 284 | * The settings page html output. |
| 285 | 285 | */ |
| 286 | 286 | public function settings_page() { |
| 287 | - if ( ! current_user_can( 'manage_options' ) ) { |
|
| 288 | - wp_die( __( 'You do not have sufficient permissions to access this page.', 'font-awesome-settings' ) ); |
|
| 287 | + if (!current_user_can('manage_options')) { |
|
| 288 | + wp_die(__('You do not have sufficient permissions to access this page.', 'font-awesome-settings')); |
|
| 289 | 289 | } |
| 290 | 290 | |
| 291 | 291 | // a hidden way to force the update of the verison number vai api instead of waiting the 48 hours |
| 292 | - if(isset($_REQUEST['force-version-check'])){ |
|
| 292 | + if (isset($_REQUEST['force-version-check'])) { |
|
| 293 | 293 | $this->get_latest_version($force_api = true); |
| 294 | 294 | } |
| 295 | 295 | ?> |
@@ -297,47 +297,47 @@ discard block |
||
| 297 | 297 | <h1><?php echo $this->name; ?></h1> |
| 298 | 298 | <form method="post" action="options.php"> |
| 299 | 299 | <?php |
| 300 | - settings_fields( 'wp-font-awesome-settings' ); |
|
| 301 | - do_settings_sections( 'wp-font-awesome-settings' ); |
|
| 300 | + settings_fields('wp-font-awesome-settings'); |
|
| 301 | + do_settings_sections('wp-font-awesome-settings'); |
|
| 302 | 302 | ?> |
| 303 | 303 | <table class="form-table"> |
| 304 | 304 | <tr valign="top"> |
| 305 | - <th scope="row"><label for="wpfas-type"><?php _e( 'Type', 'font-awesome-settings' ); ?></label></th> |
|
| 305 | + <th scope="row"><label for="wpfas-type"><?php _e('Type', 'font-awesome-settings'); ?></label></th> |
|
| 306 | 306 | <td> |
| 307 | 307 | <select name="wp-font-awesome-settings[type]" id="wpfas-type"> |
| 308 | 308 | <option |
| 309 | - value="CSS" <?php selected( $this->settings['type'], 'CSS' ); ?>><?php _e( 'CSS (default)', 'font-awesome-settings' ); ?></option> |
|
| 310 | - <option value="JS" <?php selected( $this->settings['type'], 'JS' ); ?>>JS</option> |
|
| 309 | + value="CSS" <?php selected($this->settings['type'], 'CSS'); ?>><?php _e('CSS (default)', 'font-awesome-settings'); ?></option> |
|
| 310 | + <option value="JS" <?php selected($this->settings['type'], 'JS'); ?>>JS</option> |
|
| 311 | 311 | </select> |
| 312 | 312 | </td> |
| 313 | 313 | </tr> |
| 314 | 314 | |
| 315 | 315 | <tr valign="top"> |
| 316 | - <th scope="row"><label for="wpfas-version"><?php _e( 'Version', 'font-awesome-settings' ); ?></label></th> |
|
| 316 | + <th scope="row"><label for="wpfas-version"><?php _e('Version', 'font-awesome-settings'); ?></label></th> |
|
| 317 | 317 | <td> |
| 318 | 318 | <select name="wp-font-awesome-settings[version]" id="wpfas-version"> |
| 319 | 319 | <option |
| 320 | - value="" <?php selected( $this->settings['version'], '' ); ?>><?php echo sprintf( __( 'Latest - %s (default)', 'font-awesome-settings' ), $this->get_latest_version() ); ?> |
|
| 320 | + value="" <?php selected($this->settings['version'], ''); ?>><?php echo sprintf(__('Latest - %s (default)', 'font-awesome-settings'), $this->get_latest_version()); ?> |
|
| 321 | 321 | </option> |
| 322 | - <option value="5.6.0" <?php selected( $this->settings['version'], '5.6.0' ); ?>> |
|
| 322 | + <option value="5.6.0" <?php selected($this->settings['version'], '5.6.0'); ?>> |
|
| 323 | 323 | 5.6.0 |
| 324 | 324 | </option> |
| 325 | - <option value="5.5.0" <?php selected( $this->settings['version'], '5.5.0' ); ?>> |
|
| 325 | + <option value="5.5.0" <?php selected($this->settings['version'], '5.5.0'); ?>> |
|
| 326 | 326 | 5.5.0 |
| 327 | 327 | </option> |
| 328 | - <option value="5.4.0" <?php selected( $this->settings['version'], '5.4.0' ); ?>> |
|
| 328 | + <option value="5.4.0" <?php selected($this->settings['version'], '5.4.0'); ?>> |
|
| 329 | 329 | 5.4.0 |
| 330 | 330 | </option> |
| 331 | - <option value="5.3.0" <?php selected( $this->settings['version'], '5.3.0' ); ?>> |
|
| 331 | + <option value="5.3.0" <?php selected($this->settings['version'], '5.3.0'); ?>> |
|
| 332 | 332 | 5.3.0 |
| 333 | 333 | </option> |
| 334 | - <option value="5.2.0" <?php selected( $this->settings['version'], '5.2.0' ); ?>> |
|
| 334 | + <option value="5.2.0" <?php selected($this->settings['version'], '5.2.0'); ?>> |
|
| 335 | 335 | 5.2.0 |
| 336 | 336 | </option> |
| 337 | - <option value="5.1.0" <?php selected( $this->settings['version'], '5.1.0' ); ?>> |
|
| 337 | + <option value="5.1.0" <?php selected($this->settings['version'], '5.1.0'); ?>> |
|
| 338 | 338 | 5.1.0 |
| 339 | 339 | </option> |
| 340 | - <option value="4.7.0" <?php selected( $this->settings['version'], '4.7.0' ); ?>> |
|
| 340 | + <option value="4.7.0" <?php selected($this->settings['version'], '4.7.0'); ?>> |
|
| 341 | 341 | 4.7.1 (CSS only) |
| 342 | 342 | </option> |
| 343 | 343 | </select> |
@@ -345,51 +345,51 @@ discard block |
||
| 345 | 345 | </tr> |
| 346 | 346 | |
| 347 | 347 | <tr valign="top"> |
| 348 | - <th scope="row"><label for="wpfas-enqueue"><?php _e( 'Enqueue', 'font-awesome-settings' ); ?></label></th> |
|
| 348 | + <th scope="row"><label for="wpfas-enqueue"><?php _e('Enqueue', 'font-awesome-settings'); ?></label></th> |
|
| 349 | 349 | <td> |
| 350 | 350 | <select name="wp-font-awesome-settings[enqueue]" id="wpfas-enqueue"> |
| 351 | 351 | <option |
| 352 | - value="" <?php selected( $this->settings['enqueue'], '' ); ?>><?php _e( 'Frontend + Backend (default)', 'font-awesome-settings' ); ?></option> |
|
| 352 | + value="" <?php selected($this->settings['enqueue'], ''); ?>><?php _e('Frontend + Backend (default)', 'font-awesome-settings'); ?></option> |
|
| 353 | 353 | <option |
| 354 | - value="frontend" <?php selected( $this->settings['enqueue'], 'frontend' ); ?>><?php _e( 'Frontend', 'font-awesome-settings' ); ?></option> |
|
| 354 | + value="frontend" <?php selected($this->settings['enqueue'], 'frontend'); ?>><?php _e('Frontend', 'font-awesome-settings'); ?></option> |
|
| 355 | 355 | <option |
| 356 | - value="backend" <?php selected( $this->settings['enqueue'], 'backend' ); ?>><?php _e( 'Backend', 'font-awesome-settings' ); ?></option> |
|
| 356 | + value="backend" <?php selected($this->settings['enqueue'], 'backend'); ?>><?php _e('Backend', 'font-awesome-settings'); ?></option> |
|
| 357 | 357 | </select> |
| 358 | 358 | </td> |
| 359 | 359 | </tr> |
| 360 | 360 | |
| 361 | 361 | <tr valign="top"> |
| 362 | 362 | <th scope="row"><label |
| 363 | - for="wpfas-shims"><?php _e( 'Enable v4 shims compatibility', 'font-awesome-settings' ); ?></label></th> |
|
| 363 | + for="wpfas-shims"><?php _e('Enable v4 shims compatibility', 'font-awesome-settings'); ?></label></th> |
|
| 364 | 364 | <td> |
| 365 | 365 | <input type="hidden" name="wp-font-awesome-settings[shims]" value="0"/> |
| 366 | 366 | <input type="checkbox" name="wp-font-awesome-settings[shims]" |
| 367 | - value="1" <?php checked( $this->settings['shims'], '1' ); ?> id="wpfas-shims"/> |
|
| 368 | - <span><?php _e( 'This enables v4 classes to work with v5, sort of like a band-aid until everyone has updated everything to v5.', 'font-awesome-settings' ); ?></span> |
|
| 367 | + value="1" <?php checked($this->settings['shims'], '1'); ?> id="wpfas-shims"/> |
|
| 368 | + <span><?php _e('This enables v4 classes to work with v5, sort of like a band-aid until everyone has updated everything to v5.', 'font-awesome-settings'); ?></span> |
|
| 369 | 369 | </td> |
| 370 | 370 | </tr> |
| 371 | 371 | |
| 372 | 372 | <tr valign="top"> |
| 373 | 373 | <th scope="row"><label |
| 374 | - for="wpfas-js-pseudo"><?php _e( 'Enable JS pseudo elements (not recommended)', 'font-awesome-settings' ); ?></label> |
|
| 374 | + for="wpfas-js-pseudo"><?php _e('Enable JS pseudo elements (not recommended)', 'font-awesome-settings'); ?></label> |
|
| 375 | 375 | </th> |
| 376 | 376 | <td> |
| 377 | 377 | <input type="hidden" name="wp-font-awesome-settings[js-pseudo]" value="0"/> |
| 378 | 378 | <input type="checkbox" name="wp-font-awesome-settings[js-pseudo]" |
| 379 | - value="1" <?php checked( $this->settings['js-pseudo'], '1' ); ?> |
|
| 379 | + value="1" <?php checked($this->settings['js-pseudo'], '1'); ?> |
|
| 380 | 380 | id="wpfas-js-pseudo"/> |
| 381 | - <span><?php _e( 'Used only with the JS version, this will make pseudo-elements work but can be CPU intensive on some sites.', 'font-awesome-settings' ); ?></span> |
|
| 381 | + <span><?php _e('Used only with the JS version, this will make pseudo-elements work but can be CPU intensive on some sites.', 'font-awesome-settings'); ?></span> |
|
| 382 | 382 | </td> |
| 383 | 383 | </tr> |
| 384 | 384 | |
| 385 | 385 | <tr valign="top"> |
| 386 | - <th scope="row"><label for="wpfas-dequeue"><?php _e( 'Dequeue', 'font-awesome-settings' ); ?></label></th> |
|
| 386 | + <th scope="row"><label for="wpfas-dequeue"><?php _e('Dequeue', 'font-awesome-settings'); ?></label></th> |
|
| 387 | 387 | <td> |
| 388 | 388 | <input type="hidden" name="wp-font-awesome-settings[dequeue]" value="0"/> |
| 389 | 389 | <input type="checkbox" name="wp-font-awesome-settings[dequeue]" |
| 390 | - value="1" <?php checked( $this->settings['dequeue'], '1' ); ?> |
|
| 390 | + value="1" <?php checked($this->settings['dequeue'], '1'); ?> |
|
| 391 | 391 | id="wpfas-dequeue"/> |
| 392 | - <span><?php _e( 'This will try to dequeue any other Font Awesome versions loaded by other sources if they are added with `font-awesome` or `fontawesome` in the name.', 'font-awesome-settings' ); ?></span> |
|
| 392 | + <span><?php _e('This will try to dequeue any other Font Awesome versions loaded by other sources if they are added with `font-awesome` or `fontawesome` in the name.', 'font-awesome-settings'); ?></span> |
|
| 393 | 393 | </td> |
| 394 | 394 | </tr> |
| 395 | 395 | |
@@ -414,12 +414,12 @@ discard block |
||
| 414 | 414 | * |
| 415 | 415 | * @return string Either a valid version number or an empty string. |
| 416 | 416 | */ |
| 417 | - public function validate_version_number( $version ) { |
|
| 417 | + public function validate_version_number($version) { |
|
| 418 | 418 | |
| 419 | - if ( version_compare( $version, '0.0.1', '>=' ) >= 0 ) { |
|
| 419 | + if (version_compare($version, '0.0.1', '>=') >= 0) { |
|
| 420 | 420 | // valid |
| 421 | 421 | } else { |
| 422 | - $version = '';// not validated |
|
| 422 | + $version = ''; // not validated |
|
| 423 | 423 | } |
| 424 | 424 | |
| 425 | 425 | return $version; |
@@ -437,16 +437,16 @@ discard block |
||
| 437 | 437 | public function get_latest_version($force_api = false) { |
| 438 | 438 | $latest_version = $this->latest; |
| 439 | 439 | |
| 440 | - $cache = get_transient( 'wp-font-awesome-settings-version' ); |
|
| 440 | + $cache = get_transient('wp-font-awesome-settings-version'); |
|
| 441 | 441 | |
| 442 | - if ( $cache === false || $force_api) { // its not set |
|
| 442 | + if ($cache === false || $force_api) { // its not set |
|
| 443 | 443 | $api_ver = $this->get_latest_version_from_api(); |
| 444 | - if ( version_compare( $api_ver, $this->latest, '>=' ) >= 0 ) { |
|
| 444 | + if (version_compare($api_ver, $this->latest, '>=') >= 0) { |
|
| 445 | 445 | $latest_version = $api_ver; |
| 446 | - set_transient( 'wp-font-awesome-settings-version', $api_ver, 48 * HOUR_IN_SECONDS ); |
|
| 446 | + set_transient('wp-font-awesome-settings-version', $api_ver, 48 * HOUR_IN_SECONDS); |
|
| 447 | 447 | } |
| 448 | - } elseif ( $this->validate_version_number( $cache ) ) { |
|
| 449 | - if ( version_compare( $cache, $this->latest, '>=' ) >= 0 ) { |
|
| 448 | + } elseif ($this->validate_version_number($cache)) { |
|
| 449 | + if (version_compare($cache, $this->latest, '>=') >= 0) { |
|
| 450 | 450 | $latest_version = $cache; |
| 451 | 451 | } |
| 452 | 452 | } |
@@ -462,10 +462,10 @@ discard block |
||
| 462 | 462 | */ |
| 463 | 463 | public function get_latest_version_from_api() { |
| 464 | 464 | $version = "0"; |
| 465 | - $response = wp_remote_get( "https://api.github.com/repos/FortAwesome/Font-Awesome/releases/latest" ); |
|
| 466 | - if ( ! is_wp_error( $response ) && is_array( $response ) ) { |
|
| 467 | - $api_response = json_decode( wp_remote_retrieve_body( $response ), true ); |
|
| 468 | - if ( isset( $api_response['tag_name'] ) && version_compare( $api_response['tag_name'], $this->latest, '>=' ) >= 0 && empty( $api_response['prerelease'] ) ) { |
|
| 465 | + $response = wp_remote_get("https://api.github.com/repos/FortAwesome/Font-Awesome/releases/latest"); |
|
| 466 | + if (!is_wp_error($response) && is_array($response)) { |
|
| 467 | + $api_response = json_decode(wp_remote_retrieve_body($response), true); |
|
| 468 | + if (isset($api_response['tag_name']) && version_compare($api_response['tag_name'], $this->latest, '>=') >= 0 && empty($api_response['prerelease'])) { |
|
| 469 | 469 | $version = $api_response['tag_name']; |
| 470 | 470 | } |
| 471 | 471 | } |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | // Exit if accessed directly |
| 3 | -if ( ! defined( 'ABSPATH' ) ) exit; |
|
| 3 | +if (!defined('ABSPATH')) exit; |
|
| 4 | 4 | |
| 5 | 5 | class WPInv_Item { |
| 6 | 6 | public $ID = 0; |
@@ -47,26 +47,26 @@ discard block |
||
| 47 | 47 | public $filter; |
| 48 | 48 | |
| 49 | 49 | |
| 50 | - public function __construct( $_id = false, $_args = array() ) { |
|
| 51 | - $item = WP_Post::get_instance( $_id ); |
|
| 52 | - return $this->setup_item( $item ); |
|
| 50 | + public function __construct($_id = false, $_args = array()) { |
|
| 51 | + $item = WP_Post::get_instance($_id); |
|
| 52 | + return $this->setup_item($item); |
|
| 53 | 53 | } |
| 54 | 54 | |
| 55 | - private function setup_item( $item ) { |
|
| 56 | - if( ! is_object( $item ) ) { |
|
| 55 | + private function setup_item($item) { |
|
| 56 | + if (!is_object($item)) { |
|
| 57 | 57 | return false; |
| 58 | 58 | } |
| 59 | 59 | |
| 60 | - if( ! is_a( $item, 'WP_Post' ) ) { |
|
| 60 | + if (!is_a($item, 'WP_Post')) { |
|
| 61 | 61 | return false; |
| 62 | 62 | } |
| 63 | 63 | |
| 64 | - if( 'wpi_item' !== $item->post_type ) { |
|
| 64 | + if ('wpi_item' !== $item->post_type) { |
|
| 65 | 65 | return false; |
| 66 | 66 | } |
| 67 | 67 | |
| 68 | - foreach ( $item as $key => $value ) { |
|
| 69 | - switch ( $key ) { |
|
| 68 | + foreach ($item as $key => $value) { |
|
| 69 | + switch ($key) { |
|
| 70 | 70 | default: |
| 71 | 71 | $this->$key = $value; |
| 72 | 72 | break; |
@@ -76,38 +76,38 @@ discard block |
||
| 76 | 76 | return true; |
| 77 | 77 | } |
| 78 | 78 | |
| 79 | - public function __get( $key ) { |
|
| 80 | - if ( method_exists( $this, 'get_' . $key ) ) { |
|
| 81 | - return call_user_func( array( $this, 'get_' . $key ) ); |
|
| 79 | + public function __get($key) { |
|
| 80 | + if (method_exists($this, 'get_' . $key)) { |
|
| 81 | + return call_user_func(array($this, 'get_' . $key)); |
|
| 82 | 82 | } else { |
| 83 | - return new WP_Error( 'wpinv-item-invalid-property', sprintf( __( 'Can\'t get property %s', 'invoicing' ), $key ) ); |
|
| 83 | + return new WP_Error('wpinv-item-invalid-property', sprintf(__('Can\'t get property %s', 'invoicing'), $key)); |
|
| 84 | 84 | } |
| 85 | 85 | } |
| 86 | 86 | |
| 87 | - public function create( $data = array(), $wp_error = false ) { |
|
| 88 | - if ( $this->ID != 0 ) { |
|
| 87 | + public function create($data = array(), $wp_error = false) { |
|
| 88 | + if ($this->ID != 0) { |
|
| 89 | 89 | return false; |
| 90 | 90 | } |
| 91 | 91 | |
| 92 | 92 | $defaults = array( |
| 93 | 93 | 'post_type' => 'wpi_item', |
| 94 | 94 | 'post_status' => 'draft', |
| 95 | - 'post_title' => __( 'New Invoice Item', 'invoicing' ) |
|
| 95 | + 'post_title' => __('New Invoice Item', 'invoicing') |
|
| 96 | 96 | ); |
| 97 | 97 | |
| 98 | - $args = wp_parse_args( $data, $defaults ); |
|
| 98 | + $args = wp_parse_args($data, $defaults); |
|
| 99 | 99 | |
| 100 | - do_action( 'wpinv_item_pre_create', $args ); |
|
| 100 | + do_action('wpinv_item_pre_create', $args); |
|
| 101 | 101 | |
| 102 | - $id = wp_insert_post( $args, $wp_error ); |
|
| 102 | + $id = wp_insert_post($args, $wp_error); |
|
| 103 | 103 | if ($wp_error && is_wp_error($id)) { |
| 104 | 104 | return $id; |
| 105 | 105 | } |
| 106 | - if ( !$id ) { |
|
| 106 | + if (!$id) { |
|
| 107 | 107 | return false; |
| 108 | 108 | } |
| 109 | 109 | |
| 110 | - $item = WP_Post::get_instance( $id ); |
|
| 110 | + $item = WP_Post::get_instance($id); |
|
| 111 | 111 | |
| 112 | 112 | if (!empty($item) && !empty($data['meta'])) { |
| 113 | 113 | $this->ID = $item->ID; |
@@ -115,47 +115,47 @@ discard block |
||
| 115 | 115 | } |
| 116 | 116 | |
| 117 | 117 | // Set custom id if not set. |
| 118 | - if ( empty( $data['meta']['custom_id'] ) && !$this->get_custom_id() ) { |
|
| 119 | - $this->save_metas( array( 'custom_id' => $id ) ); |
|
| 118 | + if (empty($data['meta']['custom_id']) && !$this->get_custom_id()) { |
|
| 119 | + $this->save_metas(array('custom_id' => $id)); |
|
| 120 | 120 | } |
| 121 | 121 | |
| 122 | - do_action( 'wpinv_item_create', $id, $args ); |
|
| 122 | + do_action('wpinv_item_create', $id, $args); |
|
| 123 | 123 | |
| 124 | - return $this->setup_item( $item ); |
|
| 124 | + return $this->setup_item($item); |
|
| 125 | 125 | } |
| 126 | 126 | |
| 127 | - public function update( $data = array(), $wp_error = false ) { |
|
| 128 | - if ( !$this->ID > 0 ) { |
|
| 127 | + public function update($data = array(), $wp_error = false) { |
|
| 128 | + if (!$this->ID > 0) { |
|
| 129 | 129 | return false; |
| 130 | 130 | } |
| 131 | 131 | |
| 132 | 132 | $data['ID'] = $this->ID; |
| 133 | 133 | |
| 134 | - do_action( 'wpinv_item_pre_update', $data ); |
|
| 134 | + do_action('wpinv_item_pre_update', $data); |
|
| 135 | 135 | |
| 136 | - $id = wp_update_post( $data, $wp_error ); |
|
| 136 | + $id = wp_update_post($data, $wp_error); |
|
| 137 | 137 | if ($wp_error && is_wp_error($id)) { |
| 138 | 138 | return $id; |
| 139 | 139 | } |
| 140 | 140 | |
| 141 | - if ( !$id ) { |
|
| 141 | + if (!$id) { |
|
| 142 | 142 | return false; |
| 143 | 143 | } |
| 144 | 144 | |
| 145 | - $item = WP_Post::get_instance( $id ); |
|
| 145 | + $item = WP_Post::get_instance($id); |
|
| 146 | 146 | if (!empty($item) && !empty($data['meta'])) { |
| 147 | 147 | $this->ID = $item->ID; |
| 148 | 148 | $this->save_metas($data['meta']); |
| 149 | 149 | } |
| 150 | 150 | |
| 151 | 151 | // Set custom id if not set. |
| 152 | - if ( empty( $data['meta']['custom_id'] ) && !$this->get_custom_id() ) { |
|
| 153 | - $this->save_metas( array( 'custom_id' => $id ) ); |
|
| 152 | + if (empty($data['meta']['custom_id']) && !$this->get_custom_id()) { |
|
| 153 | + $this->save_metas(array('custom_id' => $id)); |
|
| 154 | 154 | } |
| 155 | 155 | |
| 156 | - do_action( 'wpinv_item_update', $id, $data ); |
|
| 156 | + do_action('wpinv_item_update', $id, $data); |
|
| 157 | 157 | |
| 158 | - return $this->setup_item( $item ); |
|
| 158 | + return $this->setup_item($item); |
|
| 159 | 159 | } |
| 160 | 160 | |
| 161 | 161 | public function get_ID() { |
@@ -163,120 +163,120 @@ discard block |
||
| 163 | 163 | } |
| 164 | 164 | |
| 165 | 165 | public function get_name() { |
| 166 | - return get_the_title( $this->ID ); |
|
| 166 | + return get_the_title($this->ID); |
|
| 167 | 167 | } |
| 168 | 168 | |
| 169 | 169 | public function get_title() { |
| 170 | - return get_the_title( $this->ID ); |
|
| 170 | + return get_the_title($this->ID); |
|
| 171 | 171 | } |
| 172 | 172 | |
| 173 | 173 | public function get_status() { |
| 174 | - return get_post_status( $this->ID ); |
|
| 174 | + return get_post_status($this->ID); |
|
| 175 | 175 | } |
| 176 | 176 | |
| 177 | 177 | public function get_summary() { |
| 178 | - $post = get_post( $this->ID ); |
|
| 179 | - return !empty( $post->post_excerpt ) ? $post->post_excerpt : ''; |
|
| 178 | + $post = get_post($this->ID); |
|
| 179 | + return !empty($post->post_excerpt) ? $post->post_excerpt : ''; |
|
| 180 | 180 | } |
| 181 | 181 | |
| 182 | 182 | public function get_price() { |
| 183 | - if ( ! isset( $this->price ) ) { |
|
| 184 | - $this->price = get_post_meta( $this->ID, '_wpinv_price', true ); |
|
| 183 | + if (!isset($this->price)) { |
|
| 184 | + $this->price = get_post_meta($this->ID, '_wpinv_price', true); |
|
| 185 | 185 | |
| 186 | - if ( $this->price ) { |
|
| 187 | - $this->price = wpinv_sanitize_amount( $this->price ); |
|
| 186 | + if ($this->price) { |
|
| 187 | + $this->price = wpinv_sanitize_amount($this->price); |
|
| 188 | 188 | } else { |
| 189 | 189 | $this->price = 0; |
| 190 | 190 | } |
| 191 | 191 | } |
| 192 | 192 | |
| 193 | - return apply_filters( 'wpinv_get_item_price', $this->price, $this->ID ); |
|
| 193 | + return apply_filters('wpinv_get_item_price', $this->price, $this->ID); |
|
| 194 | 194 | } |
| 195 | 195 | |
| 196 | 196 | public function get_vat_rule() { |
| 197 | 197 | global $wpinv_euvat; |
| 198 | 198 | |
| 199 | - if( !isset( $this->vat_rule ) ) { |
|
| 200 | - $this->vat_rule = get_post_meta( $this->ID, '_wpinv_vat_rule', true ); |
|
| 199 | + if (!isset($this->vat_rule)) { |
|
| 200 | + $this->vat_rule = get_post_meta($this->ID, '_wpinv_vat_rule', true); |
|
| 201 | 201 | |
| 202 | - if ( empty( $this->vat_rule ) ) { |
|
| 202 | + if (empty($this->vat_rule)) { |
|
| 203 | 203 | $this->vat_rule = $wpinv_euvat->allow_vat_rules() ? 'digital' : 'physical'; |
| 204 | 204 | } |
| 205 | 205 | } |
| 206 | 206 | |
| 207 | - return apply_filters( 'wpinv_get_item_vat_rule', $this->vat_rule, $this->ID ); |
|
| 207 | + return apply_filters('wpinv_get_item_vat_rule', $this->vat_rule, $this->ID); |
|
| 208 | 208 | } |
| 209 | 209 | |
| 210 | 210 | public function get_vat_class() { |
| 211 | - if( !isset( $this->vat_class ) ) { |
|
| 212 | - $this->vat_class = get_post_meta( $this->ID, '_wpinv_vat_class', true ); |
|
| 211 | + if (!isset($this->vat_class)) { |
|
| 212 | + $this->vat_class = get_post_meta($this->ID, '_wpinv_vat_class', true); |
|
| 213 | 213 | |
| 214 | - if ( empty( $this->vat_class ) ) { |
|
| 214 | + if (empty($this->vat_class)) { |
|
| 215 | 215 | $this->vat_class = '_standard'; |
| 216 | 216 | } |
| 217 | 217 | } |
| 218 | 218 | |
| 219 | - return apply_filters( 'wpinv_get_item_vat_class', $this->vat_class, $this->ID ); |
|
| 219 | + return apply_filters('wpinv_get_item_vat_class', $this->vat_class, $this->ID); |
|
| 220 | 220 | } |
| 221 | 221 | |
| 222 | 222 | public function get_type() { |
| 223 | - if( ! isset( $this->type ) ) { |
|
| 224 | - $this->type = get_post_meta( $this->ID, '_wpinv_type', true ); |
|
| 223 | + if (!isset($this->type)) { |
|
| 224 | + $this->type = get_post_meta($this->ID, '_wpinv_type', true); |
|
| 225 | 225 | |
| 226 | - if ( empty( $this->type ) ) { |
|
| 226 | + if (empty($this->type)) { |
|
| 227 | 227 | $this->type = 'custom'; |
| 228 | 228 | } |
| 229 | 229 | } |
| 230 | 230 | |
| 231 | - return apply_filters( 'wpinv_get_item_type', $this->type, $this->ID ); |
|
| 231 | + return apply_filters('wpinv_get_item_type', $this->type, $this->ID); |
|
| 232 | 232 | } |
| 233 | 233 | |
| 234 | 234 | public function get_custom_id() { |
| 235 | - $custom_id = get_post_meta( $this->ID, '_wpinv_custom_id', true ); |
|
| 235 | + $custom_id = get_post_meta($this->ID, '_wpinv_custom_id', true); |
|
| 236 | 236 | |
| 237 | - return apply_filters( 'wpinv_get_item_custom_id', $custom_id, $this->ID ); |
|
| 237 | + return apply_filters('wpinv_get_item_custom_id', $custom_id, $this->ID); |
|
| 238 | 238 | } |
| 239 | 239 | |
| 240 | 240 | public function get_custom_name() { |
| 241 | - $custom_name = get_post_meta( $this->ID, '_wpinv_custom_name', true ); |
|
| 241 | + $custom_name = get_post_meta($this->ID, '_wpinv_custom_name', true); |
|
| 242 | 242 | |
| 243 | - return apply_filters( 'wpinv_get_item_custom_name', $custom_name, $this->ID ); |
|
| 243 | + return apply_filters('wpinv_get_item_custom_name', $custom_name, $this->ID); |
|
| 244 | 244 | } |
| 245 | 245 | |
| 246 | 246 | public function get_custom_singular_name() { |
| 247 | - $custom_singular_name = get_post_meta( $this->ID, '_wpinv_custom_singular_name', true ); |
|
| 247 | + $custom_singular_name = get_post_meta($this->ID, '_wpinv_custom_singular_name', true); |
|
| 248 | 248 | |
| 249 | - return apply_filters( 'wpinv_get_item_custom_singular_name', $custom_singular_name, $this->ID ); |
|
| 249 | + return apply_filters('wpinv_get_item_custom_singular_name', $custom_singular_name, $this->ID); |
|
| 250 | 250 | } |
| 251 | 251 | |
| 252 | 252 | public function get_editable() { |
| 253 | - $editable = get_post_meta( $this->ID, '_wpinv_editable', true ); |
|
| 253 | + $editable = get_post_meta($this->ID, '_wpinv_editable', true); |
|
| 254 | 254 | |
| 255 | - return apply_filters( 'wpinv_item_get_editable', $editable, $this->ID ); |
|
| 255 | + return apply_filters('wpinv_item_get_editable', $editable, $this->ID); |
|
| 256 | 256 | } |
| 257 | 257 | |
| 258 | 258 | public function get_excerpt() { |
| 259 | - $excerpt = get_the_excerpt( $this->ID ); |
|
| 259 | + $excerpt = get_the_excerpt($this->ID); |
|
| 260 | 260 | |
| 261 | - return apply_filters( 'wpinv_item_get_excerpt', $excerpt, $this->ID ); |
|
| 261 | + return apply_filters('wpinv_item_get_excerpt', $excerpt, $this->ID); |
|
| 262 | 262 | } |
| 263 | 263 | |
| 264 | 264 | public function get_is_recurring() { |
| 265 | - $is_recurring = get_post_meta( $this->ID, '_wpinv_is_recurring', true ); |
|
| 265 | + $is_recurring = get_post_meta($this->ID, '_wpinv_is_recurring', true); |
|
| 266 | 266 | |
| 267 | - return apply_filters( 'wpinv_item_get_is_recurring', $is_recurring, $this->ID ); |
|
| 267 | + return apply_filters('wpinv_item_get_is_recurring', $is_recurring, $this->ID); |
|
| 268 | 268 | |
| 269 | 269 | } |
| 270 | 270 | |
| 271 | - public function get_recurring_period( $full = false ) { |
|
| 272 | - $period = get_post_meta( $this->ID, '_wpinv_recurring_period', true ); |
|
| 271 | + public function get_recurring_period($full = false) { |
|
| 272 | + $period = get_post_meta($this->ID, '_wpinv_recurring_period', true); |
|
| 273 | 273 | |
| 274 | - if ( !in_array( $period, array( 'D', 'W', 'M', 'Y' ) ) ) { |
|
| 274 | + if (!in_array($period, array('D', 'W', 'M', 'Y'))) { |
|
| 275 | 275 | $period = 'D'; |
| 276 | 276 | } |
| 277 | 277 | |
| 278 | - if ( $full ) { |
|
| 279 | - switch( $period ) { |
|
| 278 | + if ($full) { |
|
| 279 | + switch ($period) { |
|
| 280 | 280 | case 'D': |
| 281 | 281 | $period = 'day'; |
| 282 | 282 | break; |
@@ -292,40 +292,40 @@ discard block |
||
| 292 | 292 | } |
| 293 | 293 | } |
| 294 | 294 | |
| 295 | - return apply_filters( 'wpinv_item_recurring_period', $period, $full, $this->ID ); |
|
| 295 | + return apply_filters('wpinv_item_recurring_period', $period, $full, $this->ID); |
|
| 296 | 296 | } |
| 297 | 297 | |
| 298 | 298 | public function get_recurring_interval() { |
| 299 | - $interval = (int)get_post_meta( $this->ID, '_wpinv_recurring_interval', true ); |
|
| 299 | + $interval = (int)get_post_meta($this->ID, '_wpinv_recurring_interval', true); |
|
| 300 | 300 | |
| 301 | - if ( !$interval > 0 ) { |
|
| 301 | + if (!$interval > 0) { |
|
| 302 | 302 | $interval = 1; |
| 303 | 303 | } |
| 304 | 304 | |
| 305 | - return apply_filters( 'wpinv_item_recurring_interval', $interval, $this->ID ); |
|
| 305 | + return apply_filters('wpinv_item_recurring_interval', $interval, $this->ID); |
|
| 306 | 306 | } |
| 307 | 307 | |
| 308 | 308 | public function get_recurring_limit() { |
| 309 | - $limit = get_post_meta( $this->ID, '_wpinv_recurring_limit', true ); |
|
| 309 | + $limit = get_post_meta($this->ID, '_wpinv_recurring_limit', true); |
|
| 310 | 310 | |
| 311 | - return (int)apply_filters( 'wpinv_item_recurring_limit', $limit, $this->ID ); |
|
| 311 | + return (int)apply_filters('wpinv_item_recurring_limit', $limit, $this->ID); |
|
| 312 | 312 | } |
| 313 | 313 | |
| 314 | 314 | public function get_free_trial() { |
| 315 | - $free_trial = get_post_meta( $this->ID, '_wpinv_free_trial', true ); |
|
| 315 | + $free_trial = get_post_meta($this->ID, '_wpinv_free_trial', true); |
|
| 316 | 316 | |
| 317 | - return apply_filters( 'wpinv_item_get_free_trial', $free_trial, $this->ID ); |
|
| 317 | + return apply_filters('wpinv_item_get_free_trial', $free_trial, $this->ID); |
|
| 318 | 318 | } |
| 319 | 319 | |
| 320 | - public function get_trial_period( $full = false ) { |
|
| 321 | - $period = get_post_meta( $this->ID, '_wpinv_trial_period', true ); |
|
| 320 | + public function get_trial_period($full = false) { |
|
| 321 | + $period = get_post_meta($this->ID, '_wpinv_trial_period', true); |
|
| 322 | 322 | |
| 323 | - if ( !in_array( $period, array( 'D', 'W', 'M', 'Y' ) ) ) { |
|
| 323 | + if (!in_array($period, array('D', 'W', 'M', 'Y'))) { |
|
| 324 | 324 | $period = 'D'; |
| 325 | 325 | } |
| 326 | 326 | |
| 327 | - if ( $full ) { |
|
| 328 | - switch( $period ) { |
|
| 327 | + if ($full) { |
|
| 328 | + switch ($period) { |
|
| 329 | 329 | case 'D': |
| 330 | 330 | $period = 'day'; |
| 331 | 331 | break; |
@@ -341,47 +341,47 @@ discard block |
||
| 341 | 341 | } |
| 342 | 342 | } |
| 343 | 343 | |
| 344 | - return apply_filters( 'wpinv_item_trial_period', $period, $full, $this->ID ); |
|
| 344 | + return apply_filters('wpinv_item_trial_period', $period, $full, $this->ID); |
|
| 345 | 345 | } |
| 346 | 346 | |
| 347 | 347 | public function get_trial_interval() { |
| 348 | - $interval = absint( get_post_meta( $this->ID, '_wpinv_trial_interval', true ) ); |
|
| 348 | + $interval = absint(get_post_meta($this->ID, '_wpinv_trial_interval', true)); |
|
| 349 | 349 | |
| 350 | - if ( !$interval > 0 ) { |
|
| 350 | + if (!$interval > 0) { |
|
| 351 | 351 | $interval = 1; |
| 352 | 352 | } |
| 353 | 353 | |
| 354 | - return apply_filters( 'wpinv_item_trial_interval', $interval, $this->ID ); |
|
| 354 | + return apply_filters('wpinv_item_trial_interval', $interval, $this->ID); |
|
| 355 | 355 | } |
| 356 | 356 | |
| 357 | 357 | public function get_the_price() { |
| 358 | - $item_price = wpinv_price( wpinv_format_amount( $this->price ) ); |
|
| 358 | + $item_price = wpinv_price(wpinv_format_amount($this->price)); |
|
| 359 | 359 | |
| 360 | - return apply_filters( 'wpinv_get_the_item_price', $item_price, $this->ID ); |
|
| 360 | + return apply_filters('wpinv_get_the_item_price', $item_price, $this->ID); |
|
| 361 | 361 | } |
| 362 | 362 | |
| 363 | 363 | public function is_recurring() { |
| 364 | 364 | $is_recurring = $this->get_is_recurring(); |
| 365 | 365 | |
| 366 | - return (bool)apply_filters( 'wpinv_is_recurring_item', $is_recurring, $this->ID ); |
|
| 366 | + return (bool)apply_filters('wpinv_is_recurring_item', $is_recurring, $this->ID); |
|
| 367 | 367 | } |
| 368 | 368 | |
| 369 | 369 | public function has_free_trial() { |
| 370 | 370 | $free_trial = $this->is_recurring() && $this->get_free_trial() ? true : false; |
| 371 | 371 | |
| 372 | - return (bool)apply_filters( 'wpinv_item_has_free_trial', $free_trial, $this->ID ); |
|
| 372 | + return (bool)apply_filters('wpinv_item_has_free_trial', $free_trial, $this->ID); |
|
| 373 | 373 | } |
| 374 | 374 | |
| 375 | 375 | public function is_free() { |
| 376 | 376 | $is_free = false; |
| 377 | 377 | |
| 378 | - $price = get_post_meta( $this->ID, '_wpinv_price', true ); |
|
| 378 | + $price = get_post_meta($this->ID, '_wpinv_price', true); |
|
| 379 | 379 | |
| 380 | - if ( (float)$price == 0 ) { |
|
| 380 | + if ((float)$price == 0) { |
|
| 381 | 381 | $is_free = true; |
| 382 | 382 | } |
| 383 | 383 | |
| 384 | - return (bool) apply_filters( 'wpinv_is_free_item', $is_free, $this->ID ); |
|
| 384 | + return (bool)apply_filters('wpinv_is_free_item', $is_free, $this->ID); |
|
| 385 | 385 | |
| 386 | 386 | } |
| 387 | 387 | |
@@ -390,15 +390,15 @@ discard block |
||
| 390 | 390 | |
| 391 | 391 | $is_editable = $editable === 0 || $editable === '0' ? false : true; |
| 392 | 392 | |
| 393 | - return (bool) apply_filters( 'wpinv_item_is_editable', $is_editable, $this->ID ); |
|
| 393 | + return (bool)apply_filters('wpinv_item_is_editable', $is_editable, $this->ID); |
|
| 394 | 394 | } |
| 395 | 395 | |
| 396 | - public function save_metas( $metas = array() ) { |
|
| 397 | - if ( empty( $metas ) ) { |
|
| 396 | + public function save_metas($metas = array()) { |
|
| 397 | + if (empty($metas)) { |
|
| 398 | 398 | return false; |
| 399 | 399 | } |
| 400 | 400 | |
| 401 | - foreach ( $metas as $meta_key => $meta_value ) { |
|
| 401 | + foreach ($metas as $meta_key => $meta_value) { |
|
| 402 | 402 | $meta_key = strpos($meta_key, '_wpinv_') !== 0 ? '_wpinv_' . $meta_key : $meta_key; |
| 403 | 403 | |
| 404 | 404 | $this->update_meta($meta_key, $meta_value); |
@@ -407,66 +407,66 @@ discard block |
||
| 407 | 407 | return true; |
| 408 | 408 | } |
| 409 | 409 | |
| 410 | - public function update_meta( $meta_key = '', $meta_value = '', $prev_value = '' ) { |
|
| 411 | - if ( empty( $meta_key ) ) { |
|
| 410 | + public function update_meta($meta_key = '', $meta_value = '', $prev_value = '') { |
|
| 411 | + if (empty($meta_key)) { |
|
| 412 | 412 | return false; |
| 413 | 413 | } |
| 414 | 414 | |
| 415 | - $meta_value = apply_filters( 'wpinv_update_item_meta_' . $meta_key, $meta_value, $this->ID ); |
|
| 415 | + $meta_value = apply_filters('wpinv_update_item_meta_' . $meta_key, $meta_value, $this->ID); |
|
| 416 | 416 | |
| 417 | - return update_post_meta( $this->ID, $meta_key, $meta_value, $prev_value ); |
|
| 417 | + return update_post_meta($this->ID, $meta_key, $meta_value, $prev_value); |
|
| 418 | 418 | } |
| 419 | 419 | |
| 420 | - public function get_fees( $type = 'fee', $item_id = 0 ) { |
|
| 420 | + public function get_fees($type = 'fee', $item_id = 0) { |
|
| 421 | 421 | global $wpi_session; |
| 422 | 422 | |
| 423 | - $fees = $wpi_session->get( 'wpi_cart_fees' ); |
|
| 423 | + $fees = $wpi_session->get('wpi_cart_fees'); |
|
| 424 | 424 | |
| 425 | - if ( ! wpinv_get_cart_contents() ) { |
|
| 425 | + if (!wpinv_get_cart_contents()) { |
|
| 426 | 426 | // We can only get item type fees when the cart is empty |
| 427 | 427 | $type = 'custom'; |
| 428 | 428 | } |
| 429 | 429 | |
| 430 | - if ( ! empty( $fees ) && ! empty( $type ) && 'all' !== $type ) { |
|
| 431 | - foreach( $fees as $key => $fee ) { |
|
| 432 | - if( ! empty( $fee['type'] ) && $type != $fee['type'] ) { |
|
| 433 | - unset( $fees[ $key ] ); |
|
| 430 | + if (!empty($fees) && !empty($type) && 'all' !== $type) { |
|
| 431 | + foreach ($fees as $key => $fee) { |
|
| 432 | + if (!empty($fee['type']) && $type != $fee['type']) { |
|
| 433 | + unset($fees[$key]); |
|
| 434 | 434 | } |
| 435 | 435 | } |
| 436 | 436 | } |
| 437 | 437 | |
| 438 | - if ( ! empty( $fees ) && ! empty( $item_id ) ) { |
|
| 438 | + if (!empty($fees) && !empty($item_id)) { |
|
| 439 | 439 | // Remove fees that don't belong to the specified Item |
| 440 | - foreach ( $fees as $key => $fee ) { |
|
| 441 | - if ( (int) $item_id !== (int)$fee['custom_id'] ) { |
|
| 442 | - unset( $fees[ $key ] ); |
|
| 440 | + foreach ($fees as $key => $fee) { |
|
| 441 | + if ((int)$item_id !== (int)$fee['custom_id']) { |
|
| 442 | + unset($fees[$key]); |
|
| 443 | 443 | } |
| 444 | 444 | } |
| 445 | 445 | } |
| 446 | 446 | |
| 447 | - if ( ! empty( $fees ) ) { |
|
| 447 | + if (!empty($fees)) { |
|
| 448 | 448 | // Remove fees that belong to a specific item but are not in the cart |
| 449 | - foreach( $fees as $key => $fee ) { |
|
| 450 | - if( empty( $fee['custom_id'] ) ) { |
|
| 449 | + foreach ($fees as $key => $fee) { |
|
| 450 | + if (empty($fee['custom_id'])) { |
|
| 451 | 451 | continue; |
| 452 | 452 | } |
| 453 | 453 | |
| 454 | - if ( !wpinv_item_in_cart( $fee['custom_id'] ) ) { |
|
| 455 | - unset( $fees[ $key ] ); |
|
| 454 | + if (!wpinv_item_in_cart($fee['custom_id'])) { |
|
| 455 | + unset($fees[$key]); |
|
| 456 | 456 | } |
| 457 | 457 | } |
| 458 | 458 | } |
| 459 | 459 | |
| 460 | - return ! empty( $fees ) ? $fees : array(); |
|
| 460 | + return !empty($fees) ? $fees : array(); |
|
| 461 | 461 | } |
| 462 | 462 | |
| 463 | 463 | public function can_purchase() { |
| 464 | 464 | $can_purchase = true; |
| 465 | 465 | |
| 466 | - if ( !current_user_can( 'edit_post', $this->ID ) && $this->post_status != 'publish' ) { |
|
| 466 | + if (!current_user_can('edit_post', $this->ID) && $this->post_status != 'publish') { |
|
| 467 | 467 | $can_purchase = false; |
| 468 | 468 | } |
| 469 | 469 | |
| 470 | - return (bool)apply_filters( 'wpinv_can_purchase_item', $can_purchase, $this ); |
|
| 470 | + return (bool)apply_filters('wpinv_can_purchase_item', $can_purchase, $this); |
|
| 471 | 471 | } |
| 472 | 472 | } |
@@ -7,201 +7,201 @@ discard block |
||
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | 9 | // MUST have WordPress. |
| 10 | -if ( !defined( 'WPINC' ) ) { |
|
| 11 | - exit( 'Do NOT access this file directly: ' . basename( __FILE__ ) ); |
|
| 10 | +if (!defined('WPINC')) { |
|
| 11 | + exit('Do NOT access this file directly: ' . basename(__FILE__)); |
|
| 12 | 12 | } |
| 13 | 13 | |
| 14 | 14 | function wpinv_is_checkout() { |
| 15 | 15 | global $wp_query; |
| 16 | 16 | |
| 17 | - $is_object_set = isset( $wp_query->queried_object ); |
|
| 18 | - $is_object_id_set = isset( $wp_query->queried_object_id ); |
|
| 19 | - $is_checkout = is_page( wpinv_get_option( 'checkout_page' ) ); |
|
| 17 | + $is_object_set = isset($wp_query->queried_object); |
|
| 18 | + $is_object_id_set = isset($wp_query->queried_object_id); |
|
| 19 | + $is_checkout = is_page(wpinv_get_option('checkout_page')); |
|
| 20 | 20 | |
| 21 | - if ( !$is_object_set ) { |
|
| 22 | - unset( $wp_query->queried_object ); |
|
| 21 | + if (!$is_object_set) { |
|
| 22 | + unset($wp_query->queried_object); |
|
| 23 | 23 | } |
| 24 | 24 | |
| 25 | - if ( !$is_object_id_set ) { |
|
| 26 | - unset( $wp_query->queried_object_id ); |
|
| 25 | + if (!$is_object_id_set) { |
|
| 26 | + unset($wp_query->queried_object_id); |
|
| 27 | 27 | } |
| 28 | 28 | |
| 29 | - return apply_filters( 'wpinv_is_checkout', $is_checkout ); |
|
| 29 | + return apply_filters('wpinv_is_checkout', $is_checkout); |
|
| 30 | 30 | } |
| 31 | 31 | |
| 32 | 32 | function wpinv_can_checkout() { |
| 33 | 33 | $can_checkout = true; // Always true for now |
| 34 | 34 | |
| 35 | - return (bool) apply_filters( 'wpinv_can_checkout', $can_checkout ); |
|
| 35 | + return (bool)apply_filters('wpinv_can_checkout', $can_checkout); |
|
| 36 | 36 | } |
| 37 | 37 | |
| 38 | 38 | function wpinv_get_success_page_uri() { |
| 39 | - $page_id = wpinv_get_option( 'success_page', 0 ); |
|
| 40 | - $page_id = absint( $page_id ); |
|
| 39 | + $page_id = wpinv_get_option('success_page', 0); |
|
| 40 | + $page_id = absint($page_id); |
|
| 41 | 41 | |
| 42 | - return apply_filters( 'wpinv_get_success_page_uri', get_permalink( $page_id ) ); |
|
| 42 | + return apply_filters('wpinv_get_success_page_uri', get_permalink($page_id)); |
|
| 43 | 43 | } |
| 44 | 44 | |
| 45 | 45 | function wpinv_get_history_page_uri() { |
| 46 | - $page_id = wpinv_get_option( 'invoice_history_page', 0 ); |
|
| 47 | - $page_id = absint( $page_id ); |
|
| 46 | + $page_id = wpinv_get_option('invoice_history_page', 0); |
|
| 47 | + $page_id = absint($page_id); |
|
| 48 | 48 | |
| 49 | - return apply_filters( 'wpinv_get_history_page_uri', get_permalink( $page_id ) ); |
|
| 49 | + return apply_filters('wpinv_get_history_page_uri', get_permalink($page_id)); |
|
| 50 | 50 | } |
| 51 | 51 | |
| 52 | 52 | function wpinv_is_success_page() { |
| 53 | - $is_success_page = wpinv_get_option( 'success_page', false ); |
|
| 54 | - $is_success_page = isset( $is_success_page ) ? is_page( $is_success_page ) : false; |
|
| 53 | + $is_success_page = wpinv_get_option('success_page', false); |
|
| 54 | + $is_success_page = isset($is_success_page) ? is_page($is_success_page) : false; |
|
| 55 | 55 | |
| 56 | - return apply_filters( 'wpinv_is_success_page', $is_success_page ); |
|
| 56 | + return apply_filters('wpinv_is_success_page', $is_success_page); |
|
| 57 | 57 | } |
| 58 | 58 | |
| 59 | 59 | function wpinv_is_invoice_history_page() { |
| 60 | - $ret = wpinv_get_option( 'invoice_history_page', false ); |
|
| 61 | - $ret = $ret ? is_page( $ret ) : false; |
|
| 62 | - return apply_filters( 'wpinv_is_invoice_history_page', $ret ); |
|
| 60 | + $ret = wpinv_get_option('invoice_history_page', false); |
|
| 61 | + $ret = $ret ? is_page($ret) : false; |
|
| 62 | + return apply_filters('wpinv_is_invoice_history_page', $ret); |
|
| 63 | 63 | } |
| 64 | 64 | |
| 65 | 65 | function wpinv_is_subscriptions_history_page() { |
| 66 | - $ret = wpinv_get_option( 'invoice_subscription_page', false ); |
|
| 67 | - $ret = $ret ? is_page( $ret ) : false; |
|
| 68 | - return apply_filters( 'wpinv_is_subscriptions_history_page', $ret ); |
|
| 66 | + $ret = wpinv_get_option('invoice_subscription_page', false); |
|
| 67 | + $ret = $ret ? is_page($ret) : false; |
|
| 68 | + return apply_filters('wpinv_is_subscriptions_history_page', $ret); |
|
| 69 | 69 | } |
| 70 | 70 | |
| 71 | -function wpinv_send_to_success_page( $args = null ) { |
|
| 71 | +function wpinv_send_to_success_page($args = null) { |
|
| 72 | 72 | $redirect = wpinv_get_success_page_uri(); |
| 73 | 73 | |
| 74 | - if ( !empty( $args ) ) { |
|
| 74 | + if (!empty($args)) { |
|
| 75 | 75 | // Check for backward compatibility |
| 76 | - if ( is_string( $args ) ) |
|
| 77 | - $args = str_replace( '?', '', $args ); |
|
| 76 | + if (is_string($args)) |
|
| 77 | + $args = str_replace('?', '', $args); |
|
| 78 | 78 | |
| 79 | - $args = wp_parse_args( $args ); |
|
| 79 | + $args = wp_parse_args($args); |
|
| 80 | 80 | |
| 81 | - $redirect = add_query_arg( $args, $redirect ); |
|
| 81 | + $redirect = add_query_arg($args, $redirect); |
|
| 82 | 82 | } |
| 83 | 83 | |
| 84 | - $gateway = isset( $_REQUEST['wpi-gateway'] ) ? $_REQUEST['wpi-gateway'] : ''; |
|
| 84 | + $gateway = isset($_REQUEST['wpi-gateway']) ? $_REQUEST['wpi-gateway'] : ''; |
|
| 85 | 85 | |
| 86 | - $redirect = apply_filters( 'wpinv_success_page_redirect', $redirect, $gateway, $args ); |
|
| 87 | - wp_redirect( $redirect ); |
|
| 86 | + $redirect = apply_filters('wpinv_success_page_redirect', $redirect, $gateway, $args); |
|
| 87 | + wp_redirect($redirect); |
|
| 88 | 88 | exit; |
| 89 | 89 | } |
| 90 | 90 | |
| 91 | -function wpinv_send_to_failed_page( $args = null ) { |
|
| 91 | +function wpinv_send_to_failed_page($args = null) { |
|
| 92 | 92 | $redirect = wpinv_get_failed_transaction_uri(); |
| 93 | 93 | |
| 94 | - if ( !empty( $args ) ) { |
|
| 94 | + if (!empty($args)) { |
|
| 95 | 95 | // Check for backward compatibility |
| 96 | - if ( is_string( $args ) ) |
|
| 97 | - $args = str_replace( '?', '', $args ); |
|
| 96 | + if (is_string($args)) |
|
| 97 | + $args = str_replace('?', '', $args); |
|
| 98 | 98 | |
| 99 | - $args = wp_parse_args( $args ); |
|
| 99 | + $args = wp_parse_args($args); |
|
| 100 | 100 | |
| 101 | - $redirect = add_query_arg( $args, $redirect ); |
|
| 101 | + $redirect = add_query_arg($args, $redirect); |
|
| 102 | 102 | } |
| 103 | 103 | |
| 104 | - $gateway = isset( $_REQUEST['wpi-gateway'] ) ? $_REQUEST['wpi-gateway'] : ''; |
|
| 104 | + $gateway = isset($_REQUEST['wpi-gateway']) ? $_REQUEST['wpi-gateway'] : ''; |
|
| 105 | 105 | |
| 106 | - $redirect = apply_filters( 'wpinv_failed_page_redirect', $redirect, $gateway, $args ); |
|
| 107 | - wp_redirect( $redirect ); |
|
| 106 | + $redirect = apply_filters('wpinv_failed_page_redirect', $redirect, $gateway, $args); |
|
| 107 | + wp_redirect($redirect); |
|
| 108 | 108 | exit; |
| 109 | 109 | } |
| 110 | 110 | |
| 111 | -function wpinv_get_checkout_uri( $args = array() ) { |
|
| 112 | - $uri = wpinv_get_option( 'checkout_page', false ); |
|
| 113 | - $uri = isset( $uri ) ? get_permalink( $uri ) : NULL; |
|
| 111 | +function wpinv_get_checkout_uri($args = array()) { |
|
| 112 | + $uri = wpinv_get_option('checkout_page', false); |
|
| 113 | + $uri = isset($uri) ? get_permalink($uri) : NULL; |
|
| 114 | 114 | |
| 115 | - if ( !empty( $args ) ) { |
|
| 115 | + if (!empty($args)) { |
|
| 116 | 116 | // Check for backward compatibility |
| 117 | - if ( is_string( $args ) ) |
|
| 118 | - $args = str_replace( '?', '', $args ); |
|
| 117 | + if (is_string($args)) |
|
| 118 | + $args = str_replace('?', '', $args); |
|
| 119 | 119 | |
| 120 | - $args = wp_parse_args( $args ); |
|
| 120 | + $args = wp_parse_args($args); |
|
| 121 | 121 | |
| 122 | - $uri = add_query_arg( $args, $uri ); |
|
| 122 | + $uri = add_query_arg($args, $uri); |
|
| 123 | 123 | } |
| 124 | 124 | |
| 125 | - $scheme = defined( 'FORCE_SSL_ADMIN' ) && FORCE_SSL_ADMIN ? 'https' : 'admin'; |
|
| 125 | + $scheme = defined('FORCE_SSL_ADMIN') && FORCE_SSL_ADMIN ? 'https' : 'admin'; |
|
| 126 | 126 | |
| 127 | - $ajax_url = admin_url( 'admin-ajax.php', $scheme ); |
|
| 127 | + $ajax_url = admin_url('admin-ajax.php', $scheme); |
|
| 128 | 128 | |
| 129 | - if ( ( ! preg_match( '/^https/', $uri ) && preg_match( '/^https/', $ajax_url ) ) || wpinv_is_ssl_enforced() ) { |
|
| 130 | - $uri = preg_replace( '/^http:/', 'https:', $uri ); |
|
| 129 | + if ((!preg_match('/^https/', $uri) && preg_match('/^https/', $ajax_url)) || wpinv_is_ssl_enforced()) { |
|
| 130 | + $uri = preg_replace('/^http:/', 'https:', $uri); |
|
| 131 | 131 | } |
| 132 | 132 | |
| 133 | - return apply_filters( 'wpinv_get_checkout_uri', $uri ); |
|
| 133 | + return apply_filters('wpinv_get_checkout_uri', $uri); |
|
| 134 | 134 | } |
| 135 | 135 | |
| 136 | -function wpinv_send_back_to_checkout( $args = array() ) { |
|
| 136 | +function wpinv_send_back_to_checkout($args = array()) { |
|
| 137 | 137 | $redirect = wpinv_get_checkout_uri(); |
| 138 | 138 | |
| 139 | - if ( ! empty( $args ) ) { |
|
| 139 | + if (!empty($args)) { |
|
| 140 | 140 | // Check for backward compatibility |
| 141 | - if ( is_string( $args ) ) |
|
| 142 | - $args = str_replace( '?', '', $args ); |
|
| 141 | + if (is_string($args)) |
|
| 142 | + $args = str_replace('?', '', $args); |
|
| 143 | 143 | |
| 144 | - $args = wp_parse_args( $args ); |
|
| 144 | + $args = wp_parse_args($args); |
|
| 145 | 145 | |
| 146 | - $redirect = add_query_arg( $args, $redirect ); |
|
| 146 | + $redirect = add_query_arg($args, $redirect); |
|
| 147 | 147 | } |
| 148 | 148 | |
| 149 | - wp_redirect( apply_filters( 'wpinv_send_back_to_checkout', $redirect, $args ) ); |
|
| 149 | + wp_redirect(apply_filters('wpinv_send_back_to_checkout', $redirect, $args)); |
|
| 150 | 150 | exit; |
| 151 | 151 | } |
| 152 | 152 | |
| 153 | -function wpinv_get_success_page_url( $query_string = null ) { |
|
| 154 | - $success_page = wpinv_get_option( 'success_page', 0 ); |
|
| 155 | - $success_page = get_permalink( $success_page ); |
|
| 153 | +function wpinv_get_success_page_url($query_string = null) { |
|
| 154 | + $success_page = wpinv_get_option('success_page', 0); |
|
| 155 | + $success_page = get_permalink($success_page); |
|
| 156 | 156 | |
| 157 | - if ( $query_string ) |
|
| 157 | + if ($query_string) |
|
| 158 | 158 | $success_page .= $query_string; |
| 159 | 159 | |
| 160 | - return apply_filters( 'wpinv_success_page_url', $success_page ); |
|
| 160 | + return apply_filters('wpinv_success_page_url', $success_page); |
|
| 161 | 161 | } |
| 162 | 162 | |
| 163 | -function wpinv_get_failed_transaction_uri( $extras = false ) { |
|
| 164 | - $uri = wpinv_get_option( 'failure_page', '' ); |
|
| 165 | - $uri = ! empty( $uri ) ? trailingslashit( get_permalink( $uri ) ) : home_url(); |
|
| 163 | +function wpinv_get_failed_transaction_uri($extras = false) { |
|
| 164 | + $uri = wpinv_get_option('failure_page', ''); |
|
| 165 | + $uri = !empty($uri) ? trailingslashit(get_permalink($uri)) : home_url(); |
|
| 166 | 166 | |
| 167 | - if ( $extras ) |
|
| 167 | + if ($extras) |
|
| 168 | 168 | $uri .= $extras; |
| 169 | 169 | |
| 170 | - return apply_filters( 'wpinv_get_failed_transaction_uri', $uri ); |
|
| 170 | + return apply_filters('wpinv_get_failed_transaction_uri', $uri); |
|
| 171 | 171 | } |
| 172 | 172 | |
| 173 | 173 | function wpinv_is_failed_transaction_page() { |
| 174 | - $ret = wpinv_get_option( 'failure_page', false ); |
|
| 175 | - $ret = isset( $ret ) ? is_page( $ret ) : false; |
|
| 174 | + $ret = wpinv_get_option('failure_page', false); |
|
| 175 | + $ret = isset($ret) ? is_page($ret) : false; |
|
| 176 | 176 | |
| 177 | - return apply_filters( 'wpinv_is_failure_page', $ret ); |
|
| 177 | + return apply_filters('wpinv_is_failure_page', $ret); |
|
| 178 | 178 | } |
| 179 | 179 | |
| 180 | -function wpinv_transaction_query( $type = 'start' ) { |
|
| 180 | +function wpinv_transaction_query($type = 'start') { |
|
| 181 | 181 | global $wpdb; |
| 182 | 182 | |
| 183 | 183 | $wpdb->hide_errors(); |
| 184 | 184 | |
| 185 | - if ( ! defined( 'WPINV_USE_TRANSACTIONS' ) ) { |
|
| 186 | - define( 'WPINV_USE_TRANSACTIONS', true ); |
|
| 185 | + if (!defined('WPINV_USE_TRANSACTIONS')) { |
|
| 186 | + define('WPINV_USE_TRANSACTIONS', true); |
|
| 187 | 187 | } |
| 188 | 188 | |
| 189 | - if ( WPINV_USE_TRANSACTIONS ) { |
|
| 190 | - switch ( $type ) { |
|
| 189 | + if (WPINV_USE_TRANSACTIONS) { |
|
| 190 | + switch ($type) { |
|
| 191 | 191 | case 'commit' : |
| 192 | - $wpdb->query( 'COMMIT' ); |
|
| 192 | + $wpdb->query('COMMIT'); |
|
| 193 | 193 | break; |
| 194 | 194 | case 'rollback' : |
| 195 | - $wpdb->query( 'ROLLBACK' ); |
|
| 195 | + $wpdb->query('ROLLBACK'); |
|
| 196 | 196 | break; |
| 197 | 197 | default : |
| 198 | - $wpdb->query( 'START TRANSACTION' ); |
|
| 198 | + $wpdb->query('START TRANSACTION'); |
|
| 199 | 199 | break; |
| 200 | 200 | } |
| 201 | 201 | } |
| 202 | 202 | } |
| 203 | 203 | |
| 204 | -function wpinv_create_invoice( $args = array(), $data = array(), $wp_error = false ) { |
|
| 204 | +function wpinv_create_invoice($args = array(), $data = array(), $wp_error = false) { |
|
| 205 | 205 | $default_args = array( |
| 206 | 206 | 'status' => '', |
| 207 | 207 | 'user_id' => null, |
@@ -211,63 +211,63 @@ discard block |
||
| 211 | 211 | 'parent' => 0 |
| 212 | 212 | ); |
| 213 | 213 | |
| 214 | - $args = wp_parse_args( $args, $default_args ); |
|
| 214 | + $args = wp_parse_args($args, $default_args); |
|
| 215 | 215 | $invoice_data = array(); |
| 216 | 216 | |
| 217 | - if ( $args['invoice_id'] > 0 ) { |
|
| 218 | - $updating = true; |
|
| 217 | + if ($args['invoice_id'] > 0) { |
|
| 218 | + $updating = true; |
|
| 219 | 219 | $invoice_data['post_type'] = 'wpi_invoice'; |
| 220 | 220 | $invoice_data['ID'] = $args['invoice_id']; |
| 221 | 221 | } else { |
| 222 | 222 | $updating = false; |
| 223 | 223 | $invoice_data['post_type'] = 'wpi_invoice'; |
| 224 | - $invoice_data['post_status'] = apply_filters( 'wpinv_default_invoice_status', 'wpi-pending' ); |
|
| 224 | + $invoice_data['post_status'] = apply_filters('wpinv_default_invoice_status', 'wpi-pending'); |
|
| 225 | 225 | $invoice_data['ping_status'] = 'closed'; |
| 226 | - $invoice_data['post_author'] = !empty( $args['user_id'] ) ? $args['user_id'] : get_current_user_id(); |
|
| 227 | - $invoice_data['post_title'] = wpinv_format_invoice_number( '0' ); |
|
| 228 | - $invoice_data['post_parent'] = absint( $args['parent'] ); |
|
| 229 | - if ( !empty( $args['created_date'] ) ) { |
|
| 226 | + $invoice_data['post_author'] = !empty($args['user_id']) ? $args['user_id'] : get_current_user_id(); |
|
| 227 | + $invoice_data['post_title'] = wpinv_format_invoice_number('0'); |
|
| 228 | + $invoice_data['post_parent'] = absint($args['parent']); |
|
| 229 | + if (!empty($args['created_date'])) { |
|
| 230 | 230 | $invoice_data['post_date'] = $args['created_date']; |
| 231 | - $invoice_data['post_date_gmt'] = get_gmt_from_date( $args['created_date'] ); |
|
| 231 | + $invoice_data['post_date_gmt'] = get_gmt_from_date($args['created_date']); |
|
| 232 | 232 | } |
| 233 | 233 | } |
| 234 | 234 | |
| 235 | - if ( $args['status'] ) { |
|
| 236 | - if ( ! in_array( $args['status'], array_keys( wpinv_get_invoice_statuses() ) ) ) { |
|
| 237 | - return new WP_Error( 'wpinv_invalid_invoice_status', wp_sprintf( __( 'Invalid invoice status: %s', 'invoicing' ), $args['status'] ) ); |
|
| 235 | + if ($args['status']) { |
|
| 236 | + if (!in_array($args['status'], array_keys(wpinv_get_invoice_statuses()))) { |
|
| 237 | + return new WP_Error('wpinv_invalid_invoice_status', wp_sprintf(__('Invalid invoice status: %s', 'invoicing'), $args['status'])); |
|
| 238 | 238 | } |
| 239 | - $invoice_data['post_status'] = $args['status']; |
|
| 239 | + $invoice_data['post_status'] = $args['status']; |
|
| 240 | 240 | } |
| 241 | 241 | |
| 242 | - if ( ! is_null( $args['user_note'] ) ) { |
|
| 243 | - $invoice_data['post_excerpt'] = $args['user_note']; |
|
| 242 | + if (!is_null($args['user_note'])) { |
|
| 243 | + $invoice_data['post_excerpt'] = $args['user_note']; |
|
| 244 | 244 | } |
| 245 | 245 | |
| 246 | - if ( $updating ) { |
|
| 247 | - $invoice_id = wp_update_post( $invoice_data, true ); |
|
| 246 | + if ($updating) { |
|
| 247 | + $invoice_id = wp_update_post($invoice_data, true); |
|
| 248 | 248 | } else { |
| 249 | - $invoice_id = wp_insert_post( apply_filters( 'wpinv_new_invoice_data', $invoice_data ), true ); |
|
| 249 | + $invoice_id = wp_insert_post(apply_filters('wpinv_new_invoice_data', $invoice_data), true); |
|
| 250 | 250 | } |
| 251 | 251 | |
| 252 | - if ( is_wp_error( $invoice_id ) ) { |
|
| 252 | + if (is_wp_error($invoice_id)) { |
|
| 253 | 253 | return $wp_error ? $invoice_id : 0; |
| 254 | 254 | } |
| 255 | 255 | |
| 256 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
| 257 | - |
|
| 258 | - if ( !$updating ) { |
|
| 259 | - update_post_meta( $invoice_id, '_wpinv_key', apply_filters( 'wpinv_generate_invoice_key', uniqid( 'wpinv_' ) ) ); |
|
| 260 | - update_post_meta( $invoice_id, '_wpinv_currency', wpinv_get_currency() ); |
|
| 261 | - update_post_meta( $invoice_id, '_wpinv_include_tax', get_option( 'wpinv_prices_include_tax' ) ); |
|
| 262 | - update_post_meta( $invoice_id, '_wpinv_user_ip', wpinv_get_ip() ); |
|
| 263 | - update_post_meta( $invoice_id, '_wpinv_user_agent', wpinv_get_user_agent() ); |
|
| 264 | - update_post_meta( $invoice_id, '_wpinv_created_via', sanitize_text_field( $args['created_via'] ) ); |
|
| 256 | + $invoice = wpinv_get_invoice($invoice_id); |
|
| 257 | + |
|
| 258 | + if (!$updating) { |
|
| 259 | + update_post_meta($invoice_id, '_wpinv_key', apply_filters('wpinv_generate_invoice_key', uniqid('wpinv_'))); |
|
| 260 | + update_post_meta($invoice_id, '_wpinv_currency', wpinv_get_currency()); |
|
| 261 | + update_post_meta($invoice_id, '_wpinv_include_tax', get_option('wpinv_prices_include_tax')); |
|
| 262 | + update_post_meta($invoice_id, '_wpinv_user_ip', wpinv_get_ip()); |
|
| 263 | + update_post_meta($invoice_id, '_wpinv_user_agent', wpinv_get_user_agent()); |
|
| 264 | + update_post_meta($invoice_id, '_wpinv_created_via', sanitize_text_field($args['created_via'])); |
|
| 265 | 265 | |
| 266 | 266 | // Add invoice note |
| 267 | - $invoice->add_note( wp_sprintf( __( 'Invoice is created with status %s.', 'invoicing' ), wpinv_status_nicename( $invoice->status ) ) ); |
|
| 267 | + $invoice->add_note(wp_sprintf(__('Invoice is created with status %s.', 'invoicing'), wpinv_status_nicename($invoice->status))); |
|
| 268 | 268 | } |
| 269 | 269 | |
| 270 | - update_post_meta( $invoice_id, '_wpinv_version', WPINV_VERSION ); |
|
| 270 | + update_post_meta($invoice_id, '_wpinv_version', WPINV_VERSION); |
|
| 271 | 271 | |
| 272 | 272 | return $invoice; |
| 273 | 273 | } |
@@ -275,184 +275,184 @@ discard block |
||
| 275 | 275 | function wpinv_get_prefix() { |
| 276 | 276 | $invoice_prefix = 'INV-'; |
| 277 | 277 | |
| 278 | - return apply_filters( 'wpinv_get_prefix', $invoice_prefix ); |
|
| 278 | + return apply_filters('wpinv_get_prefix', $invoice_prefix); |
|
| 279 | 279 | } |
| 280 | 280 | |
| 281 | 281 | function wpinv_get_business_logo() { |
| 282 | - $business_logo = wpinv_get_option( 'logo' ); |
|
| 283 | - return apply_filters( 'wpinv_get_business_logo', $business_logo ); |
|
| 282 | + $business_logo = wpinv_get_option('logo'); |
|
| 283 | + return apply_filters('wpinv_get_business_logo', $business_logo); |
|
| 284 | 284 | } |
| 285 | 285 | |
| 286 | 286 | function wpinv_get_business_name() { |
| 287 | 287 | $business_name = wpinv_get_option('store_name'); |
| 288 | - return apply_filters( 'wpinv_get_business_name', $business_name ); |
|
| 288 | + return apply_filters('wpinv_get_business_name', $business_name); |
|
| 289 | 289 | } |
| 290 | 290 | |
| 291 | 291 | function wpinv_get_blogname() { |
| 292 | - return wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES ); |
|
| 292 | + return wp_specialchars_decode(get_option('blogname'), ENT_QUOTES); |
|
| 293 | 293 | } |
| 294 | 294 | |
| 295 | 295 | function wpinv_get_admin_email() { |
| 296 | - $admin_email = get_option( 'admin_email' ); |
|
| 297 | - return apply_filters( 'wpinv_admin_email', $admin_email ); |
|
| 296 | + $admin_email = get_option('admin_email'); |
|
| 297 | + return apply_filters('wpinv_admin_email', $admin_email); |
|
| 298 | 298 | } |
| 299 | 299 | |
| 300 | 300 | function wpinv_get_business_website() { |
| 301 | - $business_website = home_url( '/' ); |
|
| 302 | - return apply_filters( 'wpinv_get_business_website', $business_website ); |
|
| 301 | + $business_website = home_url('/'); |
|
| 302 | + return apply_filters('wpinv_get_business_website', $business_website); |
|
| 303 | 303 | } |
| 304 | 304 | |
| 305 | -function wpinv_get_terms_text( $invoice_id = 0 ) { |
|
| 305 | +function wpinv_get_terms_text($invoice_id = 0) { |
|
| 306 | 306 | $terms_text = ''; |
| 307 | - return apply_filters( 'wpinv_get_terms_text', $terms_text, $invoice_id ); |
|
| 307 | + return apply_filters('wpinv_get_terms_text', $terms_text, $invoice_id); |
|
| 308 | 308 | } |
| 309 | 309 | |
| 310 | 310 | function wpinv_get_business_footer() { |
| 311 | - $site_link = '<a target="_blank" href="' . esc_url( wpinv_get_business_website() ) . '">' . esc_html( wpinv_get_business_name() ) . '</a>'; |
|
| 312 | - $business_footer = wp_sprintf( __( 'Thanks for using %s', 'invoicing' ), $site_link ); |
|
| 313 | - return apply_filters( 'wpinv_get_business_footer', $business_footer ); |
|
| 311 | + $site_link = '<a target="_blank" href="' . esc_url(wpinv_get_business_website()) . '">' . esc_html(wpinv_get_business_name()) . '</a>'; |
|
| 312 | + $business_footer = wp_sprintf(__('Thanks for using %s', 'invoicing'), $site_link); |
|
| 313 | + return apply_filters('wpinv_get_business_footer', $business_footer); |
|
| 314 | 314 | } |
| 315 | 315 | |
| 316 | 316 | function wpinv_checkout_required_fields() { |
| 317 | 317 | $required_fields = array(); |
| 318 | 318 | |
| 319 | 319 | // Let payment gateways and other extensions determine if address fields should be required |
| 320 | - $require_billing_details = apply_filters( 'wpinv_checkout_required_billing_details', wpinv_use_taxes() ); |
|
| 320 | + $require_billing_details = apply_filters('wpinv_checkout_required_billing_details', wpinv_use_taxes()); |
|
| 321 | 321 | |
| 322 | - if ( $require_billing_details ) { |
|
| 323 | - if ( (bool)wpinv_get_option( 'fname_mandatory' ) ) { |
|
| 322 | + if ($require_billing_details) { |
|
| 323 | + if ((bool)wpinv_get_option('fname_mandatory')) { |
|
| 324 | 324 | $required_fields['first_name'] = array( |
| 325 | 325 | 'error_id' => 'invalid_first_name', |
| 326 | - 'error_message' => __( 'Please enter your first name', 'invoicing' ) |
|
| 326 | + 'error_message' => __('Please enter your first name', 'invoicing') |
|
| 327 | 327 | ); |
| 328 | 328 | } |
| 329 | - if ( (bool)wpinv_get_option( 'address_mandatory' ) ) { |
|
| 329 | + if ((bool)wpinv_get_option('address_mandatory')) { |
|
| 330 | 330 | $required_fields['address'] = array( |
| 331 | 331 | 'error_id' => 'invalid_address', |
| 332 | - 'error_message' => __( 'Please enter your address', 'invoicing' ) |
|
| 332 | + 'error_message' => __('Please enter your address', 'invoicing') |
|
| 333 | 333 | ); |
| 334 | 334 | } |
| 335 | - if ( (bool)wpinv_get_option( 'city_mandatory' ) ) { |
|
| 335 | + if ((bool)wpinv_get_option('city_mandatory')) { |
|
| 336 | 336 | $required_fields['city'] = array( |
| 337 | 337 | 'error_id' => 'invalid_city', |
| 338 | - 'error_message' => __( 'Please enter your billing city', 'invoicing' ) |
|
| 338 | + 'error_message' => __('Please enter your billing city', 'invoicing') |
|
| 339 | 339 | ); |
| 340 | 340 | } |
| 341 | - if ( (bool)wpinv_get_option( 'state_mandatory' ) ) { |
|
| 341 | + if ((bool)wpinv_get_option('state_mandatory')) { |
|
| 342 | 342 | $required_fields['state'] = array( |
| 343 | 343 | 'error_id' => 'invalid_state', |
| 344 | - 'error_message' => __( 'Please enter billing state / province', 'invoicing' ) |
|
| 344 | + 'error_message' => __('Please enter billing state / province', 'invoicing') |
|
| 345 | 345 | ); |
| 346 | 346 | } |
| 347 | - if ( (bool)wpinv_get_option( 'country_mandatory' ) ) { |
|
| 347 | + if ((bool)wpinv_get_option('country_mandatory')) { |
|
| 348 | 348 | $required_fields['country'] = array( |
| 349 | 349 | 'error_id' => 'invalid_country', |
| 350 | - 'error_message' => __( 'Please select your billing country', 'invoicing' ) |
|
| 350 | + 'error_message' => __('Please select your billing country', 'invoicing') |
|
| 351 | 351 | ); |
| 352 | 352 | } |
| 353 | 353 | } |
| 354 | 354 | |
| 355 | - return apply_filters( 'wpinv_checkout_required_fields', $required_fields ); |
|
| 355 | + return apply_filters('wpinv_checkout_required_fields', $required_fields); |
|
| 356 | 356 | } |
| 357 | 357 | |
| 358 | 358 | function wpinv_is_ssl_enforced() { |
| 359 | - $ssl_enforced = wpinv_get_option( 'enforce_ssl', false ); |
|
| 360 | - return (bool) apply_filters( 'wpinv_is_ssl_enforced', $ssl_enforced ); |
|
| 359 | + $ssl_enforced = wpinv_get_option('enforce_ssl', false); |
|
| 360 | + return (bool)apply_filters('wpinv_is_ssl_enforced', $ssl_enforced); |
|
| 361 | 361 | } |
| 362 | 362 | |
| 363 | -function wpinv_user_can_view_invoice( $post ) { |
|
| 363 | +function wpinv_user_can_view_invoice($post) { |
|
| 364 | 364 | $allow = false; |
| 365 | 365 | |
| 366 | - $post = get_post( $post ); |
|
| 366 | + $post = get_post($post); |
|
| 367 | 367 | |
| 368 | - if ( empty( $post->ID ) ) { |
|
| 368 | + if (empty($post->ID)) { |
|
| 369 | 369 | return $allow; |
| 370 | 370 | } |
| 371 | 371 | |
| 372 | - $invoice = wpinv_get_invoice( $post->ID ); |
|
| 373 | - if ( empty( $invoice->ID ) ) { |
|
| 372 | + $invoice = wpinv_get_invoice($post->ID); |
|
| 373 | + if (empty($invoice->ID)) { |
|
| 374 | 374 | return $allow; |
| 375 | 375 | } |
| 376 | 376 | |
| 377 | 377 | // Don't allow trash, draft status |
| 378 | - if ( $invoice->has_status( array_keys( wpinv_get_invoice_statuses() ) ) ) { |
|
| 379 | - if ( current_user_can( 'manage_options' ) ) { // Admin user |
|
| 378 | + if ($invoice->has_status(array_keys(wpinv_get_invoice_statuses()))) { |
|
| 379 | + if (current_user_can('manage_options')) { // Admin user |
|
| 380 | 380 | $allow = true; |
| 381 | 381 | } else { |
| 382 | - if ( is_user_logged_in() ) { |
|
| 383 | - if ( (int)$invoice->get_user_id() === (int)get_current_user_id() ) { |
|
| 382 | + if (is_user_logged_in()) { |
|
| 383 | + if ((int)$invoice->get_user_id() === (int)get_current_user_id()) { |
|
| 384 | 384 | $allow = true; |
| 385 | - } else if ( !wpinv_require_login_to_checkout() && isset( $_GET['invoice_key'] ) && $_GET['invoice_key'] === $invoice->get_key() ) { |
|
| 385 | + } else if (!wpinv_require_login_to_checkout() && isset($_GET['invoice_key']) && $_GET['invoice_key'] === $invoice->get_key()) { |
|
| 386 | 386 | $allow = true; |
| 387 | 387 | } |
| 388 | 388 | } else { |
| 389 | - if ( !wpinv_require_login_to_checkout() && isset( $_GET['invoice_key'] ) && $_GET['invoice_key'] === $invoice->get_key() ) { |
|
| 389 | + if (!wpinv_require_login_to_checkout() && isset($_GET['invoice_key']) && $_GET['invoice_key'] === $invoice->get_key()) { |
|
| 390 | 390 | $allow = true; |
| 391 | 391 | } |
| 392 | 392 | } |
| 393 | 393 | } |
| 394 | 394 | } |
| 395 | 395 | |
| 396 | - return apply_filters( 'wpinv_can_print_invoice', $allow, $post, $invoice ); |
|
| 396 | + return apply_filters('wpinv_can_print_invoice', $allow, $post, $invoice); |
|
| 397 | 397 | } |
| 398 | 398 | |
| 399 | 399 | function wpinv_schedule_events() { |
| 400 | 400 | // hourly, daily and twicedaily |
| 401 | - if ( !wp_next_scheduled( 'wpinv_register_schedule_event_twicedaily' ) ) { |
|
| 402 | - wp_schedule_event( current_time( 'timestamp' ), 'twicedaily', 'wpinv_register_schedule_event_twicedaily' ); |
|
| 401 | + if (!wp_next_scheduled('wpinv_register_schedule_event_twicedaily')) { |
|
| 402 | + wp_schedule_event(current_time('timestamp'), 'twicedaily', 'wpinv_register_schedule_event_twicedaily'); |
|
| 403 | 403 | } |
| 404 | 404 | } |
| 405 | -add_action( 'wp', 'wpinv_schedule_events' ); |
|
| 405 | +add_action('wp', 'wpinv_schedule_events'); |
|
| 406 | 406 | |
| 407 | 407 | function wpinv_schedule_event_twicedaily() { |
| 408 | 408 | wpinv_email_payment_reminders(); |
| 409 | 409 | } |
| 410 | -add_action( 'wpinv_register_schedule_event_twicedaily', 'wpinv_schedule_event_twicedaily' ); |
|
| 410 | +add_action('wpinv_register_schedule_event_twicedaily', 'wpinv_schedule_event_twicedaily'); |
|
| 411 | 411 | |
| 412 | 412 | function wpinv_require_login_to_checkout() { |
| 413 | - $return = wpinv_get_option( 'login_to_checkout', false ); |
|
| 414 | - return (bool) apply_filters( 'wpinv_require_login_to_checkout', $return ); |
|
| 413 | + $return = wpinv_get_option('login_to_checkout', false); |
|
| 414 | + return (bool)apply_filters('wpinv_require_login_to_checkout', $return); |
|
| 415 | 415 | } |
| 416 | 416 | |
| 417 | -function wpinv_sequential_number_active( $type = '' ) { |
|
| 418 | - $check = apply_filters( 'wpinv_pre_check_sequential_number_active', null, $type ); |
|
| 419 | - if ( null !== $check ) { |
|
| 417 | +function wpinv_sequential_number_active($type = '') { |
|
| 418 | + $check = apply_filters('wpinv_pre_check_sequential_number_active', null, $type); |
|
| 419 | + if (null !== $check) { |
|
| 420 | 420 | return $check; |
| 421 | 421 | } |
| 422 | 422 | |
| 423 | - return wpinv_get_option( 'sequential_invoice_number' ); |
|
| 423 | + return wpinv_get_option('sequential_invoice_number'); |
|
| 424 | 424 | } |
| 425 | 425 | |
| 426 | -function wpinv_switch_to_locale( $locale = NULL ) { |
|
| 426 | +function wpinv_switch_to_locale($locale = NULL) { |
|
| 427 | 427 | global $invoicing, $wpi_switch_locale; |
| 428 | 428 | |
| 429 | - if ( ! empty( $invoicing ) && function_exists( 'switch_to_locale' ) ) { |
|
| 430 | - $locale = empty( $locale ) ? get_locale() : $locale; |
|
| 429 | + if (!empty($invoicing) && function_exists('switch_to_locale')) { |
|
| 430 | + $locale = empty($locale) ? get_locale() : $locale; |
|
| 431 | 431 | |
| 432 | - switch_to_locale( $locale ); |
|
| 432 | + switch_to_locale($locale); |
|
| 433 | 433 | |
| 434 | 434 | $wpi_switch_locale = $locale; |
| 435 | 435 | |
| 436 | - add_filter( 'plugin_locale', 'get_locale' ); |
|
| 436 | + add_filter('plugin_locale', 'get_locale'); |
|
| 437 | 437 | |
| 438 | 438 | $invoicing->load_textdomain(); |
| 439 | 439 | |
| 440 | - do_action( 'wpinv_switch_to_locale', $locale ); |
|
| 440 | + do_action('wpinv_switch_to_locale', $locale); |
|
| 441 | 441 | } |
| 442 | 442 | } |
| 443 | 443 | |
| 444 | 444 | function wpinv_restore_locale() { |
| 445 | 445 | global $invoicing, $wpi_switch_locale; |
| 446 | 446 | |
| 447 | - if ( ! empty( $invoicing ) && function_exists( 'restore_previous_locale' ) && $wpi_switch_locale ) { |
|
| 447 | + if (!empty($invoicing) && function_exists('restore_previous_locale') && $wpi_switch_locale) { |
|
| 448 | 448 | restore_previous_locale(); |
| 449 | 449 | |
| 450 | 450 | $wpi_switch_locale = NULL; |
| 451 | 451 | |
| 452 | - remove_filter( 'plugin_locale', 'get_locale' ); |
|
| 452 | + remove_filter('plugin_locale', 'get_locale'); |
|
| 453 | 453 | |
| 454 | 454 | $invoicing->load_textdomain(); |
| 455 | 455 | |
| 456 | - do_action( 'wpinv_restore_locale' ); |
|
| 456 | + do_action('wpinv_restore_locale'); |
|
| 457 | 457 | } |
| 458 | 458 | } |
| 459 | 459 | \ No newline at end of file |
@@ -7,40 +7,40 @@ discard block |
||
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | 9 | // MUST have WordPress. |
| 10 | -if ( !defined( 'WPINC' ) ) { |
|
| 11 | - exit( 'Do NOT access this file directly: ' . basename( __FILE__ ) ); |
|
| 10 | +if (!defined('WPINC')) { |
|
| 11 | + exit('Do NOT access this file directly: ' . basename(__FILE__)); |
|
| 12 | 12 | } |
| 13 | 13 | |
| 14 | 14 | function wpinv_get_invoice_cart_id() { |
| 15 | 15 | $wpinv_checkout = wpinv_get_checkout_session(); |
| 16 | 16 | |
| 17 | - if ( !empty( $wpinv_checkout['invoice_id'] ) ) { |
|
| 17 | + if (!empty($wpinv_checkout['invoice_id'])) { |
|
| 18 | 18 | return $wpinv_checkout['invoice_id']; |
| 19 | 19 | } |
| 20 | 20 | |
| 21 | 21 | return NULL; |
| 22 | 22 | } |
| 23 | 23 | |
| 24 | -function wpinv_insert_invoice( $invoice_data = array(), $wp_error = false ) { |
|
| 25 | - if ( empty( $invoice_data ) ) { |
|
| 24 | +function wpinv_insert_invoice($invoice_data = array(), $wp_error = false) { |
|
| 25 | + if (empty($invoice_data)) { |
|
| 26 | 26 | return false; |
| 27 | 27 | } |
| 28 | 28 | |
| 29 | - if ( !( !empty( $invoice_data['cart_details'] ) && is_array( $invoice_data['cart_details'] ) ) ) { |
|
| 30 | - return $wp_error ? new WP_Error( 'wpinv_invalid_items', __( 'Invoice must have atleast on item.', 'invoicing' ) ) : 0; |
|
| 29 | + if (!(!empty($invoice_data['cart_details']) && is_array($invoice_data['cart_details']))) { |
|
| 30 | + return $wp_error ? new WP_Error('wpinv_invalid_items', __('Invoice must have atleast on item.', 'invoicing')) : 0; |
|
| 31 | 31 | } |
| 32 | 32 | |
| 33 | - if ( empty( $invoice_data['user_id'] ) ) { |
|
| 33 | + if (empty($invoice_data['user_id'])) { |
|
| 34 | 34 | $invoice_data['user_id'] = get_current_user_id(); |
| 35 | 35 | } |
| 36 | 36 | |
| 37 | - $invoice_data['invoice_id'] = !empty( $invoice_data['invoice_id'] ) ? (int)$invoice_data['invoice_id'] : 0; |
|
| 37 | + $invoice_data['invoice_id'] = !empty($invoice_data['invoice_id']) ? (int)$invoice_data['invoice_id'] : 0; |
|
| 38 | 38 | |
| 39 | - if ( empty( $invoice_data['status'] ) ) { |
|
| 39 | + if (empty($invoice_data['status'])) { |
|
| 40 | 40 | $invoice_data['status'] = 'wpi-pending'; |
| 41 | 41 | } |
| 42 | 42 | |
| 43 | - if ( empty( $invoice_data['ip'] ) ) { |
|
| 43 | + if (empty($invoice_data['ip'])) { |
|
| 44 | 44 | $invoice_data['ip'] = wpinv_get_ip(); |
| 45 | 45 | } |
| 46 | 46 | |
@@ -51,12 +51,12 @@ discard block |
||
| 51 | 51 | 'status' => $invoice_data['status'], |
| 52 | 52 | ); |
| 53 | 53 | |
| 54 | - $invoice = wpinv_create_invoice( $default_args, $invoice_data, true ); |
|
| 55 | - if ( is_wp_error( $invoice ) ) { |
|
| 54 | + $invoice = wpinv_create_invoice($default_args, $invoice_data, true); |
|
| 55 | + if (is_wp_error($invoice)) { |
|
| 56 | 56 | return $wp_error ? $invoice : 0; |
| 57 | 57 | } |
| 58 | 58 | |
| 59 | - if ( empty( $invoice_data['invoice_id'] ) ) { |
|
| 59 | + if (empty($invoice_data['invoice_id'])) { |
|
| 60 | 60 | //$invoice->add_note( wp_sprintf( __( 'Invoice is created with status %s.', 'invoicing' ), wpinv_status_nicename( $invoice->status ) ) ); |
| 61 | 61 | } |
| 62 | 62 | |
@@ -79,24 +79,24 @@ discard block |
||
| 79 | 79 | 'discount' => array(), |
| 80 | 80 | ); |
| 81 | 81 | |
| 82 | - if ( $user_id = (int)$invoice->get_user_id() ) { |
|
| 83 | - if ( $user_address = wpinv_get_user_address( $user_id ) ) { |
|
| 84 | - $default_user_info = wp_parse_args( $user_address, $default_user_info ); |
|
| 82 | + if ($user_id = (int)$invoice->get_user_id()) { |
|
| 83 | + if ($user_address = wpinv_get_user_address($user_id)) { |
|
| 84 | + $default_user_info = wp_parse_args($user_address, $default_user_info); |
|
| 85 | 85 | } |
| 86 | 86 | } |
| 87 | 87 | |
| 88 | - if ( empty( $invoice_data['user_info'] ) ) { |
|
| 88 | + if (empty($invoice_data['user_info'])) { |
|
| 89 | 89 | $invoice_data['user_info'] = array(); |
| 90 | 90 | } |
| 91 | 91 | |
| 92 | - $user_info = wp_parse_args( $invoice_data['user_info'], $default_user_info ); |
|
| 92 | + $user_info = wp_parse_args($invoice_data['user_info'], $default_user_info); |
|
| 93 | 93 | |
| 94 | - if ( empty( $user_info['first_name'] ) ) { |
|
| 94 | + if (empty($user_info['first_name'])) { |
|
| 95 | 95 | $user_info['first_name'] = $default_user_info['first_name']; |
| 96 | 96 | $user_info['last_name'] = $default_user_info['last_name']; |
| 97 | 97 | } |
| 98 | 98 | |
| 99 | - if ( empty( $user_info['country'] ) ) { |
|
| 99 | + if (empty($user_info['country'])) { |
|
| 100 | 100 | $user_info['country'] = $default_user_info['country']; |
| 101 | 101 | $user_info['state'] = $default_user_info['state']; |
| 102 | 102 | $user_info['city'] = $default_user_info['city']; |
@@ -105,13 +105,13 @@ discard block |
||
| 105 | 105 | $user_info['phone'] = $default_user_info['phone']; |
| 106 | 106 | } |
| 107 | 107 | |
| 108 | - if ( !empty( $user_info['discount'] ) && !is_array( $user_info['discount'] ) ) { |
|
| 108 | + if (!empty($user_info['discount']) && !is_array($user_info['discount'])) { |
|
| 109 | 109 | $user_info['discount'] = (array)$user_info['discount']; |
| 110 | 110 | } |
| 111 | 111 | |
| 112 | 112 | // Payment details |
| 113 | 113 | $payment_details = array(); |
| 114 | - if ( !empty( $invoice_data['payment_details'] ) ) { |
|
| 114 | + if (!empty($invoice_data['payment_details'])) { |
|
| 115 | 115 | $default_payment_details = array( |
| 116 | 116 | 'gateway' => 'manual', |
| 117 | 117 | 'gateway_title' => '', |
@@ -119,56 +119,56 @@ discard block |
||
| 119 | 119 | 'transaction_id' => '', |
| 120 | 120 | ); |
| 121 | 121 | |
| 122 | - $payment_details = wp_parse_args( $invoice_data['payment_details'], $default_payment_details ); |
|
| 122 | + $payment_details = wp_parse_args($invoice_data['payment_details'], $default_payment_details); |
|
| 123 | 123 | |
| 124 | - if ( empty( $payment_details['gateway'] ) ) { |
|
| 124 | + if (empty($payment_details['gateway'])) { |
|
| 125 | 125 | $payment_details['gateway'] = 'manual'; |
| 126 | 126 | } |
| 127 | 127 | |
| 128 | - if ( empty( $payment_details['currency'] ) ) { |
|
| 128 | + if (empty($payment_details['currency'])) { |
|
| 129 | 129 | $payment_details['currency'] = wpinv_get_default_country(); |
| 130 | 130 | } |
| 131 | 131 | |
| 132 | - if ( empty( $payment_details['gateway_title'] ) ) { |
|
| 133 | - $payment_details['gateway_title'] = wpinv_get_gateway_checkout_label( $payment_details['gateway'] ); |
|
| 132 | + if (empty($payment_details['gateway_title'])) { |
|
| 133 | + $payment_details['gateway_title'] = wpinv_get_gateway_checkout_label($payment_details['gateway']); |
|
| 134 | 134 | } |
| 135 | 135 | } |
| 136 | 136 | |
| 137 | - $invoice->set( 'status', ( !empty( $invoice_data['status'] ) ? $invoice_data['status'] : 'wpi-pending' ) ); |
|
| 138 | - |
|
| 139 | - if ( !empty( $payment_details ) ) { |
|
| 140 | - $invoice->set( 'currency', $payment_details['currency'] ); |
|
| 141 | - $invoice->set( 'gateway', $payment_details['gateway'] ); |
|
| 142 | - $invoice->set( 'gateway_title', $payment_details['gateway_title'] ); |
|
| 143 | - $invoice->set( 'transaction_id', $payment_details['transaction_id'] ); |
|
| 144 | - } |
|
| 145 | - |
|
| 146 | - $invoice->set( 'user_info', $user_info ); |
|
| 147 | - $invoice->set( 'first_name', $user_info['first_name'] ); |
|
| 148 | - $invoice->set( 'last_name', $user_info['last_name'] ); |
|
| 149 | - $invoice->set( 'address', $user_info['address'] ); |
|
| 150 | - $invoice->set( 'company', $user_info['company'] ); |
|
| 151 | - $invoice->set( 'vat_number', $user_info['vat_number'] ); |
|
| 152 | - $invoice->set( 'phone', $user_info['phone'] ); |
|
| 153 | - $invoice->set( 'city', $user_info['city'] ); |
|
| 154 | - $invoice->set( 'country', $user_info['country'] ); |
|
| 155 | - $invoice->set( 'state', $user_info['state'] ); |
|
| 156 | - $invoice->set( 'zip', $user_info['zip'] ); |
|
| 157 | - $invoice->set( 'discounts', $user_info['discount'] ); |
|
| 158 | - $invoice->set( 'ip', ( !empty( $invoice_data['ip'] ) ? $invoice_data['ip'] : wpinv_get_ip() ) ); |
|
| 159 | - $invoice->set( 'mode', ( wpinv_is_test_mode() ? 'test' : 'live' ) ); |
|
| 160 | - $invoice->set( 'parent_invoice', ( !empty( $invoice_data['parent'] ) ? absint( $invoice_data['parent'] ) : '' ) ); |
|
| 161 | - |
|
| 162 | - if ( !empty( $invoice_data['cart_details'] ) && is_array( $invoice_data['cart_details'] ) ) { |
|
| 163 | - foreach ( $invoice_data['cart_details'] as $key => $item ) { |
|
| 164 | - $item_id = !empty( $item['id'] ) ? $item['id'] : 0; |
|
| 165 | - $quantity = !empty( $item['quantity'] ) ? $item['quantity'] : 1; |
|
| 166 | - $name = !empty( $item['name'] ) ? $item['name'] : ''; |
|
| 167 | - $item_price = isset( $item['item_price'] ) ? $item['item_price'] : ''; |
|
| 137 | + $invoice->set('status', (!empty($invoice_data['status']) ? $invoice_data['status'] : 'wpi-pending')); |
|
| 138 | + |
|
| 139 | + if (!empty($payment_details)) { |
|
| 140 | + $invoice->set('currency', $payment_details['currency']); |
|
| 141 | + $invoice->set('gateway', $payment_details['gateway']); |
|
| 142 | + $invoice->set('gateway_title', $payment_details['gateway_title']); |
|
| 143 | + $invoice->set('transaction_id', $payment_details['transaction_id']); |
|
| 144 | + } |
|
| 145 | + |
|
| 146 | + $invoice->set('user_info', $user_info); |
|
| 147 | + $invoice->set('first_name', $user_info['first_name']); |
|
| 148 | + $invoice->set('last_name', $user_info['last_name']); |
|
| 149 | + $invoice->set('address', $user_info['address']); |
|
| 150 | + $invoice->set('company', $user_info['company']); |
|
| 151 | + $invoice->set('vat_number', $user_info['vat_number']); |
|
| 152 | + $invoice->set('phone', $user_info['phone']); |
|
| 153 | + $invoice->set('city', $user_info['city']); |
|
| 154 | + $invoice->set('country', $user_info['country']); |
|
| 155 | + $invoice->set('state', $user_info['state']); |
|
| 156 | + $invoice->set('zip', $user_info['zip']); |
|
| 157 | + $invoice->set('discounts', $user_info['discount']); |
|
| 158 | + $invoice->set('ip', (!empty($invoice_data['ip']) ? $invoice_data['ip'] : wpinv_get_ip())); |
|
| 159 | + $invoice->set('mode', (wpinv_is_test_mode() ? 'test' : 'live')); |
|
| 160 | + $invoice->set('parent_invoice', (!empty($invoice_data['parent']) ? absint($invoice_data['parent']) : '')); |
|
| 161 | + |
|
| 162 | + if (!empty($invoice_data['cart_details']) && is_array($invoice_data['cart_details'])) { |
|
| 163 | + foreach ($invoice_data['cart_details'] as $key => $item) { |
|
| 164 | + $item_id = !empty($item['id']) ? $item['id'] : 0; |
|
| 165 | + $quantity = !empty($item['quantity']) ? $item['quantity'] : 1; |
|
| 166 | + $name = !empty($item['name']) ? $item['name'] : ''; |
|
| 167 | + $item_price = isset($item['item_price']) ? $item['item_price'] : ''; |
|
| 168 | 168 | |
| 169 | - $post_item = new WPInv_Item( $item_id ); |
|
| 170 | - if ( !empty( $post_item ) ) { |
|
| 171 | - $name = !empty( $name ) ? $name : $post_item->get_name(); |
|
| 169 | + $post_item = new WPInv_Item($item_id); |
|
| 170 | + if (!empty($post_item)) { |
|
| 171 | + $name = !empty($name) ? $name : $post_item->get_name(); |
|
| 172 | 172 | $item_price = $item_price !== '' ? $item_price : $post_item->get_price(); |
| 173 | 173 | } else { |
| 174 | 174 | continue; |
@@ -178,253 +178,253 @@ discard block |
||
| 178 | 178 | 'name' => $name, |
| 179 | 179 | 'quantity' => $quantity, |
| 180 | 180 | 'item_price' => $item_price, |
| 181 | - 'custom_price' => isset( $item['custom_price'] ) ? $item['custom_price'] : '', |
|
| 182 | - 'tax' => !empty( $item['tax'] ) ? $item['tax'] : 0.00, |
|
| 183 | - 'discount' => isset( $item['discount'] ) ? $item['discount'] : 0, |
|
| 184 | - 'meta' => isset( $item['meta'] ) ? $item['meta'] : array(), |
|
| 185 | - 'fees' => isset( $item['fees'] ) ? $item['fees'] : array(), |
|
| 181 | + 'custom_price' => isset($item['custom_price']) ? $item['custom_price'] : '', |
|
| 182 | + 'tax' => !empty($item['tax']) ? $item['tax'] : 0.00, |
|
| 183 | + 'discount' => isset($item['discount']) ? $item['discount'] : 0, |
|
| 184 | + 'meta' => isset($item['meta']) ? $item['meta'] : array(), |
|
| 185 | + 'fees' => isset($item['fees']) ? $item['fees'] : array(), |
|
| 186 | 186 | ); |
| 187 | 187 | |
| 188 | - $invoice->add_item( $item_id, $args ); |
|
| 188 | + $invoice->add_item($item_id, $args); |
|
| 189 | 189 | } |
| 190 | 190 | } |
| 191 | 191 | |
| 192 | - $invoice->increase_tax( wpinv_get_cart_fee_tax() ); |
|
| 192 | + $invoice->increase_tax(wpinv_get_cart_fee_tax()); |
|
| 193 | 193 | |
| 194 | - if ( isset( $invoice_data['post_date'] ) ) { |
|
| 195 | - $invoice->set( 'date', $invoice_data['post_date'] ); |
|
| 194 | + if (isset($invoice_data['post_date'])) { |
|
| 195 | + $invoice->set('date', $invoice_data['post_date']); |
|
| 196 | 196 | } |
| 197 | 197 | |
| 198 | 198 | // Invoice due date |
| 199 | - if ( isset( $invoice_data['due_date'] ) ) { |
|
| 200 | - $invoice->set( 'due_date', $invoice_data['due_date'] ); |
|
| 199 | + if (isset($invoice_data['due_date'])) { |
|
| 200 | + $invoice->set('due_date', $invoice_data['due_date']); |
|
| 201 | 201 | } |
| 202 | 202 | |
| 203 | 203 | $invoice->save(); |
| 204 | 204 | |
| 205 | 205 | // Add notes |
| 206 | - if ( !empty( $invoice_data['private_note'] ) ) { |
|
| 207 | - $invoice->add_note( $invoice_data['private_note'] ); |
|
| 206 | + if (!empty($invoice_data['private_note'])) { |
|
| 207 | + $invoice->add_note($invoice_data['private_note']); |
|
| 208 | 208 | } |
| 209 | - if ( !empty( $invoice_data['user_note'] ) ) { |
|
| 210 | - $invoice->add_note( $invoice_data['user_note'], true ); |
|
| 209 | + if (!empty($invoice_data['user_note'])) { |
|
| 210 | + $invoice->add_note($invoice_data['user_note'], true); |
|
| 211 | 211 | } |
| 212 | 212 | |
| 213 | - do_action( 'wpinv_insert_invoice', $invoice->ID, $invoice_data ); |
|
| 213 | + do_action('wpinv_insert_invoice', $invoice->ID, $invoice_data); |
|
| 214 | 214 | |
| 215 | - if ( ! empty( $invoice->ID ) ) { |
|
| 215 | + if (!empty($invoice->ID)) { |
|
| 216 | 216 | global $wpi_userID, $wpinv_ip_address_country; |
| 217 | 217 | |
| 218 | 218 | $checkout_session = wpinv_get_checkout_session(); |
| 219 | 219 | |
| 220 | 220 | $data_session = array(); |
| 221 | 221 | $data_session['invoice_id'] = $invoice->ID; |
| 222 | - $data_session['cart_discounts'] = $invoice->get_discounts( true ); |
|
| 222 | + $data_session['cart_discounts'] = $invoice->get_discounts(true); |
|
| 223 | 223 | |
| 224 | - wpinv_set_checkout_session( $data_session ); |
|
| 224 | + wpinv_set_checkout_session($data_session); |
|
| 225 | 225 | |
| 226 | 226 | $wpi_userID = (int)$invoice->get_user_id(); |
| 227 | 227 | |
| 228 | - $_POST['country'] = !empty( $invoice->country ) ? $invoice->country : wpinv_get_default_country(); |
|
| 228 | + $_POST['country'] = !empty($invoice->country) ? $invoice->country : wpinv_get_default_country(); |
|
| 229 | 229 | $_POST['state'] = $invoice->state; |
| 230 | 230 | |
| 231 | - $invoice->set( 'country', sanitize_text_field( $_POST['country'] ) ); |
|
| 232 | - $invoice->set( 'state', sanitize_text_field( $_POST['state'] ) ); |
|
| 231 | + $invoice->set('country', sanitize_text_field($_POST['country'])); |
|
| 232 | + $invoice->set('state', sanitize_text_field($_POST['state'])); |
|
| 233 | 233 | |
| 234 | 234 | $wpinv_ip_address_country = $invoice->country; |
| 235 | 235 | |
| 236 | - $invoice = $invoice->recalculate_totals( true ); |
|
| 236 | + $invoice = $invoice->recalculate_totals(true); |
|
| 237 | 237 | |
| 238 | - wpinv_set_checkout_session( $checkout_session ); |
|
| 238 | + wpinv_set_checkout_session($checkout_session); |
|
| 239 | 239 | |
| 240 | 240 | return $invoice; |
| 241 | 241 | } |
| 242 | 242 | |
| 243 | - if ( $wp_error ) { |
|
| 244 | - if ( is_wp_error( $invoice ) ) { |
|
| 243 | + if ($wp_error) { |
|
| 244 | + if (is_wp_error($invoice)) { |
|
| 245 | 245 | return $invoice; |
| 246 | 246 | } else { |
| 247 | - return new WP_Error( 'wpinv_insert_invoice_error', __( 'Error in insert invoice.', 'invoicing' ) ); |
|
| 247 | + return new WP_Error('wpinv_insert_invoice_error', __('Error in insert invoice.', 'invoicing')); |
|
| 248 | 248 | } |
| 249 | 249 | } else { |
| 250 | 250 | return 0; |
| 251 | 251 | } |
| 252 | 252 | } |
| 253 | 253 | |
| 254 | -function wpinv_update_invoice( $invoice_data = array(), $wp_error = false ) { |
|
| 255 | - $invoice_ID = !empty( $invoice_data['ID'] ) ? absint( $invoice_data['ID'] ) : NULL; |
|
| 254 | +function wpinv_update_invoice($invoice_data = array(), $wp_error = false) { |
|
| 255 | + $invoice_ID = !empty($invoice_data['ID']) ? absint($invoice_data['ID']) : NULL; |
|
| 256 | 256 | |
| 257 | - if ( !$invoice_ID ) { |
|
| 258 | - if ( $wp_error ) { |
|
| 259 | - return new WP_Error( 'invalid_invoice_id', __( 'Invalid invoice ID.', 'invoicing' ) ); |
|
| 257 | + if (!$invoice_ID) { |
|
| 258 | + if ($wp_error) { |
|
| 259 | + return new WP_Error('invalid_invoice_id', __('Invalid invoice ID.', 'invoicing')); |
|
| 260 | 260 | } |
| 261 | 261 | return 0; |
| 262 | 262 | } |
| 263 | 263 | |
| 264 | - $invoice = wpinv_get_invoice( $invoice_ID ); |
|
| 264 | + $invoice = wpinv_get_invoice($invoice_ID); |
|
| 265 | 265 | |
| 266 | - $recurring_item = $invoice->is_recurring() ? $invoice->get_recurring( true ) : NULL; |
|
| 266 | + $recurring_item = $invoice->is_recurring() ? $invoice->get_recurring(true) : NULL; |
|
| 267 | 267 | |
| 268 | - if ( empty( $invoice->ID ) ) { |
|
| 269 | - if ( $wp_error ) { |
|
| 270 | - return new WP_Error( 'invalid_invoice', __( 'Invalid invoice.', 'invoicing' ) ); |
|
| 268 | + if (empty($invoice->ID)) { |
|
| 269 | + if ($wp_error) { |
|
| 270 | + return new WP_Error('invalid_invoice', __('Invalid invoice.', 'invoicing')); |
|
| 271 | 271 | } |
| 272 | 272 | return 0; |
| 273 | 273 | } |
| 274 | 274 | |
| 275 | - if ( !$invoice->has_status( array( 'wpi-pending' ) ) ) { |
|
| 276 | - if ( $wp_error ) { |
|
| 277 | - return new WP_Error( 'invalid_invoice_status', __( 'Only invoice with pending payment is allowed to update.', 'invoicing' ) ); |
|
| 275 | + if (!$invoice->has_status(array('wpi-pending'))) { |
|
| 276 | + if ($wp_error) { |
|
| 277 | + return new WP_Error('invalid_invoice_status', __('Only invoice with pending payment is allowed to update.', 'invoicing')); |
|
| 278 | 278 | } |
| 279 | 279 | return 0; |
| 280 | 280 | } |
| 281 | 281 | |
| 282 | 282 | // Invoice status |
| 283 | - if ( !empty( $invoice_data['status'] ) ) { |
|
| 284 | - $invoice->set( 'status', $invoice_data['status'] ); |
|
| 283 | + if (!empty($invoice_data['status'])) { |
|
| 284 | + $invoice->set('status', $invoice_data['status']); |
|
| 285 | 285 | } |
| 286 | 286 | |
| 287 | 287 | // Invoice date |
| 288 | - if ( !empty( $invoice_data['post_date'] ) ) { |
|
| 289 | - $invoice->set( 'date', $invoice_data['post_date'] ); |
|
| 288 | + if (!empty($invoice_data['post_date'])) { |
|
| 289 | + $invoice->set('date', $invoice_data['post_date']); |
|
| 290 | 290 | } |
| 291 | 291 | |
| 292 | 292 | // Invoice due date |
| 293 | - if ( isset( $invoice_data['due_date'] ) ) { |
|
| 294 | - $invoice->set( 'due_date', $invoice_data['due_date'] ); |
|
| 293 | + if (isset($invoice_data['due_date'])) { |
|
| 294 | + $invoice->set('due_date', $invoice_data['due_date']); |
|
| 295 | 295 | } |
| 296 | 296 | |
| 297 | 297 | // Invoice IP address |
| 298 | - if ( !empty( $invoice_data['ip'] ) ) { |
|
| 299 | - $invoice->set( 'ip', $invoice_data['ip'] ); |
|
| 298 | + if (!empty($invoice_data['ip'])) { |
|
| 299 | + $invoice->set('ip', $invoice_data['ip']); |
|
| 300 | 300 | } |
| 301 | 301 | |
| 302 | 302 | // User info |
| 303 | - if ( !empty( $invoice_data['user_info'] ) && is_array( $invoice_data['user_info'] ) ) { |
|
| 304 | - $user_info = wp_parse_args( $invoice_data['user_info'], $invoice->user_info ); |
|
| 303 | + if (!empty($invoice_data['user_info']) && is_array($invoice_data['user_info'])) { |
|
| 304 | + $user_info = wp_parse_args($invoice_data['user_info'], $invoice->user_info); |
|
| 305 | 305 | |
| 306 | - if ( $discounts = $invoice->get_discounts() ) { |
|
| 306 | + if ($discounts = $invoice->get_discounts()) { |
|
| 307 | 307 | $set_discount = $discounts; |
| 308 | 308 | } else { |
| 309 | 309 | $set_discount = ''; |
| 310 | 310 | } |
| 311 | 311 | |
| 312 | 312 | // Manage discount |
| 313 | - if ( !empty( $invoice_data['user_info']['discount'] ) ) { |
|
| 313 | + if (!empty($invoice_data['user_info']['discount'])) { |
|
| 314 | 314 | // Remove discount |
| 315 | - if ( $invoice_data['user_info']['discount'] == 'none' ) { |
|
| 315 | + if ($invoice_data['user_info']['discount'] == 'none') { |
|
| 316 | 316 | $set_discount = ''; |
| 317 | 317 | } else { |
| 318 | 318 | $set_discount = $invoice_data['user_info']['discount']; |
| 319 | 319 | } |
| 320 | 320 | |
| 321 | - $invoice->set( 'discounts', $set_discount ); |
|
| 321 | + $invoice->set('discounts', $set_discount); |
|
| 322 | 322 | } |
| 323 | 323 | |
| 324 | 324 | $user_info['discount'] = $set_discount; |
| 325 | 325 | |
| 326 | - $invoice->set( 'user_info', $user_info ); |
|
| 326 | + $invoice->set('user_info', $user_info); |
|
| 327 | 327 | } |
| 328 | 328 | |
| 329 | - if ( !empty( $invoice_data['cart_details'] ) && is_array( $invoice_data['cart_details'] ) && $cart_details = $invoice_data['cart_details'] ) { |
|
| 330 | - $remove_items = !empty( $cart_details['remove_items'] ) && is_array( $cart_details['remove_items'] ) ? $cart_details['remove_items'] : array(); |
|
| 329 | + if (!empty($invoice_data['cart_details']) && is_array($invoice_data['cart_details']) && $cart_details = $invoice_data['cart_details']) { |
|
| 330 | + $remove_items = !empty($cart_details['remove_items']) && is_array($cart_details['remove_items']) ? $cart_details['remove_items'] : array(); |
|
| 331 | 331 | |
| 332 | - if ( !empty( $remove_items[0]['id'] ) ) { |
|
| 333 | - foreach ( $remove_items as $item ) { |
|
| 334 | - $item_id = !empty( $item['id'] ) ? $item['id'] : 0; |
|
| 335 | - $quantity = !empty( $item['quantity'] ) ? $item['quantity'] : 1; |
|
| 336 | - if ( empty( $item_id ) ) { |
|
| 332 | + if (!empty($remove_items[0]['id'])) { |
|
| 333 | + foreach ($remove_items as $item) { |
|
| 334 | + $item_id = !empty($item['id']) ? $item['id'] : 0; |
|
| 335 | + $quantity = !empty($item['quantity']) ? $item['quantity'] : 1; |
|
| 336 | + if (empty($item_id)) { |
|
| 337 | 337 | continue; |
| 338 | 338 | } |
| 339 | 339 | |
| 340 | - foreach ( $invoice->cart_details as $cart_index => $cart_item ) { |
|
| 341 | - if ( $item_id == $cart_item['id'] ) { |
|
| 340 | + foreach ($invoice->cart_details as $cart_index => $cart_item) { |
|
| 341 | + if ($item_id == $cart_item['id']) { |
|
| 342 | 342 | $args = array( |
| 343 | 343 | 'id' => $item_id, |
| 344 | 344 | 'quantity' => $quantity, |
| 345 | 345 | 'cart_index' => $cart_index |
| 346 | 346 | ); |
| 347 | 347 | |
| 348 | - $invoice->remove_item( $item_id, $args ); |
|
| 348 | + $invoice->remove_item($item_id, $args); |
|
| 349 | 349 | break; |
| 350 | 350 | } |
| 351 | 351 | } |
| 352 | 352 | } |
| 353 | 353 | } |
| 354 | 354 | |
| 355 | - $add_items = !empty( $cart_details['add_items'] ) && is_array( $cart_details['add_items'] ) ? $cart_details['add_items'] : array(); |
|
| 355 | + $add_items = !empty($cart_details['add_items']) && is_array($cart_details['add_items']) ? $cart_details['add_items'] : array(); |
|
| 356 | 356 | |
| 357 | - if ( !empty( $add_items[0]['id'] ) ) { |
|
| 358 | - foreach ( $add_items as $item ) { |
|
| 359 | - $item_id = !empty( $item['id'] ) ? $item['id'] : 0; |
|
| 360 | - $post_item = new WPInv_Item( $item_id ); |
|
| 361 | - if ( empty( $post_item ) ) { |
|
| 357 | + if (!empty($add_items[0]['id'])) { |
|
| 358 | + foreach ($add_items as $item) { |
|
| 359 | + $item_id = !empty($item['id']) ? $item['id'] : 0; |
|
| 360 | + $post_item = new WPInv_Item($item_id); |
|
| 361 | + if (empty($post_item)) { |
|
| 362 | 362 | continue; |
| 363 | 363 | } |
| 364 | 364 | |
| 365 | 365 | $valid_item = true; |
| 366 | - if ( !empty( $recurring_item ) ) { |
|
| 367 | - if ( $recurring_item->ID != $item_id ) { |
|
| 366 | + if (!empty($recurring_item)) { |
|
| 367 | + if ($recurring_item->ID != $item_id) { |
|
| 368 | 368 | $valid_item = false; |
| 369 | 369 | } |
| 370 | - } else if ( wpinv_is_recurring_item( $item_id ) ) { |
|
| 370 | + } else if (wpinv_is_recurring_item($item_id)) { |
|
| 371 | 371 | $valid_item = false; |
| 372 | 372 | } |
| 373 | 373 | |
| 374 | - if ( !$valid_item ) { |
|
| 375 | - if ( $wp_error ) { |
|
| 376 | - return new WP_Error( 'invalid_invoice_item', __( 'You can not add item because recurring item must be paid individually!', 'invoicing' ) ); |
|
| 374 | + if (!$valid_item) { |
|
| 375 | + if ($wp_error) { |
|
| 376 | + return new WP_Error('invalid_invoice_item', __('You can not add item because recurring item must be paid individually!', 'invoicing')); |
|
| 377 | 377 | } |
| 378 | 378 | return 0; |
| 379 | 379 | } |
| 380 | 380 | |
| 381 | - $quantity = !empty( $item['quantity'] ) ? $item['quantity'] : 1; |
|
| 382 | - $name = !empty( $item['name'] ) ? $item['name'] : $post_item->get_name(); |
|
| 383 | - $item_price = isset( $item['item_price'] ) ? $item['item_price'] : $post_item->get_price(); |
|
| 381 | + $quantity = !empty($item['quantity']) ? $item['quantity'] : 1; |
|
| 382 | + $name = !empty($item['name']) ? $item['name'] : $post_item->get_name(); |
|
| 383 | + $item_price = isset($item['item_price']) ? $item['item_price'] : $post_item->get_price(); |
|
| 384 | 384 | |
| 385 | 385 | $args = array( |
| 386 | 386 | 'name' => $name, |
| 387 | 387 | 'quantity' => $quantity, |
| 388 | 388 | 'item_price' => $item_price, |
| 389 | - 'custom_price' => isset( $item['custom_price'] ) ? $item['custom_price'] : '', |
|
| 390 | - 'tax' => !empty( $item['tax'] ) ? $item['tax'] : 0, |
|
| 391 | - 'discount' => isset( $item['discount'] ) ? $item['discount'] : 0, |
|
| 392 | - 'meta' => isset( $item['meta'] ) ? $item['meta'] : array(), |
|
| 393 | - 'fees' => isset( $item['fees'] ) ? $item['fees'] : array(), |
|
| 389 | + 'custom_price' => isset($item['custom_price']) ? $item['custom_price'] : '', |
|
| 390 | + 'tax' => !empty($item['tax']) ? $item['tax'] : 0, |
|
| 391 | + 'discount' => isset($item['discount']) ? $item['discount'] : 0, |
|
| 392 | + 'meta' => isset($item['meta']) ? $item['meta'] : array(), |
|
| 393 | + 'fees' => isset($item['fees']) ? $item['fees'] : array(), |
|
| 394 | 394 | ); |
| 395 | 395 | |
| 396 | - $invoice->add_item( $item_id, $args ); |
|
| 396 | + $invoice->add_item($item_id, $args); |
|
| 397 | 397 | } |
| 398 | 398 | } |
| 399 | 399 | } |
| 400 | 400 | |
| 401 | 401 | // Payment details |
| 402 | - if ( !empty( $invoice_data['payment_details'] ) && $payment_details = $invoice_data['payment_details'] ) { |
|
| 403 | - if ( !empty( $payment_details['gateway'] ) ) { |
|
| 404 | - $invoice->set( 'gateway', $payment_details['gateway'] ); |
|
| 402 | + if (!empty($invoice_data['payment_details']) && $payment_details = $invoice_data['payment_details']) { |
|
| 403 | + if (!empty($payment_details['gateway'])) { |
|
| 404 | + $invoice->set('gateway', $payment_details['gateway']); |
|
| 405 | 405 | } |
| 406 | 406 | |
| 407 | - if ( !empty( $payment_details['transaction_id'] ) ) { |
|
| 408 | - $invoice->set( 'transaction_id', $payment_details['transaction_id'] ); |
|
| 407 | + if (!empty($payment_details['transaction_id'])) { |
|
| 408 | + $invoice->set('transaction_id', $payment_details['transaction_id']); |
|
| 409 | 409 | } |
| 410 | 410 | } |
| 411 | 411 | |
| 412 | - do_action( 'wpinv_pre_update_invoice', $invoice->ID, $invoice_data ); |
|
| 412 | + do_action('wpinv_pre_update_invoice', $invoice->ID, $invoice_data); |
|
| 413 | 413 | |
| 414 | 414 | // Parent invoice |
| 415 | - if ( !empty( $invoice_data['parent'] ) ) { |
|
| 416 | - $invoice->set( 'parent_invoice', $invoice_data['parent'] ); |
|
| 415 | + if (!empty($invoice_data['parent'])) { |
|
| 416 | + $invoice->set('parent_invoice', $invoice_data['parent']); |
|
| 417 | 417 | } |
| 418 | 418 | |
| 419 | 419 | // Save invoice data. |
| 420 | 420 | $invoice->save(); |
| 421 | 421 | |
| 422 | - if ( empty( $invoice->ID ) || is_wp_error( $invoice ) ) { |
|
| 423 | - if ( $wp_error ) { |
|
| 424 | - if ( is_wp_error( $invoice ) ) { |
|
| 422 | + if (empty($invoice->ID) || is_wp_error($invoice)) { |
|
| 423 | + if ($wp_error) { |
|
| 424 | + if (is_wp_error($invoice)) { |
|
| 425 | 425 | return $invoice; |
| 426 | 426 | } else { |
| 427 | - return new WP_Error( 'wpinv_update_invoice_error', __( 'Error in update invoice.', 'invoicing' ) ); |
|
| 427 | + return new WP_Error('wpinv_update_invoice_error', __('Error in update invoice.', 'invoicing')); |
|
| 428 | 428 | } |
| 429 | 429 | } else { |
| 430 | 430 | return 0; |
@@ -432,13 +432,13 @@ discard block |
||
| 432 | 432 | } |
| 433 | 433 | |
| 434 | 434 | // Add private note |
| 435 | - if ( !empty( $invoice_data['private_note'] ) ) { |
|
| 436 | - $invoice->add_note( $invoice_data['private_note'] ); |
|
| 435 | + if (!empty($invoice_data['private_note'])) { |
|
| 436 | + $invoice->add_note($invoice_data['private_note']); |
|
| 437 | 437 | } |
| 438 | 438 | |
| 439 | 439 | // Add user note |
| 440 | - if ( !empty( $invoice_data['user_note'] ) ) { |
|
| 441 | - $invoice->add_note( $invoice_data['user_note'], true ); |
|
| 440 | + if (!empty($invoice_data['user_note'])) { |
|
| 441 | + $invoice->add_note($invoice_data['user_note'], true); |
|
| 442 | 442 | } |
| 443 | 443 | |
| 444 | 444 | global $wpi_userID, $wpinv_ip_address_country; |
@@ -447,450 +447,450 @@ discard block |
||
| 447 | 447 | |
| 448 | 448 | $data_session = array(); |
| 449 | 449 | $data_session['invoice_id'] = $invoice->ID; |
| 450 | - $data_session['cart_discounts'] = $invoice->get_discounts( true ); |
|
| 450 | + $data_session['cart_discounts'] = $invoice->get_discounts(true); |
|
| 451 | 451 | |
| 452 | - wpinv_set_checkout_session( $data_session ); |
|
| 452 | + wpinv_set_checkout_session($data_session); |
|
| 453 | 453 | |
| 454 | 454 | $wpi_userID = (int)$invoice->get_user_id(); |
| 455 | 455 | |
| 456 | - $_POST['country'] = !empty( $invoice->country ) ? $invoice->country : wpinv_get_default_country(); |
|
| 456 | + $_POST['country'] = !empty($invoice->country) ? $invoice->country : wpinv_get_default_country(); |
|
| 457 | 457 | $_POST['state'] = $invoice->state; |
| 458 | 458 | |
| 459 | - $invoice->set( 'country', sanitize_text_field( $_POST['country'] ) ); |
|
| 460 | - $invoice->set( 'state', sanitize_text_field( $_POST['state'] ) ); |
|
| 459 | + $invoice->set('country', sanitize_text_field($_POST['country'])); |
|
| 460 | + $invoice->set('state', sanitize_text_field($_POST['state'])); |
|
| 461 | 461 | |
| 462 | 462 | $wpinv_ip_address_country = $invoice->country; |
| 463 | 463 | |
| 464 | - $invoice = $invoice->recalculate_totals( true ); |
|
| 464 | + $invoice = $invoice->recalculate_totals(true); |
|
| 465 | 465 | |
| 466 | - do_action( 'wpinv_post_update_invoice', $invoice->ID, $invoice_data ); |
|
| 466 | + do_action('wpinv_post_update_invoice', $invoice->ID, $invoice_data); |
|
| 467 | 467 | |
| 468 | - wpinv_set_checkout_session( $checkout_session ); |
|
| 468 | + wpinv_set_checkout_session($checkout_session); |
|
| 469 | 469 | |
| 470 | 470 | return $invoice; |
| 471 | 471 | } |
| 472 | 472 | |
| 473 | -function wpinv_get_invoice( $invoice_id = 0, $cart = false ) { |
|
| 474 | - if ( $cart && empty( $invoice_id ) ) { |
|
| 473 | +function wpinv_get_invoice($invoice_id = 0, $cart = false) { |
|
| 474 | + if ($cart && empty($invoice_id)) { |
|
| 475 | 475 | $invoice_id = (int)wpinv_get_invoice_cart_id(); |
| 476 | 476 | } |
| 477 | 477 | |
| 478 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
| 478 | + $invoice = new WPInv_Invoice($invoice_id); |
|
| 479 | 479 | |
| 480 | - if ( ! empty( $invoice ) && ! empty( $invoice->ID ) ) { |
|
| 480 | + if (!empty($invoice) && !empty($invoice->ID)) { |
|
| 481 | 481 | return $invoice; |
| 482 | 482 | } |
| 483 | 483 | |
| 484 | 484 | return NULL; |
| 485 | 485 | } |
| 486 | 486 | |
| 487 | -function wpinv_get_invoice_cart( $invoice_id = 0 ) { |
|
| 488 | - return wpinv_get_invoice( $invoice_id, true ); |
|
| 487 | +function wpinv_get_invoice_cart($invoice_id = 0) { |
|
| 488 | + return wpinv_get_invoice($invoice_id, true); |
|
| 489 | 489 | } |
| 490 | 490 | |
| 491 | -function wpinv_get_invoice_description( $invoice_id = 0 ) { |
|
| 492 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
| 491 | +function wpinv_get_invoice_description($invoice_id = 0) { |
|
| 492 | + $invoice = new WPInv_Invoice($invoice_id); |
|
| 493 | 493 | return $invoice->get_description(); |
| 494 | 494 | } |
| 495 | 495 | |
| 496 | -function wpinv_get_invoice_currency_code( $invoice_id = 0 ) { |
|
| 497 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
| 496 | +function wpinv_get_invoice_currency_code($invoice_id = 0) { |
|
| 497 | + $invoice = new WPInv_Invoice($invoice_id); |
|
| 498 | 498 | return $invoice->get_currency(); |
| 499 | 499 | } |
| 500 | 500 | |
| 501 | -function wpinv_get_payment_user_email( $invoice_id ) { |
|
| 502 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
| 501 | +function wpinv_get_payment_user_email($invoice_id) { |
|
| 502 | + $invoice = new WPInv_Invoice($invoice_id); |
|
| 503 | 503 | return $invoice->get_email(); |
| 504 | 504 | } |
| 505 | 505 | |
| 506 | -function wpinv_get_user_id( $invoice_id ) { |
|
| 507 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
| 506 | +function wpinv_get_user_id($invoice_id) { |
|
| 507 | + $invoice = new WPInv_Invoice($invoice_id); |
|
| 508 | 508 | return $invoice->get_user_id(); |
| 509 | 509 | } |
| 510 | 510 | |
| 511 | -function wpinv_get_invoice_status( $invoice_id, $return_label = false ) { |
|
| 512 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
| 511 | +function wpinv_get_invoice_status($invoice_id, $return_label = false) { |
|
| 512 | + $invoice = new WPInv_Invoice($invoice_id); |
|
| 513 | 513 | |
| 514 | - return $invoice->get_status( $return_label ); |
|
| 514 | + return $invoice->get_status($return_label); |
|
| 515 | 515 | } |
| 516 | 516 | |
| 517 | -function wpinv_get_payment_gateway( $invoice_id, $return_label = false ) { |
|
| 518 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
| 517 | +function wpinv_get_payment_gateway($invoice_id, $return_label = false) { |
|
| 518 | + $invoice = new WPInv_Invoice($invoice_id); |
|
| 519 | 519 | |
| 520 | - return $invoice->get_gateway( $return_label ); |
|
| 520 | + return $invoice->get_gateway($return_label); |
|
| 521 | 521 | } |
| 522 | 522 | |
| 523 | -function wpinv_get_payment_gateway_name( $invoice_id ) { |
|
| 524 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
| 523 | +function wpinv_get_payment_gateway_name($invoice_id) { |
|
| 524 | + $invoice = new WPInv_Invoice($invoice_id); |
|
| 525 | 525 | |
| 526 | 526 | return $invoice->get_gateway_title(); |
| 527 | 527 | } |
| 528 | 528 | |
| 529 | -function wpinv_get_payment_transaction_id( $invoice_id ) { |
|
| 530 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
| 529 | +function wpinv_get_payment_transaction_id($invoice_id) { |
|
| 530 | + $invoice = new WPInv_Invoice($invoice_id); |
|
| 531 | 531 | |
| 532 | 532 | return $invoice->get_transaction_id(); |
| 533 | 533 | } |
| 534 | 534 | |
| 535 | -function wpinv_get_id_by_transaction_id( $key ) { |
|
| 535 | +function wpinv_get_id_by_transaction_id($key) { |
|
| 536 | 536 | global $wpdb; |
| 537 | 537 | |
| 538 | - $invoice_id = $wpdb->get_var( $wpdb->prepare( "SELECT post_id FROM $wpdb->postmeta WHERE meta_key = '_wpinv_transaction_id' AND meta_value = %s LIMIT 1", $key ) ); |
|
| 538 | + $invoice_id = $wpdb->get_var($wpdb->prepare("SELECT post_id FROM $wpdb->postmeta WHERE meta_key = '_wpinv_transaction_id' AND meta_value = %s LIMIT 1", $key)); |
|
| 539 | 539 | |
| 540 | - if ( $invoice_id != NULL ) |
|
| 540 | + if ($invoice_id != NULL) |
|
| 541 | 541 | return $invoice_id; |
| 542 | 542 | |
| 543 | 543 | return 0; |
| 544 | 544 | } |
| 545 | 545 | |
| 546 | -function wpinv_get_invoice_meta( $invoice_id = 0, $meta_key = '_wpinv_payment_meta', $single = true ) { |
|
| 547 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
| 546 | +function wpinv_get_invoice_meta($invoice_id = 0, $meta_key = '_wpinv_payment_meta', $single = true) { |
|
| 547 | + $invoice = new WPInv_Invoice($invoice_id); |
|
| 548 | 548 | |
| 549 | - return $invoice->get_meta( $meta_key, $single ); |
|
| 549 | + return $invoice->get_meta($meta_key, $single); |
|
| 550 | 550 | } |
| 551 | 551 | |
| 552 | -function wpinv_update_invoice_meta( $invoice_id = 0, $meta_key = '', $meta_value = '', $prev_value = '' ) { |
|
| 553 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
| 552 | +function wpinv_update_invoice_meta($invoice_id = 0, $meta_key = '', $meta_value = '', $prev_value = '') { |
|
| 553 | + $invoice = new WPInv_Invoice($invoice_id); |
|
| 554 | 554 | |
| 555 | - return $invoice->update_meta( $meta_key, $meta_value, $prev_value ); |
|
| 555 | + return $invoice->update_meta($meta_key, $meta_value, $prev_value); |
|
| 556 | 556 | } |
| 557 | 557 | |
| 558 | -function wpinv_get_items( $invoice_id = 0 ) { |
|
| 559 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
| 558 | +function wpinv_get_items($invoice_id = 0) { |
|
| 559 | + $invoice = wpinv_get_invoice($invoice_id); |
|
| 560 | 560 | |
| 561 | 561 | $items = $invoice->get_items(); |
| 562 | 562 | $invoice_currency = $invoice->get_currency(); |
| 563 | 563 | |
| 564 | - if ( !empty( $items ) && is_array( $items ) ) { |
|
| 565 | - foreach ( $items as $key => $item ) { |
|
| 564 | + if (!empty($items) && is_array($items)) { |
|
| 565 | + foreach ($items as $key => $item) { |
|
| 566 | 566 | $items[$key]['currency'] = $invoice_currency; |
| 567 | 567 | |
| 568 | - if ( !isset( $cart_item['subtotal'] ) ) { |
|
| 568 | + if (!isset($cart_item['subtotal'])) { |
|
| 569 | 569 | $items[$key]['subtotal'] = $items[$key]['amount'] * 1; |
| 570 | 570 | } |
| 571 | 571 | } |
| 572 | 572 | } |
| 573 | 573 | |
| 574 | - return apply_filters( 'wpinv_get_items', $items, $invoice_id ); |
|
| 574 | + return apply_filters('wpinv_get_items', $items, $invoice_id); |
|
| 575 | 575 | } |
| 576 | 576 | |
| 577 | -function wpinv_get_fees( $invoice_id = 0 ) { |
|
| 578 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
| 577 | +function wpinv_get_fees($invoice_id = 0) { |
|
| 578 | + $invoice = wpinv_get_invoice($invoice_id); |
|
| 579 | 579 | $fees = $invoice->get_fees(); |
| 580 | 580 | |
| 581 | - return apply_filters( 'wpinv_get_fees', $fees, $invoice_id ); |
|
| 581 | + return apply_filters('wpinv_get_fees', $fees, $invoice_id); |
|
| 582 | 582 | } |
| 583 | 583 | |
| 584 | -function wpinv_get_invoice_ip( $invoice_id ) { |
|
| 585 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
| 584 | +function wpinv_get_invoice_ip($invoice_id) { |
|
| 585 | + $invoice = new WPInv_Invoice($invoice_id); |
|
| 586 | 586 | return $invoice->get_ip(); |
| 587 | 587 | } |
| 588 | 588 | |
| 589 | -function wpinv_get_invoice_user_info( $invoice_id ) { |
|
| 590 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
| 589 | +function wpinv_get_invoice_user_info($invoice_id) { |
|
| 590 | + $invoice = new WPInv_Invoice($invoice_id); |
|
| 591 | 591 | return $invoice->get_user_info(); |
| 592 | 592 | } |
| 593 | 593 | |
| 594 | -function wpinv_subtotal( $invoice_id = 0, $currency = false ) { |
|
| 595 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
| 594 | +function wpinv_subtotal($invoice_id = 0, $currency = false) { |
|
| 595 | + $invoice = new WPInv_Invoice($invoice_id); |
|
| 596 | 596 | |
| 597 | - return $invoice->get_subtotal( $currency ); |
|
| 597 | + return $invoice->get_subtotal($currency); |
|
| 598 | 598 | } |
| 599 | 599 | |
| 600 | -function wpinv_tax( $invoice_id = 0, $currency = false ) { |
|
| 601 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
| 600 | +function wpinv_tax($invoice_id = 0, $currency = false) { |
|
| 601 | + $invoice = new WPInv_Invoice($invoice_id); |
|
| 602 | 602 | |
| 603 | - return $invoice->get_tax( $currency ); |
|
| 603 | + return $invoice->get_tax($currency); |
|
| 604 | 604 | } |
| 605 | 605 | |
| 606 | -function wpinv_discount( $invoice_id = 0, $currency = false, $dash = false ) { |
|
| 607 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
| 606 | +function wpinv_discount($invoice_id = 0, $currency = false, $dash = false) { |
|
| 607 | + $invoice = wpinv_get_invoice($invoice_id); |
|
| 608 | 608 | |
| 609 | - return $invoice->get_discount( $currency, $dash ); |
|
| 609 | + return $invoice->get_discount($currency, $dash); |
|
| 610 | 610 | } |
| 611 | 611 | |
| 612 | -function wpinv_discount_code( $invoice_id = 0 ) { |
|
| 613 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
| 612 | +function wpinv_discount_code($invoice_id = 0) { |
|
| 613 | + $invoice = new WPInv_Invoice($invoice_id); |
|
| 614 | 614 | |
| 615 | 615 | return $invoice->get_discount_code(); |
| 616 | 616 | } |
| 617 | 617 | |
| 618 | -function wpinv_payment_total( $invoice_id = 0, $currency = false ) { |
|
| 619 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
| 618 | +function wpinv_payment_total($invoice_id = 0, $currency = false) { |
|
| 619 | + $invoice = new WPInv_Invoice($invoice_id); |
|
| 620 | 620 | |
| 621 | - return $invoice->get_total( $currency ); |
|
| 621 | + return $invoice->get_total($currency); |
|
| 622 | 622 | } |
| 623 | 623 | |
| 624 | -function wpinv_get_date_created( $invoice_id = 0, $format = '' ) { |
|
| 625 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
| 624 | +function wpinv_get_date_created($invoice_id = 0, $format = '') { |
|
| 625 | + $invoice = new WPInv_Invoice($invoice_id); |
|
| 626 | 626 | |
| 627 | - $format = !empty( $format ) ? $format : get_option( 'date_format' ); |
|
| 627 | + $format = !empty($format) ? $format : get_option('date_format'); |
|
| 628 | 628 | $date_created = $invoice->get_created_date(); |
| 629 | - $date_created = $date_created != '' && $date_created != '0000-00-00 00:00:00' ? date_i18n( $format, strtotime( $date_created ) ) : ''; |
|
| 629 | + $date_created = $date_created != '' && $date_created != '0000-00-00 00:00:00' ? date_i18n($format, strtotime($date_created)) : ''; |
|
| 630 | 630 | |
| 631 | 631 | return $date_created; |
| 632 | 632 | } |
| 633 | 633 | |
| 634 | -function wpinv_get_invoice_date( $invoice_id = 0, $format = '', $default = true ) { |
|
| 635 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
| 634 | +function wpinv_get_invoice_date($invoice_id = 0, $format = '', $default = true) { |
|
| 635 | + $invoice = new WPInv_Invoice($invoice_id); |
|
| 636 | 636 | |
| 637 | - $format = !empty( $format ) ? $format : get_option( 'date_format' ); |
|
| 637 | + $format = !empty($format) ? $format : get_option('date_format'); |
|
| 638 | 638 | $date_completed = $invoice->get_completed_date(); |
| 639 | - $invoice_date = $date_completed != '' && $date_completed != '0000-00-00 00:00:00' ? date_i18n( $format, strtotime( $date_completed ) ) : ''; |
|
| 640 | - if ( $invoice_date == '' && $default ) { |
|
| 641 | - $invoice_date = wpinv_get_date_created( $invoice_id, $format ); |
|
| 639 | + $invoice_date = $date_completed != '' && $date_completed != '0000-00-00 00:00:00' ? date_i18n($format, strtotime($date_completed)) : ''; |
|
| 640 | + if ($invoice_date == '' && $default) { |
|
| 641 | + $invoice_date = wpinv_get_date_created($invoice_id, $format); |
|
| 642 | 642 | } |
| 643 | 643 | |
| 644 | 644 | return $invoice_date; |
| 645 | 645 | } |
| 646 | 646 | |
| 647 | -function wpinv_get_invoice_vat_number( $invoice_id = 0 ) { |
|
| 648 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
| 647 | +function wpinv_get_invoice_vat_number($invoice_id = 0) { |
|
| 648 | + $invoice = new WPInv_Invoice($invoice_id); |
|
| 649 | 649 | |
| 650 | 650 | return $invoice->vat_number; |
| 651 | 651 | } |
| 652 | 652 | |
| 653 | -function wpinv_insert_payment_note( $invoice_id = 0, $note = '', $user_type = false, $added_by_user = false, $system = false ) { |
|
| 654 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
| 653 | +function wpinv_insert_payment_note($invoice_id = 0, $note = '', $user_type = false, $added_by_user = false, $system = false) { |
|
| 654 | + $invoice = new WPInv_Invoice($invoice_id); |
|
| 655 | 655 | |
| 656 | - return $invoice->add_note( $note, $user_type, $added_by_user, $system ); |
|
| 656 | + return $invoice->add_note($note, $user_type, $added_by_user, $system); |
|
| 657 | 657 | } |
| 658 | 658 | |
| 659 | -function wpinv_get_invoice_notes( $invoice_id = 0, $type = '' ) { |
|
| 659 | +function wpinv_get_invoice_notes($invoice_id = 0, $type = '') { |
|
| 660 | 660 | global $invoicing; |
| 661 | 661 | |
| 662 | - if ( empty( $invoice_id ) ) { |
|
| 662 | + if (empty($invoice_id)) { |
|
| 663 | 663 | return NULL; |
| 664 | 664 | } |
| 665 | 665 | |
| 666 | - $notes = $invoicing->notes->get_invoice_notes( $invoice_id, $type ); |
|
| 666 | + $notes = $invoicing->notes->get_invoice_notes($invoice_id, $type); |
|
| 667 | 667 | |
| 668 | - return apply_filters( 'wpinv_invoice_notes', $notes, $invoice_id, $type ); |
|
| 668 | + return apply_filters('wpinv_invoice_notes', $notes, $invoice_id, $type); |
|
| 669 | 669 | } |
| 670 | 670 | |
| 671 | -function wpinv_get_payment_key( $invoice_id = 0 ) { |
|
| 672 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
| 671 | +function wpinv_get_payment_key($invoice_id = 0) { |
|
| 672 | + $invoice = new WPInv_Invoice($invoice_id); |
|
| 673 | 673 | return $invoice->get_key(); |
| 674 | 674 | } |
| 675 | 675 | |
| 676 | -function wpinv_get_invoice_number( $invoice_id = 0 ) { |
|
| 677 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
| 676 | +function wpinv_get_invoice_number($invoice_id = 0) { |
|
| 677 | + $invoice = new WPInv_Invoice($invoice_id); |
|
| 678 | 678 | return $invoice->get_number(); |
| 679 | 679 | } |
| 680 | 680 | |
| 681 | -function wpinv_get_cart_discountable_subtotal( $code_id ) { |
|
| 681 | +function wpinv_get_cart_discountable_subtotal($code_id) { |
|
| 682 | 682 | $cart_items = wpinv_get_cart_content_details(); |
| 683 | 683 | $items = array(); |
| 684 | 684 | |
| 685 | - $excluded_items = wpinv_get_discount_excluded_items( $code_id ); |
|
| 685 | + $excluded_items = wpinv_get_discount_excluded_items($code_id); |
|
| 686 | 686 | |
| 687 | - if( $cart_items ) { |
|
| 687 | + if ($cart_items) { |
|
| 688 | 688 | |
| 689 | - foreach( $cart_items as $item ) { |
|
| 689 | + foreach ($cart_items as $item) { |
|
| 690 | 690 | |
| 691 | - if( ! in_array( $item['id'], $excluded_items ) ) { |
|
| 692 | - $items[] = $item; |
|
| 691 | + if (!in_array($item['id'], $excluded_items)) { |
|
| 692 | + $items[] = $item; |
|
| 693 | 693 | } |
| 694 | 694 | } |
| 695 | 695 | } |
| 696 | 696 | |
| 697 | - $subtotal = wpinv_get_cart_items_subtotal( $items ); |
|
| 697 | + $subtotal = wpinv_get_cart_items_subtotal($items); |
|
| 698 | 698 | |
| 699 | - return apply_filters( 'wpinv_get_cart_discountable_subtotal', $subtotal ); |
|
| 699 | + return apply_filters('wpinv_get_cart_discountable_subtotal', $subtotal); |
|
| 700 | 700 | } |
| 701 | 701 | |
| 702 | -function wpinv_get_cart_items_subtotal( $items ) { |
|
| 702 | +function wpinv_get_cart_items_subtotal($items) { |
|
| 703 | 703 | $subtotal = 0.00; |
| 704 | 704 | |
| 705 | - if ( is_array( $items ) && ! empty( $items ) ) { |
|
| 706 | - $prices = wp_list_pluck( $items, 'subtotal' ); |
|
| 705 | + if (is_array($items) && !empty($items)) { |
|
| 706 | + $prices = wp_list_pluck($items, 'subtotal'); |
|
| 707 | 707 | |
| 708 | - if( is_array( $prices ) ) { |
|
| 709 | - $subtotal = array_sum( $prices ); |
|
| 708 | + if (is_array($prices)) { |
|
| 709 | + $subtotal = array_sum($prices); |
|
| 710 | 710 | } else { |
| 711 | 711 | $subtotal = 0.00; |
| 712 | 712 | } |
| 713 | 713 | |
| 714 | - if( $subtotal < 0 ) { |
|
| 714 | + if ($subtotal < 0) { |
|
| 715 | 715 | $subtotal = 0.00; |
| 716 | 716 | } |
| 717 | 717 | } |
| 718 | 718 | |
| 719 | - return apply_filters( 'wpinv_get_cart_items_subtotal', $subtotal ); |
|
| 719 | + return apply_filters('wpinv_get_cart_items_subtotal', $subtotal); |
|
| 720 | 720 | } |
| 721 | 721 | |
| 722 | -function wpinv_get_cart_subtotal( $items = array() ) { |
|
| 723 | - $items = !empty( $items ) ? $items : wpinv_get_cart_content_details(); |
|
| 724 | - $subtotal = wpinv_get_cart_items_subtotal( $items ); |
|
| 722 | +function wpinv_get_cart_subtotal($items = array()) { |
|
| 723 | + $items = !empty($items) ? $items : wpinv_get_cart_content_details(); |
|
| 724 | + $subtotal = wpinv_get_cart_items_subtotal($items); |
|
| 725 | 725 | |
| 726 | - return apply_filters( 'wpinv_get_cart_subtotal', $subtotal ); |
|
| 726 | + return apply_filters('wpinv_get_cart_subtotal', $subtotal); |
|
| 727 | 727 | } |
| 728 | 728 | |
| 729 | -function wpinv_cart_subtotal( $items = array() ) { |
|
| 730 | - $price = wpinv_price( wpinv_format_amount( wpinv_get_cart_subtotal( $items ) ) ); |
|
| 729 | +function wpinv_cart_subtotal($items = array()) { |
|
| 730 | + $price = wpinv_price(wpinv_format_amount(wpinv_get_cart_subtotal($items))); |
|
| 731 | 731 | |
| 732 | 732 | return $price; |
| 733 | 733 | } |
| 734 | 734 | |
| 735 | -function wpinv_get_cart_total( $items = array(), $discounts = false, $invoice = array() ) { |
|
| 736 | - $subtotal = (float)wpinv_get_cart_subtotal( $items ); |
|
| 737 | - $discounts = (float)wpinv_get_cart_discounted_amount( $items ); |
|
| 738 | - $cart_tax = (float)wpinv_get_cart_tax( $items ); |
|
| 735 | +function wpinv_get_cart_total($items = array(), $discounts = false, $invoice = array()) { |
|
| 736 | + $subtotal = (float)wpinv_get_cart_subtotal($items); |
|
| 737 | + $discounts = (float)wpinv_get_cart_discounted_amount($items); |
|
| 738 | + $cart_tax = (float)wpinv_get_cart_tax($items); |
|
| 739 | 739 | $fees = (float)wpinv_get_cart_fee_total(); |
| 740 | - if ( !empty( $invoice ) && $invoice->is_free_trial() ) { |
|
| 740 | + if (!empty($invoice) && $invoice->is_free_trial()) { |
|
| 741 | 741 | $total = 0; |
| 742 | 742 | } else { |
| 743 | - $total = $subtotal - $discounts + $cart_tax + $fees; |
|
| 743 | + $total = $subtotal - $discounts + $cart_tax + $fees; |
|
| 744 | 744 | } |
| 745 | 745 | |
| 746 | - if ( $total < 0 ) { |
|
| 746 | + if ($total < 0) { |
|
| 747 | 747 | $total = 0.00; |
| 748 | 748 | } |
| 749 | 749 | |
| 750 | - $total = (float)apply_filters( 'wpinv_get_cart_total', $total, $items ); |
|
| 750 | + $total = (float)apply_filters('wpinv_get_cart_total', $total, $items); |
|
| 751 | 751 | |
| 752 | - return wpinv_sanitize_amount( $total ); |
|
| 752 | + return wpinv_sanitize_amount($total); |
|
| 753 | 753 | } |
| 754 | 754 | |
| 755 | -function wpinv_cart_total( $cart_items = array(), $echo = true, $invoice = array() ) { |
|
| 755 | +function wpinv_cart_total($cart_items = array(), $echo = true, $invoice = array()) { |
|
| 756 | 756 | global $cart_total; |
| 757 | - $total = wpinv_price( wpinv_format_amount( wpinv_get_cart_total( $cart_items, NULL, $invoice ) ) ); |
|
| 758 | - $total = apply_filters( 'wpinv_cart_total', $total, $cart_items, $invoice ); |
|
| 757 | + $total = wpinv_price(wpinv_format_amount(wpinv_get_cart_total($cart_items, NULL, $invoice))); |
|
| 758 | + $total = apply_filters('wpinv_cart_total', $total, $cart_items, $invoice); |
|
| 759 | 759 | |
| 760 | 760 | $cart_total = $total; |
| 761 | 761 | |
| 762 | - if ( !$echo ) { |
|
| 762 | + if (!$echo) { |
|
| 763 | 763 | return $total; |
| 764 | 764 | } |
| 765 | 765 | |
| 766 | 766 | echo $total; |
| 767 | 767 | } |
| 768 | 768 | |
| 769 | -function wpinv_get_cart_tax( $items = array() ) { |
|
| 769 | +function wpinv_get_cart_tax($items = array()) { |
|
| 770 | 770 | $cart_tax = 0; |
| 771 | - $items = !empty( $items ) ? $items : wpinv_get_cart_content_details(); |
|
| 771 | + $items = !empty($items) ? $items : wpinv_get_cart_content_details(); |
|
| 772 | 772 | |
| 773 | - if ( $items ) { |
|
| 774 | - $taxes = wp_list_pluck( $items, 'tax' ); |
|
| 773 | + if ($items) { |
|
| 774 | + $taxes = wp_list_pluck($items, 'tax'); |
|
| 775 | 775 | |
| 776 | - if( is_array( $taxes ) ) { |
|
| 777 | - $cart_tax = array_sum( $taxes ); |
|
| 776 | + if (is_array($taxes)) { |
|
| 777 | + $cart_tax = array_sum($taxes); |
|
| 778 | 778 | } |
| 779 | 779 | } |
| 780 | 780 | |
| 781 | 781 | $cart_tax += wpinv_get_cart_fee_tax(); |
| 782 | 782 | |
| 783 | - return apply_filters( 'wpinv_get_cart_tax', wpinv_sanitize_amount( $cart_tax ) ); |
|
| 783 | + return apply_filters('wpinv_get_cart_tax', wpinv_sanitize_amount($cart_tax)); |
|
| 784 | 784 | } |
| 785 | 785 | |
| 786 | -function wpinv_cart_tax( $items = array(), $echo = false ) { |
|
| 787 | - $cart_tax = wpinv_get_cart_tax( $items ); |
|
| 788 | - $cart_tax = wpinv_price( wpinv_format_amount( $cart_tax ) ); |
|
| 786 | +function wpinv_cart_tax($items = array(), $echo = false) { |
|
| 787 | + $cart_tax = wpinv_get_cart_tax($items); |
|
| 788 | + $cart_tax = wpinv_price(wpinv_format_amount($cart_tax)); |
|
| 789 | 789 | |
| 790 | - $tax = apply_filters( 'wpinv_cart_tax', $cart_tax, $items ); |
|
| 790 | + $tax = apply_filters('wpinv_cart_tax', $cart_tax, $items); |
|
| 791 | 791 | |
| 792 | - if ( !$echo ) { |
|
| 792 | + if (!$echo) { |
|
| 793 | 793 | return $tax; |
| 794 | 794 | } |
| 795 | 795 | |
| 796 | 796 | echo $tax; |
| 797 | 797 | } |
| 798 | 798 | |
| 799 | -function wpinv_get_cart_discount_code( $items = array() ) { |
|
| 799 | +function wpinv_get_cart_discount_code($items = array()) { |
|
| 800 | 800 | $invoice = wpinv_get_invoice_cart(); |
| 801 | - $cart_discount_code = !empty( $invoice ) ? $invoice->get_discount_code() : ''; |
|
| 801 | + $cart_discount_code = !empty($invoice) ? $invoice->get_discount_code() : ''; |
|
| 802 | 802 | |
| 803 | - return apply_filters( 'wpinv_get_cart_discount_code', $cart_discount_code ); |
|
| 803 | + return apply_filters('wpinv_get_cart_discount_code', $cart_discount_code); |
|
| 804 | 804 | } |
| 805 | 805 | |
| 806 | -function wpinv_cart_discount_code( $items = array(), $echo = false ) { |
|
| 807 | - $cart_discount_code = wpinv_get_cart_discount_code( $items ); |
|
| 806 | +function wpinv_cart_discount_code($items = array(), $echo = false) { |
|
| 807 | + $cart_discount_code = wpinv_get_cart_discount_code($items); |
|
| 808 | 808 | |
| 809 | - if ( $cart_discount_code != '' ) { |
|
| 809 | + if ($cart_discount_code != '') { |
|
| 810 | 810 | $cart_discount_code = ' (' . $cart_discount_code . ')'; |
| 811 | 811 | } |
| 812 | 812 | |
| 813 | - $discount_code = apply_filters( 'wpinv_cart_discount_code', $cart_discount_code, $items ); |
|
| 813 | + $discount_code = apply_filters('wpinv_cart_discount_code', $cart_discount_code, $items); |
|
| 814 | 814 | |
| 815 | - if ( !$echo ) { |
|
| 815 | + if (!$echo) { |
|
| 816 | 816 | return $discount_code; |
| 817 | 817 | } |
| 818 | 818 | |
| 819 | 819 | echo $discount_code; |
| 820 | 820 | } |
| 821 | 821 | |
| 822 | -function wpinv_get_cart_discount( $items = array() ) { |
|
| 822 | +function wpinv_get_cart_discount($items = array()) { |
|
| 823 | 823 | $invoice = wpinv_get_invoice_cart(); |
| 824 | - $cart_discount = !empty( $invoice ) ? $invoice->get_discount() : 0; |
|
| 824 | + $cart_discount = !empty($invoice) ? $invoice->get_discount() : 0; |
|
| 825 | 825 | |
| 826 | - return apply_filters( 'wpinv_get_cart_discount', wpinv_sanitize_amount( $cart_discount ), $items ); |
|
| 826 | + return apply_filters('wpinv_get_cart_discount', wpinv_sanitize_amount($cart_discount), $items); |
|
| 827 | 827 | } |
| 828 | 828 | |
| 829 | -function wpinv_cart_discount( $items = array(), $echo = false ) { |
|
| 830 | - $cart_discount = wpinv_get_cart_discount( $items ); |
|
| 831 | - $cart_discount = wpinv_price( wpinv_format_amount( $cart_discount ) ); |
|
| 829 | +function wpinv_cart_discount($items = array(), $echo = false) { |
|
| 830 | + $cart_discount = wpinv_get_cart_discount($items); |
|
| 831 | + $cart_discount = wpinv_price(wpinv_format_amount($cart_discount)); |
|
| 832 | 832 | |
| 833 | - $discount = apply_filters( 'wpinv_cart_discount', $cart_discount, $items ); |
|
| 833 | + $discount = apply_filters('wpinv_cart_discount', $cart_discount, $items); |
|
| 834 | 834 | |
| 835 | - if ( !$echo ) { |
|
| 835 | + if (!$echo) { |
|
| 836 | 836 | return $discount; |
| 837 | 837 | } |
| 838 | 838 | |
| 839 | 839 | echo $discount; |
| 840 | 840 | } |
| 841 | 841 | |
| 842 | -function wpinv_get_cart_fees( $type = 'all', $item_id = 0 ) { |
|
| 843 | - $item = new WPInv_Item( $item_id ); |
|
| 842 | +function wpinv_get_cart_fees($type = 'all', $item_id = 0) { |
|
| 843 | + $item = new WPInv_Item($item_id); |
|
| 844 | 844 | |
| 845 | - return $item->get_fees( $type, $item_id ); |
|
| 845 | + return $item->get_fees($type, $item_id); |
|
| 846 | 846 | } |
| 847 | 847 | |
| 848 | 848 | function wpinv_get_cart_fee_total() { |
| 849 | - $total = 0; |
|
| 849 | + $total = 0; |
|
| 850 | 850 | $fees = wpinv_get_cart_fees(); |
| 851 | 851 | |
| 852 | - if ( $fees ) { |
|
| 853 | - foreach ( $fees as $fee_id => $fee ) { |
|
| 852 | + if ($fees) { |
|
| 853 | + foreach ($fees as $fee_id => $fee) { |
|
| 854 | 854 | $total += $fee['amount']; |
| 855 | 855 | } |
| 856 | 856 | } |
| 857 | 857 | |
| 858 | - return apply_filters( 'wpinv_get_cart_fee_total', $total ); |
|
| 858 | + return apply_filters('wpinv_get_cart_fee_total', $total); |
|
| 859 | 859 | } |
| 860 | 860 | |
| 861 | 861 | function wpinv_get_cart_fee_tax() { |
| 862 | 862 | $tax = 0; |
| 863 | 863 | $fees = wpinv_get_cart_fees(); |
| 864 | 864 | |
| 865 | - if ( $fees ) { |
|
| 866 | - foreach ( $fees as $fee_id => $fee ) { |
|
| 867 | - if( ! empty( $fee['no_tax'] ) ) { |
|
| 865 | + if ($fees) { |
|
| 866 | + foreach ($fees as $fee_id => $fee) { |
|
| 867 | + if (!empty($fee['no_tax'])) { |
|
| 868 | 868 | continue; |
| 869 | 869 | } |
| 870 | 870 | |
| 871 | - $tax += wpinv_calculate_tax( $fee['amount'] ); |
|
| 871 | + $tax += wpinv_calculate_tax($fee['amount']); |
|
| 872 | 872 | } |
| 873 | 873 | } |
| 874 | 874 | |
| 875 | - return apply_filters( 'wpinv_get_cart_fee_tax', $tax ); |
|
| 875 | + return apply_filters('wpinv_get_cart_fee_tax', $tax); |
|
| 876 | 876 | } |
| 877 | 877 | |
| 878 | 878 | function wpinv_cart_has_recurring_item() { |
| 879 | 879 | $cart_items = wpinv_get_cart_contents(); |
| 880 | 880 | |
| 881 | - if ( empty( $cart_items ) ) { |
|
| 881 | + if (empty($cart_items)) { |
|
| 882 | 882 | return false; |
| 883 | 883 | } |
| 884 | 884 | |
| 885 | 885 | $has_subscription = false; |
| 886 | - foreach( $cart_items as $cart_item ) { |
|
| 887 | - if ( !empty( $cart_item['id'] ) && wpinv_is_recurring_item( $cart_item['id'] ) ) { |
|
| 886 | + foreach ($cart_items as $cart_item) { |
|
| 887 | + if (!empty($cart_item['id']) && wpinv_is_recurring_item($cart_item['id'])) { |
|
| 888 | 888 | $has_subscription = true; |
| 889 | 889 | break; |
| 890 | 890 | } |
| 891 | 891 | } |
| 892 | 892 | |
| 893 | - return apply_filters( 'wpinv_cart_has_recurring_item', $has_subscription, $cart_items ); |
|
| 893 | + return apply_filters('wpinv_cart_has_recurring_item', $has_subscription, $cart_items); |
|
| 894 | 894 | } |
| 895 | 895 | |
| 896 | 896 | function wpinv_cart_has_free_trial() { |
@@ -898,97 +898,97 @@ discard block |
||
| 898 | 898 | |
| 899 | 899 | $free_trial = false; |
| 900 | 900 | |
| 901 | - if ( !empty( $invoice ) && $invoice->is_free_trial() ) { |
|
| 901 | + if (!empty($invoice) && $invoice->is_free_trial()) { |
|
| 902 | 902 | $free_trial = true; |
| 903 | 903 | } |
| 904 | 904 | |
| 905 | - return apply_filters( 'wpinv_cart_has_free_trial', $free_trial, $invoice ); |
|
| 905 | + return apply_filters('wpinv_cart_has_free_trial', $free_trial, $invoice); |
|
| 906 | 906 | } |
| 907 | 907 | |
| 908 | 908 | function wpinv_get_cart_contents() { |
| 909 | 909 | $cart_details = wpinv_get_cart_details(); |
| 910 | 910 | |
| 911 | - return apply_filters( 'wpinv_get_cart_contents', $cart_details ); |
|
| 911 | + return apply_filters('wpinv_get_cart_contents', $cart_details); |
|
| 912 | 912 | } |
| 913 | 913 | |
| 914 | 914 | function wpinv_get_cart_content_details() { |
| 915 | 915 | global $wpinv_euvat, $wpi_current_id, $wpi_item_id, $wpinv_is_last_cart_item, $wpinv_flat_discount_total; |
| 916 | 916 | $cart_items = wpinv_get_cart_contents(); |
| 917 | 917 | |
| 918 | - if ( empty( $cart_items ) ) { |
|
| 918 | + if (empty($cart_items)) { |
|
| 919 | 919 | return false; |
| 920 | 920 | } |
| 921 | 921 | $invoice = wpinv_get_invoice_cart(); |
| 922 | - if ( empty( $invoice ) ) { |
|
| 922 | + if (empty($invoice)) { |
|
| 923 | 923 | return false; |
| 924 | 924 | } |
| 925 | 925 | |
| 926 | 926 | $details = array(); |
| 927 | - $length = count( $cart_items ) - 1; |
|
| 927 | + $length = count($cart_items) - 1; |
|
| 928 | 928 | |
| 929 | - if ( empty( $_POST['country'] ) ) { |
|
| 929 | + if (empty($_POST['country'])) { |
|
| 930 | 930 | $_POST['country'] = $invoice->country; |
| 931 | 931 | } |
| 932 | - if ( !isset( $_POST['state'] ) ) { |
|
| 932 | + if (!isset($_POST['state'])) { |
|
| 933 | 933 | $_POST['state'] = $invoice->state; |
| 934 | 934 | } |
| 935 | 935 | |
| 936 | - foreach( $cart_items as $key => $item ) { |
|
| 937 | - $item_id = isset( $item['id'] ) ? sanitize_text_field( $item['id'] ) : ''; |
|
| 938 | - if ( empty( $item_id ) ) { |
|
| 936 | + foreach ($cart_items as $key => $item) { |
|
| 937 | + $item_id = isset($item['id']) ? sanitize_text_field($item['id']) : ''; |
|
| 938 | + if (empty($item_id)) { |
|
| 939 | 939 | continue; |
| 940 | 940 | } |
| 941 | 941 | |
| 942 | 942 | $wpi_current_id = $invoice->ID; |
| 943 | 943 | $wpi_item_id = $item_id; |
| 944 | 944 | |
| 945 | - if ( isset( $item['custom_price'] ) && $item['custom_price'] !== '' ) { |
|
| 945 | + if (isset($item['custom_price']) && $item['custom_price'] !== '') { |
|
| 946 | 946 | $item_price = $item['custom_price']; |
| 947 | 947 | } else { |
| 948 | - if ( isset( $item['item_price'] ) && $item['item_price'] !== '' && $item['item_price'] !== false ) { |
|
| 948 | + if (isset($item['item_price']) && $item['item_price'] !== '' && $item['item_price'] !== false) { |
|
| 949 | 949 | $item_price = $item['item_price']; |
| 950 | 950 | } else { |
| 951 | - $item_price = wpinv_get_item_price( $item_id ); |
|
| 951 | + $item_price = wpinv_get_item_price($item_id); |
|
| 952 | 952 | } |
| 953 | 953 | } |
| 954 | - $discount = wpinv_get_cart_item_discount_amount( $item ); |
|
| 955 | - $discount = apply_filters( 'wpinv_get_cart_content_details_item_discount_amount', $discount, $item ); |
|
| 956 | - $quantity = wpinv_get_cart_item_quantity( $item ); |
|
| 957 | - $fees = wpinv_get_cart_fees( 'fee', $item_id ); |
|
| 954 | + $discount = wpinv_get_cart_item_discount_amount($item); |
|
| 955 | + $discount = apply_filters('wpinv_get_cart_content_details_item_discount_amount', $discount, $item); |
|
| 956 | + $quantity = wpinv_get_cart_item_quantity($item); |
|
| 957 | + $fees = wpinv_get_cart_fees('fee', $item_id); |
|
| 958 | 958 | |
| 959 | 959 | $subtotal = $item_price * $quantity; |
| 960 | - $tax_rate = wpinv_get_tax_rate( $_POST['country'], $_POST['state'], $wpi_item_id ); |
|
| 961 | - $tax_class = $wpinv_euvat->get_item_class( $item_id ); |
|
| 962 | - $tax = wpinv_get_cart_item_tax( $item_id, $subtotal - $discount ); |
|
| 960 | + $tax_rate = wpinv_get_tax_rate($_POST['country'], $_POST['state'], $wpi_item_id); |
|
| 961 | + $tax_class = $wpinv_euvat->get_item_class($item_id); |
|
| 962 | + $tax = wpinv_get_cart_item_tax($item_id, $subtotal - $discount); |
|
| 963 | 963 | |
| 964 | - if ( wpinv_prices_include_tax() ) { |
|
| 965 | - $subtotal -= wpinv_round_amount( $tax ); |
|
| 964 | + if (wpinv_prices_include_tax()) { |
|
| 965 | + $subtotal -= wpinv_round_amount($tax); |
|
| 966 | 966 | } |
| 967 | 967 | |
| 968 | - $total = $subtotal - $discount + $tax; |
|
| 968 | + $total = $subtotal - $discount + $tax; |
|
| 969 | 969 | |
| 970 | 970 | // Do not allow totals to go negatve |
| 971 | - if( $total < 0 ) { |
|
| 971 | + if ($total < 0) { |
|
| 972 | 972 | $total = 0; |
| 973 | 973 | } |
| 974 | 974 | |
| 975 | - $details[ $key ] = array( |
|
| 975 | + $details[$key] = array( |
|
| 976 | 976 | 'id' => $item_id, |
| 977 | - 'name' => !empty($item['name']) ? $item['name'] : get_the_title( $item_id ), |
|
| 978 | - 'item_price' => wpinv_round_amount( $item_price ), |
|
| 979 | - 'custom_price' => isset( $item['custom_price'] ) ? $item['custom_price'] : '', |
|
| 977 | + 'name' => !empty($item['name']) ? $item['name'] : get_the_title($item_id), |
|
| 978 | + 'item_price' => wpinv_round_amount($item_price), |
|
| 979 | + 'custom_price' => isset($item['custom_price']) ? $item['custom_price'] : '', |
|
| 980 | 980 | 'quantity' => $quantity, |
| 981 | - 'discount' => wpinv_round_amount( $discount ), |
|
| 982 | - 'subtotal' => wpinv_round_amount( $subtotal ), |
|
| 983 | - 'tax' => wpinv_round_amount( $tax ), |
|
| 984 | - 'price' => wpinv_round_amount( $total ), |
|
| 981 | + 'discount' => wpinv_round_amount($discount), |
|
| 982 | + 'subtotal' => wpinv_round_amount($subtotal), |
|
| 983 | + 'tax' => wpinv_round_amount($tax), |
|
| 984 | + 'price' => wpinv_round_amount($total), |
|
| 985 | 985 | 'vat_rates_class' => $tax_class, |
| 986 | 986 | 'vat_rate' => $tax_rate, |
| 987 | - 'meta' => isset( $item['meta'] ) ? $item['meta'] : array(), |
|
| 987 | + 'meta' => isset($item['meta']) ? $item['meta'] : array(), |
|
| 988 | 988 | 'fees' => $fees, |
| 989 | 989 | ); |
| 990 | 990 | |
| 991 | - if ( $wpinv_is_last_cart_item ) { |
|
| 991 | + if ($wpinv_is_last_cart_item) { |
|
| 992 | 992 | $wpinv_is_last_cart_item = false; |
| 993 | 993 | $wpinv_flat_discount_total = 0.00; |
| 994 | 994 | } |
@@ -997,67 +997,67 @@ discard block |
||
| 997 | 997 | return $details; |
| 998 | 998 | } |
| 999 | 999 | |
| 1000 | -function wpinv_get_cart_details( $invoice_id = 0 ) { |
|
| 1000 | +function wpinv_get_cart_details($invoice_id = 0) { |
|
| 1001 | 1001 | global $ajax_cart_details; |
| 1002 | 1002 | |
| 1003 | - $invoice = wpinv_get_invoice_cart( $invoice_id ); |
|
| 1003 | + $invoice = wpinv_get_invoice_cart($invoice_id); |
|
| 1004 | 1004 | $cart_details = $ajax_cart_details; |
| 1005 | - if ( empty( $cart_details ) && ! empty( $invoice->cart_details ) ) { |
|
| 1005 | + if (empty($cart_details) && !empty($invoice->cart_details)) { |
|
| 1006 | 1006 | $cart_details = $invoice->cart_details; |
| 1007 | 1007 | } |
| 1008 | 1008 | |
| 1009 | - if ( ! empty( $cart_details ) && is_array( $cart_details ) ) { |
|
| 1010 | - $invoice_currency = ! empty( $invoice->currency ) ? $invoice->currency : wpinv_get_default_country(); |
|
| 1009 | + if (!empty($cart_details) && is_array($cart_details)) { |
|
| 1010 | + $invoice_currency = !empty($invoice->currency) ? $invoice->currency : wpinv_get_default_country(); |
|
| 1011 | 1011 | |
| 1012 | - foreach ( $cart_details as $key => $cart_item ) { |
|
| 1013 | - $cart_details[ $key ]['currency'] = $invoice_currency; |
|
| 1012 | + foreach ($cart_details as $key => $cart_item) { |
|
| 1013 | + $cart_details[$key]['currency'] = $invoice_currency; |
|
| 1014 | 1014 | |
| 1015 | - if ( ! isset( $cart_item['subtotal'] ) ) { |
|
| 1016 | - $cart_details[ $key ]['subtotal'] = $cart_item['price']; |
|
| 1015 | + if (!isset($cart_item['subtotal'])) { |
|
| 1016 | + $cart_details[$key]['subtotal'] = $cart_item['price']; |
|
| 1017 | 1017 | } |
| 1018 | 1018 | } |
| 1019 | 1019 | } |
| 1020 | 1020 | |
| 1021 | - return apply_filters( 'wpinv_get_cart_details', $cart_details, $invoice_id ); |
|
| 1021 | + return apply_filters('wpinv_get_cart_details', $cart_details, $invoice_id); |
|
| 1022 | 1022 | } |
| 1023 | 1023 | |
| 1024 | -function wpinv_record_status_change( $invoice_id, $new_status, $old_status ) { |
|
| 1025 | - if ( 'wpi_invoice' != get_post_type( $invoice_id ) ) { |
|
| 1024 | +function wpinv_record_status_change($invoice_id, $new_status, $old_status) { |
|
| 1025 | + if ('wpi_invoice' != get_post_type($invoice_id)) { |
|
| 1026 | 1026 | return; |
| 1027 | 1027 | } |
| 1028 | 1028 | |
| 1029 | - if ( ( $old_status == 'wpi-pending' && $new_status == 'draft' ) || ( $old_status == 'draft' && $new_status == 'wpi-pending' ) ) { |
|
| 1029 | + if (($old_status == 'wpi-pending' && $new_status == 'draft') || ($old_status == 'draft' && $new_status == 'wpi-pending')) { |
|
| 1030 | 1030 | return; |
| 1031 | 1031 | } |
| 1032 | 1032 | |
| 1033 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
| 1033 | + $invoice = wpinv_get_invoice($invoice_id); |
|
| 1034 | 1034 | |
| 1035 | - $old_status = wpinv_status_nicename( $old_status ); |
|
| 1036 | - $new_status = wpinv_status_nicename( $new_status ); |
|
| 1035 | + $old_status = wpinv_status_nicename($old_status); |
|
| 1036 | + $new_status = wpinv_status_nicename($new_status); |
|
| 1037 | 1037 | |
| 1038 | - $status_change = sprintf( __( 'Invoice status changed from %s to %s', 'invoicing' ), $old_status, $new_status ); |
|
| 1038 | + $status_change = sprintf(__('Invoice status changed from %s to %s', 'invoicing'), $old_status, $new_status); |
|
| 1039 | 1039 | |
| 1040 | 1040 | // Add note |
| 1041 | - return $invoice->add_note( $status_change, false, false, true ); |
|
| 1041 | + return $invoice->add_note($status_change, false, false, true); |
|
| 1042 | 1042 | } |
| 1043 | -add_action( 'wpinv_update_status', 'wpinv_record_status_change', 100, 3 ); |
|
| 1043 | +add_action('wpinv_update_status', 'wpinv_record_status_change', 100, 3); |
|
| 1044 | 1044 | |
| 1045 | -function wpinv_complete_payment( $invoice_id, $new_status, $old_status ) { |
|
| 1045 | +function wpinv_complete_payment($invoice_id, $new_status, $old_status) { |
|
| 1046 | 1046 | global $wpi_has_free_trial; |
| 1047 | 1047 | |
| 1048 | 1048 | $wpi_has_free_trial = false; |
| 1049 | 1049 | |
| 1050 | - if ( $old_status == 'publish' ) { |
|
| 1050 | + if ($old_status == 'publish') { |
|
| 1051 | 1051 | return; // Make sure that payments are only paid once |
| 1052 | 1052 | } |
| 1053 | 1053 | |
| 1054 | 1054 | // Make sure the payment completion is only processed when new status is paid |
| 1055 | - if ( $new_status != 'publish' ) { |
|
| 1055 | + if ($new_status != 'publish') { |
|
| 1056 | 1056 | return; |
| 1057 | 1057 | } |
| 1058 | 1058 | |
| 1059 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
| 1060 | - if ( empty( $invoice ) ) { |
|
| 1059 | + $invoice = new WPInv_Invoice($invoice_id); |
|
| 1060 | + if (empty($invoice)) { |
|
| 1061 | 1061 | return; |
| 1062 | 1062 | } |
| 1063 | 1063 | |
@@ -1065,58 +1065,58 @@ discard block |
||
| 1065 | 1065 | $completed_date = $invoice->completed_date; |
| 1066 | 1066 | $cart_details = $invoice->cart_details; |
| 1067 | 1067 | |
| 1068 | - do_action( 'wpinv_pre_complete_payment', $invoice_id ); |
|
| 1068 | + do_action('wpinv_pre_complete_payment', $invoice_id); |
|
| 1069 | 1069 | |
| 1070 | - if ( is_array( $cart_details ) ) { |
|
| 1070 | + if (is_array($cart_details)) { |
|
| 1071 | 1071 | // Increase purchase count and earnings |
| 1072 | - foreach ( $cart_details as $cart_index => $item ) { |
|
| 1072 | + foreach ($cart_details as $cart_index => $item) { |
|
| 1073 | 1073 | // Ensure these actions only run once, ever |
| 1074 | - if ( empty( $completed_date ) ) { |
|
| 1075 | - do_action( 'wpinv_complete_item_payment', $item['id'], $invoice_id, $item, $cart_index ); |
|
| 1074 | + if (empty($completed_date)) { |
|
| 1075 | + do_action('wpinv_complete_item_payment', $item['id'], $invoice_id, $item, $cart_index); |
|
| 1076 | 1076 | } |
| 1077 | 1077 | } |
| 1078 | 1078 | } |
| 1079 | 1079 | |
| 1080 | 1080 | // Check for discount codes and increment their use counts |
| 1081 | - if ( $discounts = $invoice->get_discounts( true ) ) { |
|
| 1082 | - if( ! empty( $discounts ) ) { |
|
| 1083 | - foreach( $discounts as $code ) { |
|
| 1084 | - wpinv_increase_discount_usage( $code ); |
|
| 1081 | + if ($discounts = $invoice->get_discounts(true)) { |
|
| 1082 | + if (!empty($discounts)) { |
|
| 1083 | + foreach ($discounts as $code) { |
|
| 1084 | + wpinv_increase_discount_usage($code); |
|
| 1085 | 1085 | } |
| 1086 | 1086 | } |
| 1087 | 1087 | } |
| 1088 | 1088 | |
| 1089 | 1089 | // Ensure this action only runs once ever |
| 1090 | - if( empty( $completed_date ) ) { |
|
| 1090 | + if (empty($completed_date)) { |
|
| 1091 | 1091 | // Save the completed date |
| 1092 | - $invoice->set( 'completed_date', current_time( 'mysql', 0 ) ); |
|
| 1092 | + $invoice->set('completed_date', current_time('mysql', 0)); |
|
| 1093 | 1093 | $invoice->save(); |
| 1094 | 1094 | |
| 1095 | - do_action( 'wpinv_complete_payment', $invoice_id ); |
|
| 1095 | + do_action('wpinv_complete_payment', $invoice_id); |
|
| 1096 | 1096 | } |
| 1097 | 1097 | |
| 1098 | 1098 | // Empty the shopping cart |
| 1099 | 1099 | wpinv_empty_cart(); |
| 1100 | 1100 | } |
| 1101 | -add_action( 'wpinv_update_status', 'wpinv_complete_payment', 100, 3 ); |
|
| 1101 | +add_action('wpinv_update_status', 'wpinv_complete_payment', 100, 3); |
|
| 1102 | 1102 | |
| 1103 | -function wpinv_update_payment_status( $invoice_id, $new_status = 'publish' ) { |
|
| 1104 | - $invoice = !empty( $invoice_id ) && is_object( $invoice_id ) ? $invoice_id : wpinv_get_invoice( (int)$invoice_id ); |
|
| 1103 | +function wpinv_update_payment_status($invoice_id, $new_status = 'publish') { |
|
| 1104 | + $invoice = !empty($invoice_id) && is_object($invoice_id) ? $invoice_id : wpinv_get_invoice((int)$invoice_id); |
|
| 1105 | 1105 | |
| 1106 | - if ( empty( $invoice ) ) { |
|
| 1106 | + if (empty($invoice)) { |
|
| 1107 | 1107 | return false; |
| 1108 | 1108 | } |
| 1109 | 1109 | |
| 1110 | - return $invoice->update_status( $new_status ); |
|
| 1110 | + return $invoice->update_status($new_status); |
|
| 1111 | 1111 | } |
| 1112 | 1112 | |
| 1113 | -function wpinv_cart_has_fees( $type = 'all' ) { |
|
| 1113 | +function wpinv_cart_has_fees($type = 'all') { |
|
| 1114 | 1114 | return false; |
| 1115 | 1115 | } |
| 1116 | 1116 | |
| 1117 | 1117 | function wpinv_validate_checkout_fields() { |
| 1118 | 1118 | // Check if there is $_POST |
| 1119 | - if ( empty( $_POST ) ) { |
|
| 1119 | + if (empty($_POST)) { |
|
| 1120 | 1120 | return false; |
| 1121 | 1121 | } |
| 1122 | 1122 | |
@@ -1128,11 +1128,11 @@ discard block |
||
| 1128 | 1128 | ); |
| 1129 | 1129 | |
| 1130 | 1130 | // Validate agree to terms |
| 1131 | - $page = wpinv_get_option( 'tandc_page' ); |
|
| 1132 | - if(isset($page) && (int)$page > 0 && apply_filters( 'wpinv_checkout_show_terms', true )){ |
|
| 1131 | + $page = wpinv_get_option('tandc_page'); |
|
| 1132 | + if (isset($page) && (int)$page > 0 && apply_filters('wpinv_checkout_show_terms', true)) { |
|
| 1133 | 1133 | // Validate agree to terms |
| 1134 | - if ( ! isset( $_POST['wpi_terms'] ) || !$_POST['wpi_terms'] ) { |
|
| 1135 | - wpinv_set_error( 'accept_terms', apply_filters( 'wpinv_accept_terms_error_text', __( 'You must accept terms and conditions', 'invoicing' ) ) ); |
|
| 1134 | + if (!isset($_POST['wpi_terms']) || !$_POST['wpi_terms']) { |
|
| 1135 | + wpinv_set_error('accept_terms', apply_filters('wpinv_accept_terms_error_text', __('You must accept terms and conditions', 'invoicing'))); |
|
| 1136 | 1136 | } |
| 1137 | 1137 | } |
| 1138 | 1138 | |
@@ -1148,26 +1148,26 @@ discard block |
||
| 1148 | 1148 | |
| 1149 | 1149 | $invoice = wpinv_get_invoice_cart(); |
| 1150 | 1150 | $has_subscription = $invoice->is_recurring(); |
| 1151 | - if ( empty( $invoice ) ) { |
|
| 1152 | - wpinv_set_error( 'invalid_invoice', __( 'Your cart is empty.', 'invoicing' ) ); |
|
| 1151 | + if (empty($invoice)) { |
|
| 1152 | + wpinv_set_error('invalid_invoice', __('Your cart is empty.', 'invoicing')); |
|
| 1153 | 1153 | return $gateway; |
| 1154 | 1154 | } |
| 1155 | 1155 | |
| 1156 | 1156 | // Check if a gateway value is present |
| 1157 | - if ( !empty( $_REQUEST['wpi-gateway'] ) ) { |
|
| 1158 | - $gateway = sanitize_text_field( $_REQUEST['wpi-gateway'] ); |
|
| 1157 | + if (!empty($_REQUEST['wpi-gateway'])) { |
|
| 1158 | + $gateway = sanitize_text_field($_REQUEST['wpi-gateway']); |
|
| 1159 | 1159 | |
| 1160 | - if ( $invoice->is_free() ) { |
|
| 1160 | + if ($invoice->is_free()) { |
|
| 1161 | 1161 | $gateway = 'manual'; |
| 1162 | - } elseif ( !wpinv_is_gateway_active( $gateway ) ) { |
|
| 1163 | - wpinv_set_error( 'invalid_gateway', __( 'The selected payment gateway is not enabled', 'invoicing' ) ); |
|
| 1164 | - } elseif ( $has_subscription && !wpinv_gateway_support_subscription( $gateway ) ) { |
|
| 1165 | - wpinv_set_error( 'invalid_gateway', __( 'The selected payment gateway doesnot support subscription payment', 'invoicing' ) ); |
|
| 1162 | + } elseif (!wpinv_is_gateway_active($gateway)) { |
|
| 1163 | + wpinv_set_error('invalid_gateway', __('The selected payment gateway is not enabled', 'invoicing')); |
|
| 1164 | + } elseif ($has_subscription && !wpinv_gateway_support_subscription($gateway)) { |
|
| 1165 | + wpinv_set_error('invalid_gateway', __('The selected payment gateway doesnot support subscription payment', 'invoicing')); |
|
| 1166 | 1166 | } |
| 1167 | 1167 | } |
| 1168 | 1168 | |
| 1169 | - if ( $has_subscription && count( wpinv_get_cart_contents() ) > 1 ) { |
|
| 1170 | - wpinv_set_error( 'subscription_invalid', __( 'Only one subscription may be purchased through payment per checkout.', 'invoicing' ) ); |
|
| 1169 | + if ($has_subscription && count(wpinv_get_cart_contents()) > 1) { |
|
| 1170 | + wpinv_set_error('subscription_invalid', __('Only one subscription may be purchased through payment per checkout.', 'invoicing')); |
|
| 1171 | 1171 | } |
| 1172 | 1172 | |
| 1173 | 1173 | return $gateway; |
@@ -1181,10 +1181,10 @@ discard block |
||
| 1181 | 1181 | |
| 1182 | 1182 | $error = false; |
| 1183 | 1183 | // If we have discounts, loop through them |
| 1184 | - if ( ! empty( $discounts ) ) { |
|
| 1185 | - foreach ( $discounts as $discount ) { |
|
| 1184 | + if (!empty($discounts)) { |
|
| 1185 | + foreach ($discounts as $discount) { |
|
| 1186 | 1186 | // Check if valid |
| 1187 | - if ( !wpinv_is_discount_valid( $discount, (int)$wpi_cart->get_user_id() ) ) { |
|
| 1187 | + if (!wpinv_is_discount_valid($discount, (int)$wpi_cart->get_user_id())) { |
|
| 1188 | 1188 | // Discount is not valid |
| 1189 | 1189 | $error = true; |
| 1190 | 1190 | } |
@@ -1194,20 +1194,20 @@ discard block |
||
| 1194 | 1194 | return NULL; |
| 1195 | 1195 | } |
| 1196 | 1196 | |
| 1197 | - if ( $error && !wpinv_get_errors() ) { |
|
| 1198 | - wpinv_set_error( 'invalid_discount', __( 'Discount code you entered is invalid', 'invoicing' ) ); |
|
| 1197 | + if ($error && !wpinv_get_errors()) { |
|
| 1198 | + wpinv_set_error('invalid_discount', __('Discount code you entered is invalid', 'invoicing')); |
|
| 1199 | 1199 | } |
| 1200 | 1200 | |
| 1201 | - return implode( ',', $discounts ); |
|
| 1201 | + return implode(',', $discounts); |
|
| 1202 | 1202 | } |
| 1203 | 1203 | |
| 1204 | 1204 | function wpinv_checkout_validate_cc() { |
| 1205 | 1205 | $card_data = wpinv_checkout_get_cc_info(); |
| 1206 | 1206 | |
| 1207 | 1207 | // Validate the card zip |
| 1208 | - if ( !empty( $card_data['wpinv_zip'] ) ) { |
|
| 1209 | - if ( !wpinv_checkout_validate_cc_zip( $card_data['wpinv_zip'], $card_data['wpinv_country'] ) ) { |
|
| 1210 | - wpinv_set_error( 'invalid_cc_zip', __( 'The zip / postcode you entered for your billing address is invalid', 'invoicing' ) ); |
|
| 1208 | + if (!empty($card_data['wpinv_zip'])) { |
|
| 1209 | + if (!wpinv_checkout_validate_cc_zip($card_data['wpinv_zip'], $card_data['wpinv_country'])) { |
|
| 1210 | + wpinv_set_error('invalid_cc_zip', __('The zip / postcode you entered for your billing address is invalid', 'invoicing')); |
|
| 1211 | 1211 | } |
| 1212 | 1212 | } |
| 1213 | 1213 | |
@@ -1217,28 +1217,28 @@ discard block |
||
| 1217 | 1217 | |
| 1218 | 1218 | function wpinv_checkout_get_cc_info() { |
| 1219 | 1219 | $cc_info = array(); |
| 1220 | - $cc_info['card_name'] = isset( $_POST['card_name'] ) ? sanitize_text_field( $_POST['card_name'] ) : ''; |
|
| 1221 | - $cc_info['card_number'] = isset( $_POST['card_number'] ) ? sanitize_text_field( $_POST['card_number'] ) : ''; |
|
| 1222 | - $cc_info['card_cvc'] = isset( $_POST['card_cvc'] ) ? sanitize_text_field( $_POST['card_cvc'] ) : ''; |
|
| 1223 | - $cc_info['card_exp_month'] = isset( $_POST['card_exp_month'] ) ? sanitize_text_field( $_POST['card_exp_month'] ) : ''; |
|
| 1224 | - $cc_info['card_exp_year'] = isset( $_POST['card_exp_year'] ) ? sanitize_text_field( $_POST['card_exp_year'] ) : ''; |
|
| 1225 | - $cc_info['card_address'] = isset( $_POST['wpinv_address'] ) ? sanitize_text_field( $_POST['wpinv_address'] ) : ''; |
|
| 1226 | - $cc_info['card_city'] = isset( $_POST['wpinv_city'] ) ? sanitize_text_field( $_POST['wpinv_city'] ) : ''; |
|
| 1227 | - $cc_info['card_state'] = isset( $_POST['wpinv_state'] ) ? sanitize_text_field( $_POST['wpinv_state'] ) : ''; |
|
| 1228 | - $cc_info['card_country'] = isset( $_POST['wpinv_country'] ) ? sanitize_text_field( $_POST['wpinv_country'] ) : ''; |
|
| 1229 | - $cc_info['card_zip'] = isset( $_POST['wpinv_zip'] ) ? sanitize_text_field( $_POST['wpinv_zip'] ) : ''; |
|
| 1220 | + $cc_info['card_name'] = isset($_POST['card_name']) ? sanitize_text_field($_POST['card_name']) : ''; |
|
| 1221 | + $cc_info['card_number'] = isset($_POST['card_number']) ? sanitize_text_field($_POST['card_number']) : ''; |
|
| 1222 | + $cc_info['card_cvc'] = isset($_POST['card_cvc']) ? sanitize_text_field($_POST['card_cvc']) : ''; |
|
| 1223 | + $cc_info['card_exp_month'] = isset($_POST['card_exp_month']) ? sanitize_text_field($_POST['card_exp_month']) : ''; |
|
| 1224 | + $cc_info['card_exp_year'] = isset($_POST['card_exp_year']) ? sanitize_text_field($_POST['card_exp_year']) : ''; |
|
| 1225 | + $cc_info['card_address'] = isset($_POST['wpinv_address']) ? sanitize_text_field($_POST['wpinv_address']) : ''; |
|
| 1226 | + $cc_info['card_city'] = isset($_POST['wpinv_city']) ? sanitize_text_field($_POST['wpinv_city']) : ''; |
|
| 1227 | + $cc_info['card_state'] = isset($_POST['wpinv_state']) ? sanitize_text_field($_POST['wpinv_state']) : ''; |
|
| 1228 | + $cc_info['card_country'] = isset($_POST['wpinv_country']) ? sanitize_text_field($_POST['wpinv_country']) : ''; |
|
| 1229 | + $cc_info['card_zip'] = isset($_POST['wpinv_zip']) ? sanitize_text_field($_POST['wpinv_zip']) : ''; |
|
| 1230 | 1230 | |
| 1231 | 1231 | // Return cc info |
| 1232 | 1232 | return $cc_info; |
| 1233 | 1233 | } |
| 1234 | 1234 | |
| 1235 | -function wpinv_checkout_validate_cc_zip( $zip = 0, $country_code = '' ) { |
|
| 1235 | +function wpinv_checkout_validate_cc_zip($zip = 0, $country_code = '') { |
|
| 1236 | 1236 | $ret = false; |
| 1237 | 1237 | |
| 1238 | - if ( empty( $zip ) || empty( $country_code ) ) |
|
| 1238 | + if (empty($zip) || empty($country_code)) |
|
| 1239 | 1239 | return $ret; |
| 1240 | 1240 | |
| 1241 | - $country_code = strtoupper( $country_code ); |
|
| 1241 | + $country_code = strtoupper($country_code); |
|
| 1242 | 1242 | |
| 1243 | 1243 | $zip_regex = array( |
| 1244 | 1244 | "AD" => "AD\d{3}", |
@@ -1398,17 +1398,17 @@ discard block |
||
| 1398 | 1398 | "ZM" => "\d{5}" |
| 1399 | 1399 | ); |
| 1400 | 1400 | |
| 1401 | - if ( ! isset ( $zip_regex[ $country_code ] ) || preg_match( "/" . $zip_regex[ $country_code ] . "/i", $zip ) ) |
|
| 1401 | + if (!isset ($zip_regex[$country_code]) || preg_match("/" . $zip_regex[$country_code] . "/i", $zip)) |
|
| 1402 | 1402 | $ret = true; |
| 1403 | 1403 | |
| 1404 | - return apply_filters( 'wpinv_is_zip_valid', $ret, $zip, $country_code ); |
|
| 1404 | + return apply_filters('wpinv_is_zip_valid', $ret, $zip, $country_code); |
|
| 1405 | 1405 | } |
| 1406 | 1406 | |
| 1407 | 1407 | function wpinv_checkout_validate_agree_to_terms() { |
| 1408 | 1408 | // Validate agree to terms |
| 1409 | - if ( ! isset( $_POST['wpi_agree_to_terms'] ) || $_POST['wpi_agree_to_terms'] != 1 ) { |
|
| 1409 | + if (!isset($_POST['wpi_agree_to_terms']) || $_POST['wpi_agree_to_terms'] != 1) { |
|
| 1410 | 1410 | // User did not agree |
| 1411 | - wpinv_set_error( 'agree_to_terms', apply_filters( 'wpinv_agree_to_terms_text', __( 'You must agree to the terms of use', 'invoicing' ) ) ); |
|
| 1411 | + wpinv_set_error('agree_to_terms', apply_filters('wpinv_agree_to_terms_text', __('You must agree to the terms of use', 'invoicing'))); |
|
| 1412 | 1412 | } |
| 1413 | 1413 | } |
| 1414 | 1414 | |
@@ -1420,40 +1420,40 @@ discard block |
||
| 1420 | 1420 | ); |
| 1421 | 1421 | |
| 1422 | 1422 | // Verify there is a user_ID |
| 1423 | - if ( $user_ID == (int)$wpi_cart->get_user_id() ) { |
|
| 1423 | + if ($user_ID == (int)$wpi_cart->get_user_id()) { |
|
| 1424 | 1424 | // Get the logged in user data |
| 1425 | - $user_data = get_userdata( $user_ID ); |
|
| 1426 | - $required_fields = wpinv_checkout_required_fields(); |
|
| 1425 | + $user_data = get_userdata($user_ID); |
|
| 1426 | + $required_fields = wpinv_checkout_required_fields(); |
|
| 1427 | 1427 | |
| 1428 | 1428 | // Loop through required fields and show error messages |
| 1429 | - if ( !empty( $required_fields ) ) { |
|
| 1430 | - foreach ( $required_fields as $field_name => $value ) { |
|
| 1431 | - if ( in_array( $value, $required_fields ) && empty( $_POST[ 'wpinv_' . $field_name ] ) ) { |
|
| 1432 | - wpinv_set_error( $value['error_id'], $value['error_message'] ); |
|
| 1429 | + if (!empty($required_fields)) { |
|
| 1430 | + foreach ($required_fields as $field_name => $value) { |
|
| 1431 | + if (in_array($value, $required_fields) && empty($_POST['wpinv_' . $field_name])) { |
|
| 1432 | + wpinv_set_error($value['error_id'], $value['error_message']); |
|
| 1433 | 1433 | } |
| 1434 | 1434 | } |
| 1435 | 1435 | } |
| 1436 | 1436 | |
| 1437 | 1437 | // Verify data |
| 1438 | - if ( $user_data ) { |
|
| 1438 | + if ($user_data) { |
|
| 1439 | 1439 | // Collected logged in user data |
| 1440 | 1440 | $valid_user_data = array( |
| 1441 | 1441 | 'user_id' => $user_ID, |
| 1442 | - 'email' => isset( $_POST['wpinv_email'] ) ? sanitize_email( $_POST['wpinv_email'] ) : $user_data->user_email, |
|
| 1443 | - 'first_name' => isset( $_POST['wpinv_first_name'] ) && ! empty( $_POST['wpinv_first_name'] ) ? sanitize_text_field( $_POST['wpinv_first_name'] ) : $user_data->first_name, |
|
| 1444 | - 'last_name' => isset( $_POST['wpinv_last_name'] ) && ! empty( $_POST['wpinv_last_name'] ) ? sanitize_text_field( $_POST['wpinv_last_name'] ) : $user_data->last_name, |
|
| 1442 | + 'email' => isset($_POST['wpinv_email']) ? sanitize_email($_POST['wpinv_email']) : $user_data->user_email, |
|
| 1443 | + 'first_name' => isset($_POST['wpinv_first_name']) && !empty($_POST['wpinv_first_name']) ? sanitize_text_field($_POST['wpinv_first_name']) : $user_data->first_name, |
|
| 1444 | + 'last_name' => isset($_POST['wpinv_last_name']) && !empty($_POST['wpinv_last_name']) ? sanitize_text_field($_POST['wpinv_last_name']) : $user_data->last_name, |
|
| 1445 | 1445 | ); |
| 1446 | 1446 | |
| 1447 | - if ( !empty( $_POST[ 'wpinv_email' ] ) && !is_email( $_POST[ 'wpinv_email' ] ) ) { |
|
| 1448 | - wpinv_set_error( 'invalid_email', __( 'Please enter a valid email address', 'invoicing' ) ); |
|
| 1447 | + if (!empty($_POST['wpinv_email']) && !is_email($_POST['wpinv_email'])) { |
|
| 1448 | + wpinv_set_error('invalid_email', __('Please enter a valid email address', 'invoicing')); |
|
| 1449 | 1449 | } |
| 1450 | 1450 | } else { |
| 1451 | 1451 | // Set invalid user error |
| 1452 | - wpinv_set_error( 'invalid_user', __( 'The user billing information is invalid', 'invoicing' ) ); |
|
| 1452 | + wpinv_set_error('invalid_user', __('The user billing information is invalid', 'invoicing')); |
|
| 1453 | 1453 | } |
| 1454 | 1454 | } else { |
| 1455 | 1455 | // Set invalid user error |
| 1456 | - wpinv_set_error( 'invalid_user_id', __( 'The invalid invoice user id', 'invoicing' ) ); |
|
| 1456 | + wpinv_set_error('invalid_user_id', __('The invalid invoice user id', 'invoicing')); |
|
| 1457 | 1457 | } |
| 1458 | 1458 | |
| 1459 | 1459 | // Return user data |
@@ -1465,30 +1465,30 @@ discard block |
||
| 1465 | 1465 | |
| 1466 | 1466 | $data = array(); |
| 1467 | 1467 | |
| 1468 | - if ( is_user_logged_in() ) { |
|
| 1469 | - if ( !wpinv_require_login_to_checkout() || ( wpinv_require_login_to_checkout() && (int)$wpi_cart->get_user_id() === (int)get_current_user_id() ) ) { |
|
| 1468 | + if (is_user_logged_in()) { |
|
| 1469 | + if (!wpinv_require_login_to_checkout() || (wpinv_require_login_to_checkout() && (int)$wpi_cart->get_user_id() === (int)get_current_user_id())) { |
|
| 1470 | 1470 | $data['user_id'] = (int)get_current_user_id(); |
| 1471 | 1471 | } else { |
| 1472 | - wpinv_set_error( 'logged_in_only', __( 'You are not allowed to pay for this invoice', 'invoicing' ) ); |
|
| 1472 | + wpinv_set_error('logged_in_only', __('You are not allowed to pay for this invoice', 'invoicing')); |
|
| 1473 | 1473 | } |
| 1474 | 1474 | } else { |
| 1475 | 1475 | // If guest checkout allowed |
| 1476 | - if ( !wpinv_require_login_to_checkout() ) { |
|
| 1476 | + if (!wpinv_require_login_to_checkout()) { |
|
| 1477 | 1477 | $data['user_id'] = 0; |
| 1478 | 1478 | } else { |
| 1479 | - wpinv_set_error( 'logged_in_only', __( 'You must be logged in to pay for this invoice', 'invoicing' ) ); |
|
| 1479 | + wpinv_set_error('logged_in_only', __('You must be logged in to pay for this invoice', 'invoicing')); |
|
| 1480 | 1480 | } |
| 1481 | 1481 | } |
| 1482 | 1482 | |
| 1483 | 1483 | return $data; |
| 1484 | 1484 | } |
| 1485 | 1485 | |
| 1486 | -function wpinv_checkout_form_get_user( $valid_data = array() ) { |
|
| 1486 | +function wpinv_checkout_form_get_user($valid_data = array()) { |
|
| 1487 | 1487 | // Initialize user |
| 1488 | 1488 | $user = false; |
| 1489 | - $is_ajax = defined( 'DOING_AJAX' ) && DOING_AJAX; |
|
| 1489 | + $is_ajax = defined('DOING_AJAX') && DOING_AJAX; |
|
| 1490 | 1490 | |
| 1491 | - if ( empty( $valid_data['current_user'] ) ) { |
|
| 1491 | + if (empty($valid_data['current_user'])) { |
|
| 1492 | 1492 | $user = false; |
| 1493 | 1493 | } else { |
| 1494 | 1494 | // Set the valid invoice user |
@@ -1496,7 +1496,7 @@ discard block |
||
| 1496 | 1496 | } |
| 1497 | 1497 | |
| 1498 | 1498 | // Verify invoice have an user |
| 1499 | - if ( false === $user || empty( $user ) ) { |
|
| 1499 | + if (false === $user || empty($user)) { |
|
| 1500 | 1500 | return false; |
| 1501 | 1501 | } |
| 1502 | 1502 | |
@@ -1513,11 +1513,11 @@ discard block |
||
| 1513 | 1513 | 'zip', |
| 1514 | 1514 | ); |
| 1515 | 1515 | |
| 1516 | - foreach ( $address_fields as $field ) { |
|
| 1517 | - $user[$field] = !empty( $_POST['wpinv_' . $field] ) ? sanitize_text_field( $_POST['wpinv_' . $field] ) : false; |
|
| 1516 | + foreach ($address_fields as $field) { |
|
| 1517 | + $user[$field] = !empty($_POST['wpinv_' . $field]) ? sanitize_text_field($_POST['wpinv_' . $field]) : false; |
|
| 1518 | 1518 | |
| 1519 | - if ( !empty( $user['user_id'] ) && !empty( $valid_data['current_user']['user_id'] ) && $valid_data['current_user']['user_id'] == $user['user_id'] ) { |
|
| 1520 | - update_user_meta( $user['user_id'], '_wpinv_' . $field, $user[$field] ); |
|
| 1519 | + if (!empty($user['user_id']) && !empty($valid_data['current_user']['user_id']) && $valid_data['current_user']['user_id'] == $user['user_id']) { |
|
| 1520 | + update_user_meta($user['user_id'], '_wpinv_' . $field, $user[$field]); |
|
| 1521 | 1521 | } |
| 1522 | 1522 | } |
| 1523 | 1523 | |
@@ -1525,28 +1525,28 @@ discard block |
||
| 1525 | 1525 | return $user; |
| 1526 | 1526 | } |
| 1527 | 1527 | |
| 1528 | -function wpinv_set_checkout_session( $invoice_data = array() ) { |
|
| 1528 | +function wpinv_set_checkout_session($invoice_data = array()) { |
|
| 1529 | 1529 | global $wpi_session; |
| 1530 | 1530 | |
| 1531 | - return $wpi_session->set( 'wpinv_checkout', $invoice_data ); |
|
| 1531 | + return $wpi_session->set('wpinv_checkout', $invoice_data); |
|
| 1532 | 1532 | } |
| 1533 | 1533 | |
| 1534 | 1534 | function wpinv_get_checkout_session() { |
| 1535 | 1535 | global $wpi_session; |
| 1536 | 1536 | |
| 1537 | - return $wpi_session->get( 'wpinv_checkout' ); |
|
| 1537 | + return $wpi_session->get('wpinv_checkout'); |
|
| 1538 | 1538 | } |
| 1539 | 1539 | |
| 1540 | 1540 | function wpinv_empty_cart() { |
| 1541 | 1541 | global $wpi_session; |
| 1542 | 1542 | |
| 1543 | 1543 | // Remove cart contents |
| 1544 | - $wpi_session->set( 'wpinv_checkout', NULL ); |
|
| 1544 | + $wpi_session->set('wpinv_checkout', NULL); |
|
| 1545 | 1545 | |
| 1546 | 1546 | // Remove all cart fees |
| 1547 | - $wpi_session->set( 'wpi_cart_fees', NULL ); |
|
| 1547 | + $wpi_session->set('wpi_cart_fees', NULL); |
|
| 1548 | 1548 | |
| 1549 | - do_action( 'wpinv_empty_cart' ); |
|
| 1549 | + do_action('wpinv_empty_cart'); |
|
| 1550 | 1550 | } |
| 1551 | 1551 | |
| 1552 | 1552 | function wpinv_process_checkout() { |
@@ -1555,7 +1555,7 @@ discard block |
||
| 1555 | 1555 | wpinv_clear_errors(); |
| 1556 | 1556 | |
| 1557 | 1557 | $invoice = wpinv_get_invoice_cart(); |
| 1558 | - if ( empty( $invoice ) ) { |
|
| 1558 | + if (empty($invoice)) { |
|
| 1559 | 1559 | return false; |
| 1560 | 1560 | } |
| 1561 | 1561 | |
@@ -1563,42 +1563,42 @@ discard block |
||
| 1563 | 1563 | |
| 1564 | 1564 | $wpi_checkout_id = $invoice->ID; |
| 1565 | 1565 | |
| 1566 | - do_action( 'wpinv_pre_process_checkout' ); |
|
| 1566 | + do_action('wpinv_pre_process_checkout'); |
|
| 1567 | 1567 | |
| 1568 | - if ( !wpinv_get_cart_contents() ) { // Make sure the cart isn't empty |
|
| 1568 | + if (!wpinv_get_cart_contents()) { // Make sure the cart isn't empty |
|
| 1569 | 1569 | $valid_data = false; |
| 1570 | - wpinv_set_error( 'empty_cart', __( 'Your cart is empty', 'invoicing' ) ); |
|
| 1570 | + wpinv_set_error('empty_cart', __('Your cart is empty', 'invoicing')); |
|
| 1571 | 1571 | } else { |
| 1572 | 1572 | // Validate the form $_POST data |
| 1573 | 1573 | $valid_data = wpinv_validate_checkout_fields(); |
| 1574 | 1574 | |
| 1575 | 1575 | // Allow themes and plugins to hook to errors |
| 1576 | - do_action( 'wpinv_checkout_error_checks', $valid_data, $_POST ); |
|
| 1576 | + do_action('wpinv_checkout_error_checks', $valid_data, $_POST); |
|
| 1577 | 1577 | } |
| 1578 | 1578 | |
| 1579 | - $is_ajax = defined( 'DOING_AJAX' ) && DOING_AJAX; |
|
| 1579 | + $is_ajax = defined('DOING_AJAX') && DOING_AJAX; |
|
| 1580 | 1580 | |
| 1581 | 1581 | // Validate the user |
| 1582 | - $user = wpinv_checkout_form_get_user( $valid_data ); |
|
| 1582 | + $user = wpinv_checkout_form_get_user($valid_data); |
|
| 1583 | 1583 | |
| 1584 | 1584 | // Let extensions validate fields after user is logged in if user has used login/registration form |
| 1585 | - do_action( 'wpinv_checkout_user_error_checks', $user, $valid_data, $_POST ); |
|
| 1585 | + do_action('wpinv_checkout_user_error_checks', $user, $valid_data, $_POST); |
|
| 1586 | 1586 | |
| 1587 | - if ( false === $valid_data || wpinv_get_errors() || ! $user ) { |
|
| 1588 | - if ( $is_ajax ) { |
|
| 1589 | - do_action( 'wpinv_ajax_checkout_errors' ); |
|
| 1587 | + if (false === $valid_data || wpinv_get_errors() || !$user) { |
|
| 1588 | + if ($is_ajax) { |
|
| 1589 | + do_action('wpinv_ajax_checkout_errors'); |
|
| 1590 | 1590 | die(); |
| 1591 | 1591 | } else { |
| 1592 | 1592 | return false; |
| 1593 | 1593 | } |
| 1594 | 1594 | } |
| 1595 | 1595 | |
| 1596 | - if ( $is_ajax ) { |
|
| 1596 | + if ($is_ajax) { |
|
| 1597 | 1597 | // Save address fields. |
| 1598 | - $address_fields = array( 'first_name', 'last_name', 'phone', 'address', 'city', 'country', 'state', 'zip', 'company' ); |
|
| 1599 | - foreach ( $address_fields as $field ) { |
|
| 1600 | - if ( isset( $user[$field] ) ) { |
|
| 1601 | - $invoice->set( $field, $user[$field] ); |
|
| 1598 | + $address_fields = array('first_name', 'last_name', 'phone', 'address', 'city', 'country', 'state', 'zip', 'company'); |
|
| 1599 | + foreach ($address_fields as $field) { |
|
| 1600 | + if (isset($user[$field])) { |
|
| 1601 | + $invoice->set($field, $user[$field]); |
|
| 1602 | 1602 | } |
| 1603 | 1603 | |
| 1604 | 1604 | $invoice->save(); |
@@ -1606,15 +1606,15 @@ discard block |
||
| 1606 | 1606 | |
| 1607 | 1607 | $response['success'] = true; |
| 1608 | 1608 | $response['data']['subtotal'] = $invoice->get_subtotal(); |
| 1609 | - $response['data']['subtotalf'] = $invoice->get_subtotal( true ); |
|
| 1609 | + $response['data']['subtotalf'] = $invoice->get_subtotal(true); |
|
| 1610 | 1610 | $response['data']['discount'] = $invoice->get_discount(); |
| 1611 | - $response['data']['discountf'] = $invoice->get_discount( true ); |
|
| 1611 | + $response['data']['discountf'] = $invoice->get_discount(true); |
|
| 1612 | 1612 | $response['data']['tax'] = $invoice->get_tax(); |
| 1613 | - $response['data']['taxf'] = $invoice->get_tax( true ); |
|
| 1613 | + $response['data']['taxf'] = $invoice->get_tax(true); |
|
| 1614 | 1614 | $response['data']['total'] = $invoice->get_total(); |
| 1615 | - $response['data']['totalf'] = $invoice->get_total( true ); |
|
| 1615 | + $response['data']['totalf'] = $invoice->get_total(true); |
|
| 1616 | 1616 | |
| 1617 | - wp_send_json( $response ); |
|
| 1617 | + wp_send_json($response); |
|
| 1618 | 1618 | } |
| 1619 | 1619 | |
| 1620 | 1620 | $user_info = array( |
@@ -1636,42 +1636,42 @@ discard block |
||
| 1636 | 1636 | |
| 1637 | 1637 | // Setup invoice information |
| 1638 | 1638 | $invoice_data = array( |
| 1639 | - 'invoice_id' => !empty( $invoice ) ? $invoice->ID : 0, |
|
| 1639 | + 'invoice_id' => !empty($invoice) ? $invoice->ID : 0, |
|
| 1640 | 1640 | 'items' => $cart_items, |
| 1641 | 1641 | 'cart_discounts' => $discounts, |
| 1642 | - 'fees' => wpinv_get_cart_fees(), // Any arbitrary fees that have been added to the cart |
|
| 1643 | - 'subtotal' => wpinv_get_cart_subtotal( $cart_items ), // Amount before taxes and discounts |
|
| 1644 | - 'discount' => wpinv_get_cart_items_discount_amount( $cart_items, $discounts ), // Discounted amount |
|
| 1645 | - 'tax' => wpinv_get_cart_tax( $cart_items ), // Taxed amount |
|
| 1646 | - 'price' => wpinv_get_cart_total( $cart_items, $discounts ), // Amount after taxes |
|
| 1642 | + 'fees' => wpinv_get_cart_fees(), // Any arbitrary fees that have been added to the cart |
|
| 1643 | + 'subtotal' => wpinv_get_cart_subtotal($cart_items), // Amount before taxes and discounts |
|
| 1644 | + 'discount' => wpinv_get_cart_items_discount_amount($cart_items, $discounts), // Discounted amount |
|
| 1645 | + 'tax' => wpinv_get_cart_tax($cart_items), // Taxed amount |
|
| 1646 | + 'price' => wpinv_get_cart_total($cart_items, $discounts), // Amount after taxes |
|
| 1647 | 1647 | 'invoice_key' => $invoice->get_key() ? $invoice->get_key() : $invoice->generate_key(), |
| 1648 | 1648 | 'user_email' => $user['email'], |
| 1649 | - 'date' => date( 'Y-m-d H:i:s', current_time( 'timestamp' ) ), |
|
| 1650 | - 'user_info' => stripslashes_deep( $user_info ), |
|
| 1649 | + 'date' => date('Y-m-d H:i:s', current_time('timestamp')), |
|
| 1650 | + 'user_info' => stripslashes_deep($user_info), |
|
| 1651 | 1651 | 'post_data' => $_POST, |
| 1652 | 1652 | 'cart_details' => $cart_items, |
| 1653 | 1653 | 'gateway' => $valid_data['gateway'], |
| 1654 | 1654 | 'card_info' => $valid_data['cc_info'] |
| 1655 | 1655 | ); |
| 1656 | 1656 | |
| 1657 | - $vat_info = $wpinv_euvat->current_vat_data(); |
|
| 1658 | - if ( is_array( $vat_info ) ) { |
|
| 1657 | + $vat_info = $wpinv_euvat->current_vat_data(); |
|
| 1658 | + if (is_array($vat_info)) { |
|
| 1659 | 1659 | $invoice_data['user_info']['vat_number'] = $vat_info['number']; |
| 1660 | 1660 | $invoice_data['user_info']['vat_rate'] = wpinv_get_tax_rate($invoice_data['user_info']['country'], $invoice_data['user_info']['state']); |
| 1661 | - $invoice_data['user_info']['adddress_confirmed'] = isset($vat_info['adddress_confirmed']) ? $vat_info['adddress_confirmed'] : false; |
|
| 1661 | + $invoice_data['user_info']['adddress_confirmed'] = isset($vat_info['adddress_confirmed']) ? $vat_info['adddress_confirmed'] : false; |
|
| 1662 | 1662 | |
| 1663 | 1663 | // Add the VAT rate to each item in the cart |
| 1664 | - foreach( $invoice_data['cart_details'] as $key => $item_data) { |
|
| 1664 | + foreach ($invoice_data['cart_details'] as $key => $item_data) { |
|
| 1665 | 1665 | $rate = wpinv_get_tax_rate($invoice_data['user_info']['country'], $invoice_data['user_info']['state'], $item_data['id']); |
| 1666 | - $invoice_data['cart_details'][$key]['vat_rate'] = wpinv_round_amount( $rate, 4 ); |
|
| 1666 | + $invoice_data['cart_details'][$key]['vat_rate'] = wpinv_round_amount($rate, 4); |
|
| 1667 | 1667 | } |
| 1668 | 1668 | } |
| 1669 | 1669 | |
| 1670 | 1670 | // Save vat fields. |
| 1671 | - $address_fields = array( 'vat_number', 'vat_rate', 'adddress_confirmed' ); |
|
| 1672 | - foreach ( $address_fields as $field ) { |
|
| 1673 | - if ( isset( $invoice_data['user_info'][$field] ) ) { |
|
| 1674 | - $invoice->set( $field, $invoice_data['user_info'][$field] ); |
|
| 1671 | + $address_fields = array('vat_number', 'vat_rate', 'adddress_confirmed'); |
|
| 1672 | + foreach ($address_fields as $field) { |
|
| 1673 | + if (isset($invoice_data['user_info'][$field])) { |
|
| 1674 | + $invoice->set($field, $invoice_data['user_info'][$field]); |
|
| 1675 | 1675 | } |
| 1676 | 1676 | |
| 1677 | 1677 | $invoice->save(); |
@@ -1681,55 +1681,55 @@ discard block |
||
| 1681 | 1681 | $valid_data['user'] = $user; |
| 1682 | 1682 | |
| 1683 | 1683 | // Allow themes and plugins to hook before the gateway |
| 1684 | - do_action( 'wpinv_checkout_before_gateway', $_POST, $user_info, $valid_data ); |
|
| 1684 | + do_action('wpinv_checkout_before_gateway', $_POST, $user_info, $valid_data); |
|
| 1685 | 1685 | |
| 1686 | 1686 | // If the total amount in the cart is 0, send to the manual gateway. This emulates a free invoice |
| 1687 | - if ( !$invoice_data['price'] ) { |
|
| 1687 | + if (!$invoice_data['price']) { |
|
| 1688 | 1688 | // Revert to manual |
| 1689 | 1689 | $invoice_data['gateway'] = 'manual'; |
| 1690 | 1690 | $_POST['wpi-gateway'] = 'manual'; |
| 1691 | 1691 | } |
| 1692 | 1692 | |
| 1693 | 1693 | // Allow the invoice data to be modified before it is sent to the gateway |
| 1694 | - $invoice_data = apply_filters( 'wpinv_data_before_gateway', $invoice_data, $valid_data ); |
|
| 1694 | + $invoice_data = apply_filters('wpinv_data_before_gateway', $invoice_data, $valid_data); |
|
| 1695 | 1695 | |
| 1696 | - if ( $invoice_data['price'] && $invoice_data['gateway'] == 'manual' ) { |
|
| 1696 | + if ($invoice_data['price'] && $invoice_data['gateway'] == 'manual') { |
|
| 1697 | 1697 | $mode = 'test'; |
| 1698 | 1698 | } else { |
| 1699 | - $mode = wpinv_is_test_mode( $invoice_data['gateway'] ) ? 'test' : 'live'; |
|
| 1699 | + $mode = wpinv_is_test_mode($invoice_data['gateway']) ? 'test' : 'live'; |
|
| 1700 | 1700 | } |
| 1701 | 1701 | |
| 1702 | 1702 | // Setup the data we're storing in the purchase session |
| 1703 | 1703 | $session_data = $invoice_data; |
| 1704 | 1704 | // Make sure credit card numbers are never stored in sessions |
| 1705 | - if ( !empty( $session_data['card_info']['card_number'] ) ) { |
|
| 1706 | - unset( $session_data['card_info']['card_number'] ); |
|
| 1705 | + if (!empty($session_data['card_info']['card_number'])) { |
|
| 1706 | + unset($session_data['card_info']['card_number']); |
|
| 1707 | 1707 | } |
| 1708 | 1708 | |
| 1709 | 1709 | // Used for showing item links to non logged-in users after purchase, and for other plugins needing purchase data. |
| 1710 | - wpinv_set_checkout_session( $invoice_data ); |
|
| 1710 | + wpinv_set_checkout_session($invoice_data); |
|
| 1711 | 1711 | |
| 1712 | 1712 | // Set gateway |
| 1713 | - $invoice->update_meta( '_wpinv_gateway', $invoice_data['gateway'] ); |
|
| 1714 | - $invoice->update_meta( '_wpinv_mode', $mode ); |
|
| 1715 | - $invoice->update_meta( '_wpinv_checkout', date_i18n( 'Y-m-d H:i:s', current_time( 'timestamp' ) ) ); |
|
| 1713 | + $invoice->update_meta('_wpinv_gateway', $invoice_data['gateway']); |
|
| 1714 | + $invoice->update_meta('_wpinv_mode', $mode); |
|
| 1715 | + $invoice->update_meta('_wpinv_checkout', date_i18n('Y-m-d H:i:s', current_time('timestamp'))); |
|
| 1716 | 1716 | |
| 1717 | - do_action( 'wpinv_checkout_before_send_to_gateway', $invoice, $invoice_data ); |
|
| 1717 | + do_action('wpinv_checkout_before_send_to_gateway', $invoice, $invoice_data); |
|
| 1718 | 1718 | |
| 1719 | 1719 | // Send info to the gateway for payment processing |
| 1720 | - wpinv_send_to_gateway( $invoice_data['gateway'], $invoice_data ); |
|
| 1720 | + wpinv_send_to_gateway($invoice_data['gateway'], $invoice_data); |
|
| 1721 | 1721 | die(); |
| 1722 | 1722 | } |
| 1723 | -add_action( 'wpinv_payment', 'wpinv_process_checkout' ); |
|
| 1723 | +add_action('wpinv_payment', 'wpinv_process_checkout'); |
|
| 1724 | 1724 | |
| 1725 | -function wpinv_get_invoices( $args ) { |
|
| 1726 | - $args = wp_parse_args( $args, array( |
|
| 1727 | - 'status' => array_keys( wpinv_get_invoice_statuses() ), |
|
| 1725 | +function wpinv_get_invoices($args) { |
|
| 1726 | + $args = wp_parse_args($args, array( |
|
| 1727 | + 'status' => array_keys(wpinv_get_invoice_statuses()), |
|
| 1728 | 1728 | 'type' => 'wpi_invoice', |
| 1729 | 1729 | 'parent' => null, |
| 1730 | 1730 | 'user' => null, |
| 1731 | 1731 | 'email' => '', |
| 1732 | - 'limit' => get_option( 'posts_per_page' ), |
|
| 1732 | + 'limit' => get_option('posts_per_page'), |
|
| 1733 | 1733 | 'offset' => null, |
| 1734 | 1734 | 'page' => 1, |
| 1735 | 1735 | 'exclude' => array(), |
@@ -1737,7 +1737,7 @@ discard block |
||
| 1737 | 1737 | 'order' => 'DESC', |
| 1738 | 1738 | 'return' => 'objects', |
| 1739 | 1739 | 'paginate' => false, |
| 1740 | - ) ); |
|
| 1740 | + )); |
|
| 1741 | 1741 | |
| 1742 | 1742 | // Handle some BW compatibility arg names where wp_query args differ in naming. |
| 1743 | 1743 | $map_legacy = array( |
@@ -1750,18 +1750,18 @@ discard block |
||
| 1750 | 1750 | 'paged' => 'page', |
| 1751 | 1751 | ); |
| 1752 | 1752 | |
| 1753 | - foreach ( $map_legacy as $from => $to ) { |
|
| 1754 | - if ( isset( $args[ $from ] ) ) { |
|
| 1755 | - $args[ $to ] = $args[ $from ]; |
|
| 1753 | + foreach ($map_legacy as $from => $to) { |
|
| 1754 | + if (isset($args[$from])) { |
|
| 1755 | + $args[$to] = $args[$from]; |
|
| 1756 | 1756 | } |
| 1757 | 1757 | } |
| 1758 | 1758 | |
| 1759 | - if ( get_query_var( 'paged' ) ) |
|
| 1759 | + if (get_query_var('paged')) |
|
| 1760 | 1760 | $args['page'] = get_query_var('paged'); |
| 1761 | - else if ( get_query_var( 'page' ) ) |
|
| 1762 | - $args['page'] = get_query_var( 'page' ); |
|
| 1763 | - else if ( !empty( $args[ 'page' ] ) ) |
|
| 1764 | - $args['page'] = $args[ 'page' ]; |
|
| 1761 | + else if (get_query_var('page')) |
|
| 1762 | + $args['page'] = get_query_var('page'); |
|
| 1763 | + else if (!empty($args['page'])) |
|
| 1764 | + $args['page'] = $args['page']; |
|
| 1765 | 1765 | else |
| 1766 | 1766 | $args['page'] = 1; |
| 1767 | 1767 | |
@@ -1774,49 +1774,49 @@ discard block |
||
| 1774 | 1774 | 'post_status' => $args['status'], |
| 1775 | 1775 | 'posts_per_page' => $args['limit'], |
| 1776 | 1776 | 'meta_query' => array(), |
| 1777 | - 'date_query' => !empty( $args['date_query'] ) ? $args['date_query'] : array(), |
|
| 1777 | + 'date_query' => !empty($args['date_query']) ? $args['date_query'] : array(), |
|
| 1778 | 1778 | 'fields' => 'ids', |
| 1779 | 1779 | 'orderby' => $args['orderby'], |
| 1780 | 1780 | 'order' => $args['order'], |
| 1781 | 1781 | ); |
| 1782 | 1782 | |
| 1783 | - if ( !empty( $args['user'] ) ) { |
|
| 1784 | - $wp_query_args['author'] = absint( $args['user'] ); |
|
| 1783 | + if (!empty($args['user'])) { |
|
| 1784 | + $wp_query_args['author'] = absint($args['user']); |
|
| 1785 | 1785 | } |
| 1786 | 1786 | |
| 1787 | - if ( ! is_null( $args['parent'] ) ) { |
|
| 1788 | - $wp_query_args['post_parent'] = absint( $args['parent'] ); |
|
| 1787 | + if (!is_null($args['parent'])) { |
|
| 1788 | + $wp_query_args['post_parent'] = absint($args['parent']); |
|
| 1789 | 1789 | } |
| 1790 | 1790 | |
| 1791 | - if ( ! is_null( $args['offset'] ) ) { |
|
| 1792 | - $wp_query_args['offset'] = absint( $args['offset'] ); |
|
| 1791 | + if (!is_null($args['offset'])) { |
|
| 1792 | + $wp_query_args['offset'] = absint($args['offset']); |
|
| 1793 | 1793 | } else { |
| 1794 | - $wp_query_args['paged'] = absint( $args['page'] ); |
|
| 1794 | + $wp_query_args['paged'] = absint($args['page']); |
|
| 1795 | 1795 | } |
| 1796 | 1796 | |
| 1797 | - if ( ! empty( $args['exclude'] ) ) { |
|
| 1798 | - $wp_query_args['post__not_in'] = array_map( 'absint', $args['exclude'] ); |
|
| 1797 | + if (!empty($args['exclude'])) { |
|
| 1798 | + $wp_query_args['post__not_in'] = array_map('absint', $args['exclude']); |
|
| 1799 | 1799 | } |
| 1800 | 1800 | |
| 1801 | - if ( ! $args['paginate' ] ) { |
|
| 1801 | + if (!$args['paginate']) { |
|
| 1802 | 1802 | $wp_query_args['no_found_rows'] = true; |
| 1803 | 1803 | } |
| 1804 | 1804 | |
| 1805 | 1805 | $wp_query_args = apply_filters('wpinv_get_invoices_args', $wp_query_args, $args); |
| 1806 | 1806 | |
| 1807 | 1807 | // Get results. |
| 1808 | - $invoices = new WP_Query( $wp_query_args ); |
|
| 1808 | + $invoices = new WP_Query($wp_query_args); |
|
| 1809 | 1809 | |
| 1810 | - if ( 'objects' === $args['return'] ) { |
|
| 1811 | - $return = array_map( 'wpinv_get_invoice', $invoices->posts ); |
|
| 1812 | - } elseif ( 'self' === $args['return'] ) { |
|
| 1810 | + if ('objects' === $args['return']) { |
|
| 1811 | + $return = array_map('wpinv_get_invoice', $invoices->posts); |
|
| 1812 | + } elseif ('self' === $args['return']) { |
|
| 1813 | 1813 | return $invoices; |
| 1814 | 1814 | } else { |
| 1815 | 1815 | $return = $invoices->posts; |
| 1816 | 1816 | } |
| 1817 | 1817 | |
| 1818 | - if ( $args['paginate' ] ) { |
|
| 1819 | - return (object) array( |
|
| 1818 | + if ($args['paginate']) { |
|
| 1819 | + return (object)array( |
|
| 1820 | 1820 | 'invoices' => $return, |
| 1821 | 1821 | 'total' => $invoices->found_posts, |
| 1822 | 1822 | 'max_num_pages' => $invoices->max_num_pages, |
@@ -1828,22 +1828,22 @@ discard block |
||
| 1828 | 1828 | |
| 1829 | 1829 | function wpinv_get_user_invoices_columns() { |
| 1830 | 1830 | $columns = array( |
| 1831 | - 'invoice-number' => array( 'title' => __( 'ID', 'invoicing' ), 'class' => 'text-left' ), |
|
| 1832 | - 'created-date' => array( 'title' => __( 'Created Date', 'invoicing' ), 'class' => 'text-left' ), |
|
| 1833 | - 'payment-date' => array( 'title' => __( 'Payment Date', 'invoicing' ), 'class' => 'text-left' ), |
|
| 1834 | - 'invoice-status' => array( 'title' => __( 'Status', 'invoicing' ), 'class' => 'text-center' ), |
|
| 1835 | - 'invoice-total' => array( 'title' => __( 'Total', 'invoicing' ), 'class' => 'text-right' ), |
|
| 1836 | - 'invoice-actions' => array( 'title' => ' ', 'class' => 'text-center' ), |
|
| 1831 | + 'invoice-number' => array('title' => __('ID', 'invoicing'), 'class' => 'text-left'), |
|
| 1832 | + 'created-date' => array('title' => __('Created Date', 'invoicing'), 'class' => 'text-left'), |
|
| 1833 | + 'payment-date' => array('title' => __('Payment Date', 'invoicing'), 'class' => 'text-left'), |
|
| 1834 | + 'invoice-status' => array('title' => __('Status', 'invoicing'), 'class' => 'text-center'), |
|
| 1835 | + 'invoice-total' => array('title' => __('Total', 'invoicing'), 'class' => 'text-right'), |
|
| 1836 | + 'invoice-actions' => array('title' => ' ', 'class' => 'text-center'), |
|
| 1837 | 1837 | ); |
| 1838 | 1838 | |
| 1839 | - return apply_filters( 'wpinv_user_invoices_columns', $columns ); |
|
| 1839 | + return apply_filters('wpinv_user_invoices_columns', $columns); |
|
| 1840 | 1840 | } |
| 1841 | 1841 | |
| 1842 | -function wpinv_payment_receipt( $atts, $content = null ) { |
|
| 1842 | +function wpinv_payment_receipt($atts, $content = null) { |
|
| 1843 | 1843 | global $wpinv_receipt_args; |
| 1844 | 1844 | |
| 1845 | - $wpinv_receipt_args = shortcode_atts( array( |
|
| 1846 | - 'error' => __( 'Sorry, trouble retrieving payment receipt.', 'invoicing' ), |
|
| 1845 | + $wpinv_receipt_args = shortcode_atts(array( |
|
| 1846 | + 'error' => __('Sorry, trouble retrieving payment receipt.', 'invoicing'), |
|
| 1847 | 1847 | 'price' => true, |
| 1848 | 1848 | 'discount' => true, |
| 1849 | 1849 | 'items' => true, |
@@ -1852,195 +1852,195 @@ discard block |
||
| 1852 | 1852 | 'invoice_key' => false, |
| 1853 | 1853 | 'payment_method' => true, |
| 1854 | 1854 | 'invoice_id' => true |
| 1855 | - ), $atts, 'wpinv_receipt' ); |
|
| 1855 | + ), $atts, 'wpinv_receipt'); |
|
| 1856 | 1856 | |
| 1857 | 1857 | $session = wpinv_get_checkout_session(); |
| 1858 | - if ( isset( $_GET['invoice_key'] ) ) { |
|
| 1859 | - $invoice_key = urldecode( $_GET['invoice_key'] ); |
|
| 1860 | - } else if ( $session && isset( $session['invoice_key'] ) ) { |
|
| 1858 | + if (isset($_GET['invoice_key'])) { |
|
| 1859 | + $invoice_key = urldecode($_GET['invoice_key']); |
|
| 1860 | + } else if ($session && isset($session['invoice_key'])) { |
|
| 1861 | 1861 | $invoice_key = $session['invoice_key']; |
| 1862 | - } elseif ( isset( $wpinv_receipt_args['invoice_key'] ) && $wpinv_receipt_args['invoice_key'] ) { |
|
| 1862 | + } elseif (isset($wpinv_receipt_args['invoice_key']) && $wpinv_receipt_args['invoice_key']) { |
|
| 1863 | 1863 | $invoice_key = $wpinv_receipt_args['invoice_key']; |
| 1864 | - } else if ( isset( $_GET['invoice-id'] ) ) { |
|
| 1865 | - $invoice_key = wpinv_get_payment_key( (int)$_GET['invoice-id'] ); |
|
| 1864 | + } else if (isset($_GET['invoice-id'])) { |
|
| 1865 | + $invoice_key = wpinv_get_payment_key((int)$_GET['invoice-id']); |
|
| 1866 | 1866 | } |
| 1867 | 1867 | |
| 1868 | 1868 | // No key found |
| 1869 | - if ( ! isset( $invoice_key ) ) { |
|
| 1869 | + if (!isset($invoice_key)) { |
|
| 1870 | 1870 | return '<p class="alert alert-error">' . $wpinv_receipt_args['error'] . '</p>'; |
| 1871 | 1871 | } |
| 1872 | 1872 | |
| 1873 | - $invoice_id = wpinv_get_invoice_id_by_key( $invoice_key ); |
|
| 1874 | - $user_can_view = wpinv_can_view_receipt( $invoice_key ); |
|
| 1875 | - if ( $user_can_view && isset( $_GET['invoice-id'] ) ) { |
|
| 1873 | + $invoice_id = wpinv_get_invoice_id_by_key($invoice_key); |
|
| 1874 | + $user_can_view = wpinv_can_view_receipt($invoice_key); |
|
| 1875 | + if ($user_can_view && isset($_GET['invoice-id'])) { |
|
| 1876 | 1876 | $invoice_id = (int)$_GET['invoice-id']; |
| 1877 | - $user_can_view = $invoice_key == wpinv_get_payment_key( (int)$_GET['invoice-id'] ) ? true : false; |
|
| 1877 | + $user_can_view = $invoice_key == wpinv_get_payment_key((int)$_GET['invoice-id']) ? true : false; |
|
| 1878 | 1878 | } |
| 1879 | 1879 | |
| 1880 | 1880 | // Key was provided, but user is logged out. Offer them the ability to login and view the receipt |
| 1881 | - if ( ! $user_can_view && ! empty( $invoice_key ) && ! is_user_logged_in() ) { |
|
| 1881 | + if (!$user_can_view && !empty($invoice_key) && !is_user_logged_in()) { |
|
| 1882 | 1882 | // login redirect |
| 1883 | - return '<p class="alert alert-error">' . __( 'You are not allowed to access this section', 'invoicing' ) . '</p>'; |
|
| 1883 | + return '<p class="alert alert-error">' . __('You are not allowed to access this section', 'invoicing') . '</p>'; |
|
| 1884 | 1884 | } |
| 1885 | 1885 | |
| 1886 | - if ( ! apply_filters( 'wpinv_user_can_view_receipt', $user_can_view, $wpinv_receipt_args ) ) { |
|
| 1886 | + if (!apply_filters('wpinv_user_can_view_receipt', $user_can_view, $wpinv_receipt_args)) { |
|
| 1887 | 1887 | return '<p class="alert alert-error">' . $wpinv_receipt_args['error'] . '</p>'; |
| 1888 | 1888 | } |
| 1889 | 1889 | |
| 1890 | 1890 | ob_start(); |
| 1891 | 1891 | |
| 1892 | - wpinv_get_template_part( 'wpinv-invoice-receipt' ); |
|
| 1892 | + wpinv_get_template_part('wpinv-invoice-receipt'); |
|
| 1893 | 1893 | |
| 1894 | 1894 | $display = ob_get_clean(); |
| 1895 | 1895 | |
| 1896 | 1896 | return $display; |
| 1897 | 1897 | } |
| 1898 | 1898 | |
| 1899 | -function wpinv_get_invoice_id_by_key( $key ) { |
|
| 1899 | +function wpinv_get_invoice_id_by_key($key) { |
|
| 1900 | 1900 | global $wpdb; |
| 1901 | 1901 | |
| 1902 | - $invoice_id = $wpdb->get_var( $wpdb->prepare( "SELECT post_id FROM $wpdb->postmeta WHERE meta_key = '_wpinv_key' AND meta_value = %s LIMIT 1", $key ) ); |
|
| 1902 | + $invoice_id = $wpdb->get_var($wpdb->prepare("SELECT post_id FROM $wpdb->postmeta WHERE meta_key = '_wpinv_key' AND meta_value = %s LIMIT 1", $key)); |
|
| 1903 | 1903 | |
| 1904 | - if ( $invoice_id != NULL ) |
|
| 1904 | + if ($invoice_id != NULL) |
|
| 1905 | 1905 | return $invoice_id; |
| 1906 | 1906 | |
| 1907 | 1907 | return 0; |
| 1908 | 1908 | } |
| 1909 | 1909 | |
| 1910 | -function wpinv_can_view_receipt( $invoice_key = '' ) { |
|
| 1910 | +function wpinv_can_view_receipt($invoice_key = '') { |
|
| 1911 | 1911 | $return = false; |
| 1912 | 1912 | |
| 1913 | - if ( empty( $invoice_key ) ) { |
|
| 1913 | + if (empty($invoice_key)) { |
|
| 1914 | 1914 | return $return; |
| 1915 | 1915 | } |
| 1916 | 1916 | |
| 1917 | 1917 | global $wpinv_receipt_args; |
| 1918 | 1918 | |
| 1919 | - $wpinv_receipt_args['id'] = wpinv_get_invoice_id_by_key( $invoice_key ); |
|
| 1920 | - if ( isset( $_GET['invoice-id'] ) ) { |
|
| 1921 | - $wpinv_receipt_args['id'] = $invoice_key == wpinv_get_payment_key( (int)$_GET['invoice-id'] ) ? (int)$_GET['invoice-id'] : 0; |
|
| 1919 | + $wpinv_receipt_args['id'] = wpinv_get_invoice_id_by_key($invoice_key); |
|
| 1920 | + if (isset($_GET['invoice-id'])) { |
|
| 1921 | + $wpinv_receipt_args['id'] = $invoice_key == wpinv_get_payment_key((int)$_GET['invoice-id']) ? (int)$_GET['invoice-id'] : 0; |
|
| 1922 | 1922 | } |
| 1923 | 1923 | |
| 1924 | - if ( empty( $wpinv_receipt_args['id'] ) ) { |
|
| 1924 | + if (empty($wpinv_receipt_args['id'])) { |
|
| 1925 | 1925 | return $return; |
| 1926 | 1926 | } |
| 1927 | 1927 | |
| 1928 | - $invoice = wpinv_get_invoice( $wpinv_receipt_args['id'] ); |
|
| 1929 | - if ( !( !empty( $invoice->ID ) && $invoice->get_key() === $invoice_key ) ) { |
|
| 1928 | + $invoice = wpinv_get_invoice($wpinv_receipt_args['id']); |
|
| 1929 | + if (!(!empty($invoice->ID) && $invoice->get_key() === $invoice_key)) { |
|
| 1930 | 1930 | return $return; |
| 1931 | 1931 | } |
| 1932 | 1932 | |
| 1933 | - if ( is_user_logged_in() ) { |
|
| 1934 | - if ( (int)$invoice->get_user_id() === (int) get_current_user_id() ) { |
|
| 1933 | + if (is_user_logged_in()) { |
|
| 1934 | + if ((int)$invoice->get_user_id() === (int)get_current_user_id()) { |
|
| 1935 | 1935 | $return = true; |
| 1936 | 1936 | } |
| 1937 | 1937 | } |
| 1938 | 1938 | |
| 1939 | 1939 | $session = wpinv_get_checkout_session(); |
| 1940 | - if ( isset( $_GET['invoice_key'] ) || ( $session && isset( $session['invoice_key'] ) ) ) { |
|
| 1941 | - $check_key = isset( $_GET['invoice_key'] ) ? $_GET['invoice_key'] : $session['invoice_key']; |
|
| 1940 | + if (isset($_GET['invoice_key']) || ($session && isset($session['invoice_key']))) { |
|
| 1941 | + $check_key = isset($_GET['invoice_key']) ? $_GET['invoice_key'] : $session['invoice_key']; |
|
| 1942 | 1942 | |
| 1943 | - if ( wpinv_require_login_to_checkout() ) { |
|
| 1943 | + if (wpinv_require_login_to_checkout()) { |
|
| 1944 | 1944 | $return = $return && $check_key === $invoice_key; |
| 1945 | 1945 | } else { |
| 1946 | 1946 | $return = $check_key === $invoice_key; |
| 1947 | 1947 | } |
| 1948 | 1948 | } |
| 1949 | 1949 | |
| 1950 | - return (bool) apply_filters( 'wpinv_can_view_receipt', $return, $invoice_key ); |
|
| 1950 | + return (bool)apply_filters('wpinv_can_view_receipt', $return, $invoice_key); |
|
| 1951 | 1951 | } |
| 1952 | 1952 | |
| 1953 | 1953 | function wpinv_pay_for_invoice() { |
| 1954 | 1954 | global $wpinv_euvat; |
| 1955 | 1955 | |
| 1956 | - if ( isset( $_GET['invoice_key'] ) ) { |
|
| 1956 | + if (isset($_GET['invoice_key'])) { |
|
| 1957 | 1957 | $checkout_uri = wpinv_get_checkout_uri(); |
| 1958 | - $invoice_key = sanitize_text_field( $_GET['invoice_key'] ); |
|
| 1958 | + $invoice_key = sanitize_text_field($_GET['invoice_key']); |
|
| 1959 | 1959 | |
| 1960 | - if ( empty( $invoice_key ) ) { |
|
| 1961 | - wpinv_set_error( 'invalid_invoice', __( 'Invoice not found', 'invoicing' ) ); |
|
| 1962 | - wp_redirect( $checkout_uri ); |
|
| 1960 | + if (empty($invoice_key)) { |
|
| 1961 | + wpinv_set_error('invalid_invoice', __('Invoice not found', 'invoicing')); |
|
| 1962 | + wp_redirect($checkout_uri); |
|
| 1963 | 1963 | wpinv_die(); |
| 1964 | 1964 | } |
| 1965 | 1965 | |
| 1966 | - do_action( 'wpinv_check_pay_for_invoice', $invoice_key ); |
|
| 1966 | + do_action('wpinv_check_pay_for_invoice', $invoice_key); |
|
| 1967 | 1967 | |
| 1968 | - $invoice_id = wpinv_get_invoice_id_by_key( $invoice_key ); |
|
| 1969 | - $user_can_view = wpinv_can_view_receipt( $invoice_key ); |
|
| 1970 | - if ( $user_can_view && isset( $_GET['invoice-id'] ) ) { |
|
| 1968 | + $invoice_id = wpinv_get_invoice_id_by_key($invoice_key); |
|
| 1969 | + $user_can_view = wpinv_can_view_receipt($invoice_key); |
|
| 1970 | + if ($user_can_view && isset($_GET['invoice-id'])) { |
|
| 1971 | 1971 | $invoice_id = (int)$_GET['invoice-id']; |
| 1972 | - $user_can_view = $invoice_key == wpinv_get_payment_key( (int)$_GET['invoice-id'] ) ? true : false; |
|
| 1972 | + $user_can_view = $invoice_key == wpinv_get_payment_key((int)$_GET['invoice-id']) ? true : false; |
|
| 1973 | 1973 | } |
| 1974 | 1974 | |
| 1975 | - if ( $invoice_id && $user_can_view && ( $invoice = wpinv_get_invoice( $invoice_id ) ) ) { |
|
| 1976 | - if ( $invoice->needs_payment() ) { |
|
| 1975 | + if ($invoice_id && $user_can_view && ($invoice = wpinv_get_invoice($invoice_id))) { |
|
| 1976 | + if ($invoice->needs_payment()) { |
|
| 1977 | 1977 | $data = array(); |
| 1978 | 1978 | $data['invoice_id'] = $invoice_id; |
| 1979 | - $data['cart_discounts'] = $invoice->get_discounts( true ); |
|
| 1979 | + $data['cart_discounts'] = $invoice->get_discounts(true); |
|
| 1980 | 1980 | |
| 1981 | - wpinv_set_checkout_session( $data ); |
|
| 1981 | + wpinv_set_checkout_session($data); |
|
| 1982 | 1982 | |
| 1983 | - if ( wpinv_get_option( 'vat_ip_country_default' ) ) { |
|
| 1983 | + if (wpinv_get_option('vat_ip_country_default')) { |
|
| 1984 | 1984 | $_POST['country'] = $wpinv_euvat->get_country_by_ip(); |
| 1985 | 1985 | $_POST['state'] = $_POST['country'] == $invoice->country ? $invoice->state : ''; |
| 1986 | 1986 | |
| 1987 | - wpinv_recalculate_tax( true ); |
|
| 1987 | + wpinv_recalculate_tax(true); |
|
| 1988 | 1988 | } |
| 1989 | 1989 | |
| 1990 | 1990 | } else { |
| 1991 | 1991 | $checkout_uri = $invoice->get_view_url(); |
| 1992 | 1992 | } |
| 1993 | 1993 | } else { |
| 1994 | - wpinv_set_error( 'invalid_invoice', __( 'You are not allowed to view this invoice', 'invoicing' ) ); |
|
| 1994 | + wpinv_set_error('invalid_invoice', __('You are not allowed to view this invoice', 'invoicing')); |
|
| 1995 | 1995 | |
| 1996 | - $checkout_uri = is_user_logged_in() ? wpinv_get_history_page_uri() : wp_login_url( get_permalink() ); |
|
| 1996 | + $checkout_uri = is_user_logged_in() ? wpinv_get_history_page_uri() : wp_login_url(get_permalink()); |
|
| 1997 | 1997 | } |
| 1998 | 1998 | |
| 1999 | - wp_redirect( $checkout_uri ); |
|
| 1999 | + wp_redirect($checkout_uri); |
|
| 2000 | 2000 | wpinv_die(); |
| 2001 | 2001 | } |
| 2002 | 2002 | } |
| 2003 | -add_action( 'wpinv_pay_for_invoice', 'wpinv_pay_for_invoice' ); |
|
| 2003 | +add_action('wpinv_pay_for_invoice', 'wpinv_pay_for_invoice'); |
|
| 2004 | 2004 | |
| 2005 | -function wpinv_handle_pay_via_invoice_link( $invoice_key ) { |
|
| 2006 | - if ( !empty( $invoice_key ) && !empty( $_REQUEST['_wpipay'] ) && !is_user_logged_in() && $invoice_id = wpinv_get_invoice_id_by_key( $invoice_key ) ) { |
|
| 2007 | - if ( $invoice = wpinv_get_invoice( $invoice_id ) ) { |
|
| 2005 | +function wpinv_handle_pay_via_invoice_link($invoice_key) { |
|
| 2006 | + if (!empty($invoice_key) && !empty($_REQUEST['_wpipay']) && !is_user_logged_in() && $invoice_id = wpinv_get_invoice_id_by_key($invoice_key)) { |
|
| 2007 | + if ($invoice = wpinv_get_invoice($invoice_id)) { |
|
| 2008 | 2008 | $user_id = $invoice->get_user_id(); |
| 2009 | - $secret = sanitize_text_field( $_GET['_wpipay'] ); |
|
| 2009 | + $secret = sanitize_text_field($_GET['_wpipay']); |
|
| 2010 | 2010 | |
| 2011 | - if ( $secret === md5( $user_id . '::' . $invoice->get_email() . '::' . $invoice_key ) ) { // valid invoice link |
|
| 2012 | - $redirect_to = remove_query_arg( '_wpipay', get_permalink() ); |
|
| 2011 | + if ($secret === md5($user_id . '::' . $invoice->get_email() . '::' . $invoice_key)) { // valid invoice link |
|
| 2012 | + $redirect_to = remove_query_arg('_wpipay', get_permalink()); |
|
| 2013 | 2013 | |
| 2014 | - wpinv_guest_redirect( $redirect_to, $user_id ); |
|
| 2014 | + wpinv_guest_redirect($redirect_to, $user_id); |
|
| 2015 | 2015 | wpinv_die(); |
| 2016 | 2016 | } |
| 2017 | 2017 | } |
| 2018 | 2018 | } |
| 2019 | 2019 | } |
| 2020 | -add_action( 'wpinv_check_pay_for_invoice', 'wpinv_handle_pay_via_invoice_link' ); |
|
| 2020 | +add_action('wpinv_check_pay_for_invoice', 'wpinv_handle_pay_via_invoice_link'); |
|
| 2021 | 2021 | |
| 2022 | -function wpinv_set_payment_transaction_id( $invoice_id = 0, $transaction_id = '' ) { |
|
| 2023 | - $invoice_id = is_object( $invoice_id ) && !empty( $invoice_id->ID ) ? $invoice_id : $invoice_id; |
|
| 2022 | +function wpinv_set_payment_transaction_id($invoice_id = 0, $transaction_id = '') { |
|
| 2023 | + $invoice_id = is_object($invoice_id) && !empty($invoice_id->ID) ? $invoice_id : $invoice_id; |
|
| 2024 | 2024 | |
| 2025 | - if ( empty( $invoice_id ) && $invoice_id > 0 ) { |
|
| 2025 | + if (empty($invoice_id) && $invoice_id > 0) { |
|
| 2026 | 2026 | return false; |
| 2027 | 2027 | } |
| 2028 | 2028 | |
| 2029 | - if ( empty( $transaction_id ) ) { |
|
| 2029 | + if (empty($transaction_id)) { |
|
| 2030 | 2030 | $transaction_id = $invoice_id; |
| 2031 | 2031 | } |
| 2032 | 2032 | |
| 2033 | - $transaction_id = apply_filters( 'wpinv_set_payment_transaction_id', $transaction_id, $invoice_id ); |
|
| 2033 | + $transaction_id = apply_filters('wpinv_set_payment_transaction_id', $transaction_id, $invoice_id); |
|
| 2034 | 2034 | |
| 2035 | - return wpinv_update_invoice_meta( $invoice_id, '_wpinv_transaction_id', $transaction_id ); |
|
| 2035 | + return wpinv_update_invoice_meta($invoice_id, '_wpinv_transaction_id', $transaction_id); |
|
| 2036 | 2036 | } |
| 2037 | 2037 | |
| 2038 | -function wpinv_invoice_status_label( $status, $status_display = '' ) { |
|
| 2039 | - if ( empty( $status_display ) ) { |
|
| 2040 | - $status_display = wpinv_status_nicename( $status ); |
|
| 2038 | +function wpinv_invoice_status_label($status, $status_display = '') { |
|
| 2039 | + if (empty($status_display)) { |
|
| 2040 | + $status_display = wpinv_status_nicename($status); |
|
| 2041 | 2041 | } |
| 2042 | 2042 | |
| 2043 | - switch ( $status ) { |
|
| 2043 | + switch ($status) { |
|
| 2044 | 2044 | case 'publish' : |
| 2045 | 2045 | case 'wpi-renewal' : |
| 2046 | 2046 | $class = 'label-success'; |
@@ -2065,257 +2065,257 @@ discard block |
||
| 2065 | 2065 | |
| 2066 | 2066 | $label = '<span class="label label-inv-' . $status . ' ' . $class . '">' . $status_display . '</span>'; |
| 2067 | 2067 | |
| 2068 | - return apply_filters( 'wpinv_invoice_status_label', $label, $status, $status_display ); |
|
| 2068 | + return apply_filters('wpinv_invoice_status_label', $label, $status, $status_display); |
|
| 2069 | 2069 | } |
| 2070 | 2070 | |
| 2071 | -function wpinv_format_invoice_number( $number, $type = '' ) { |
|
| 2072 | - $check = apply_filters( 'wpinv_pre_format_invoice_number', null, $number, $type ); |
|
| 2073 | - if ( null !== $check ) { |
|
| 2071 | +function wpinv_format_invoice_number($number, $type = '') { |
|
| 2072 | + $check = apply_filters('wpinv_pre_format_invoice_number', null, $number, $type); |
|
| 2073 | + if (null !== $check) { |
|
| 2074 | 2074 | return $check; |
| 2075 | 2075 | } |
| 2076 | 2076 | |
| 2077 | - if ( !empty( $number ) && !is_numeric( $number ) ) { |
|
| 2077 | + if (!empty($number) && !is_numeric($number)) { |
|
| 2078 | 2078 | return $number; |
| 2079 | 2079 | } |
| 2080 | 2080 | |
| 2081 | - $padd = wpinv_get_option( 'invoice_number_padd' ); |
|
| 2082 | - $prefix = wpinv_get_option( 'invoice_number_prefix' ); |
|
| 2083 | - $postfix = wpinv_get_option( 'invoice_number_postfix' ); |
|
| 2081 | + $padd = wpinv_get_option('invoice_number_padd'); |
|
| 2082 | + $prefix = wpinv_get_option('invoice_number_prefix'); |
|
| 2083 | + $postfix = wpinv_get_option('invoice_number_postfix'); |
|
| 2084 | 2084 | |
| 2085 | - $padd = absint( $padd ); |
|
| 2086 | - $formatted_number = absint( $number ); |
|
| 2085 | + $padd = absint($padd); |
|
| 2086 | + $formatted_number = absint($number); |
|
| 2087 | 2087 | |
| 2088 | - if ( $padd > 0 ) { |
|
| 2089 | - $formatted_number = zeroise( $formatted_number, $padd ); |
|
| 2088 | + if ($padd > 0) { |
|
| 2089 | + $formatted_number = zeroise($formatted_number, $padd); |
|
| 2090 | 2090 | } |
| 2091 | 2091 | |
| 2092 | 2092 | $formatted_number = $prefix . $formatted_number . $postfix; |
| 2093 | 2093 | |
| 2094 | - return apply_filters( 'wpinv_format_invoice_number', $formatted_number, $number, $prefix, $postfix, $padd ); |
|
| 2094 | + return apply_filters('wpinv_format_invoice_number', $formatted_number, $number, $prefix, $postfix, $padd); |
|
| 2095 | 2095 | } |
| 2096 | 2096 | |
| 2097 | -function wpinv_get_next_invoice_number( $type = '' ) { |
|
| 2098 | - $check = apply_filters( 'wpinv_get_pre_next_invoice_number', null, $type ); |
|
| 2099 | - if ( null !== $check ) { |
|
| 2097 | +function wpinv_get_next_invoice_number($type = '') { |
|
| 2098 | + $check = apply_filters('wpinv_get_pre_next_invoice_number', null, $type); |
|
| 2099 | + if (null !== $check) { |
|
| 2100 | 2100 | return $check; |
| 2101 | 2101 | } |
| 2102 | 2102 | |
| 2103 | - if ( !wpinv_sequential_number_active() ) { |
|
| 2103 | + if (!wpinv_sequential_number_active()) { |
|
| 2104 | 2104 | return false; |
| 2105 | 2105 | } |
| 2106 | 2106 | |
| 2107 | - $number = $last_number = get_option( 'wpinv_last_invoice_number', 0 ); |
|
| 2108 | - $start = wpinv_get_option( 'invoice_sequence_start', 1 ); |
|
| 2109 | - if ( !absint( $start ) > 0 ) { |
|
| 2107 | + $number = $last_number = get_option('wpinv_last_invoice_number', 0); |
|
| 2108 | + $start = wpinv_get_option('invoice_sequence_start', 1); |
|
| 2109 | + if (!absint($start) > 0) { |
|
| 2110 | 2110 | $start = 1; |
| 2111 | 2111 | } |
| 2112 | 2112 | $increment_number = true; |
| 2113 | 2113 | $save_number = false; |
| 2114 | 2114 | |
| 2115 | - if ( !empty( $number ) && !is_numeric( $number ) && $number == wpinv_format_invoice_number( $number ) ) { |
|
| 2116 | - $number = wpinv_clean_invoice_number( $number ); |
|
| 2115 | + if (!empty($number) && !is_numeric($number) && $number == wpinv_format_invoice_number($number)) { |
|
| 2116 | + $number = wpinv_clean_invoice_number($number); |
|
| 2117 | 2117 | } |
| 2118 | 2118 | |
| 2119 | - if ( empty( $number ) ) { |
|
| 2120 | - if ( !( $last_number === 0 || $last_number === '0' ) ) { |
|
| 2121 | - $last_invoice = wpinv_get_invoices( array( 'limit' => 1, 'order' => 'DESC', 'orderby' => 'ID', 'return' => 'posts', 'fields' => 'ids', 'status' => array_keys( wpinv_get_invoice_statuses( true, true ) ) ) ); |
|
| 2119 | + if (empty($number)) { |
|
| 2120 | + if (!($last_number === 0 || $last_number === '0')) { |
|
| 2121 | + $last_invoice = wpinv_get_invoices(array('limit' => 1, 'order' => 'DESC', 'orderby' => 'ID', 'return' => 'posts', 'fields' => 'ids', 'status' => array_keys(wpinv_get_invoice_statuses(true, true)))); |
|
| 2122 | 2122 | |
| 2123 | - if ( !empty( $last_invoice[0] ) && $invoice_number = wpinv_get_invoice_number( $last_invoice[0] ) ) { |
|
| 2124 | - if ( is_numeric( $invoice_number ) ) { |
|
| 2123 | + if (!empty($last_invoice[0]) && $invoice_number = wpinv_get_invoice_number($last_invoice[0])) { |
|
| 2124 | + if (is_numeric($invoice_number)) { |
|
| 2125 | 2125 | $number = $invoice_number; |
| 2126 | 2126 | } else { |
| 2127 | - $number = wpinv_clean_invoice_number( $invoice_number ); |
|
| 2127 | + $number = wpinv_clean_invoice_number($invoice_number); |
|
| 2128 | 2128 | } |
| 2129 | 2129 | } |
| 2130 | 2130 | |
| 2131 | - if ( empty( $number ) ) { |
|
| 2131 | + if (empty($number)) { |
|
| 2132 | 2132 | $increment_number = false; |
| 2133 | 2133 | $number = $start; |
| 2134 | - $save_number = ( $number - 1 ); |
|
| 2134 | + $save_number = ($number - 1); |
|
| 2135 | 2135 | } else { |
| 2136 | 2136 | $save_number = $number; |
| 2137 | 2137 | } |
| 2138 | 2138 | } |
| 2139 | 2139 | } |
| 2140 | 2140 | |
| 2141 | - if ( $start > $number ) { |
|
| 2141 | + if ($start > $number) { |
|
| 2142 | 2142 | $increment_number = false; |
| 2143 | 2143 | $number = $start; |
| 2144 | - $save_number = ( $number - 1 ); |
|
| 2144 | + $save_number = ($number - 1); |
|
| 2145 | 2145 | } |
| 2146 | 2146 | |
| 2147 | - if ( $save_number !== false ) { |
|
| 2148 | - update_option( 'wpinv_last_invoice_number', $save_number ); |
|
| 2147 | + if ($save_number !== false) { |
|
| 2148 | + update_option('wpinv_last_invoice_number', $save_number); |
|
| 2149 | 2149 | } |
| 2150 | 2150 | |
| 2151 | - $increment_number = apply_filters( 'wpinv_increment_payment_number', $increment_number, $number ); |
|
| 2151 | + $increment_number = apply_filters('wpinv_increment_payment_number', $increment_number, $number); |
|
| 2152 | 2152 | |
| 2153 | - if ( $increment_number ) { |
|
| 2153 | + if ($increment_number) { |
|
| 2154 | 2154 | $number++; |
| 2155 | 2155 | } |
| 2156 | 2156 | |
| 2157 | - return apply_filters( 'wpinv_get_next_invoice_number', $number ); |
|
| 2157 | + return apply_filters('wpinv_get_next_invoice_number', $number); |
|
| 2158 | 2158 | } |
| 2159 | 2159 | |
| 2160 | -function wpinv_clean_invoice_number( $number, $type = '' ) { |
|
| 2161 | - $check = apply_filters( 'wpinv_pre_clean_invoice_number', null, $number, $type ); |
|
| 2162 | - if ( null !== $check ) { |
|
| 2160 | +function wpinv_clean_invoice_number($number, $type = '') { |
|
| 2161 | + $check = apply_filters('wpinv_pre_clean_invoice_number', null, $number, $type); |
|
| 2162 | + if (null !== $check) { |
|
| 2163 | 2163 | return $check; |
| 2164 | 2164 | } |
| 2165 | 2165 | |
| 2166 | - $prefix = wpinv_get_option( 'invoice_number_prefix' ); |
|
| 2167 | - $postfix = wpinv_get_option( 'invoice_number_postfix' ); |
|
| 2166 | + $prefix = wpinv_get_option('invoice_number_prefix'); |
|
| 2167 | + $postfix = wpinv_get_option('invoice_number_postfix'); |
|
| 2168 | 2168 | |
| 2169 | - $number = preg_replace( '/' . $prefix . '/', '', $number, 1 ); |
|
| 2169 | + $number = preg_replace('/' . $prefix . '/', '', $number, 1); |
|
| 2170 | 2170 | |
| 2171 | - $length = strlen( $number ); |
|
| 2172 | - $postfix_pos = strrpos( $number, $postfix ); |
|
| 2171 | + $length = strlen($number); |
|
| 2172 | + $postfix_pos = strrpos($number, $postfix); |
|
| 2173 | 2173 | |
| 2174 | - if ( false !== $postfix_pos ) { |
|
| 2175 | - $number = substr_replace( $number, '', $postfix_pos, $length ); |
|
| 2174 | + if (false !== $postfix_pos) { |
|
| 2175 | + $number = substr_replace($number, '', $postfix_pos, $length); |
|
| 2176 | 2176 | } |
| 2177 | 2177 | |
| 2178 | - $number = intval( $number ); |
|
| 2178 | + $number = intval($number); |
|
| 2179 | 2179 | |
| 2180 | - return apply_filters( 'wpinv_clean_invoice_number', $number, $prefix, $postfix ); |
|
| 2180 | + return apply_filters('wpinv_clean_invoice_number', $number, $prefix, $postfix); |
|
| 2181 | 2181 | } |
| 2182 | 2182 | |
| 2183 | -function wpinv_save_number_post_saved( $post_ID, $post, $update ) { |
|
| 2183 | +function wpinv_save_number_post_saved($post_ID, $post, $update) { |
|
| 2184 | 2184 | global $wpdb; |
| 2185 | 2185 | |
| 2186 | - if ( !$update && !get_post_meta( $post_ID, '_wpinv_number', true ) ) { |
|
| 2187 | - wpinv_update_invoice_number( $post_ID, $post->post_status != 'auto-draft', $post->post_type ); |
|
| 2186 | + if (!$update && !get_post_meta($post_ID, '_wpinv_number', true)) { |
|
| 2187 | + wpinv_update_invoice_number($post_ID, $post->post_status != 'auto-draft', $post->post_type); |
|
| 2188 | 2188 | } |
| 2189 | 2189 | |
| 2190 | - if ( !$update ) { |
|
| 2191 | - $wpdb->update( $wpdb->posts, array( 'post_name' => wpinv_generate_post_name( $post_ID ) ), array( 'ID' => $post_ID ) ); |
|
| 2192 | - clean_post_cache( $post_ID ); |
|
| 2190 | + if (!$update) { |
|
| 2191 | + $wpdb->update($wpdb->posts, array('post_name' => wpinv_generate_post_name($post_ID)), array('ID' => $post_ID)); |
|
| 2192 | + clean_post_cache($post_ID); |
|
| 2193 | 2193 | } |
| 2194 | 2194 | } |
| 2195 | -add_action( 'save_post_wpi_invoice', 'wpinv_save_number_post_saved', 1, 3 ); |
|
| 2195 | +add_action('save_post_wpi_invoice', 'wpinv_save_number_post_saved', 1, 3); |
|
| 2196 | 2196 | |
| 2197 | -function wpinv_save_number_post_updated( $post_ID, $post_after, $post_before ) { |
|
| 2198 | - if ( !empty( $post_after->post_type ) && $post_after->post_type == 'wpi_invoice' && $post_before->post_status == 'auto-draft' && $post_after->post_status != $post_before->post_status ) { |
|
| 2199 | - wpinv_update_invoice_number( $post_ID, true, $post_after->post_type ); |
|
| 2197 | +function wpinv_save_number_post_updated($post_ID, $post_after, $post_before) { |
|
| 2198 | + if (!empty($post_after->post_type) && $post_after->post_type == 'wpi_invoice' && $post_before->post_status == 'auto-draft' && $post_after->post_status != $post_before->post_status) { |
|
| 2199 | + wpinv_update_invoice_number($post_ID, true, $post_after->post_type); |
|
| 2200 | 2200 | } |
| 2201 | 2201 | } |
| 2202 | -add_action( 'post_updated', 'wpinv_save_number_post_updated', 1, 3 ); |
|
| 2202 | +add_action('post_updated', 'wpinv_save_number_post_updated', 1, 3); |
|
| 2203 | 2203 | |
| 2204 | -function wpinv_update_invoice_number( $post_ID, $save_sequential = false, $type = '' ) { |
|
| 2204 | +function wpinv_update_invoice_number($post_ID, $save_sequential = false, $type = '') { |
|
| 2205 | 2205 | global $wpdb; |
| 2206 | 2206 | |
| 2207 | - $check = apply_filters( 'wpinv_pre_update_invoice_number', null, $post_ID, $save_sequential, $type ); |
|
| 2208 | - if ( null !== $check ) { |
|
| 2207 | + $check = apply_filters('wpinv_pre_update_invoice_number', null, $post_ID, $save_sequential, $type); |
|
| 2208 | + if (null !== $check) { |
|
| 2209 | 2209 | return $check; |
| 2210 | 2210 | } |
| 2211 | 2211 | |
| 2212 | - if ( wpinv_sequential_number_active() ) { |
|
| 2212 | + if (wpinv_sequential_number_active()) { |
|
| 2213 | 2213 | $number = wpinv_get_next_invoice_number(); |
| 2214 | 2214 | |
| 2215 | - if ( $save_sequential ) { |
|
| 2216 | - update_option( 'wpinv_last_invoice_number', $number ); |
|
| 2215 | + if ($save_sequential) { |
|
| 2216 | + update_option('wpinv_last_invoice_number', $number); |
|
| 2217 | 2217 | } |
| 2218 | 2218 | } else { |
| 2219 | 2219 | $number = $post_ID; |
| 2220 | 2220 | } |
| 2221 | 2221 | |
| 2222 | - $number = wpinv_format_invoice_number( $number ); |
|
| 2222 | + $number = wpinv_format_invoice_number($number); |
|
| 2223 | 2223 | |
| 2224 | - update_post_meta( $post_ID, '_wpinv_number', $number ); |
|
| 2224 | + update_post_meta($post_ID, '_wpinv_number', $number); |
|
| 2225 | 2225 | |
| 2226 | - $wpdb->update( $wpdb->posts, array( 'post_title' => $number ), array( 'ID' => $post_ID ) ); |
|
| 2226 | + $wpdb->update($wpdb->posts, array('post_title' => $number), array('ID' => $post_ID)); |
|
| 2227 | 2227 | |
| 2228 | - clean_post_cache( $post_ID ); |
|
| 2228 | + clean_post_cache($post_ID); |
|
| 2229 | 2229 | |
| 2230 | 2230 | return $number; |
| 2231 | 2231 | } |
| 2232 | 2232 | |
| 2233 | -function wpinv_post_name_prefix( $post_type = 'wpi_invoice' ) { |
|
| 2234 | - return apply_filters( 'wpinv_post_name_prefix', 'inv-', $post_type ); |
|
| 2233 | +function wpinv_post_name_prefix($post_type = 'wpi_invoice') { |
|
| 2234 | + return apply_filters('wpinv_post_name_prefix', 'inv-', $post_type); |
|
| 2235 | 2235 | } |
| 2236 | 2236 | |
| 2237 | -function wpinv_generate_post_name( $post_ID ) { |
|
| 2238 | - $prefix = wpinv_post_name_prefix( get_post_type( $post_ID ) ); |
|
| 2239 | - $post_name = sanitize_title( $prefix . $post_ID ); |
|
| 2237 | +function wpinv_generate_post_name($post_ID) { |
|
| 2238 | + $prefix = wpinv_post_name_prefix(get_post_type($post_ID)); |
|
| 2239 | + $post_name = sanitize_title($prefix . $post_ID); |
|
| 2240 | 2240 | |
| 2241 | - return apply_filters( 'wpinv_generate_post_name', $post_name, $post_ID, $prefix ); |
|
| 2241 | + return apply_filters('wpinv_generate_post_name', $post_name, $post_ID, $prefix); |
|
| 2242 | 2242 | } |
| 2243 | 2243 | |
| 2244 | -function wpinv_is_invoice_viewed( $invoice_id ) { |
|
| 2245 | - if ( empty( $invoice_id ) ) { |
|
| 2244 | +function wpinv_is_invoice_viewed($invoice_id) { |
|
| 2245 | + if (empty($invoice_id)) { |
|
| 2246 | 2246 | return false; |
| 2247 | 2247 | } |
| 2248 | 2248 | |
| 2249 | - $viewed_meta = get_post_meta( $invoice_id, '_wpinv_is_viewed', true ); |
|
| 2249 | + $viewed_meta = get_post_meta($invoice_id, '_wpinv_is_viewed', true); |
|
| 2250 | 2250 | |
| 2251 | - if ( isset($viewed_meta) && 1 == $viewed_meta ) { |
|
| 2251 | + if (isset($viewed_meta) && 1 == $viewed_meta) { |
|
| 2252 | 2252 | $is_viewed = true; |
| 2253 | 2253 | } else { |
| 2254 | 2254 | $is_viewed = false; |
| 2255 | 2255 | } |
| 2256 | 2256 | |
| 2257 | - return apply_filters( 'wpinv_is_invoice_viewed', $is_viewed, $invoice_id ); |
|
| 2257 | + return apply_filters('wpinv_is_invoice_viewed', $is_viewed, $invoice_id); |
|
| 2258 | 2258 | } |
| 2259 | 2259 | |
| 2260 | 2260 | function wpinv_mark_invoice_viewed() { |
| 2261 | 2261 | |
| 2262 | - if ( isset( $_GET['invoice_key'] ) ) { |
|
| 2262 | + if (isset($_GET['invoice_key'])) { |
|
| 2263 | 2263 | $invoice_key = urldecode($_GET['invoice_key']); |
| 2264 | 2264 | |
| 2265 | 2265 | $invoice_id = wpinv_get_invoice_id_by_key($invoice_key); |
| 2266 | 2266 | $invoice = new WPInv_Invoice($invoice_id); |
| 2267 | 2267 | |
| 2268 | - if(!$invoice_id){ |
|
| 2268 | + if (!$invoice_id) { |
|
| 2269 | 2269 | return; |
| 2270 | 2270 | } |
| 2271 | 2271 | |
| 2272 | - if( is_user_logged_in()){ |
|
| 2272 | + if (is_user_logged_in()) { |
|
| 2273 | 2273 | $current_user = wp_get_current_user(); |
| 2274 | - if(!current_user_can('administrator') && $current_user->user_email == $invoice->get_email()){ |
|
| 2275 | - update_post_meta($invoice_id,'_wpinv_is_viewed', 1); |
|
| 2274 | + if (!current_user_can('administrator') && $current_user->user_email == $invoice->get_email()) { |
|
| 2275 | + update_post_meta($invoice_id, '_wpinv_is_viewed', 1); |
|
| 2276 | 2276 | } |
| 2277 | 2277 | } else { |
| 2278 | - update_post_meta($invoice_id,'_wpinv_is_viewed', 1); |
|
| 2278 | + update_post_meta($invoice_id, '_wpinv_is_viewed', 1); |
|
| 2279 | 2279 | } |
| 2280 | 2280 | } |
| 2281 | 2281 | |
| 2282 | 2282 | } |
| 2283 | -add_action( 'init', 'wpinv_mark_invoice_viewed' ); |
|
| 2283 | +add_action('init', 'wpinv_mark_invoice_viewed'); |
|
| 2284 | 2284 | |
| 2285 | -function wpinv_get_subscription( $invoice, $by_parent = false ) { |
|
| 2286 | - if ( empty( $invoice ) ) { |
|
| 2285 | +function wpinv_get_subscription($invoice, $by_parent = false) { |
|
| 2286 | + if (empty($invoice)) { |
|
| 2287 | 2287 | return false; |
| 2288 | 2288 | } |
| 2289 | 2289 | |
| 2290 | - if ( ! is_object( $invoice ) && is_scalar( $invoice ) ) { |
|
| 2291 | - $invoice = wpinv_get_invoice( $invoice ); |
|
| 2290 | + if (!is_object($invoice) && is_scalar($invoice)) { |
|
| 2291 | + $invoice = wpinv_get_invoice($invoice); |
|
| 2292 | 2292 | } |
| 2293 | 2293 | |
| 2294 | - if ( !( is_object( $invoice ) && ! empty( $invoice->ID ) && $invoice->is_recurring() ) ) { |
|
| 2294 | + if (!(is_object($invoice) && !empty($invoice->ID) && $invoice->is_recurring())) { |
|
| 2295 | 2295 | return false; |
| 2296 | 2296 | } |
| 2297 | 2297 | |
| 2298 | - $invoice_id = ! $by_parent && ! empty( $invoice->parent_invoice ) ? $invoice->parent_invoice : $invoice->ID; |
|
| 2298 | + $invoice_id = !$by_parent && !empty($invoice->parent_invoice) ? $invoice->parent_invoice : $invoice->ID; |
|
| 2299 | 2299 | |
| 2300 | 2300 | $subs_db = new WPInv_Subscriptions_DB; |
| 2301 | - $subs = $subs_db->get_subscriptions( array( 'parent_payment_id' => $invoice_id, 'number' => 1 ) ); |
|
| 2301 | + $subs = $subs_db->get_subscriptions(array('parent_payment_id' => $invoice_id, 'number' => 1)); |
|
| 2302 | 2302 | |
| 2303 | - if ( ! empty( $subs ) ) { |
|
| 2304 | - return reset( $subs ); |
|
| 2303 | + if (!empty($subs)) { |
|
| 2304 | + return reset($subs); |
|
| 2305 | 2305 | } |
| 2306 | 2306 | |
| 2307 | 2307 | return false; |
| 2308 | 2308 | } |
| 2309 | 2309 | |
| 2310 | -function wpinv_filter_posts_clauses( $clauses, $wp_query ) { |
|
| 2310 | +function wpinv_filter_posts_clauses($clauses, $wp_query) { |
|
| 2311 | 2311 | global $wpdb; |
| 2312 | 2312 | |
| 2313 | - if ( ! empty( $wp_query->query_vars['orderby'] ) && $wp_query->query_vars['orderby'] == 'invoice_date' ) { |
|
| 2314 | - if ( !empty( $clauses['join'] ) ) { |
|
| 2313 | + if (!empty($wp_query->query_vars['orderby']) && $wp_query->query_vars['orderby'] == 'invoice_date') { |
|
| 2314 | + if (!empty($clauses['join'])) { |
|
| 2315 | 2315 | $clauses['join'] .= " "; |
| 2316 | 2316 | } |
| 2317 | 2317 | |
| 2318 | - if ( !empty( $clauses['fields'] ) ) { |
|
| 2318 | + if (!empty($clauses['fields'])) { |
|
| 2319 | 2319 | $clauses['fields'] .= ", "; |
| 2320 | 2320 | } |
| 2321 | 2321 | |
@@ -2326,4 +2326,4 @@ discard block |
||
| 2326 | 2326 | |
| 2327 | 2327 | return $clauses; |
| 2328 | 2328 | } |
| 2329 | -add_filter( 'posts_clauses', 'wpinv_filter_posts_clauses', 10, 2 ); |
|
| 2330 | 2329 | \ No newline at end of file |
| 2330 | +add_filter('posts_clauses', 'wpinv_filter_posts_clauses', 10, 2); |
|
| 2331 | 2331 | \ No newline at end of file |
@@ -7,15 +7,15 @@ discard block |
||
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | 9 | // MUST have WordPress. |
| 10 | -if ( !defined( 'WPINC' ) ) { |
|
| 11 | - exit( 'Do NOT access this file directly: ' . basename( __FILE__ ) ); |
|
| 10 | +if (!defined('WPINC')) { |
|
| 11 | + exit('Do NOT access this file directly: ' . basename(__FILE__)); |
|
| 12 | 12 | } |
| 13 | 13 | |
| 14 | 14 | class WPInv_Admin_Users { |
| 15 | 15 | private static $instance; |
| 16 | 16 | |
| 17 | 17 | public static function run() { |
| 18 | - if ( !isset( self::$instance ) && !( self::$instance instanceof WPInv_Admin_Users ) ) { |
|
| 18 | + if (!isset(self::$instance) && !(self::$instance instanceof WPInv_Admin_Users)) { |
|
| 19 | 19 | self::$instance = new WPInv_Admin_Users; |
| 20 | 20 | } |
| 21 | 21 | |
@@ -23,8 +23,8 @@ discard block |
||
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | public function __construct() { |
| 26 | - add_filter( 'manage_users_columns', array( $this, 'wpinv_add_user_column') ); |
|
| 27 | - add_filter( 'manage_users_custom_column', array( $this, 'wpinv_user_column_content') , 10, 3 ); |
|
| 26 | + add_filter('manage_users_columns', array($this, 'wpinv_add_user_column')); |
|
| 27 | + add_filter('manage_users_custom_column', array($this, 'wpinv_user_column_content'), 10, 3); |
|
| 28 | 28 | } |
| 29 | 29 | |
| 30 | 30 | /** |
@@ -34,8 +34,8 @@ discard block |
||
| 34 | 34 | * |
| 35 | 35 | * @return mixed |
| 36 | 36 | */ |
| 37 | - public function wpinv_add_user_column( $column ) { |
|
| 38 | - $column['wpinvoicing'] = __('Invoicing','invoicing'); |
|
| 37 | + public function wpinv_add_user_column($column) { |
|
| 38 | + $column['wpinvoicing'] = __('Invoicing', 'invoicing'); |
|
| 39 | 39 | return $column; |
| 40 | 40 | } |
| 41 | 41 | |
@@ -48,10 +48,10 @@ discard block |
||
| 48 | 48 | * |
| 49 | 49 | * @return string |
| 50 | 50 | */ |
| 51 | - function wpinv_user_column_content( $val, $column_name, $user_id ) { |
|
| 51 | + function wpinv_user_column_content($val, $column_name, $user_id) { |
|
| 52 | 52 | switch ($column_name) { |
| 53 | 53 | case 'wpinvoicing' : |
| 54 | - return $this->get_user_invoices( $user_id ); |
|
| 54 | + return $this->get_user_invoices($user_id); |
|
| 55 | 55 | break; |
| 56 | 56 | default: |
| 57 | 57 | } |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | * |
| 66 | 66 | * @return string |
| 67 | 67 | */ |
| 68 | - public function get_user_invoices($user_id){ |
|
| 68 | + public function get_user_invoices($user_id) { |
|
| 69 | 69 | $output = ''; |
| 70 | 70 | $wp_query_args = array( |
| 71 | 71 | 'post_type' => 'wpi_invoice', |
@@ -77,14 +77,14 @@ discard block |
||
| 77 | 77 | |
| 78 | 78 | $wp_query_args = apply_filters('wpinv_get_user_invoices_args', $wp_query_args, $user_id); |
| 79 | 79 | |
| 80 | - $invoices = new WP_Query( $wp_query_args ); |
|
| 81 | - $count = absint( $invoices->found_posts ); |
|
| 80 | + $invoices = new WP_Query($wp_query_args); |
|
| 81 | + $count = absint($invoices->found_posts); |
|
| 82 | 82 | |
| 83 | - if(empty($count)){ |
|
| 84 | - $output .= __('No Invoice(s)','invoicing'); |
|
| 85 | - }else{ |
|
| 86 | - $link_url = admin_url( "edit.php?post_type=wpi_invoice&author=".absint($user_id) ); |
|
| 87 | - $link_text = sprintf( __('Invoices ( %d )', 'invoicing'), $count ); |
|
| 83 | + if (empty($count)) { |
|
| 84 | + $output .= __('No Invoice(s)', 'invoicing'); |
|
| 85 | + } else { |
|
| 86 | + $link_url = admin_url("edit.php?post_type=wpi_invoice&author=" . absint($user_id)); |
|
| 87 | + $link_text = sprintf(__('Invoices ( %d )', 'invoicing'), $count); |
|
| 88 | 88 | $output .= "<a href='$link_url' >$link_text</a>"; |
| 89 | 89 | } |
| 90 | 90 | |