@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | * Bail if we are not in WP. |
14 | 14 | */ |
15 | 15 | if ( ! defined( 'ABSPATH' ) ) { |
16 | - exit; |
|
16 | + exit; |
|
17 | 17 | } |
18 | 18 | |
19 | 19 | /** |
@@ -21,294 +21,294 @@ discard block |
||
21 | 21 | */ |
22 | 22 | if ( ! class_exists( 'WP_Font_Awesome_Settings' ) ) { |
23 | 23 | |
24 | - /** |
|
25 | - * A Class to be able to change settings for Font Awesome. |
|
26 | - * |
|
27 | - * Class WP_Font_Awesome_Settings |
|
28 | - * @since 1.0.10 Now able to pass wp.org theme check. |
|
29 | - * @since 1.0.11 Font Awesome Pro now supported. |
|
30 | - * @since 1.0.11 Font Awesome Kits now supported. |
|
31 | - * @ver 1.0.11 |
|
32 | - * @todo decide how to implement textdomain |
|
33 | - */ |
|
34 | - class WP_Font_Awesome_Settings { |
|
35 | - |
|
36 | - /** |
|
37 | - * Class version version. |
|
38 | - * |
|
39 | - * @var string |
|
40 | - */ |
|
41 | - public $version = '1.0.11'; |
|
42 | - |
|
43 | - /** |
|
44 | - * Class textdomain. |
|
45 | - * |
|
46 | - * @var string |
|
47 | - */ |
|
48 | - public $textdomain = 'font-awesome-settings'; |
|
49 | - |
|
50 | - /** |
|
51 | - * Latest version of Font Awesome at time of publish published. |
|
52 | - * |
|
53 | - * @var string |
|
54 | - */ |
|
55 | - public $latest = "5.8.2"; |
|
56 | - |
|
57 | - /** |
|
58 | - * The title. |
|
59 | - * |
|
60 | - * @var string |
|
61 | - */ |
|
62 | - public $name = 'Font Awesome'; |
|
63 | - |
|
64 | - /** |
|
65 | - * Holds the settings values. |
|
66 | - * |
|
67 | - * @var array |
|
68 | - */ |
|
69 | - private $settings; |
|
70 | - |
|
71 | - /** |
|
72 | - * WP_Font_Awesome_Settings instance. |
|
73 | - * |
|
74 | - * @access private |
|
75 | - * @since 1.0.0 |
|
76 | - * @var WP_Font_Awesome_Settings There can be only one! |
|
77 | - */ |
|
78 | - private static $instance = null; |
|
79 | - |
|
80 | - /** |
|
81 | - * Main WP_Font_Awesome_Settings Instance. |
|
82 | - * |
|
83 | - * Ensures only one instance of WP_Font_Awesome_Settings is loaded or can be loaded. |
|
84 | - * |
|
85 | - * @since 1.0.0 |
|
86 | - * @static |
|
87 | - * @return WP_Font_Awesome_Settings - Main instance. |
|
88 | - */ |
|
89 | - public static function instance() { |
|
90 | - if ( ! isset( self::$instance ) && ! ( self::$instance instanceof WP_Font_Awesome_Settings ) ) { |
|
91 | - self::$instance = new WP_Font_Awesome_Settings; |
|
92 | - |
|
93 | - add_action( 'init', array( self::$instance, 'init' ) ); // set settings |
|
94 | - |
|
95 | - if ( is_admin() ) { |
|
96 | - add_action( 'admin_menu', array( self::$instance, 'menu_item' ) ); |
|
97 | - add_action( 'admin_init', array( self::$instance, 'register_settings' ) ); |
|
98 | - } |
|
99 | - |
|
100 | - do_action( 'wp_font_awesome_settings_loaded' ); |
|
101 | - } |
|
102 | - |
|
103 | - return self::$instance; |
|
104 | - } |
|
105 | - |
|
106 | - /** |
|
107 | - * Initiate the settings and add the required action hooks. |
|
108 | - * |
|
109 | - * @since 1.0.8 Settings name wrong - FIXED |
|
110 | - */ |
|
111 | - public function init() { |
|
112 | - $this->settings = $this->get_settings(); |
|
113 | - |
|
114 | - if ( $this->settings['type'] == 'CSS' ) { |
|
115 | - |
|
116 | - if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'frontend' ) { |
|
117 | - add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ), 5000 ); |
|
118 | - } |
|
119 | - |
|
120 | - if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'backend' ) { |
|
121 | - add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_style' ), 5000 ); |
|
122 | - } |
|
123 | - |
|
124 | - } else { |
|
125 | - |
|
126 | - if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'frontend' ) { |
|
127 | - add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), 5000 ); |
|
128 | - } |
|
129 | - |
|
130 | - if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'backend' ) { |
|
131 | - add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 5000 ); |
|
132 | - } |
|
133 | - } |
|
134 | - |
|
135 | - // remove font awesome if set to do so |
|
136 | - if ( $this->settings['dequeue'] == '1' ) { |
|
137 | - add_action( 'clean_url', array( $this, 'remove_font_awesome' ), 5000, 3 ); |
|
138 | - } |
|
139 | - |
|
140 | - } |
|
141 | - |
|
142 | - /** |
|
143 | - * Adds the Font Awesome styles. |
|
144 | - */ |
|
145 | - public function enqueue_style() { |
|
146 | - // build url |
|
147 | - $url = $this->get_url(); |
|
148 | - |
|
149 | - wp_deregister_style( 'font-awesome' ); // deregister in case its already there |
|
150 | - wp_register_style( 'font-awesome', $url, array(), null ); |
|
151 | - wp_enqueue_style( 'font-awesome' ); |
|
152 | - |
|
153 | - if ( $this->settings['shims'] ) { |
|
154 | - $url = $this->get_url( true ); |
|
155 | - wp_deregister_style( 'font-awesome-shims' ); // deregister in case its already there |
|
156 | - wp_register_style( 'font-awesome-shims', $url, array(), null ); |
|
157 | - wp_enqueue_style( 'font-awesome-shims' ); |
|
158 | - } |
|
159 | - } |
|
160 | - |
|
161 | - /** |
|
162 | - * Adds the Font Awesome JS. |
|
163 | - */ |
|
164 | - public function enqueue_scripts() { |
|
165 | - // build url |
|
166 | - $url = $this->get_url(); |
|
167 | - |
|
168 | - $deregister_function = 'wp' . '_' . 'deregister' . '_' . 'script'; |
|
169 | - call_user_func( $deregister_function, 'font-awesome' ); // deregister in case its already there |
|
170 | - wp_register_script( 'font-awesome', $url, array(), null ); |
|
171 | - wp_enqueue_script( 'font-awesome' ); |
|
172 | - |
|
173 | - if ( $this->settings['shims'] ) { |
|
174 | - $url = $this->get_url( true ); |
|
175 | - call_user_func( $deregister_function, 'font-awesome-shims' ); // deregister in case its already there |
|
176 | - wp_register_script( 'font-awesome-shims', $url, array(), null ); |
|
177 | - wp_enqueue_script( 'font-awesome-shims' ); |
|
178 | - } |
|
179 | - } |
|
180 | - |
|
181 | - /** |
|
182 | - * Get the url of the Font Awesome files. |
|
183 | - * |
|
184 | - * @param bool $shims If this is a shim file or not. |
|
185 | - * |
|
186 | - * @return string The url to the file. |
|
187 | - */ |
|
188 | - public function get_url( $shims = false ) { |
|
189 | - $script = $shims ? 'v4-shims' : 'all'; |
|
190 | - $sub = $this->settings['pro'] ? 'pro' : 'use'; |
|
191 | - $type = $this->settings['type']; |
|
192 | - $version = $this->settings['version']; |
|
193 | - $kit_url = $this->settings['kit-url'] ? esc_url( $this->settings['kit-url'] ) : ''; |
|
194 | - $url = ''; |
|
195 | - |
|
196 | - if ( $type == 'KIT' && $kit_url ) { |
|
197 | - if ( $shims ) { |
|
198 | - // if its a kit then we don't add shims here |
|
199 | - return ''; |
|
200 | - } |
|
201 | - $url .= $kit_url; // CDN |
|
202 | - $url .= "?wpfas=true"; // set our var so our version is not removed |
|
203 | - } else { |
|
204 | - $url .= "https://$sub.fontawesome.com/releases/"; // CDN |
|
205 | - $url .= ! empty( $version ) ? "v" . $version . '/' : "v" . $this->get_latest_version() . '/'; // version |
|
206 | - $url .= $type == 'CSS' ? 'css/' : 'js/'; // type |
|
207 | - $url .= $type == 'CSS' ? $script . '.css' : $script . '.js'; // type |
|
208 | - $url .= "?wpfas=true"; // set our var so our version is not removed |
|
209 | - } |
|
210 | - |
|
211 | - return $url; |
|
212 | - } |
|
213 | - |
|
214 | - /** |
|
215 | - * Try and remove any other versions of Font Awesome added by other plugins/themes. |
|
216 | - * |
|
217 | - * Uses the clean_url filter to try and remove any other Font Awesome files added, it can also add pseudo-elements flag for the JS version. |
|
218 | - * |
|
219 | - * @param $url |
|
220 | - * @param $original_url |
|
221 | - * @param $_context |
|
222 | - * |
|
223 | - * @return string The filtered url. |
|
224 | - */ |
|
225 | - public function remove_font_awesome( $url, $original_url, $_context ) { |
|
226 | - |
|
227 | - if ( $_context == 'display' |
|
228 | - && ( strstr( $url, "fontawesome" ) !== false || strstr( $url, "font-awesome" ) !== false ) |
|
229 | - && ( strstr( $url, ".js" ) !== false || strstr( $url, ".css" ) !== false ) |
|
230 | - ) {// it's a font-awesome-url (probably) |
|
231 | - |
|
232 | - if ( strstr( $url, "wpfas=true" ) !== false ) { |
|
233 | - if ( $this->settings['type'] == 'JS' ) { |
|
234 | - if ( $this->settings['js-pseudo'] ) { |
|
235 | - $url .= "' data-search-pseudo-elements defer='defer"; |
|
236 | - } else { |
|
237 | - $url .= "' defer='defer"; |
|
238 | - } |
|
239 | - } |
|
240 | - } else { |
|
241 | - $url = ''; // removing the url removes the file |
|
242 | - } |
|
243 | - |
|
244 | - } |
|
245 | - |
|
246 | - return $url; |
|
247 | - } |
|
248 | - |
|
249 | - /** |
|
250 | - * Register the database settings with WordPress. |
|
251 | - */ |
|
252 | - public function register_settings() { |
|
253 | - register_setting( 'wp-font-awesome-settings', 'wp-font-awesome-settings' ); |
|
254 | - } |
|
255 | - |
|
256 | - /** |
|
257 | - * Add the WordPress settings menu item. |
|
258 | - * @since 1.0.10 Calling function name direct will fail theme check so we don't. |
|
259 | - */ |
|
260 | - public function menu_item() { |
|
261 | - $menu_function = 'add' . '_' . 'options' . '_' . 'page'; // won't pass theme check if function name present in theme |
|
262 | - call_user_func( $menu_function, $this->name, $this->name, 'manage_options', 'wp-font-awesome-settings', array( |
|
263 | - $this, |
|
264 | - 'settings_page' |
|
265 | - ) ); |
|
266 | - } |
|
267 | - |
|
268 | - /** |
|
269 | - * Get the current Font Awesome output settings. |
|
270 | - * |
|
271 | - * @return array The array of settings. |
|
272 | - */ |
|
273 | - public function get_settings() { |
|
274 | - |
|
275 | - $db_settings = get_option( 'wp-font-awesome-settings' ); |
|
276 | - |
|
277 | - $defaults = array( |
|
278 | - 'type' => 'CSS', // type to use, CSS or JS or KIT |
|
279 | - 'version' => '', // latest |
|
280 | - 'enqueue' => '', // front and backend |
|
281 | - 'shims' => '1', // default on for now, @todo maybe change to off in 2020 |
|
282 | - 'js-pseudo' => '0', // if the pseudo elements flag should be set (CPU intensive) |
|
283 | - 'dequeue' => '0', // if we should try to remove other versions added by other plugins/themes |
|
284 | - 'pro' => '0', // if pro CDN url should be used |
|
285 | - 'kit-url' => '', // the kit url |
|
286 | - ); |
|
287 | - |
|
288 | - $settings = wp_parse_args( $db_settings, $defaults ); |
|
289 | - |
|
290 | - /** |
|
291 | - * Filter the Font Awesome settings. |
|
292 | - * |
|
293 | - * @todo if we add this filer people might use it and then it defeates the purpose of this class :/ |
|
294 | - */ |
|
295 | - return $this->settings = apply_filters( 'wp-font-awesome-settings', $settings, $db_settings, $defaults ); |
|
296 | - } |
|
297 | - |
|
298 | - |
|
299 | - /** |
|
300 | - * The settings page html output. |
|
301 | - */ |
|
302 | - public function settings_page() { |
|
303 | - if ( ! current_user_can( 'manage_options' ) ) { |
|
304 | - wp_die( __( 'You do not have sufficient permissions to access this page.', 'font-awesome-settings' ) ); |
|
305 | - } |
|
306 | - |
|
307 | - // a hidden way to force the update of the verison number vai api instead of waiting the 48 hours |
|
308 | - if ( isset( $_REQUEST['force-version-check'] ) ) { |
|
309 | - $this->get_latest_version( $force_api = true ); |
|
310 | - } |
|
311 | - ?> |
|
24 | + /** |
|
25 | + * A Class to be able to change settings for Font Awesome. |
|
26 | + * |
|
27 | + * Class WP_Font_Awesome_Settings |
|
28 | + * @since 1.0.10 Now able to pass wp.org theme check. |
|
29 | + * @since 1.0.11 Font Awesome Pro now supported. |
|
30 | + * @since 1.0.11 Font Awesome Kits now supported. |
|
31 | + * @ver 1.0.11 |
|
32 | + * @todo decide how to implement textdomain |
|
33 | + */ |
|
34 | + class WP_Font_Awesome_Settings { |
|
35 | + |
|
36 | + /** |
|
37 | + * Class version version. |
|
38 | + * |
|
39 | + * @var string |
|
40 | + */ |
|
41 | + public $version = '1.0.11'; |
|
42 | + |
|
43 | + /** |
|
44 | + * Class textdomain. |
|
45 | + * |
|
46 | + * @var string |
|
47 | + */ |
|
48 | + public $textdomain = 'font-awesome-settings'; |
|
49 | + |
|
50 | + /** |
|
51 | + * Latest version of Font Awesome at time of publish published. |
|
52 | + * |
|
53 | + * @var string |
|
54 | + */ |
|
55 | + public $latest = "5.8.2"; |
|
56 | + |
|
57 | + /** |
|
58 | + * The title. |
|
59 | + * |
|
60 | + * @var string |
|
61 | + */ |
|
62 | + public $name = 'Font Awesome'; |
|
63 | + |
|
64 | + /** |
|
65 | + * Holds the settings values. |
|
66 | + * |
|
67 | + * @var array |
|
68 | + */ |
|
69 | + private $settings; |
|
70 | + |
|
71 | + /** |
|
72 | + * WP_Font_Awesome_Settings instance. |
|
73 | + * |
|
74 | + * @access private |
|
75 | + * @since 1.0.0 |
|
76 | + * @var WP_Font_Awesome_Settings There can be only one! |
|
77 | + */ |
|
78 | + private static $instance = null; |
|
79 | + |
|
80 | + /** |
|
81 | + * Main WP_Font_Awesome_Settings Instance. |
|
82 | + * |
|
83 | + * Ensures only one instance of WP_Font_Awesome_Settings is loaded or can be loaded. |
|
84 | + * |
|
85 | + * @since 1.0.0 |
|
86 | + * @static |
|
87 | + * @return WP_Font_Awesome_Settings - Main instance. |
|
88 | + */ |
|
89 | + public static function instance() { |
|
90 | + if ( ! isset( self::$instance ) && ! ( self::$instance instanceof WP_Font_Awesome_Settings ) ) { |
|
91 | + self::$instance = new WP_Font_Awesome_Settings; |
|
92 | + |
|
93 | + add_action( 'init', array( self::$instance, 'init' ) ); // set settings |
|
94 | + |
|
95 | + if ( is_admin() ) { |
|
96 | + add_action( 'admin_menu', array( self::$instance, 'menu_item' ) ); |
|
97 | + add_action( 'admin_init', array( self::$instance, 'register_settings' ) ); |
|
98 | + } |
|
99 | + |
|
100 | + do_action( 'wp_font_awesome_settings_loaded' ); |
|
101 | + } |
|
102 | + |
|
103 | + return self::$instance; |
|
104 | + } |
|
105 | + |
|
106 | + /** |
|
107 | + * Initiate the settings and add the required action hooks. |
|
108 | + * |
|
109 | + * @since 1.0.8 Settings name wrong - FIXED |
|
110 | + */ |
|
111 | + public function init() { |
|
112 | + $this->settings = $this->get_settings(); |
|
113 | + |
|
114 | + if ( $this->settings['type'] == 'CSS' ) { |
|
115 | + |
|
116 | + if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'frontend' ) { |
|
117 | + add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ), 5000 ); |
|
118 | + } |
|
119 | + |
|
120 | + if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'backend' ) { |
|
121 | + add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_style' ), 5000 ); |
|
122 | + } |
|
123 | + |
|
124 | + } else { |
|
125 | + |
|
126 | + if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'frontend' ) { |
|
127 | + add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), 5000 ); |
|
128 | + } |
|
129 | + |
|
130 | + if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'backend' ) { |
|
131 | + add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 5000 ); |
|
132 | + } |
|
133 | + } |
|
134 | + |
|
135 | + // remove font awesome if set to do so |
|
136 | + if ( $this->settings['dequeue'] == '1' ) { |
|
137 | + add_action( 'clean_url', array( $this, 'remove_font_awesome' ), 5000, 3 ); |
|
138 | + } |
|
139 | + |
|
140 | + } |
|
141 | + |
|
142 | + /** |
|
143 | + * Adds the Font Awesome styles. |
|
144 | + */ |
|
145 | + public function enqueue_style() { |
|
146 | + // build url |
|
147 | + $url = $this->get_url(); |
|
148 | + |
|
149 | + wp_deregister_style( 'font-awesome' ); // deregister in case its already there |
|
150 | + wp_register_style( 'font-awesome', $url, array(), null ); |
|
151 | + wp_enqueue_style( 'font-awesome' ); |
|
152 | + |
|
153 | + if ( $this->settings['shims'] ) { |
|
154 | + $url = $this->get_url( true ); |
|
155 | + wp_deregister_style( 'font-awesome-shims' ); // deregister in case its already there |
|
156 | + wp_register_style( 'font-awesome-shims', $url, array(), null ); |
|
157 | + wp_enqueue_style( 'font-awesome-shims' ); |
|
158 | + } |
|
159 | + } |
|
160 | + |
|
161 | + /** |
|
162 | + * Adds the Font Awesome JS. |
|
163 | + */ |
|
164 | + public function enqueue_scripts() { |
|
165 | + // build url |
|
166 | + $url = $this->get_url(); |
|
167 | + |
|
168 | + $deregister_function = 'wp' . '_' . 'deregister' . '_' . 'script'; |
|
169 | + call_user_func( $deregister_function, 'font-awesome' ); // deregister in case its already there |
|
170 | + wp_register_script( 'font-awesome', $url, array(), null ); |
|
171 | + wp_enqueue_script( 'font-awesome' ); |
|
172 | + |
|
173 | + if ( $this->settings['shims'] ) { |
|
174 | + $url = $this->get_url( true ); |
|
175 | + call_user_func( $deregister_function, 'font-awesome-shims' ); // deregister in case its already there |
|
176 | + wp_register_script( 'font-awesome-shims', $url, array(), null ); |
|
177 | + wp_enqueue_script( 'font-awesome-shims' ); |
|
178 | + } |
|
179 | + } |
|
180 | + |
|
181 | + /** |
|
182 | + * Get the url of the Font Awesome files. |
|
183 | + * |
|
184 | + * @param bool $shims If this is a shim file or not. |
|
185 | + * |
|
186 | + * @return string The url to the file. |
|
187 | + */ |
|
188 | + public function get_url( $shims = false ) { |
|
189 | + $script = $shims ? 'v4-shims' : 'all'; |
|
190 | + $sub = $this->settings['pro'] ? 'pro' : 'use'; |
|
191 | + $type = $this->settings['type']; |
|
192 | + $version = $this->settings['version']; |
|
193 | + $kit_url = $this->settings['kit-url'] ? esc_url( $this->settings['kit-url'] ) : ''; |
|
194 | + $url = ''; |
|
195 | + |
|
196 | + if ( $type == 'KIT' && $kit_url ) { |
|
197 | + if ( $shims ) { |
|
198 | + // if its a kit then we don't add shims here |
|
199 | + return ''; |
|
200 | + } |
|
201 | + $url .= $kit_url; // CDN |
|
202 | + $url .= "?wpfas=true"; // set our var so our version is not removed |
|
203 | + } else { |
|
204 | + $url .= "https://$sub.fontawesome.com/releases/"; // CDN |
|
205 | + $url .= ! empty( $version ) ? "v" . $version . '/' : "v" . $this->get_latest_version() . '/'; // version |
|
206 | + $url .= $type == 'CSS' ? 'css/' : 'js/'; // type |
|
207 | + $url .= $type == 'CSS' ? $script . '.css' : $script . '.js'; // type |
|
208 | + $url .= "?wpfas=true"; // set our var so our version is not removed |
|
209 | + } |
|
210 | + |
|
211 | + return $url; |
|
212 | + } |
|
213 | + |
|
214 | + /** |
|
215 | + * Try and remove any other versions of Font Awesome added by other plugins/themes. |
|
216 | + * |
|
217 | + * Uses the clean_url filter to try and remove any other Font Awesome files added, it can also add pseudo-elements flag for the JS version. |
|
218 | + * |
|
219 | + * @param $url |
|
220 | + * @param $original_url |
|
221 | + * @param $_context |
|
222 | + * |
|
223 | + * @return string The filtered url. |
|
224 | + */ |
|
225 | + public function remove_font_awesome( $url, $original_url, $_context ) { |
|
226 | + |
|
227 | + if ( $_context == 'display' |
|
228 | + && ( strstr( $url, "fontawesome" ) !== false || strstr( $url, "font-awesome" ) !== false ) |
|
229 | + && ( strstr( $url, ".js" ) !== false || strstr( $url, ".css" ) !== false ) |
|
230 | + ) {// it's a font-awesome-url (probably) |
|
231 | + |
|
232 | + if ( strstr( $url, "wpfas=true" ) !== false ) { |
|
233 | + if ( $this->settings['type'] == 'JS' ) { |
|
234 | + if ( $this->settings['js-pseudo'] ) { |
|
235 | + $url .= "' data-search-pseudo-elements defer='defer"; |
|
236 | + } else { |
|
237 | + $url .= "' defer='defer"; |
|
238 | + } |
|
239 | + } |
|
240 | + } else { |
|
241 | + $url = ''; // removing the url removes the file |
|
242 | + } |
|
243 | + |
|
244 | + } |
|
245 | + |
|
246 | + return $url; |
|
247 | + } |
|
248 | + |
|
249 | + /** |
|
250 | + * Register the database settings with WordPress. |
|
251 | + */ |
|
252 | + public function register_settings() { |
|
253 | + register_setting( 'wp-font-awesome-settings', 'wp-font-awesome-settings' ); |
|
254 | + } |
|
255 | + |
|
256 | + /** |
|
257 | + * Add the WordPress settings menu item. |
|
258 | + * @since 1.0.10 Calling function name direct will fail theme check so we don't. |
|
259 | + */ |
|
260 | + public function menu_item() { |
|
261 | + $menu_function = 'add' . '_' . 'options' . '_' . 'page'; // won't pass theme check if function name present in theme |
|
262 | + call_user_func( $menu_function, $this->name, $this->name, 'manage_options', 'wp-font-awesome-settings', array( |
|
263 | + $this, |
|
264 | + 'settings_page' |
|
265 | + ) ); |
|
266 | + } |
|
267 | + |
|
268 | + /** |
|
269 | + * Get the current Font Awesome output settings. |
|
270 | + * |
|
271 | + * @return array The array of settings. |
|
272 | + */ |
|
273 | + public function get_settings() { |
|
274 | + |
|
275 | + $db_settings = get_option( 'wp-font-awesome-settings' ); |
|
276 | + |
|
277 | + $defaults = array( |
|
278 | + 'type' => 'CSS', // type to use, CSS or JS or KIT |
|
279 | + 'version' => '', // latest |
|
280 | + 'enqueue' => '', // front and backend |
|
281 | + 'shims' => '1', // default on for now, @todo maybe change to off in 2020 |
|
282 | + 'js-pseudo' => '0', // if the pseudo elements flag should be set (CPU intensive) |
|
283 | + 'dequeue' => '0', // if we should try to remove other versions added by other plugins/themes |
|
284 | + 'pro' => '0', // if pro CDN url should be used |
|
285 | + 'kit-url' => '', // the kit url |
|
286 | + ); |
|
287 | + |
|
288 | + $settings = wp_parse_args( $db_settings, $defaults ); |
|
289 | + |
|
290 | + /** |
|
291 | + * Filter the Font Awesome settings. |
|
292 | + * |
|
293 | + * @todo if we add this filer people might use it and then it defeates the purpose of this class :/ |
|
294 | + */ |
|
295 | + return $this->settings = apply_filters( 'wp-font-awesome-settings', $settings, $db_settings, $defaults ); |
|
296 | + } |
|
297 | + |
|
298 | + |
|
299 | + /** |
|
300 | + * The settings page html output. |
|
301 | + */ |
|
302 | + public function settings_page() { |
|
303 | + if ( ! current_user_can( 'manage_options' ) ) { |
|
304 | + wp_die( __( 'You do not have sufficient permissions to access this page.', 'font-awesome-settings' ) ); |
|
305 | + } |
|
306 | + |
|
307 | + // a hidden way to force the update of the verison number vai api instead of waiting the 48 hours |
|
308 | + if ( isset( $_REQUEST['force-version-check'] ) ) { |
|
309 | + $this->get_latest_version( $force_api = true ); |
|
310 | + } |
|
311 | + ?> |
|
312 | 312 | <style> |
313 | 313 | .wpfas-kit-show { |
314 | 314 | display: none; |
@@ -326,10 +326,10 @@ discard block |
||
326 | 326 | <h1><?php echo $this->name; ?></h1> |
327 | 327 | <form method="post" action="options.php"> |
328 | 328 | <?php |
329 | - settings_fields( 'wp-font-awesome-settings' ); |
|
330 | - do_settings_sections( 'wp-font-awesome-settings' ); |
|
331 | - $kit_set = $this->settings['type'] == 'KIT' ? 'wpfas-kit-set' : ''; |
|
332 | - ?> |
|
329 | + settings_fields( 'wp-font-awesome-settings' ); |
|
330 | + do_settings_sections( 'wp-font-awesome-settings' ); |
|
331 | + $kit_set = $this->settings['type'] == 'KIT' ? 'wpfas-kit-set' : ''; |
|
332 | + ?> |
|
333 | 333 | <table class="form-table wpfas-table-settings <?php echo esc_attr( $kit_set ); ?>"> |
334 | 334 | <tr valign="top"> |
335 | 335 | <th scope="row"><label |
@@ -355,12 +355,12 @@ discard block |
||
355 | 355 | value="<?php echo esc_attr( $this->settings['kit-url'] ); ?>" |
356 | 356 | placeholder="https://kit.fontawesome.com/123abc.js"/> |
357 | 357 | <span><?php |
358 | - echo sprintf( |
|
359 | - __( 'Requires a free account with Font Awesome. %sGet kit url%s', 'font-awesome-settings' ), |
|
360 | - '<a rel="noopener noreferrer" target="_blank" href="https://fontawesome.com/kits"><i class="fas fa-external-link-alt"></i>', |
|
361 | - '</a>' |
|
362 | - ); |
|
363 | - ?></span> |
|
358 | + echo sprintf( |
|
359 | + __( 'Requires a free account with Font Awesome. %sGet kit url%s', 'font-awesome-settings' ), |
|
360 | + '<a rel="noopener noreferrer" target="_blank" href="https://fontawesome.com/kits"><i class="fas fa-external-link-alt"></i>', |
|
361 | + '</a>' |
|
362 | + ); |
|
363 | + ?></span> |
|
364 | 364 | </td> |
365 | 365 | </tr> |
366 | 366 | |
@@ -420,14 +420,14 @@ discard block |
||
420 | 420 | <input type="checkbox" name="wp-font-awesome-settings[pro]" |
421 | 421 | value="1" <?php checked( $this->settings['pro'], '1' ); ?> id="wpfas-pro"/> |
422 | 422 | <span><?php |
423 | - echo sprintf( |
|
424 | - __( 'Requires a subscription. %sLearn more%s %sManage my allowed domains%s', 'font-awesome-settings' ), |
|
425 | - '<a rel="noopener noreferrer" target="_blank" href="https://fontawesome.com/pro"><i class="fas fa-external-link-alt"></i>', |
|
426 | - '</a>', |
|
427 | - '<a rel="noopener noreferrer" target="_blank" href="https://fontawesome.com/account/cdn"><i class="fas fa-external-link-alt"></i>', |
|
428 | - '</a>' |
|
429 | - ); |
|
430 | - ?></span> |
|
423 | + echo sprintf( |
|
424 | + __( 'Requires a subscription. %sLearn more%s %sManage my allowed domains%s', 'font-awesome-settings' ), |
|
425 | + '<a rel="noopener noreferrer" target="_blank" href="https://fontawesome.com/pro"><i class="fas fa-external-link-alt"></i>', |
|
426 | + '</a>', |
|
427 | + '<a rel="noopener noreferrer" target="_blank" href="https://fontawesome.com/account/cdn"><i class="fas fa-external-link-alt"></i>', |
|
428 | + '</a>' |
|
429 | + ); |
|
430 | + ?></span> |
|
431 | 431 | </td> |
432 | 432 | </tr> |
433 | 433 | |
@@ -470,88 +470,88 @@ discard block |
||
470 | 470 | |
471 | 471 | </table> |
472 | 472 | <?php |
473 | - submit_button(); |
|
474 | - ?> |
|
473 | + submit_button(); |
|
474 | + ?> |
|
475 | 475 | </form> |
476 | 476 | |
477 | 477 | <div id="wpfas-version"><?php echo $this->version; ?></div> |
478 | 478 | </div> |
479 | 479 | |
480 | 480 | <?php |
481 | - } |
|
482 | - |
|
483 | - /** |
|
484 | - * Check a version number is valid and if so return it or else return an empty string. |
|
485 | - * |
|
486 | - * @param $version string The version number to check. |
|
487 | - * |
|
488 | - * @since 1.0.6 |
|
489 | - * |
|
490 | - * @return string Either a valid version number or an empty string. |
|
491 | - */ |
|
492 | - public function validate_version_number( $version ) { |
|
493 | - |
|
494 | - if ( version_compare( $version, '0.0.1', '>=' ) >= 0 ) { |
|
495 | - // valid |
|
496 | - } else { |
|
497 | - $version = '';// not validated |
|
498 | - } |
|
499 | - |
|
500 | - return $version; |
|
501 | - } |
|
502 | - |
|
503 | - |
|
504 | - /** |
|
505 | - * Get the latest version of Font Awesome. |
|
506 | - * |
|
507 | - * We check for a cached bersion and if none we will check for a live version via API and then cache it for 48 hours. |
|
508 | - * |
|
509 | - * @since 1.0.7 |
|
510 | - * @return mixed|string The latest version number found. |
|
511 | - */ |
|
512 | - public function get_latest_version( $force_api = false ) { |
|
513 | - $latest_version = $this->latest; |
|
514 | - |
|
515 | - $cache = get_transient( 'wp-font-awesome-settings-version' ); |
|
516 | - |
|
517 | - if ( $cache === false || $force_api ) { // its not set |
|
518 | - $api_ver = $this->get_latest_version_from_api(); |
|
519 | - if ( version_compare( $api_ver, $this->latest, '>=' ) >= 0 ) { |
|
520 | - $latest_version = $api_ver; |
|
521 | - set_transient( 'wp-font-awesome-settings-version', $api_ver, 48 * HOUR_IN_SECONDS ); |
|
522 | - } |
|
523 | - } elseif ( $this->validate_version_number( $cache ) ) { |
|
524 | - if ( version_compare( $cache, $this->latest, '>=' ) >= 0 ) { |
|
525 | - $latest_version = $cache; |
|
526 | - } |
|
527 | - } |
|
528 | - |
|
529 | - return $latest_version; |
|
530 | - } |
|
531 | - |
|
532 | - /** |
|
533 | - * Get the latest Font Awesome version from the github API. |
|
534 | - * |
|
535 | - * @since 1.0.7 |
|
536 | - * @return string The latest version number or `0` on API fail. |
|
537 | - */ |
|
538 | - public function get_latest_version_from_api() { |
|
539 | - $version = "0"; |
|
540 | - $response = wp_remote_get( "https://api.github.com/repos/FortAwesome/Font-Awesome/releases/latest" ); |
|
541 | - if ( ! is_wp_error( $response ) && is_array( $response ) ) { |
|
542 | - $api_response = json_decode( wp_remote_retrieve_body( $response ), true ); |
|
543 | - if ( isset( $api_response['tag_name'] ) && version_compare( $api_response['tag_name'], $this->latest, '>=' ) >= 0 && empty( $api_response['prerelease'] ) ) { |
|
544 | - $version = $api_response['tag_name']; |
|
545 | - } |
|
546 | - } |
|
547 | - |
|
548 | - return $version; |
|
549 | - } |
|
550 | - |
|
551 | - } |
|
552 | - |
|
553 | - /** |
|
554 | - * Run the class if found. |
|
555 | - */ |
|
556 | - WP_Font_Awesome_Settings::instance(); |
|
481 | + } |
|
482 | + |
|
483 | + /** |
|
484 | + * Check a version number is valid and if so return it or else return an empty string. |
|
485 | + * |
|
486 | + * @param $version string The version number to check. |
|
487 | + * |
|
488 | + * @since 1.0.6 |
|
489 | + * |
|
490 | + * @return string Either a valid version number or an empty string. |
|
491 | + */ |
|
492 | + public function validate_version_number( $version ) { |
|
493 | + |
|
494 | + if ( version_compare( $version, '0.0.1', '>=' ) >= 0 ) { |
|
495 | + // valid |
|
496 | + } else { |
|
497 | + $version = '';// not validated |
|
498 | + } |
|
499 | + |
|
500 | + return $version; |
|
501 | + } |
|
502 | + |
|
503 | + |
|
504 | + /** |
|
505 | + * Get the latest version of Font Awesome. |
|
506 | + * |
|
507 | + * We check for a cached bersion and if none we will check for a live version via API and then cache it for 48 hours. |
|
508 | + * |
|
509 | + * @since 1.0.7 |
|
510 | + * @return mixed|string The latest version number found. |
|
511 | + */ |
|
512 | + public function get_latest_version( $force_api = false ) { |
|
513 | + $latest_version = $this->latest; |
|
514 | + |
|
515 | + $cache = get_transient( 'wp-font-awesome-settings-version' ); |
|
516 | + |
|
517 | + if ( $cache === false || $force_api ) { // its not set |
|
518 | + $api_ver = $this->get_latest_version_from_api(); |
|
519 | + if ( version_compare( $api_ver, $this->latest, '>=' ) >= 0 ) { |
|
520 | + $latest_version = $api_ver; |
|
521 | + set_transient( 'wp-font-awesome-settings-version', $api_ver, 48 * HOUR_IN_SECONDS ); |
|
522 | + } |
|
523 | + } elseif ( $this->validate_version_number( $cache ) ) { |
|
524 | + if ( version_compare( $cache, $this->latest, '>=' ) >= 0 ) { |
|
525 | + $latest_version = $cache; |
|
526 | + } |
|
527 | + } |
|
528 | + |
|
529 | + return $latest_version; |
|
530 | + } |
|
531 | + |
|
532 | + /** |
|
533 | + * Get the latest Font Awesome version from the github API. |
|
534 | + * |
|
535 | + * @since 1.0.7 |
|
536 | + * @return string The latest version number or `0` on API fail. |
|
537 | + */ |
|
538 | + public function get_latest_version_from_api() { |
|
539 | + $version = "0"; |
|
540 | + $response = wp_remote_get( "https://api.github.com/repos/FortAwesome/Font-Awesome/releases/latest" ); |
|
541 | + if ( ! is_wp_error( $response ) && is_array( $response ) ) { |
|
542 | + $api_response = json_decode( wp_remote_retrieve_body( $response ), true ); |
|
543 | + if ( isset( $api_response['tag_name'] ) && version_compare( $api_response['tag_name'], $this->latest, '>=' ) >= 0 && empty( $api_response['prerelease'] ) ) { |
|
544 | + $version = $api_response['tag_name']; |
|
545 | + } |
|
546 | + } |
|
547 | + |
|
548 | + return $version; |
|
549 | + } |
|
550 | + |
|
551 | + } |
|
552 | + |
|
553 | + /** |
|
554 | + * Run the class if found. |
|
555 | + */ |
|
556 | + WP_Font_Awesome_Settings::instance(); |
|
557 | 557 | } |
558 | 558 | \ No newline at end of file |
@@ -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. |
@@ -87,17 +87,17 @@ discard block |
||
87 | 87 | * @return WP_Font_Awesome_Settings - Main instance. |
88 | 88 | */ |
89 | 89 | public static function instance() { |
90 | - if ( ! isset( self::$instance ) && ! ( self::$instance instanceof WP_Font_Awesome_Settings ) ) { |
|
90 | + if (!isset(self::$instance) && !(self::$instance instanceof WP_Font_Awesome_Settings)) { |
|
91 | 91 | self::$instance = new WP_Font_Awesome_Settings; |
92 | 92 | |
93 | - add_action( 'init', array( self::$instance, 'init' ) ); // set settings |
|
93 | + add_action('init', array(self::$instance, 'init')); // set settings |
|
94 | 94 | |
95 | - if ( is_admin() ) { |
|
96 | - add_action( 'admin_menu', array( self::$instance, 'menu_item' ) ); |
|
97 | - add_action( 'admin_init', array( self::$instance, 'register_settings' ) ); |
|
95 | + if (is_admin()) { |
|
96 | + add_action('admin_menu', array(self::$instance, 'menu_item')); |
|
97 | + add_action('admin_init', array(self::$instance, 'register_settings')); |
|
98 | 98 | } |
99 | 99 | |
100 | - do_action( 'wp_font_awesome_settings_loaded' ); |
|
100 | + do_action('wp_font_awesome_settings_loaded'); |
|
101 | 101 | } |
102 | 102 | |
103 | 103 | return self::$instance; |
@@ -111,30 +111,30 @@ discard block |
||
111 | 111 | public function init() { |
112 | 112 | $this->settings = $this->get_settings(); |
113 | 113 | |
114 | - if ( $this->settings['type'] == 'CSS' ) { |
|
114 | + if ($this->settings['type'] == 'CSS') { |
|
115 | 115 | |
116 | - if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'frontend' ) { |
|
117 | - add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ), 5000 ); |
|
116 | + if ($this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'frontend') { |
|
117 | + add_action('wp_enqueue_scripts', array($this, 'enqueue_style'), 5000); |
|
118 | 118 | } |
119 | 119 | |
120 | - if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'backend' ) { |
|
121 | - add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_style' ), 5000 ); |
|
120 | + if ($this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'backend') { |
|
121 | + add_action('admin_enqueue_scripts', array($this, 'enqueue_style'), 5000); |
|
122 | 122 | } |
123 | 123 | |
124 | 124 | } else { |
125 | 125 | |
126 | - if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'frontend' ) { |
|
127 | - add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), 5000 ); |
|
126 | + if ($this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'frontend') { |
|
127 | + add_action('wp_enqueue_scripts', array($this, 'enqueue_scripts'), 5000); |
|
128 | 128 | } |
129 | 129 | |
130 | - if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'backend' ) { |
|
131 | - add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 5000 ); |
|
130 | + if ($this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'backend') { |
|
131 | + add_action('admin_enqueue_scripts', array($this, 'enqueue_scripts'), 5000); |
|
132 | 132 | } |
133 | 133 | } |
134 | 134 | |
135 | 135 | // remove font awesome if set to do so |
136 | - if ( $this->settings['dequeue'] == '1' ) { |
|
137 | - add_action( 'clean_url', array( $this, 'remove_font_awesome' ), 5000, 3 ); |
|
136 | + if ($this->settings['dequeue'] == '1') { |
|
137 | + add_action('clean_url', array($this, 'remove_font_awesome'), 5000, 3); |
|
138 | 138 | } |
139 | 139 | |
140 | 140 | } |
@@ -146,15 +146,15 @@ discard block |
||
146 | 146 | // build url |
147 | 147 | $url = $this->get_url(); |
148 | 148 | |
149 | - wp_deregister_style( 'font-awesome' ); // deregister in case its already there |
|
150 | - wp_register_style( 'font-awesome', $url, array(), null ); |
|
151 | - wp_enqueue_style( 'font-awesome' ); |
|
149 | + wp_deregister_style('font-awesome'); // deregister in case its already there |
|
150 | + wp_register_style('font-awesome', $url, array(), null); |
|
151 | + wp_enqueue_style('font-awesome'); |
|
152 | 152 | |
153 | - if ( $this->settings['shims'] ) { |
|
154 | - $url = $this->get_url( true ); |
|
155 | - wp_deregister_style( 'font-awesome-shims' ); // deregister in case its already there |
|
156 | - wp_register_style( 'font-awesome-shims', $url, array(), null ); |
|
157 | - wp_enqueue_style( 'font-awesome-shims' ); |
|
153 | + if ($this->settings['shims']) { |
|
154 | + $url = $this->get_url(true); |
|
155 | + wp_deregister_style('font-awesome-shims'); // deregister in case its already there |
|
156 | + wp_register_style('font-awesome-shims', $url, array(), null); |
|
157 | + wp_enqueue_style('font-awesome-shims'); |
|
158 | 158 | } |
159 | 159 | } |
160 | 160 | |
@@ -166,15 +166,15 @@ discard block |
||
166 | 166 | $url = $this->get_url(); |
167 | 167 | |
168 | 168 | $deregister_function = 'wp' . '_' . 'deregister' . '_' . 'script'; |
169 | - call_user_func( $deregister_function, 'font-awesome' ); // deregister in case its already there |
|
170 | - wp_register_script( 'font-awesome', $url, array(), null ); |
|
171 | - wp_enqueue_script( 'font-awesome' ); |
|
172 | - |
|
173 | - if ( $this->settings['shims'] ) { |
|
174 | - $url = $this->get_url( true ); |
|
175 | - call_user_func( $deregister_function, 'font-awesome-shims' ); // deregister in case its already there |
|
176 | - wp_register_script( 'font-awesome-shims', $url, array(), null ); |
|
177 | - wp_enqueue_script( 'font-awesome-shims' ); |
|
169 | + call_user_func($deregister_function, 'font-awesome'); // deregister in case its already there |
|
170 | + wp_register_script('font-awesome', $url, array(), null); |
|
171 | + wp_enqueue_script('font-awesome'); |
|
172 | + |
|
173 | + if ($this->settings['shims']) { |
|
174 | + $url = $this->get_url(true); |
|
175 | + call_user_func($deregister_function, 'font-awesome-shims'); // deregister in case its already there |
|
176 | + wp_register_script('font-awesome-shims', $url, array(), null); |
|
177 | + wp_enqueue_script('font-awesome-shims'); |
|
178 | 178 | } |
179 | 179 | } |
180 | 180 | |
@@ -185,16 +185,16 @@ discard block |
||
185 | 185 | * |
186 | 186 | * @return string The url to the file. |
187 | 187 | */ |
188 | - public function get_url( $shims = false ) { |
|
188 | + public function get_url($shims = false) { |
|
189 | 189 | $script = $shims ? 'v4-shims' : 'all'; |
190 | 190 | $sub = $this->settings['pro'] ? 'pro' : 'use'; |
191 | 191 | $type = $this->settings['type']; |
192 | 192 | $version = $this->settings['version']; |
193 | - $kit_url = $this->settings['kit-url'] ? esc_url( $this->settings['kit-url'] ) : ''; |
|
193 | + $kit_url = $this->settings['kit-url'] ? esc_url($this->settings['kit-url']) : ''; |
|
194 | 194 | $url = ''; |
195 | 195 | |
196 | - if ( $type == 'KIT' && $kit_url ) { |
|
197 | - if ( $shims ) { |
|
196 | + if ($type == 'KIT' && $kit_url) { |
|
197 | + if ($shims) { |
|
198 | 198 | // if its a kit then we don't add shims here |
199 | 199 | return ''; |
200 | 200 | } |
@@ -202,7 +202,7 @@ discard block |
||
202 | 202 | $url .= "?wpfas=true"; // set our var so our version is not removed |
203 | 203 | } else { |
204 | 204 | $url .= "https://$sub.fontawesome.com/releases/"; // CDN |
205 | - $url .= ! empty( $version ) ? "v" . $version . '/' : "v" . $this->get_latest_version() . '/'; // version |
|
205 | + $url .= !empty($version) ? "v" . $version . '/' : "v" . $this->get_latest_version() . '/'; // version |
|
206 | 206 | $url .= $type == 'CSS' ? 'css/' : 'js/'; // type |
207 | 207 | $url .= $type == 'CSS' ? $script . '.css' : $script . '.js'; // type |
208 | 208 | $url .= "?wpfas=true"; // set our var so our version is not removed |
@@ -222,16 +222,16 @@ discard block |
||
222 | 222 | * |
223 | 223 | * @return string The filtered url. |
224 | 224 | */ |
225 | - public function remove_font_awesome( $url, $original_url, $_context ) { |
|
225 | + public function remove_font_awesome($url, $original_url, $_context) { |
|
226 | 226 | |
227 | - if ( $_context == 'display' |
|
228 | - && ( strstr( $url, "fontawesome" ) !== false || strstr( $url, "font-awesome" ) !== false ) |
|
229 | - && ( strstr( $url, ".js" ) !== false || strstr( $url, ".css" ) !== false ) |
|
227 | + if ($_context == 'display' |
|
228 | + && (strstr($url, "fontawesome") !== false || strstr($url, "font-awesome") !== false) |
|
229 | + && (strstr($url, ".js") !== false || strstr($url, ".css") !== false) |
|
230 | 230 | ) {// it's a font-awesome-url (probably) |
231 | 231 | |
232 | - if ( strstr( $url, "wpfas=true" ) !== false ) { |
|
233 | - if ( $this->settings['type'] == 'JS' ) { |
|
234 | - if ( $this->settings['js-pseudo'] ) { |
|
232 | + if (strstr($url, "wpfas=true") !== false) { |
|
233 | + if ($this->settings['type'] == 'JS') { |
|
234 | + if ($this->settings['js-pseudo']) { |
|
235 | 235 | $url .= "' data-search-pseudo-elements defer='defer"; |
236 | 236 | } else { |
237 | 237 | $url .= "' defer='defer"; |
@@ -250,7 +250,7 @@ discard block |
||
250 | 250 | * Register the database settings with WordPress. |
251 | 251 | */ |
252 | 252 | public function register_settings() { |
253 | - register_setting( 'wp-font-awesome-settings', 'wp-font-awesome-settings' ); |
|
253 | + register_setting('wp-font-awesome-settings', 'wp-font-awesome-settings'); |
|
254 | 254 | } |
255 | 255 | |
256 | 256 | /** |
@@ -259,10 +259,10 @@ discard block |
||
259 | 259 | */ |
260 | 260 | public function menu_item() { |
261 | 261 | $menu_function = 'add' . '_' . 'options' . '_' . 'page'; // won't pass theme check if function name present in theme |
262 | - call_user_func( $menu_function, $this->name, $this->name, 'manage_options', 'wp-font-awesome-settings', array( |
|
262 | + call_user_func($menu_function, $this->name, $this->name, 'manage_options', 'wp-font-awesome-settings', array( |
|
263 | 263 | $this, |
264 | 264 | 'settings_page' |
265 | - ) ); |
|
265 | + )); |
|
266 | 266 | } |
267 | 267 | |
268 | 268 | /** |
@@ -272,7 +272,7 @@ discard block |
||
272 | 272 | */ |
273 | 273 | public function get_settings() { |
274 | 274 | |
275 | - $db_settings = get_option( 'wp-font-awesome-settings' ); |
|
275 | + $db_settings = get_option('wp-font-awesome-settings'); |
|
276 | 276 | |
277 | 277 | $defaults = array( |
278 | 278 | 'type' => 'CSS', // type to use, CSS or JS or KIT |
@@ -285,14 +285,14 @@ discard block |
||
285 | 285 | 'kit-url' => '', // the kit url |
286 | 286 | ); |
287 | 287 | |
288 | - $settings = wp_parse_args( $db_settings, $defaults ); |
|
288 | + $settings = wp_parse_args($db_settings, $defaults); |
|
289 | 289 | |
290 | 290 | /** |
291 | 291 | * Filter the Font Awesome settings. |
292 | 292 | * |
293 | 293 | * @todo if we add this filer people might use it and then it defeates the purpose of this class :/ |
294 | 294 | */ |
295 | - return $this->settings = apply_filters( 'wp-font-awesome-settings', $settings, $db_settings, $defaults ); |
|
295 | + return $this->settings = apply_filters('wp-font-awesome-settings', $settings, $db_settings, $defaults); |
|
296 | 296 | } |
297 | 297 | |
298 | 298 | |
@@ -300,13 +300,13 @@ discard block |
||
300 | 300 | * The settings page html output. |
301 | 301 | */ |
302 | 302 | public function settings_page() { |
303 | - if ( ! current_user_can( 'manage_options' ) ) { |
|
304 | - wp_die( __( 'You do not have sufficient permissions to access this page.', 'font-awesome-settings' ) ); |
|
303 | + if (!current_user_can('manage_options')) { |
|
304 | + wp_die(__('You do not have sufficient permissions to access this page.', 'font-awesome-settings')); |
|
305 | 305 | } |
306 | 306 | |
307 | 307 | // a hidden way to force the update of the verison number vai api instead of waiting the 48 hours |
308 | - if ( isset( $_REQUEST['force-version-check'] ) ) { |
|
309 | - $this->get_latest_version( $force_api = true ); |
|
308 | + if (isset($_REQUEST['force-version-check'])) { |
|
309 | + $this->get_latest_version($force_api = true); |
|
310 | 310 | } |
311 | 311 | ?> |
312 | 312 | <style> |
@@ -326,37 +326,37 @@ discard block |
||
326 | 326 | <h1><?php echo $this->name; ?></h1> |
327 | 327 | <form method="post" action="options.php"> |
328 | 328 | <?php |
329 | - settings_fields( 'wp-font-awesome-settings' ); |
|
330 | - do_settings_sections( 'wp-font-awesome-settings' ); |
|
329 | + settings_fields('wp-font-awesome-settings'); |
|
330 | + do_settings_sections('wp-font-awesome-settings'); |
|
331 | 331 | $kit_set = $this->settings['type'] == 'KIT' ? 'wpfas-kit-set' : ''; |
332 | 332 | ?> |
333 | - <table class="form-table wpfas-table-settings <?php echo esc_attr( $kit_set ); ?>"> |
|
333 | + <table class="form-table wpfas-table-settings <?php echo esc_attr($kit_set); ?>"> |
|
334 | 334 | <tr valign="top"> |
335 | 335 | <th scope="row"><label |
336 | - for="wpfas-type"><?php _e( 'Type', 'font-awesome-settings' ); ?></label></th> |
|
336 | + for="wpfas-type"><?php _e('Type', 'font-awesome-settings'); ?></label></th> |
|
337 | 337 | <td> |
338 | 338 | <select name="wp-font-awesome-settings[type]" id="wpfas-type" |
339 | 339 | onchange="if(this.value=='KIT'){jQuery('.wpfas-table-settings').addClass('wpfas-kit-set');}else{jQuery('.wpfas-table-settings').removeClass('wpfas-kit-set');}"> |
340 | 340 | <option |
341 | - value="CSS" <?php selected( $this->settings['type'], 'CSS' ); ?>><?php _e( 'CSS (default)', 'font-awesome-settings' ); ?></option> |
|
342 | - <option value="JS" <?php selected( $this->settings['type'], 'JS' ); ?>>JS</option> |
|
341 | + value="CSS" <?php selected($this->settings['type'], 'CSS'); ?>><?php _e('CSS (default)', 'font-awesome-settings'); ?></option> |
|
342 | + <option value="JS" <?php selected($this->settings['type'], 'JS'); ?>>JS</option> |
|
343 | 343 | <option |
344 | - value="KIT" <?php selected( $this->settings['type'], 'KIT' ); ?>><?php _e( 'Kits (settings managed on fontawesome.com)', 'font-awesome-settings' ); ?></option> |
|
344 | + value="KIT" <?php selected($this->settings['type'], 'KIT'); ?>><?php _e('Kits (settings managed on fontawesome.com)', 'font-awesome-settings'); ?></option> |
|
345 | 345 | </select> |
346 | 346 | </td> |
347 | 347 | </tr> |
348 | 348 | |
349 | 349 | <tr valign="top" class="wpfas-kit-show"> |
350 | 350 | <th scope="row"><label |
351 | - for="wpfas-kit-url"><?php _e( 'Kit URL', 'font-awesome-settings' ); ?></label></th> |
|
351 | + for="wpfas-kit-url"><?php _e('Kit URL', 'font-awesome-settings'); ?></label></th> |
|
352 | 352 | <td> |
353 | 353 | <input class="regular-text" id="wpfas-kit-url" type="url" |
354 | 354 | name="wp-font-awesome-settings[kit-url]" |
355 | - value="<?php echo esc_attr( $this->settings['kit-url'] ); ?>" |
|
355 | + value="<?php echo esc_attr($this->settings['kit-url']); ?>" |
|
356 | 356 | placeholder="https://kit.fontawesome.com/123abc.js"/> |
357 | 357 | <span><?php |
358 | 358 | echo sprintf( |
359 | - __( 'Requires a free account with Font Awesome. %sGet kit url%s', 'font-awesome-settings' ), |
|
359 | + __('Requires a free account with Font Awesome. %sGet kit url%s', 'font-awesome-settings'), |
|
360 | 360 | '<a rel="noopener noreferrer" target="_blank" href="https://fontawesome.com/kits"><i class="fas fa-external-link-alt"></i>', |
361 | 361 | '</a>' |
362 | 362 | ); |
@@ -366,31 +366,31 @@ discard block |
||
366 | 366 | |
367 | 367 | <tr valign="top" class="wpfas-kit-hide"> |
368 | 368 | <th scope="row"><label |
369 | - for="wpfas-version"><?php _e( 'Version', 'font-awesome-settings' ); ?></label></th> |
|
369 | + for="wpfas-version"><?php _e('Version', 'font-awesome-settings'); ?></label></th> |
|
370 | 370 | <td> |
371 | 371 | <select name="wp-font-awesome-settings[version]" id="wpfas-version"> |
372 | 372 | <option |
373 | - value="" <?php selected( $this->settings['version'], '' ); ?>><?php echo sprintf( __( 'Latest - %s (default)', 'font-awesome-settings' ), $this->get_latest_version() ); ?> |
|
373 | + value="" <?php selected($this->settings['version'], ''); ?>><?php echo sprintf(__('Latest - %s (default)', 'font-awesome-settings'), $this->get_latest_version()); ?> |
|
374 | 374 | </option> |
375 | - <option value="5.6.0" <?php selected( $this->settings['version'], '5.6.0' ); ?>> |
|
375 | + <option value="5.6.0" <?php selected($this->settings['version'], '5.6.0'); ?>> |
|
376 | 376 | 5.6.0 |
377 | 377 | </option> |
378 | - <option value="5.5.0" <?php selected( $this->settings['version'], '5.5.0' ); ?>> |
|
378 | + <option value="5.5.0" <?php selected($this->settings['version'], '5.5.0'); ?>> |
|
379 | 379 | 5.5.0 |
380 | 380 | </option> |
381 | - <option value="5.4.0" <?php selected( $this->settings['version'], '5.4.0' ); ?>> |
|
381 | + <option value="5.4.0" <?php selected($this->settings['version'], '5.4.0'); ?>> |
|
382 | 382 | 5.4.0 |
383 | 383 | </option> |
384 | - <option value="5.3.0" <?php selected( $this->settings['version'], '5.3.0' ); ?>> |
|
384 | + <option value="5.3.0" <?php selected($this->settings['version'], '5.3.0'); ?>> |
|
385 | 385 | 5.3.0 |
386 | 386 | </option> |
387 | - <option value="5.2.0" <?php selected( $this->settings['version'], '5.2.0' ); ?>> |
|
387 | + <option value="5.2.0" <?php selected($this->settings['version'], '5.2.0'); ?>> |
|
388 | 388 | 5.2.0 |
389 | 389 | </option> |
390 | - <option value="5.1.0" <?php selected( $this->settings['version'], '5.1.0' ); ?>> |
|
390 | + <option value="5.1.0" <?php selected($this->settings['version'], '5.1.0'); ?>> |
|
391 | 391 | 5.1.0 |
392 | 392 | </option> |
393 | - <option value="4.7.0" <?php selected( $this->settings['version'], '4.7.0' ); ?>> |
|
393 | + <option value="4.7.0" <?php selected($this->settings['version'], '4.7.0'); ?>> |
|
394 | 394 | 4.7.1 (CSS only) |
395 | 395 | </option> |
396 | 396 | </select> |
@@ -399,29 +399,29 @@ discard block |
||
399 | 399 | |
400 | 400 | <tr valign="top"> |
401 | 401 | <th scope="row"><label |
402 | - for="wpfas-enqueue"><?php _e( 'Enqueue', 'font-awesome-settings' ); ?></label></th> |
|
402 | + for="wpfas-enqueue"><?php _e('Enqueue', 'font-awesome-settings'); ?></label></th> |
|
403 | 403 | <td> |
404 | 404 | <select name="wp-font-awesome-settings[enqueue]" id="wpfas-enqueue"> |
405 | 405 | <option |
406 | - value="" <?php selected( $this->settings['enqueue'], '' ); ?>><?php _e( 'Frontend + Backend (default)', 'font-awesome-settings' ); ?></option> |
|
406 | + value="" <?php selected($this->settings['enqueue'], ''); ?>><?php _e('Frontend + Backend (default)', 'font-awesome-settings'); ?></option> |
|
407 | 407 | <option |
408 | - value="frontend" <?php selected( $this->settings['enqueue'], 'frontend' ); ?>><?php _e( 'Frontend', 'font-awesome-settings' ); ?></option> |
|
408 | + value="frontend" <?php selected($this->settings['enqueue'], 'frontend'); ?>><?php _e('Frontend', 'font-awesome-settings'); ?></option> |
|
409 | 409 | <option |
410 | - value="backend" <?php selected( $this->settings['enqueue'], 'backend' ); ?>><?php _e( 'Backend', 'font-awesome-settings' ); ?></option> |
|
410 | + value="backend" <?php selected($this->settings['enqueue'], 'backend'); ?>><?php _e('Backend', 'font-awesome-settings'); ?></option> |
|
411 | 411 | </select> |
412 | 412 | </td> |
413 | 413 | </tr> |
414 | 414 | |
415 | 415 | <tr valign="top" class="wpfas-kit-hide"> |
416 | 416 | <th scope="row"><label |
417 | - for="wpfas-pro"><?php _e( 'Enable pro', 'font-awesome-settings' ); ?></label></th> |
|
417 | + for="wpfas-pro"><?php _e('Enable pro', 'font-awesome-settings'); ?></label></th> |
|
418 | 418 | <td> |
419 | 419 | <input type="hidden" name="wp-font-awesome-settings[pro]" value="0"/> |
420 | 420 | <input type="checkbox" name="wp-font-awesome-settings[pro]" |
421 | - value="1" <?php checked( $this->settings['pro'], '1' ); ?> id="wpfas-pro"/> |
|
421 | + value="1" <?php checked($this->settings['pro'], '1'); ?> id="wpfas-pro"/> |
|
422 | 422 | <span><?php |
423 | 423 | echo sprintf( |
424 | - __( 'Requires a subscription. %sLearn more%s %sManage my allowed domains%s', 'font-awesome-settings' ), |
|
424 | + __('Requires a subscription. %sLearn more%s %sManage my allowed domains%s', 'font-awesome-settings'), |
|
425 | 425 | '<a rel="noopener noreferrer" target="_blank" href="https://fontawesome.com/pro"><i class="fas fa-external-link-alt"></i>', |
426 | 426 | '</a>', |
427 | 427 | '<a rel="noopener noreferrer" target="_blank" href="https://fontawesome.com/account/cdn"><i class="fas fa-external-link-alt"></i>', |
@@ -433,38 +433,38 @@ discard block |
||
433 | 433 | |
434 | 434 | <tr valign="top" class="wpfas-kit-hide"> |
435 | 435 | <th scope="row"><label |
436 | - for="wpfas-shims"><?php _e( 'Enable v4 shims compatibility', 'font-awesome-settings' ); ?></label> |
|
436 | + for="wpfas-shims"><?php _e('Enable v4 shims compatibility', 'font-awesome-settings'); ?></label> |
|
437 | 437 | </th> |
438 | 438 | <td> |
439 | 439 | <input type="hidden" name="wp-font-awesome-settings[shims]" value="0"/> |
440 | 440 | <input type="checkbox" name="wp-font-awesome-settings[shims]" |
441 | - value="1" <?php checked( $this->settings['shims'], '1' ); ?> id="wpfas-shims"/> |
|
442 | - <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> |
|
441 | + value="1" <?php checked($this->settings['shims'], '1'); ?> id="wpfas-shims"/> |
|
442 | + <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> |
|
443 | 443 | </td> |
444 | 444 | </tr> |
445 | 445 | |
446 | 446 | <tr valign="top" class="wpfas-kit-hide"> |
447 | 447 | <th scope="row"><label |
448 | - for="wpfas-js-pseudo"><?php _e( 'Enable JS pseudo elements (not recommended)', 'font-awesome-settings' ); ?></label> |
|
448 | + for="wpfas-js-pseudo"><?php _e('Enable JS pseudo elements (not recommended)', 'font-awesome-settings'); ?></label> |
|
449 | 449 | </th> |
450 | 450 | <td> |
451 | 451 | <input type="hidden" name="wp-font-awesome-settings[js-pseudo]" value="0"/> |
452 | 452 | <input type="checkbox" name="wp-font-awesome-settings[js-pseudo]" |
453 | - value="1" <?php checked( $this->settings['js-pseudo'], '1' ); ?> |
|
453 | + value="1" <?php checked($this->settings['js-pseudo'], '1'); ?> |
|
454 | 454 | id="wpfas-js-pseudo"/> |
455 | - <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> |
|
455 | + <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> |
|
456 | 456 | </td> |
457 | 457 | </tr> |
458 | 458 | |
459 | 459 | <tr valign="top"> |
460 | 460 | <th scope="row"><label |
461 | - for="wpfas-dequeue"><?php _e( 'Dequeue', 'font-awesome-settings' ); ?></label></th> |
|
461 | + for="wpfas-dequeue"><?php _e('Dequeue', 'font-awesome-settings'); ?></label></th> |
|
462 | 462 | <td> |
463 | 463 | <input type="hidden" name="wp-font-awesome-settings[dequeue]" value="0"/> |
464 | 464 | <input type="checkbox" name="wp-font-awesome-settings[dequeue]" |
465 | - value="1" <?php checked( $this->settings['dequeue'], '1' ); ?> |
|
465 | + value="1" <?php checked($this->settings['dequeue'], '1'); ?> |
|
466 | 466 | id="wpfas-dequeue"/> |
467 | - <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> |
|
467 | + <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> |
|
468 | 468 | </td> |
469 | 469 | </tr> |
470 | 470 | |
@@ -489,12 +489,12 @@ discard block |
||
489 | 489 | * |
490 | 490 | * @return string Either a valid version number or an empty string. |
491 | 491 | */ |
492 | - public function validate_version_number( $version ) { |
|
492 | + public function validate_version_number($version) { |
|
493 | 493 | |
494 | - if ( version_compare( $version, '0.0.1', '>=' ) >= 0 ) { |
|
494 | + if (version_compare($version, '0.0.1', '>=') >= 0) { |
|
495 | 495 | // valid |
496 | 496 | } else { |
497 | - $version = '';// not validated |
|
497 | + $version = ''; // not validated |
|
498 | 498 | } |
499 | 499 | |
500 | 500 | return $version; |
@@ -509,19 +509,19 @@ discard block |
||
509 | 509 | * @since 1.0.7 |
510 | 510 | * @return mixed|string The latest version number found. |
511 | 511 | */ |
512 | - public function get_latest_version( $force_api = false ) { |
|
512 | + public function get_latest_version($force_api = false) { |
|
513 | 513 | $latest_version = $this->latest; |
514 | 514 | |
515 | - $cache = get_transient( 'wp-font-awesome-settings-version' ); |
|
515 | + $cache = get_transient('wp-font-awesome-settings-version'); |
|
516 | 516 | |
517 | - if ( $cache === false || $force_api ) { // its not set |
|
517 | + if ($cache === false || $force_api) { // its not set |
|
518 | 518 | $api_ver = $this->get_latest_version_from_api(); |
519 | - if ( version_compare( $api_ver, $this->latest, '>=' ) >= 0 ) { |
|
519 | + if (version_compare($api_ver, $this->latest, '>=') >= 0) { |
|
520 | 520 | $latest_version = $api_ver; |
521 | - set_transient( 'wp-font-awesome-settings-version', $api_ver, 48 * HOUR_IN_SECONDS ); |
|
521 | + set_transient('wp-font-awesome-settings-version', $api_ver, 48 * HOUR_IN_SECONDS); |
|
522 | 522 | } |
523 | - } elseif ( $this->validate_version_number( $cache ) ) { |
|
524 | - if ( version_compare( $cache, $this->latest, '>=' ) >= 0 ) { |
|
523 | + } elseif ($this->validate_version_number($cache)) { |
|
524 | + if (version_compare($cache, $this->latest, '>=') >= 0) { |
|
525 | 525 | $latest_version = $cache; |
526 | 526 | } |
527 | 527 | } |
@@ -537,10 +537,10 @@ discard block |
||
537 | 537 | */ |
538 | 538 | public function get_latest_version_from_api() { |
539 | 539 | $version = "0"; |
540 | - $response = wp_remote_get( "https://api.github.com/repos/FortAwesome/Font-Awesome/releases/latest" ); |
|
541 | - if ( ! is_wp_error( $response ) && is_array( $response ) ) { |
|
542 | - $api_response = json_decode( wp_remote_retrieve_body( $response ), true ); |
|
543 | - if ( isset( $api_response['tag_name'] ) && version_compare( $api_response['tag_name'], $this->latest, '>=' ) >= 0 && empty( $api_response['prerelease'] ) ) { |
|
540 | + $response = wp_remote_get("https://api.github.com/repos/FortAwesome/Font-Awesome/releases/latest"); |
|
541 | + if (!is_wp_error($response) && is_array($response)) { |
|
542 | + $api_response = json_decode(wp_remote_retrieve_body($response), true); |
|
543 | + if (isset($api_response['tag_name']) && version_compare($api_response['tag_name'], $this->latest, '>=') >= 0 && empty($api_response['prerelease'])) { |
|
544 | 544 | $version = $api_response['tag_name']; |
545 | 545 | } |
546 | 546 | } |
@@ -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,24 +1398,24 @@ 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 | |
1415 | 1415 | function wpinv_checkout_validate_invoice_user() { |
1416 | 1416 | global $wpi_cart, $user_ID; |
1417 | 1417 | |
1418 | - if(empty($wpi_cart)){ |
|
1418 | + if (empty($wpi_cart)) { |
|
1419 | 1419 | $wpi_cart = wpinv_get_invoice_cart(); |
1420 | 1420 | } |
1421 | 1421 | |
@@ -1425,45 +1425,45 @@ discard block |
||
1425 | 1425 | ); |
1426 | 1426 | |
1427 | 1427 | // If guest checkout allowed |
1428 | - if ( !wpinv_require_login_to_checkout() ) { |
|
1428 | + if (!wpinv_require_login_to_checkout()) { |
|
1429 | 1429 | return $valid_user_data; |
1430 | 1430 | } |
1431 | 1431 | |
1432 | 1432 | // Verify there is a user_ID |
1433 | - if ( $user_ID == $invoice_user ) { |
|
1433 | + if ($user_ID == $invoice_user) { |
|
1434 | 1434 | // Get the logged in user data |
1435 | - $user_data = get_userdata( $user_ID ); |
|
1436 | - $required_fields = wpinv_checkout_required_fields(); |
|
1435 | + $user_data = get_userdata($user_ID); |
|
1436 | + $required_fields = wpinv_checkout_required_fields(); |
|
1437 | 1437 | |
1438 | 1438 | // Loop through required fields and show error messages |
1439 | - if ( !empty( $required_fields ) ) { |
|
1440 | - foreach ( $required_fields as $field_name => $value ) { |
|
1441 | - if ( in_array( $value, $required_fields ) && empty( $_POST[ 'wpinv_' . $field_name ] ) ) { |
|
1442 | - wpinv_set_error( $value['error_id'], $value['error_message'] ); |
|
1439 | + if (!empty($required_fields)) { |
|
1440 | + foreach ($required_fields as $field_name => $value) { |
|
1441 | + if (in_array($value, $required_fields) && empty($_POST['wpinv_' . $field_name])) { |
|
1442 | + wpinv_set_error($value['error_id'], $value['error_message']); |
|
1443 | 1443 | } |
1444 | 1444 | } |
1445 | 1445 | } |
1446 | 1446 | |
1447 | 1447 | // Verify data |
1448 | - if ( $user_data ) { |
|
1448 | + if ($user_data) { |
|
1449 | 1449 | // Collected logged in user data |
1450 | 1450 | $valid_user_data = array( |
1451 | 1451 | 'user_id' => $user_ID, |
1452 | - 'email' => isset( $_POST['wpinv_email'] ) ? sanitize_email( $_POST['wpinv_email'] ) : $user_data->user_email, |
|
1453 | - 'first_name' => isset( $_POST['wpinv_first_name'] ) && ! empty( $_POST['wpinv_first_name'] ) ? sanitize_text_field( $_POST['wpinv_first_name'] ) : $user_data->first_name, |
|
1454 | - 'last_name' => isset( $_POST['wpinv_last_name'] ) && ! empty( $_POST['wpinv_last_name'] ) ? sanitize_text_field( $_POST['wpinv_last_name'] ) : $user_data->last_name, |
|
1452 | + 'email' => isset($_POST['wpinv_email']) ? sanitize_email($_POST['wpinv_email']) : $user_data->user_email, |
|
1453 | + 'first_name' => isset($_POST['wpinv_first_name']) && !empty($_POST['wpinv_first_name']) ? sanitize_text_field($_POST['wpinv_first_name']) : $user_data->first_name, |
|
1454 | + 'last_name' => isset($_POST['wpinv_last_name']) && !empty($_POST['wpinv_last_name']) ? sanitize_text_field($_POST['wpinv_last_name']) : $user_data->last_name, |
|
1455 | 1455 | ); |
1456 | 1456 | |
1457 | - if ( !empty( $_POST[ 'wpinv_email' ] ) && !is_email( $_POST[ 'wpinv_email' ] ) ) { |
|
1458 | - wpinv_set_error( 'invalid_email', __( 'Please enter a valid email address', 'invoicing' ) ); |
|
1457 | + if (!empty($_POST['wpinv_email']) && !is_email($_POST['wpinv_email'])) { |
|
1458 | + wpinv_set_error('invalid_email', __('Please enter a valid email address', 'invoicing')); |
|
1459 | 1459 | } |
1460 | 1460 | } else { |
1461 | 1461 | // Set invalid user error |
1462 | - wpinv_set_error( 'invalid_user', __( 'The user billing information is invalid', 'invoicing' ) ); |
|
1462 | + wpinv_set_error('invalid_user', __('The user billing information is invalid', 'invoicing')); |
|
1463 | 1463 | } |
1464 | 1464 | } else { |
1465 | 1465 | // Set invalid user error |
1466 | - wpinv_set_error( 'invalid_user_id', __( 'The invalid invoice user id', 'invoicing' ) ); |
|
1466 | + wpinv_set_error('invalid_user_id', __('The invalid invoice user id', 'invoicing')); |
|
1467 | 1467 | } |
1468 | 1468 | |
1469 | 1469 | // Return user data |
@@ -1475,27 +1475,27 @@ discard block |
||
1475 | 1475 | |
1476 | 1476 | $data = array(); |
1477 | 1477 | |
1478 | - if ( is_user_logged_in() ) { |
|
1479 | - if ( !wpinv_require_login_to_checkout() || ( wpinv_require_login_to_checkout() && (int)$wpi_cart->get_user_id() === (int)get_current_user_id() ) ) { |
|
1478 | + if (is_user_logged_in()) { |
|
1479 | + if (!wpinv_require_login_to_checkout() || (wpinv_require_login_to_checkout() && (int)$wpi_cart->get_user_id() === (int)get_current_user_id())) { |
|
1480 | 1480 | $data['user_id'] = (int)get_current_user_id(); |
1481 | 1481 | } else { |
1482 | - wpinv_set_error( 'logged_in_only', __( 'You are not allowed to pay for this invoice', 'invoicing' ) ); |
|
1482 | + wpinv_set_error('logged_in_only', __('You are not allowed to pay for this invoice', 'invoicing')); |
|
1483 | 1483 | } |
1484 | 1484 | } else { |
1485 | 1485 | // If guest checkout allowed |
1486 | - if ( !wpinv_require_login_to_checkout() ) { |
|
1486 | + if (!wpinv_require_login_to_checkout()) { |
|
1487 | 1487 | $data['user_id'] = 0; |
1488 | 1488 | } else { |
1489 | - wpinv_set_error( 'logged_in_only', __( 'You must be logged in to pay for this invoice', 'invoicing' ) ); |
|
1489 | + wpinv_set_error('logged_in_only', __('You must be logged in to pay for this invoice', 'invoicing')); |
|
1490 | 1490 | } |
1491 | 1491 | } |
1492 | 1492 | |
1493 | 1493 | return $data; |
1494 | 1494 | } |
1495 | 1495 | |
1496 | -function wpinv_checkout_form_get_user( $valid_data = array() ) { |
|
1496 | +function wpinv_checkout_form_get_user($valid_data = array()) { |
|
1497 | 1497 | |
1498 | - if ( !empty( $valid_data['current_user']['user_id'] ) ) { |
|
1498 | + if (!empty($valid_data['current_user']['user_id'])) { |
|
1499 | 1499 | $user = $valid_data['current_user']; |
1500 | 1500 | } else { |
1501 | 1501 | // Set the valid invoice user |
@@ -1503,7 +1503,7 @@ discard block |
||
1503 | 1503 | } |
1504 | 1504 | |
1505 | 1505 | // Verify invoice have an user |
1506 | - if ( false === $user || empty( $user ) ) { |
|
1506 | + if (false === $user || empty($user)) { |
|
1507 | 1507 | return false; |
1508 | 1508 | } |
1509 | 1509 | |
@@ -1520,11 +1520,11 @@ discard block |
||
1520 | 1520 | 'zip', |
1521 | 1521 | ); |
1522 | 1522 | |
1523 | - foreach ( $address_fields as $field ) { |
|
1524 | - $user[$field] = !empty( $_POST['wpinv_' . $field] ) ? sanitize_text_field( $_POST['wpinv_' . $field] ) : false; |
|
1523 | + foreach ($address_fields as $field) { |
|
1524 | + $user[$field] = !empty($_POST['wpinv_' . $field]) ? sanitize_text_field($_POST['wpinv_' . $field]) : false; |
|
1525 | 1525 | |
1526 | - if ( !empty( $user['user_id'] ) && !empty( $valid_data['current_user']['user_id'] ) && $valid_data['current_user']['user_id'] == $valid_data['invoice_user']['user_id'] ) { |
|
1527 | - update_user_meta( $user['user_id'], '_wpinv_' . $field, $user[$field] ); |
|
1526 | + if (!empty($user['user_id']) && !empty($valid_data['current_user']['user_id']) && $valid_data['current_user']['user_id'] == $valid_data['invoice_user']['user_id']) { |
|
1527 | + update_user_meta($user['user_id'], '_wpinv_' . $field, $user[$field]); |
|
1528 | 1528 | } |
1529 | 1529 | } |
1530 | 1530 | |
@@ -1532,28 +1532,28 @@ discard block |
||
1532 | 1532 | return $user; |
1533 | 1533 | } |
1534 | 1534 | |
1535 | -function wpinv_set_checkout_session( $invoice_data = array() ) { |
|
1535 | +function wpinv_set_checkout_session($invoice_data = array()) { |
|
1536 | 1536 | global $wpi_session; |
1537 | 1537 | |
1538 | - return $wpi_session->set( 'wpinv_checkout', $invoice_data ); |
|
1538 | + return $wpi_session->set('wpinv_checkout', $invoice_data); |
|
1539 | 1539 | } |
1540 | 1540 | |
1541 | 1541 | function wpinv_get_checkout_session() { |
1542 | 1542 | global $wpi_session; |
1543 | 1543 | |
1544 | - return $wpi_session->get( 'wpinv_checkout' ); |
|
1544 | + return $wpi_session->get('wpinv_checkout'); |
|
1545 | 1545 | } |
1546 | 1546 | |
1547 | 1547 | function wpinv_empty_cart() { |
1548 | 1548 | global $wpi_session; |
1549 | 1549 | |
1550 | 1550 | // Remove cart contents |
1551 | - $wpi_session->set( 'wpinv_checkout', NULL ); |
|
1551 | + $wpi_session->set('wpinv_checkout', NULL); |
|
1552 | 1552 | |
1553 | 1553 | // Remove all cart fees |
1554 | - $wpi_session->set( 'wpi_cart_fees', NULL ); |
|
1554 | + $wpi_session->set('wpi_cart_fees', NULL); |
|
1555 | 1555 | |
1556 | - do_action( 'wpinv_empty_cart' ); |
|
1556 | + do_action('wpinv_empty_cart'); |
|
1557 | 1557 | } |
1558 | 1558 | |
1559 | 1559 | function wpinv_process_checkout() { |
@@ -1562,7 +1562,7 @@ discard block |
||
1562 | 1562 | wpinv_clear_errors(); |
1563 | 1563 | |
1564 | 1564 | $invoice = wpinv_get_invoice_cart(); |
1565 | - if ( empty( $invoice ) ) { |
|
1565 | + if (empty($invoice)) { |
|
1566 | 1566 | return false; |
1567 | 1567 | } |
1568 | 1568 | |
@@ -1570,42 +1570,42 @@ discard block |
||
1570 | 1570 | |
1571 | 1571 | $wpi_checkout_id = $invoice->ID; |
1572 | 1572 | |
1573 | - do_action( 'wpinv_pre_process_checkout' ); |
|
1573 | + do_action('wpinv_pre_process_checkout'); |
|
1574 | 1574 | |
1575 | - if ( !wpinv_get_cart_contents() ) { // Make sure the cart isn't empty |
|
1575 | + if (!wpinv_get_cart_contents()) { // Make sure the cart isn't empty |
|
1576 | 1576 | $valid_data = false; |
1577 | - wpinv_set_error( 'empty_cart', __( 'Your cart is empty', 'invoicing' ) ); |
|
1577 | + wpinv_set_error('empty_cart', __('Your cart is empty', 'invoicing')); |
|
1578 | 1578 | } else { |
1579 | 1579 | // Validate the form $_POST data |
1580 | 1580 | $valid_data = wpinv_validate_checkout_fields(); |
1581 | 1581 | |
1582 | 1582 | // Allow themes and plugins to hook to errors |
1583 | - do_action( 'wpinv_checkout_error_checks', $valid_data, $_POST ); |
|
1583 | + do_action('wpinv_checkout_error_checks', $valid_data, $_POST); |
|
1584 | 1584 | } |
1585 | 1585 | |
1586 | - $is_ajax = defined( 'DOING_AJAX' ) && DOING_AJAX; |
|
1586 | + $is_ajax = defined('DOING_AJAX') && DOING_AJAX; |
|
1587 | 1587 | |
1588 | 1588 | // Validate the user |
1589 | - $user = wpinv_checkout_form_get_user( $valid_data ); |
|
1589 | + $user = wpinv_checkout_form_get_user($valid_data); |
|
1590 | 1590 | |
1591 | 1591 | // Let extensions validate fields after user is logged in if user has used login/registration form |
1592 | - do_action( 'wpinv_checkout_user_error_checks', $user, $valid_data, $_POST ); |
|
1592 | + do_action('wpinv_checkout_user_error_checks', $user, $valid_data, $_POST); |
|
1593 | 1593 | |
1594 | - if ( false === $valid_data || wpinv_get_errors() || ! $user ) { |
|
1595 | - if ( $is_ajax ) { |
|
1596 | - do_action( 'wpinv_ajax_checkout_errors' ); |
|
1594 | + if (false === $valid_data || wpinv_get_errors() || !$user) { |
|
1595 | + if ($is_ajax) { |
|
1596 | + do_action('wpinv_ajax_checkout_errors'); |
|
1597 | 1597 | die(); |
1598 | 1598 | } else { |
1599 | 1599 | return false; |
1600 | 1600 | } |
1601 | 1601 | } |
1602 | 1602 | |
1603 | - if ( $is_ajax ) { |
|
1603 | + if ($is_ajax) { |
|
1604 | 1604 | // Save address fields. |
1605 | - $address_fields = array( 'first_name', 'last_name', 'phone', 'address', 'city', 'country', 'state', 'zip', 'company' ); |
|
1606 | - foreach ( $address_fields as $field ) { |
|
1607 | - if ( isset( $user[$field] ) ) { |
|
1608 | - $invoice->set( $field, $user[$field] ); |
|
1605 | + $address_fields = array('first_name', 'last_name', 'phone', 'address', 'city', 'country', 'state', 'zip', 'company'); |
|
1606 | + foreach ($address_fields as $field) { |
|
1607 | + if (isset($user[$field])) { |
|
1608 | + $invoice->set($field, $user[$field]); |
|
1609 | 1609 | } |
1610 | 1610 | |
1611 | 1611 | $invoice->save(); |
@@ -1613,15 +1613,15 @@ discard block |
||
1613 | 1613 | |
1614 | 1614 | $response['success'] = true; |
1615 | 1615 | $response['data']['subtotal'] = $invoice->get_subtotal(); |
1616 | - $response['data']['subtotalf'] = $invoice->get_subtotal( true ); |
|
1616 | + $response['data']['subtotalf'] = $invoice->get_subtotal(true); |
|
1617 | 1617 | $response['data']['discount'] = $invoice->get_discount(); |
1618 | - $response['data']['discountf'] = $invoice->get_discount( true ); |
|
1618 | + $response['data']['discountf'] = $invoice->get_discount(true); |
|
1619 | 1619 | $response['data']['tax'] = $invoice->get_tax(); |
1620 | - $response['data']['taxf'] = $invoice->get_tax( true ); |
|
1620 | + $response['data']['taxf'] = $invoice->get_tax(true); |
|
1621 | 1621 | $response['data']['total'] = $invoice->get_total(); |
1622 | - $response['data']['totalf'] = $invoice->get_total( true ); |
|
1622 | + $response['data']['totalf'] = $invoice->get_total(true); |
|
1623 | 1623 | |
1624 | - wp_send_json( $response ); |
|
1624 | + wp_send_json($response); |
|
1625 | 1625 | } |
1626 | 1626 | |
1627 | 1627 | $user_info = array( |
@@ -1643,42 +1643,42 @@ discard block |
||
1643 | 1643 | |
1644 | 1644 | // Setup invoice information |
1645 | 1645 | $invoice_data = array( |
1646 | - 'invoice_id' => !empty( $invoice ) ? $invoice->ID : 0, |
|
1646 | + 'invoice_id' => !empty($invoice) ? $invoice->ID : 0, |
|
1647 | 1647 | 'items' => $cart_items, |
1648 | 1648 | 'cart_discounts' => $discounts, |
1649 | - 'fees' => wpinv_get_cart_fees(), // Any arbitrary fees that have been added to the cart |
|
1650 | - 'subtotal' => wpinv_get_cart_subtotal( $cart_items ), // Amount before taxes and discounts |
|
1651 | - 'discount' => wpinv_get_cart_items_discount_amount( $cart_items, $discounts ), // Discounted amount |
|
1652 | - 'tax' => wpinv_get_cart_tax( $cart_items ), // Taxed amount |
|
1653 | - 'price' => wpinv_get_cart_total( $cart_items, $discounts ), // Amount after taxes |
|
1649 | + 'fees' => wpinv_get_cart_fees(), // Any arbitrary fees that have been added to the cart |
|
1650 | + 'subtotal' => wpinv_get_cart_subtotal($cart_items), // Amount before taxes and discounts |
|
1651 | + 'discount' => wpinv_get_cart_items_discount_amount($cart_items, $discounts), // Discounted amount |
|
1652 | + 'tax' => wpinv_get_cart_tax($cart_items), // Taxed amount |
|
1653 | + 'price' => wpinv_get_cart_total($cart_items, $discounts), // Amount after taxes |
|
1654 | 1654 | 'invoice_key' => $invoice->get_key() ? $invoice->get_key() : $invoice->generate_key(), |
1655 | 1655 | 'user_email' => $invoice->get_email(), |
1656 | - 'date' => date( 'Y-m-d H:i:s', current_time( 'timestamp' ) ), |
|
1657 | - 'user_info' => stripslashes_deep( $user_info ), |
|
1656 | + 'date' => date('Y-m-d H:i:s', current_time('timestamp')), |
|
1657 | + 'user_info' => stripslashes_deep($user_info), |
|
1658 | 1658 | 'post_data' => $_POST, |
1659 | 1659 | 'cart_details' => $cart_items, |
1660 | 1660 | 'gateway' => $valid_data['gateway'], |
1661 | 1661 | 'card_info' => $valid_data['cc_info'] |
1662 | 1662 | ); |
1663 | 1663 | |
1664 | - $vat_info = $wpinv_euvat->current_vat_data(); |
|
1665 | - if ( is_array( $vat_info ) ) { |
|
1664 | + $vat_info = $wpinv_euvat->current_vat_data(); |
|
1665 | + if (is_array($vat_info)) { |
|
1666 | 1666 | $invoice_data['user_info']['vat_number'] = $vat_info['number']; |
1667 | 1667 | $invoice_data['user_info']['vat_rate'] = wpinv_get_tax_rate($invoice_data['user_info']['country'], $invoice_data['user_info']['state']); |
1668 | - $invoice_data['user_info']['adddress_confirmed'] = isset($vat_info['adddress_confirmed']) ? $vat_info['adddress_confirmed'] : false; |
|
1668 | + $invoice_data['user_info']['adddress_confirmed'] = isset($vat_info['adddress_confirmed']) ? $vat_info['adddress_confirmed'] : false; |
|
1669 | 1669 | |
1670 | 1670 | // Add the VAT rate to each item in the cart |
1671 | - foreach( $invoice_data['cart_details'] as $key => $item_data) { |
|
1671 | + foreach ($invoice_data['cart_details'] as $key => $item_data) { |
|
1672 | 1672 | $rate = wpinv_get_tax_rate($invoice_data['user_info']['country'], $invoice_data['user_info']['state'], $item_data['id']); |
1673 | - $invoice_data['cart_details'][$key]['vat_rate'] = wpinv_round_amount( $rate, 4 ); |
|
1673 | + $invoice_data['cart_details'][$key]['vat_rate'] = wpinv_round_amount($rate, 4); |
|
1674 | 1674 | } |
1675 | 1675 | } |
1676 | 1676 | |
1677 | 1677 | // Save vat fields. |
1678 | - $address_fields = array( 'vat_number', 'vat_rate', 'adddress_confirmed' ); |
|
1679 | - foreach ( $address_fields as $field ) { |
|
1680 | - if ( isset( $invoice_data['user_info'][$field] ) ) { |
|
1681 | - $invoice->set( $field, $invoice_data['user_info'][$field] ); |
|
1678 | + $address_fields = array('vat_number', 'vat_rate', 'adddress_confirmed'); |
|
1679 | + foreach ($address_fields as $field) { |
|
1680 | + if (isset($invoice_data['user_info'][$field])) { |
|
1681 | + $invoice->set($field, $invoice_data['user_info'][$field]); |
|
1682 | 1682 | } |
1683 | 1683 | |
1684 | 1684 | $invoice->save(); |
@@ -1688,55 +1688,55 @@ discard block |
||
1688 | 1688 | $valid_data['user'] = $user; |
1689 | 1689 | |
1690 | 1690 | // Allow themes and plugins to hook before the gateway |
1691 | - do_action( 'wpinv_checkout_before_gateway', $_POST, $user_info, $valid_data ); |
|
1691 | + do_action('wpinv_checkout_before_gateway', $_POST, $user_info, $valid_data); |
|
1692 | 1692 | |
1693 | 1693 | // If the total amount in the cart is 0, send to the manual gateway. This emulates a free invoice |
1694 | - if ( !$invoice_data['price'] ) { |
|
1694 | + if (!$invoice_data['price']) { |
|
1695 | 1695 | // Revert to manual |
1696 | 1696 | $invoice_data['gateway'] = 'manual'; |
1697 | 1697 | $_POST['wpi-gateway'] = 'manual'; |
1698 | 1698 | } |
1699 | 1699 | |
1700 | 1700 | // Allow the invoice data to be modified before it is sent to the gateway |
1701 | - $invoice_data = apply_filters( 'wpinv_data_before_gateway', $invoice_data, $valid_data ); |
|
1701 | + $invoice_data = apply_filters('wpinv_data_before_gateway', $invoice_data, $valid_data); |
|
1702 | 1702 | |
1703 | - if ( $invoice_data['price'] && $invoice_data['gateway'] == 'manual' ) { |
|
1703 | + if ($invoice_data['price'] && $invoice_data['gateway'] == 'manual') { |
|
1704 | 1704 | $mode = 'test'; |
1705 | 1705 | } else { |
1706 | - $mode = wpinv_is_test_mode( $invoice_data['gateway'] ) ? 'test' : 'live'; |
|
1706 | + $mode = wpinv_is_test_mode($invoice_data['gateway']) ? 'test' : 'live'; |
|
1707 | 1707 | } |
1708 | 1708 | |
1709 | 1709 | // Setup the data we're storing in the purchase session |
1710 | 1710 | $session_data = $invoice_data; |
1711 | 1711 | // Make sure credit card numbers are never stored in sessions |
1712 | - if ( !empty( $session_data['card_info']['card_number'] ) ) { |
|
1713 | - unset( $session_data['card_info']['card_number'] ); |
|
1712 | + if (!empty($session_data['card_info']['card_number'])) { |
|
1713 | + unset($session_data['card_info']['card_number']); |
|
1714 | 1714 | } |
1715 | 1715 | |
1716 | 1716 | // Used for showing item links to non logged-in users after purchase, and for other plugins needing purchase data. |
1717 | - wpinv_set_checkout_session( $invoice_data ); |
|
1717 | + wpinv_set_checkout_session($invoice_data); |
|
1718 | 1718 | |
1719 | 1719 | // Set gateway |
1720 | - $invoice->update_meta( '_wpinv_gateway', $invoice_data['gateway'] ); |
|
1721 | - $invoice->update_meta( '_wpinv_mode', $mode ); |
|
1722 | - $invoice->update_meta( '_wpinv_checkout', date_i18n( 'Y-m-d H:i:s', current_time( 'timestamp' ) ) ); |
|
1720 | + $invoice->update_meta('_wpinv_gateway', $invoice_data['gateway']); |
|
1721 | + $invoice->update_meta('_wpinv_mode', $mode); |
|
1722 | + $invoice->update_meta('_wpinv_checkout', date_i18n('Y-m-d H:i:s', current_time('timestamp'))); |
|
1723 | 1723 | |
1724 | - do_action( 'wpinv_checkout_before_send_to_gateway', $invoice, $invoice_data ); |
|
1724 | + do_action('wpinv_checkout_before_send_to_gateway', $invoice, $invoice_data); |
|
1725 | 1725 | |
1726 | 1726 | // Send info to the gateway for payment processing |
1727 | - wpinv_send_to_gateway( $invoice_data['gateway'], $invoice_data ); |
|
1727 | + wpinv_send_to_gateway($invoice_data['gateway'], $invoice_data); |
|
1728 | 1728 | die(); |
1729 | 1729 | } |
1730 | -add_action( 'wpinv_payment', 'wpinv_process_checkout' ); |
|
1730 | +add_action('wpinv_payment', 'wpinv_process_checkout'); |
|
1731 | 1731 | |
1732 | -function wpinv_get_invoices( $args ) { |
|
1733 | - $args = wp_parse_args( $args, array( |
|
1734 | - 'status' => array_keys( wpinv_get_invoice_statuses() ), |
|
1732 | +function wpinv_get_invoices($args) { |
|
1733 | + $args = wp_parse_args($args, array( |
|
1734 | + 'status' => array_keys(wpinv_get_invoice_statuses()), |
|
1735 | 1735 | 'type' => 'wpi_invoice', |
1736 | 1736 | 'parent' => null, |
1737 | 1737 | 'user' => null, |
1738 | 1738 | 'email' => '', |
1739 | - 'limit' => get_option( 'posts_per_page' ), |
|
1739 | + 'limit' => get_option('posts_per_page'), |
|
1740 | 1740 | 'offset' => null, |
1741 | 1741 | 'page' => 1, |
1742 | 1742 | 'exclude' => array(), |
@@ -1744,7 +1744,7 @@ discard block |
||
1744 | 1744 | 'order' => 'DESC', |
1745 | 1745 | 'return' => 'objects', |
1746 | 1746 | 'paginate' => false, |
1747 | - ) ); |
|
1747 | + )); |
|
1748 | 1748 | |
1749 | 1749 | // Handle some BW compatibility arg names where wp_query args differ in naming. |
1750 | 1750 | $map_legacy = array( |
@@ -1757,18 +1757,18 @@ discard block |
||
1757 | 1757 | 'paged' => 'page', |
1758 | 1758 | ); |
1759 | 1759 | |
1760 | - foreach ( $map_legacy as $from => $to ) { |
|
1761 | - if ( isset( $args[ $from ] ) ) { |
|
1762 | - $args[ $to ] = $args[ $from ]; |
|
1760 | + foreach ($map_legacy as $from => $to) { |
|
1761 | + if (isset($args[$from])) { |
|
1762 | + $args[$to] = $args[$from]; |
|
1763 | 1763 | } |
1764 | 1764 | } |
1765 | 1765 | |
1766 | - if ( get_query_var( 'paged' ) ) |
|
1766 | + if (get_query_var('paged')) |
|
1767 | 1767 | $args['page'] = get_query_var('paged'); |
1768 | - else if ( get_query_var( 'page' ) ) |
|
1769 | - $args['page'] = get_query_var( 'page' ); |
|
1770 | - else if ( !empty( $args[ 'page' ] ) ) |
|
1771 | - $args['page'] = $args[ 'page' ]; |
|
1768 | + else if (get_query_var('page')) |
|
1769 | + $args['page'] = get_query_var('page'); |
|
1770 | + else if (!empty($args['page'])) |
|
1771 | + $args['page'] = $args['page']; |
|
1772 | 1772 | else |
1773 | 1773 | $args['page'] = 1; |
1774 | 1774 | |
@@ -1781,49 +1781,49 @@ discard block |
||
1781 | 1781 | 'post_status' => $args['status'], |
1782 | 1782 | 'posts_per_page' => $args['limit'], |
1783 | 1783 | 'meta_query' => array(), |
1784 | - 'date_query' => !empty( $args['date_query'] ) ? $args['date_query'] : array(), |
|
1784 | + 'date_query' => !empty($args['date_query']) ? $args['date_query'] : array(), |
|
1785 | 1785 | 'fields' => 'ids', |
1786 | 1786 | 'orderby' => $args['orderby'], |
1787 | 1787 | 'order' => $args['order'], |
1788 | 1788 | ); |
1789 | 1789 | |
1790 | - if ( !empty( $args['user'] ) ) { |
|
1791 | - $wp_query_args['author'] = absint( $args['user'] ); |
|
1790 | + if (!empty($args['user'])) { |
|
1791 | + $wp_query_args['author'] = absint($args['user']); |
|
1792 | 1792 | } |
1793 | 1793 | |
1794 | - if ( ! is_null( $args['parent'] ) ) { |
|
1795 | - $wp_query_args['post_parent'] = absint( $args['parent'] ); |
|
1794 | + if (!is_null($args['parent'])) { |
|
1795 | + $wp_query_args['post_parent'] = absint($args['parent']); |
|
1796 | 1796 | } |
1797 | 1797 | |
1798 | - if ( ! is_null( $args['offset'] ) ) { |
|
1799 | - $wp_query_args['offset'] = absint( $args['offset'] ); |
|
1798 | + if (!is_null($args['offset'])) { |
|
1799 | + $wp_query_args['offset'] = absint($args['offset']); |
|
1800 | 1800 | } else { |
1801 | - $wp_query_args['paged'] = absint( $args['page'] ); |
|
1801 | + $wp_query_args['paged'] = absint($args['page']); |
|
1802 | 1802 | } |
1803 | 1803 | |
1804 | - if ( ! empty( $args['exclude'] ) ) { |
|
1805 | - $wp_query_args['post__not_in'] = array_map( 'absint', $args['exclude'] ); |
|
1804 | + if (!empty($args['exclude'])) { |
|
1805 | + $wp_query_args['post__not_in'] = array_map('absint', $args['exclude']); |
|
1806 | 1806 | } |
1807 | 1807 | |
1808 | - if ( ! $args['paginate' ] ) { |
|
1808 | + if (!$args['paginate']) { |
|
1809 | 1809 | $wp_query_args['no_found_rows'] = true; |
1810 | 1810 | } |
1811 | 1811 | |
1812 | 1812 | $wp_query_args = apply_filters('wpinv_get_invoices_args', $wp_query_args, $args); |
1813 | 1813 | |
1814 | 1814 | // Get results. |
1815 | - $invoices = new WP_Query( $wp_query_args ); |
|
1815 | + $invoices = new WP_Query($wp_query_args); |
|
1816 | 1816 | |
1817 | - if ( 'objects' === $args['return'] ) { |
|
1818 | - $return = array_map( 'wpinv_get_invoice', $invoices->posts ); |
|
1819 | - } elseif ( 'self' === $args['return'] ) { |
|
1817 | + if ('objects' === $args['return']) { |
|
1818 | + $return = array_map('wpinv_get_invoice', $invoices->posts); |
|
1819 | + } elseif ('self' === $args['return']) { |
|
1820 | 1820 | return $invoices; |
1821 | 1821 | } else { |
1822 | 1822 | $return = $invoices->posts; |
1823 | 1823 | } |
1824 | 1824 | |
1825 | - if ( $args['paginate' ] ) { |
|
1826 | - return (object) array( |
|
1825 | + if ($args['paginate']) { |
|
1826 | + return (object)array( |
|
1827 | 1827 | 'invoices' => $return, |
1828 | 1828 | 'total' => $invoices->found_posts, |
1829 | 1829 | 'max_num_pages' => $invoices->max_num_pages, |
@@ -1835,22 +1835,22 @@ discard block |
||
1835 | 1835 | |
1836 | 1836 | function wpinv_get_user_invoices_columns() { |
1837 | 1837 | $columns = array( |
1838 | - 'invoice-number' => array( 'title' => __( 'ID', 'invoicing' ), 'class' => 'text-left' ), |
|
1839 | - 'created-date' => array( 'title' => __( 'Created Date', 'invoicing' ), 'class' => 'text-left' ), |
|
1840 | - 'payment-date' => array( 'title' => __( 'Payment Date', 'invoicing' ), 'class' => 'text-left' ), |
|
1841 | - 'invoice-status' => array( 'title' => __( 'Status', 'invoicing' ), 'class' => 'text-center' ), |
|
1842 | - 'invoice-total' => array( 'title' => __( 'Total', 'invoicing' ), 'class' => 'text-right' ), |
|
1843 | - 'invoice-actions' => array( 'title' => ' ', 'class' => 'text-center' ), |
|
1838 | + 'invoice-number' => array('title' => __('ID', 'invoicing'), 'class' => 'text-left'), |
|
1839 | + 'created-date' => array('title' => __('Created Date', 'invoicing'), 'class' => 'text-left'), |
|
1840 | + 'payment-date' => array('title' => __('Payment Date', 'invoicing'), 'class' => 'text-left'), |
|
1841 | + 'invoice-status' => array('title' => __('Status', 'invoicing'), 'class' => 'text-center'), |
|
1842 | + 'invoice-total' => array('title' => __('Total', 'invoicing'), 'class' => 'text-right'), |
|
1843 | + 'invoice-actions' => array('title' => ' ', 'class' => 'text-center'), |
|
1844 | 1844 | ); |
1845 | 1845 | |
1846 | - return apply_filters( 'wpinv_user_invoices_columns', $columns ); |
|
1846 | + return apply_filters('wpinv_user_invoices_columns', $columns); |
|
1847 | 1847 | } |
1848 | 1848 | |
1849 | -function wpinv_payment_receipt( $atts, $content = null ) { |
|
1849 | +function wpinv_payment_receipt($atts, $content = null) { |
|
1850 | 1850 | global $wpinv_receipt_args; |
1851 | 1851 | |
1852 | - $wpinv_receipt_args = shortcode_atts( array( |
|
1853 | - 'error' => __( 'Sorry, trouble retrieving payment receipt.', 'invoicing' ), |
|
1852 | + $wpinv_receipt_args = shortcode_atts(array( |
|
1853 | + 'error' => __('Sorry, trouble retrieving payment receipt.', 'invoicing'), |
|
1854 | 1854 | 'price' => true, |
1855 | 1855 | 'discount' => true, |
1856 | 1856 | 'items' => true, |
@@ -1859,195 +1859,195 @@ discard block |
||
1859 | 1859 | 'invoice_key' => false, |
1860 | 1860 | 'payment_method' => true, |
1861 | 1861 | 'invoice_id' => true |
1862 | - ), $atts, 'wpinv_receipt' ); |
|
1862 | + ), $atts, 'wpinv_receipt'); |
|
1863 | 1863 | |
1864 | 1864 | $session = wpinv_get_checkout_session(); |
1865 | - if ( isset( $_GET['invoice_key'] ) ) { |
|
1866 | - $invoice_key = urldecode( $_GET['invoice_key'] ); |
|
1867 | - } else if ( $session && isset( $session['invoice_key'] ) ) { |
|
1865 | + if (isset($_GET['invoice_key'])) { |
|
1866 | + $invoice_key = urldecode($_GET['invoice_key']); |
|
1867 | + } else if ($session && isset($session['invoice_key'])) { |
|
1868 | 1868 | $invoice_key = $session['invoice_key']; |
1869 | - } elseif ( isset( $wpinv_receipt_args['invoice_key'] ) && $wpinv_receipt_args['invoice_key'] ) { |
|
1869 | + } elseif (isset($wpinv_receipt_args['invoice_key']) && $wpinv_receipt_args['invoice_key']) { |
|
1870 | 1870 | $invoice_key = $wpinv_receipt_args['invoice_key']; |
1871 | - } else if ( isset( $_GET['invoice-id'] ) ) { |
|
1872 | - $invoice_key = wpinv_get_payment_key( (int)$_GET['invoice-id'] ); |
|
1871 | + } else if (isset($_GET['invoice-id'])) { |
|
1872 | + $invoice_key = wpinv_get_payment_key((int)$_GET['invoice-id']); |
|
1873 | 1873 | } |
1874 | 1874 | |
1875 | 1875 | // No key found |
1876 | - if ( ! isset( $invoice_key ) ) { |
|
1876 | + if (!isset($invoice_key)) { |
|
1877 | 1877 | return '<p class="alert alert-error">' . $wpinv_receipt_args['error'] . '</p>'; |
1878 | 1878 | } |
1879 | 1879 | |
1880 | - $invoice_id = wpinv_get_invoice_id_by_key( $invoice_key ); |
|
1881 | - $user_can_view = wpinv_can_view_receipt( $invoice_key ); |
|
1882 | - if ( $user_can_view && isset( $_GET['invoice-id'] ) ) { |
|
1880 | + $invoice_id = wpinv_get_invoice_id_by_key($invoice_key); |
|
1881 | + $user_can_view = wpinv_can_view_receipt($invoice_key); |
|
1882 | + if ($user_can_view && isset($_GET['invoice-id'])) { |
|
1883 | 1883 | $invoice_id = (int)$_GET['invoice-id']; |
1884 | - $user_can_view = $invoice_key == wpinv_get_payment_key( (int)$_GET['invoice-id'] ) ? true : false; |
|
1884 | + $user_can_view = $invoice_key == wpinv_get_payment_key((int)$_GET['invoice-id']) ? true : false; |
|
1885 | 1885 | } |
1886 | 1886 | |
1887 | 1887 | // Key was provided, but user is logged out. Offer them the ability to login and view the receipt |
1888 | - if ( ! $user_can_view && ! empty( $invoice_key ) && ! is_user_logged_in() ) { |
|
1888 | + if (!$user_can_view && !empty($invoice_key) && !is_user_logged_in()) { |
|
1889 | 1889 | // login redirect |
1890 | - return '<p class="alert alert-error">' . __( 'You are not allowed to access this section', 'invoicing' ) . '</p>'; |
|
1890 | + return '<p class="alert alert-error">' . __('You are not allowed to access this section', 'invoicing') . '</p>'; |
|
1891 | 1891 | } |
1892 | 1892 | |
1893 | - if ( ! apply_filters( 'wpinv_user_can_view_receipt', $user_can_view, $wpinv_receipt_args ) ) { |
|
1893 | + if (!apply_filters('wpinv_user_can_view_receipt', $user_can_view, $wpinv_receipt_args)) { |
|
1894 | 1894 | return '<p class="alert alert-error">' . $wpinv_receipt_args['error'] . '</p>'; |
1895 | 1895 | } |
1896 | 1896 | |
1897 | 1897 | ob_start(); |
1898 | 1898 | |
1899 | - wpinv_get_template_part( 'wpinv-invoice-receipt' ); |
|
1899 | + wpinv_get_template_part('wpinv-invoice-receipt'); |
|
1900 | 1900 | |
1901 | 1901 | $display = ob_get_clean(); |
1902 | 1902 | |
1903 | 1903 | return $display; |
1904 | 1904 | } |
1905 | 1905 | |
1906 | -function wpinv_get_invoice_id_by_key( $key ) { |
|
1906 | +function wpinv_get_invoice_id_by_key($key) { |
|
1907 | 1907 | global $wpdb; |
1908 | 1908 | |
1909 | - $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 ) ); |
|
1909 | + $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)); |
|
1910 | 1910 | |
1911 | - if ( $invoice_id != NULL ) |
|
1911 | + if ($invoice_id != NULL) |
|
1912 | 1912 | return $invoice_id; |
1913 | 1913 | |
1914 | 1914 | return 0; |
1915 | 1915 | } |
1916 | 1916 | |
1917 | -function wpinv_can_view_receipt( $invoice_key = '' ) { |
|
1917 | +function wpinv_can_view_receipt($invoice_key = '') { |
|
1918 | 1918 | $return = false; |
1919 | 1919 | |
1920 | - if ( empty( $invoice_key ) ) { |
|
1920 | + if (empty($invoice_key)) { |
|
1921 | 1921 | return $return; |
1922 | 1922 | } |
1923 | 1923 | |
1924 | 1924 | global $wpinv_receipt_args; |
1925 | 1925 | |
1926 | - $wpinv_receipt_args['id'] = wpinv_get_invoice_id_by_key( $invoice_key ); |
|
1927 | - if ( isset( $_GET['invoice-id'] ) ) { |
|
1928 | - $wpinv_receipt_args['id'] = $invoice_key == wpinv_get_payment_key( (int)$_GET['invoice-id'] ) ? (int)$_GET['invoice-id'] : 0; |
|
1926 | + $wpinv_receipt_args['id'] = wpinv_get_invoice_id_by_key($invoice_key); |
|
1927 | + if (isset($_GET['invoice-id'])) { |
|
1928 | + $wpinv_receipt_args['id'] = $invoice_key == wpinv_get_payment_key((int)$_GET['invoice-id']) ? (int)$_GET['invoice-id'] : 0; |
|
1929 | 1929 | } |
1930 | 1930 | |
1931 | - if ( empty( $wpinv_receipt_args['id'] ) ) { |
|
1931 | + if (empty($wpinv_receipt_args['id'])) { |
|
1932 | 1932 | return $return; |
1933 | 1933 | } |
1934 | 1934 | |
1935 | - $invoice = wpinv_get_invoice( $wpinv_receipt_args['id'] ); |
|
1936 | - if ( !( !empty( $invoice->ID ) && $invoice->get_key() === $invoice_key ) ) { |
|
1935 | + $invoice = wpinv_get_invoice($wpinv_receipt_args['id']); |
|
1936 | + if (!(!empty($invoice->ID) && $invoice->get_key() === $invoice_key)) { |
|
1937 | 1937 | return $return; |
1938 | 1938 | } |
1939 | 1939 | |
1940 | - if ( is_user_logged_in() ) { |
|
1941 | - if ( (int)$invoice->get_user_id() === (int) get_current_user_id() ) { |
|
1940 | + if (is_user_logged_in()) { |
|
1941 | + if ((int)$invoice->get_user_id() === (int)get_current_user_id()) { |
|
1942 | 1942 | $return = true; |
1943 | 1943 | } |
1944 | 1944 | } |
1945 | 1945 | |
1946 | 1946 | $session = wpinv_get_checkout_session(); |
1947 | - if ( isset( $_GET['invoice_key'] ) || ( $session && isset( $session['invoice_key'] ) ) ) { |
|
1948 | - $check_key = isset( $_GET['invoice_key'] ) ? $_GET['invoice_key'] : $session['invoice_key']; |
|
1947 | + if (isset($_GET['invoice_key']) || ($session && isset($session['invoice_key']))) { |
|
1948 | + $check_key = isset($_GET['invoice_key']) ? $_GET['invoice_key'] : $session['invoice_key']; |
|
1949 | 1949 | |
1950 | - if ( wpinv_require_login_to_checkout() ) { |
|
1950 | + if (wpinv_require_login_to_checkout()) { |
|
1951 | 1951 | $return = $return && $check_key === $invoice_key; |
1952 | 1952 | } else { |
1953 | 1953 | $return = $check_key === $invoice_key; |
1954 | 1954 | } |
1955 | 1955 | } |
1956 | 1956 | |
1957 | - return (bool) apply_filters( 'wpinv_can_view_receipt', $return, $invoice_key ); |
|
1957 | + return (bool)apply_filters('wpinv_can_view_receipt', $return, $invoice_key); |
|
1958 | 1958 | } |
1959 | 1959 | |
1960 | 1960 | function wpinv_pay_for_invoice() { |
1961 | 1961 | global $wpinv_euvat; |
1962 | 1962 | |
1963 | - if ( isset( $_GET['invoice_key'] ) ) { |
|
1963 | + if (isset($_GET['invoice_key'])) { |
|
1964 | 1964 | $checkout_uri = wpinv_get_checkout_uri(); |
1965 | - $invoice_key = sanitize_text_field( $_GET['invoice_key'] ); |
|
1965 | + $invoice_key = sanitize_text_field($_GET['invoice_key']); |
|
1966 | 1966 | |
1967 | - if ( empty( $invoice_key ) ) { |
|
1968 | - wpinv_set_error( 'invalid_invoice', __( 'Invoice not found', 'invoicing' ) ); |
|
1969 | - wp_redirect( $checkout_uri ); |
|
1967 | + if (empty($invoice_key)) { |
|
1968 | + wpinv_set_error('invalid_invoice', __('Invoice not found', 'invoicing')); |
|
1969 | + wp_redirect($checkout_uri); |
|
1970 | 1970 | wpinv_die(); |
1971 | 1971 | } |
1972 | 1972 | |
1973 | - do_action( 'wpinv_check_pay_for_invoice', $invoice_key ); |
|
1973 | + do_action('wpinv_check_pay_for_invoice', $invoice_key); |
|
1974 | 1974 | |
1975 | - $invoice_id = wpinv_get_invoice_id_by_key( $invoice_key ); |
|
1976 | - $user_can_view = wpinv_can_view_receipt( $invoice_key ); |
|
1977 | - if ( $user_can_view && isset( $_GET['invoice-id'] ) ) { |
|
1975 | + $invoice_id = wpinv_get_invoice_id_by_key($invoice_key); |
|
1976 | + $user_can_view = wpinv_can_view_receipt($invoice_key); |
|
1977 | + if ($user_can_view && isset($_GET['invoice-id'])) { |
|
1978 | 1978 | $invoice_id = (int)$_GET['invoice-id']; |
1979 | - $user_can_view = $invoice_key == wpinv_get_payment_key( (int)$_GET['invoice-id'] ) ? true : false; |
|
1979 | + $user_can_view = $invoice_key == wpinv_get_payment_key((int)$_GET['invoice-id']) ? true : false; |
|
1980 | 1980 | } |
1981 | 1981 | |
1982 | - if ( $invoice_id && $user_can_view && ( $invoice = wpinv_get_invoice( $invoice_id ) ) ) { |
|
1983 | - if ( $invoice->needs_payment() ) { |
|
1982 | + if ($invoice_id && $user_can_view && ($invoice = wpinv_get_invoice($invoice_id))) { |
|
1983 | + if ($invoice->needs_payment()) { |
|
1984 | 1984 | $data = array(); |
1985 | 1985 | $data['invoice_id'] = $invoice_id; |
1986 | - $data['cart_discounts'] = $invoice->get_discounts( true ); |
|
1986 | + $data['cart_discounts'] = $invoice->get_discounts(true); |
|
1987 | 1987 | |
1988 | - wpinv_set_checkout_session( $data ); |
|
1988 | + wpinv_set_checkout_session($data); |
|
1989 | 1989 | |
1990 | - if ( wpinv_get_option( 'vat_ip_country_default' ) ) { |
|
1990 | + if (wpinv_get_option('vat_ip_country_default')) { |
|
1991 | 1991 | $_POST['country'] = $wpinv_euvat->get_country_by_ip(); |
1992 | 1992 | $_POST['state'] = $_POST['country'] == $invoice->country ? $invoice->state : ''; |
1993 | 1993 | |
1994 | - wpinv_recalculate_tax( true ); |
|
1994 | + wpinv_recalculate_tax(true); |
|
1995 | 1995 | } |
1996 | 1996 | |
1997 | 1997 | } else { |
1998 | 1998 | $checkout_uri = $invoice->get_view_url(); |
1999 | 1999 | } |
2000 | 2000 | } else { |
2001 | - wpinv_set_error( 'invalid_invoice', __( 'You are not allowed to view this invoice', 'invoicing' ) ); |
|
2001 | + wpinv_set_error('invalid_invoice', __('You are not allowed to view this invoice', 'invoicing')); |
|
2002 | 2002 | |
2003 | - $checkout_uri = is_user_logged_in() ? wpinv_get_history_page_uri() : wp_login_url( get_permalink() ); |
|
2003 | + $checkout_uri = is_user_logged_in() ? wpinv_get_history_page_uri() : wp_login_url(get_permalink()); |
|
2004 | 2004 | } |
2005 | 2005 | |
2006 | - wp_redirect( $checkout_uri ); |
|
2006 | + wp_redirect($checkout_uri); |
|
2007 | 2007 | wpinv_die(); |
2008 | 2008 | } |
2009 | 2009 | } |
2010 | -add_action( 'wpinv_pay_for_invoice', 'wpinv_pay_for_invoice' ); |
|
2010 | +add_action('wpinv_pay_for_invoice', 'wpinv_pay_for_invoice'); |
|
2011 | 2011 | |
2012 | -function wpinv_handle_pay_via_invoice_link( $invoice_key ) { |
|
2013 | - if ( !empty( $invoice_key ) && !empty( $_REQUEST['_wpipay'] ) && !is_user_logged_in() && $invoice_id = wpinv_get_invoice_id_by_key( $invoice_key ) ) { |
|
2014 | - if ( $invoice = wpinv_get_invoice( $invoice_id ) ) { |
|
2012 | +function wpinv_handle_pay_via_invoice_link($invoice_key) { |
|
2013 | + if (!empty($invoice_key) && !empty($_REQUEST['_wpipay']) && !is_user_logged_in() && $invoice_id = wpinv_get_invoice_id_by_key($invoice_key)) { |
|
2014 | + if ($invoice = wpinv_get_invoice($invoice_id)) { |
|
2015 | 2015 | $user_id = $invoice->get_user_id(); |
2016 | - $secret = sanitize_text_field( $_GET['_wpipay'] ); |
|
2016 | + $secret = sanitize_text_field($_GET['_wpipay']); |
|
2017 | 2017 | |
2018 | - if ( $secret === md5( $user_id . '::' . $invoice->get_email() . '::' . $invoice_key ) ) { // valid invoice link |
|
2019 | - $redirect_to = remove_query_arg( '_wpipay', get_permalink() ); |
|
2018 | + if ($secret === md5($user_id . '::' . $invoice->get_email() . '::' . $invoice_key)) { // valid invoice link |
|
2019 | + $redirect_to = remove_query_arg('_wpipay', get_permalink()); |
|
2020 | 2020 | |
2021 | - wpinv_guest_redirect( $redirect_to, $user_id ); |
|
2021 | + wpinv_guest_redirect($redirect_to, $user_id); |
|
2022 | 2022 | wpinv_die(); |
2023 | 2023 | } |
2024 | 2024 | } |
2025 | 2025 | } |
2026 | 2026 | } |
2027 | -add_action( 'wpinv_check_pay_for_invoice', 'wpinv_handle_pay_via_invoice_link' ); |
|
2027 | +add_action('wpinv_check_pay_for_invoice', 'wpinv_handle_pay_via_invoice_link'); |
|
2028 | 2028 | |
2029 | -function wpinv_set_payment_transaction_id( $invoice_id = 0, $transaction_id = '' ) { |
|
2030 | - $invoice_id = is_object( $invoice_id ) && !empty( $invoice_id->ID ) ? $invoice_id : $invoice_id; |
|
2029 | +function wpinv_set_payment_transaction_id($invoice_id = 0, $transaction_id = '') { |
|
2030 | + $invoice_id = is_object($invoice_id) && !empty($invoice_id->ID) ? $invoice_id : $invoice_id; |
|
2031 | 2031 | |
2032 | - if ( empty( $invoice_id ) && $invoice_id > 0 ) { |
|
2032 | + if (empty($invoice_id) && $invoice_id > 0) { |
|
2033 | 2033 | return false; |
2034 | 2034 | } |
2035 | 2035 | |
2036 | - if ( empty( $transaction_id ) ) { |
|
2036 | + if (empty($transaction_id)) { |
|
2037 | 2037 | $transaction_id = $invoice_id; |
2038 | 2038 | } |
2039 | 2039 | |
2040 | - $transaction_id = apply_filters( 'wpinv_set_payment_transaction_id', $transaction_id, $invoice_id ); |
|
2040 | + $transaction_id = apply_filters('wpinv_set_payment_transaction_id', $transaction_id, $invoice_id); |
|
2041 | 2041 | |
2042 | - return wpinv_update_invoice_meta( $invoice_id, '_wpinv_transaction_id', $transaction_id ); |
|
2042 | + return wpinv_update_invoice_meta($invoice_id, '_wpinv_transaction_id', $transaction_id); |
|
2043 | 2043 | } |
2044 | 2044 | |
2045 | -function wpinv_invoice_status_label( $status, $status_display = '' ) { |
|
2046 | - if ( empty( $status_display ) ) { |
|
2047 | - $status_display = wpinv_status_nicename( $status ); |
|
2045 | +function wpinv_invoice_status_label($status, $status_display = '') { |
|
2046 | + if (empty($status_display)) { |
|
2047 | + $status_display = wpinv_status_nicename($status); |
|
2048 | 2048 | } |
2049 | 2049 | |
2050 | - switch ( $status ) { |
|
2050 | + switch ($status) { |
|
2051 | 2051 | case 'publish' : |
2052 | 2052 | case 'wpi-renewal' : |
2053 | 2053 | $class = 'label-success'; |
@@ -2072,257 +2072,257 @@ discard block |
||
2072 | 2072 | |
2073 | 2073 | $label = '<span class="label label-inv-' . $status . ' ' . $class . '">' . $status_display . '</span>'; |
2074 | 2074 | |
2075 | - return apply_filters( 'wpinv_invoice_status_label', $label, $status, $status_display ); |
|
2075 | + return apply_filters('wpinv_invoice_status_label', $label, $status, $status_display); |
|
2076 | 2076 | } |
2077 | 2077 | |
2078 | -function wpinv_format_invoice_number( $number, $type = '' ) { |
|
2079 | - $check = apply_filters( 'wpinv_pre_format_invoice_number', null, $number, $type ); |
|
2080 | - if ( null !== $check ) { |
|
2078 | +function wpinv_format_invoice_number($number, $type = '') { |
|
2079 | + $check = apply_filters('wpinv_pre_format_invoice_number', null, $number, $type); |
|
2080 | + if (null !== $check) { |
|
2081 | 2081 | return $check; |
2082 | 2082 | } |
2083 | 2083 | |
2084 | - if ( !empty( $number ) && !is_numeric( $number ) ) { |
|
2084 | + if (!empty($number) && !is_numeric($number)) { |
|
2085 | 2085 | return $number; |
2086 | 2086 | } |
2087 | 2087 | |
2088 | - $padd = wpinv_get_option( 'invoice_number_padd' ); |
|
2089 | - $prefix = wpinv_get_option( 'invoice_number_prefix' ); |
|
2090 | - $postfix = wpinv_get_option( 'invoice_number_postfix' ); |
|
2088 | + $padd = wpinv_get_option('invoice_number_padd'); |
|
2089 | + $prefix = wpinv_get_option('invoice_number_prefix'); |
|
2090 | + $postfix = wpinv_get_option('invoice_number_postfix'); |
|
2091 | 2091 | |
2092 | - $padd = absint( $padd ); |
|
2093 | - $formatted_number = absint( $number ); |
|
2092 | + $padd = absint($padd); |
|
2093 | + $formatted_number = absint($number); |
|
2094 | 2094 | |
2095 | - if ( $padd > 0 ) { |
|
2096 | - $formatted_number = zeroise( $formatted_number, $padd ); |
|
2095 | + if ($padd > 0) { |
|
2096 | + $formatted_number = zeroise($formatted_number, $padd); |
|
2097 | 2097 | } |
2098 | 2098 | |
2099 | 2099 | $formatted_number = $prefix . $formatted_number . $postfix; |
2100 | 2100 | |
2101 | - return apply_filters( 'wpinv_format_invoice_number', $formatted_number, $number, $prefix, $postfix, $padd ); |
|
2101 | + return apply_filters('wpinv_format_invoice_number', $formatted_number, $number, $prefix, $postfix, $padd); |
|
2102 | 2102 | } |
2103 | 2103 | |
2104 | -function wpinv_get_next_invoice_number( $type = '' ) { |
|
2105 | - $check = apply_filters( 'wpinv_get_pre_next_invoice_number', null, $type ); |
|
2106 | - if ( null !== $check ) { |
|
2104 | +function wpinv_get_next_invoice_number($type = '') { |
|
2105 | + $check = apply_filters('wpinv_get_pre_next_invoice_number', null, $type); |
|
2106 | + if (null !== $check) { |
|
2107 | 2107 | return $check; |
2108 | 2108 | } |
2109 | 2109 | |
2110 | - if ( !wpinv_sequential_number_active() ) { |
|
2110 | + if (!wpinv_sequential_number_active()) { |
|
2111 | 2111 | return false; |
2112 | 2112 | } |
2113 | 2113 | |
2114 | - $number = $last_number = get_option( 'wpinv_last_invoice_number', 0 ); |
|
2115 | - $start = wpinv_get_option( 'invoice_sequence_start', 1 ); |
|
2116 | - if ( !absint( $start ) > 0 ) { |
|
2114 | + $number = $last_number = get_option('wpinv_last_invoice_number', 0); |
|
2115 | + $start = wpinv_get_option('invoice_sequence_start', 1); |
|
2116 | + if (!absint($start) > 0) { |
|
2117 | 2117 | $start = 1; |
2118 | 2118 | } |
2119 | 2119 | $increment_number = true; |
2120 | 2120 | $save_number = false; |
2121 | 2121 | |
2122 | - if ( !empty( $number ) && !is_numeric( $number ) && $number == wpinv_format_invoice_number( $number ) ) { |
|
2123 | - $number = wpinv_clean_invoice_number( $number ); |
|
2122 | + if (!empty($number) && !is_numeric($number) && $number == wpinv_format_invoice_number($number)) { |
|
2123 | + $number = wpinv_clean_invoice_number($number); |
|
2124 | 2124 | } |
2125 | 2125 | |
2126 | - if ( empty( $number ) ) { |
|
2127 | - if ( !( $last_number === 0 || $last_number === '0' ) ) { |
|
2128 | - $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 ) ) ) ); |
|
2126 | + if (empty($number)) { |
|
2127 | + if (!($last_number === 0 || $last_number === '0')) { |
|
2128 | + $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)))); |
|
2129 | 2129 | |
2130 | - if ( !empty( $last_invoice[0] ) && $invoice_number = wpinv_get_invoice_number( $last_invoice[0] ) ) { |
|
2131 | - if ( is_numeric( $invoice_number ) ) { |
|
2130 | + if (!empty($last_invoice[0]) && $invoice_number = wpinv_get_invoice_number($last_invoice[0])) { |
|
2131 | + if (is_numeric($invoice_number)) { |
|
2132 | 2132 | $number = $invoice_number; |
2133 | 2133 | } else { |
2134 | - $number = wpinv_clean_invoice_number( $invoice_number ); |
|
2134 | + $number = wpinv_clean_invoice_number($invoice_number); |
|
2135 | 2135 | } |
2136 | 2136 | } |
2137 | 2137 | |
2138 | - if ( empty( $number ) ) { |
|
2138 | + if (empty($number)) { |
|
2139 | 2139 | $increment_number = false; |
2140 | 2140 | $number = $start; |
2141 | - $save_number = ( $number - 1 ); |
|
2141 | + $save_number = ($number - 1); |
|
2142 | 2142 | } else { |
2143 | 2143 | $save_number = $number; |
2144 | 2144 | } |
2145 | 2145 | } |
2146 | 2146 | } |
2147 | 2147 | |
2148 | - if ( $start > $number ) { |
|
2148 | + if ($start > $number) { |
|
2149 | 2149 | $increment_number = false; |
2150 | 2150 | $number = $start; |
2151 | - $save_number = ( $number - 1 ); |
|
2151 | + $save_number = ($number - 1); |
|
2152 | 2152 | } |
2153 | 2153 | |
2154 | - if ( $save_number !== false ) { |
|
2155 | - update_option( 'wpinv_last_invoice_number', $save_number ); |
|
2154 | + if ($save_number !== false) { |
|
2155 | + update_option('wpinv_last_invoice_number', $save_number); |
|
2156 | 2156 | } |
2157 | 2157 | |
2158 | - $increment_number = apply_filters( 'wpinv_increment_payment_number', $increment_number, $number ); |
|
2158 | + $increment_number = apply_filters('wpinv_increment_payment_number', $increment_number, $number); |
|
2159 | 2159 | |
2160 | - if ( $increment_number ) { |
|
2160 | + if ($increment_number) { |
|
2161 | 2161 | $number++; |
2162 | 2162 | } |
2163 | 2163 | |
2164 | - return apply_filters( 'wpinv_get_next_invoice_number', $number ); |
|
2164 | + return apply_filters('wpinv_get_next_invoice_number', $number); |
|
2165 | 2165 | } |
2166 | 2166 | |
2167 | -function wpinv_clean_invoice_number( $number, $type = '' ) { |
|
2168 | - $check = apply_filters( 'wpinv_pre_clean_invoice_number', null, $number, $type ); |
|
2169 | - if ( null !== $check ) { |
|
2167 | +function wpinv_clean_invoice_number($number, $type = '') { |
|
2168 | + $check = apply_filters('wpinv_pre_clean_invoice_number', null, $number, $type); |
|
2169 | + if (null !== $check) { |
|
2170 | 2170 | return $check; |
2171 | 2171 | } |
2172 | 2172 | |
2173 | - $prefix = wpinv_get_option( 'invoice_number_prefix' ); |
|
2174 | - $postfix = wpinv_get_option( 'invoice_number_postfix' ); |
|
2173 | + $prefix = wpinv_get_option('invoice_number_prefix'); |
|
2174 | + $postfix = wpinv_get_option('invoice_number_postfix'); |
|
2175 | 2175 | |
2176 | - $number = preg_replace( '/' . $prefix . '/', '', $number, 1 ); |
|
2176 | + $number = preg_replace('/' . $prefix . '/', '', $number, 1); |
|
2177 | 2177 | |
2178 | - $length = strlen( $number ); |
|
2179 | - $postfix_pos = strrpos( $number, $postfix ); |
|
2178 | + $length = strlen($number); |
|
2179 | + $postfix_pos = strrpos($number, $postfix); |
|
2180 | 2180 | |
2181 | - if ( false !== $postfix_pos ) { |
|
2182 | - $number = substr_replace( $number, '', $postfix_pos, $length ); |
|
2181 | + if (false !== $postfix_pos) { |
|
2182 | + $number = substr_replace($number, '', $postfix_pos, $length); |
|
2183 | 2183 | } |
2184 | 2184 | |
2185 | - $number = intval( $number ); |
|
2185 | + $number = intval($number); |
|
2186 | 2186 | |
2187 | - return apply_filters( 'wpinv_clean_invoice_number', $number, $prefix, $postfix ); |
|
2187 | + return apply_filters('wpinv_clean_invoice_number', $number, $prefix, $postfix); |
|
2188 | 2188 | } |
2189 | 2189 | |
2190 | -function wpinv_save_number_post_saved( $post_ID, $post, $update ) { |
|
2190 | +function wpinv_save_number_post_saved($post_ID, $post, $update) { |
|
2191 | 2191 | global $wpdb; |
2192 | 2192 | |
2193 | - if ( !$update && !get_post_meta( $post_ID, '_wpinv_number', true ) ) { |
|
2194 | - wpinv_update_invoice_number( $post_ID, $post->post_status != 'auto-draft', $post->post_type ); |
|
2193 | + if (!$update && !get_post_meta($post_ID, '_wpinv_number', true)) { |
|
2194 | + wpinv_update_invoice_number($post_ID, $post->post_status != 'auto-draft', $post->post_type); |
|
2195 | 2195 | } |
2196 | 2196 | |
2197 | - if ( !$update ) { |
|
2198 | - $wpdb->update( $wpdb->posts, array( 'post_name' => wpinv_generate_post_name( $post_ID ) ), array( 'ID' => $post_ID ) ); |
|
2199 | - clean_post_cache( $post_ID ); |
|
2197 | + if (!$update) { |
|
2198 | + $wpdb->update($wpdb->posts, array('post_name' => wpinv_generate_post_name($post_ID)), array('ID' => $post_ID)); |
|
2199 | + clean_post_cache($post_ID); |
|
2200 | 2200 | } |
2201 | 2201 | } |
2202 | -add_action( 'save_post_wpi_invoice', 'wpinv_save_number_post_saved', 1, 3 ); |
|
2202 | +add_action('save_post_wpi_invoice', 'wpinv_save_number_post_saved', 1, 3); |
|
2203 | 2203 | |
2204 | -function wpinv_save_number_post_updated( $post_ID, $post_after, $post_before ) { |
|
2205 | - 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 ) { |
|
2206 | - wpinv_update_invoice_number( $post_ID, true, $post_after->post_type ); |
|
2204 | +function wpinv_save_number_post_updated($post_ID, $post_after, $post_before) { |
|
2205 | + 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) { |
|
2206 | + wpinv_update_invoice_number($post_ID, true, $post_after->post_type); |
|
2207 | 2207 | } |
2208 | 2208 | } |
2209 | -add_action( 'post_updated', 'wpinv_save_number_post_updated', 1, 3 ); |
|
2209 | +add_action('post_updated', 'wpinv_save_number_post_updated', 1, 3); |
|
2210 | 2210 | |
2211 | -function wpinv_update_invoice_number( $post_ID, $save_sequential = false, $type = '' ) { |
|
2211 | +function wpinv_update_invoice_number($post_ID, $save_sequential = false, $type = '') { |
|
2212 | 2212 | global $wpdb; |
2213 | 2213 | |
2214 | - $check = apply_filters( 'wpinv_pre_update_invoice_number', null, $post_ID, $save_sequential, $type ); |
|
2215 | - if ( null !== $check ) { |
|
2214 | + $check = apply_filters('wpinv_pre_update_invoice_number', null, $post_ID, $save_sequential, $type); |
|
2215 | + if (null !== $check) { |
|
2216 | 2216 | return $check; |
2217 | 2217 | } |
2218 | 2218 | |
2219 | - if ( wpinv_sequential_number_active() ) { |
|
2219 | + if (wpinv_sequential_number_active()) { |
|
2220 | 2220 | $number = wpinv_get_next_invoice_number(); |
2221 | 2221 | |
2222 | - if ( $save_sequential ) { |
|
2223 | - update_option( 'wpinv_last_invoice_number', $number ); |
|
2222 | + if ($save_sequential) { |
|
2223 | + update_option('wpinv_last_invoice_number', $number); |
|
2224 | 2224 | } |
2225 | 2225 | } else { |
2226 | 2226 | $number = $post_ID; |
2227 | 2227 | } |
2228 | 2228 | |
2229 | - $number = wpinv_format_invoice_number( $number ); |
|
2229 | + $number = wpinv_format_invoice_number($number); |
|
2230 | 2230 | |
2231 | - update_post_meta( $post_ID, '_wpinv_number', $number ); |
|
2231 | + update_post_meta($post_ID, '_wpinv_number', $number); |
|
2232 | 2232 | |
2233 | - $wpdb->update( $wpdb->posts, array( 'post_title' => $number ), array( 'ID' => $post_ID ) ); |
|
2233 | + $wpdb->update($wpdb->posts, array('post_title' => $number), array('ID' => $post_ID)); |
|
2234 | 2234 | |
2235 | - clean_post_cache( $post_ID ); |
|
2235 | + clean_post_cache($post_ID); |
|
2236 | 2236 | |
2237 | 2237 | return $number; |
2238 | 2238 | } |
2239 | 2239 | |
2240 | -function wpinv_post_name_prefix( $post_type = 'wpi_invoice' ) { |
|
2241 | - return apply_filters( 'wpinv_post_name_prefix', 'inv-', $post_type ); |
|
2240 | +function wpinv_post_name_prefix($post_type = 'wpi_invoice') { |
|
2241 | + return apply_filters('wpinv_post_name_prefix', 'inv-', $post_type); |
|
2242 | 2242 | } |
2243 | 2243 | |
2244 | -function wpinv_generate_post_name( $post_ID ) { |
|
2245 | - $prefix = wpinv_post_name_prefix( get_post_type( $post_ID ) ); |
|
2246 | - $post_name = sanitize_title( $prefix . $post_ID ); |
|
2244 | +function wpinv_generate_post_name($post_ID) { |
|
2245 | + $prefix = wpinv_post_name_prefix(get_post_type($post_ID)); |
|
2246 | + $post_name = sanitize_title($prefix . $post_ID); |
|
2247 | 2247 | |
2248 | - return apply_filters( 'wpinv_generate_post_name', $post_name, $post_ID, $prefix ); |
|
2248 | + return apply_filters('wpinv_generate_post_name', $post_name, $post_ID, $prefix); |
|
2249 | 2249 | } |
2250 | 2250 | |
2251 | -function wpinv_is_invoice_viewed( $invoice_id ) { |
|
2252 | - if ( empty( $invoice_id ) ) { |
|
2251 | +function wpinv_is_invoice_viewed($invoice_id) { |
|
2252 | + if (empty($invoice_id)) { |
|
2253 | 2253 | return false; |
2254 | 2254 | } |
2255 | 2255 | |
2256 | - $viewed_meta = get_post_meta( $invoice_id, '_wpinv_is_viewed', true ); |
|
2256 | + $viewed_meta = get_post_meta($invoice_id, '_wpinv_is_viewed', true); |
|
2257 | 2257 | |
2258 | - if ( isset($viewed_meta) && 1 == $viewed_meta ) { |
|
2258 | + if (isset($viewed_meta) && 1 == $viewed_meta) { |
|
2259 | 2259 | $is_viewed = true; |
2260 | 2260 | } else { |
2261 | 2261 | $is_viewed = false; |
2262 | 2262 | } |
2263 | 2263 | |
2264 | - return apply_filters( 'wpinv_is_invoice_viewed', $is_viewed, $invoice_id ); |
|
2264 | + return apply_filters('wpinv_is_invoice_viewed', $is_viewed, $invoice_id); |
|
2265 | 2265 | } |
2266 | 2266 | |
2267 | 2267 | function wpinv_mark_invoice_viewed() { |
2268 | 2268 | |
2269 | - if ( isset( $_GET['invoice_key'] ) ) { |
|
2269 | + if (isset($_GET['invoice_key'])) { |
|
2270 | 2270 | $invoice_key = urldecode($_GET['invoice_key']); |
2271 | 2271 | |
2272 | 2272 | $invoice_id = wpinv_get_invoice_id_by_key($invoice_key); |
2273 | 2273 | $invoice = new WPInv_Invoice($invoice_id); |
2274 | 2274 | |
2275 | - if(!$invoice_id){ |
|
2275 | + if (!$invoice_id) { |
|
2276 | 2276 | return; |
2277 | 2277 | } |
2278 | 2278 | |
2279 | - if( is_user_logged_in()){ |
|
2279 | + if (is_user_logged_in()) { |
|
2280 | 2280 | $current_user = wp_get_current_user(); |
2281 | - if(!current_user_can('administrator') && $current_user->user_email == $invoice->get_email()){ |
|
2282 | - update_post_meta($invoice_id,'_wpinv_is_viewed', 1); |
|
2281 | + if (!current_user_can('administrator') && $current_user->user_email == $invoice->get_email()) { |
|
2282 | + update_post_meta($invoice_id, '_wpinv_is_viewed', 1); |
|
2283 | 2283 | } |
2284 | 2284 | } else { |
2285 | - update_post_meta($invoice_id,'_wpinv_is_viewed', 1); |
|
2285 | + update_post_meta($invoice_id, '_wpinv_is_viewed', 1); |
|
2286 | 2286 | } |
2287 | 2287 | } |
2288 | 2288 | |
2289 | 2289 | } |
2290 | -add_action( 'init', 'wpinv_mark_invoice_viewed' ); |
|
2290 | +add_action('init', 'wpinv_mark_invoice_viewed'); |
|
2291 | 2291 | |
2292 | -function wpinv_get_subscription( $invoice, $by_parent = false ) { |
|
2293 | - if ( empty( $invoice ) ) { |
|
2292 | +function wpinv_get_subscription($invoice, $by_parent = false) { |
|
2293 | + if (empty($invoice)) { |
|
2294 | 2294 | return false; |
2295 | 2295 | } |
2296 | 2296 | |
2297 | - if ( ! is_object( $invoice ) && is_scalar( $invoice ) ) { |
|
2298 | - $invoice = wpinv_get_invoice( $invoice ); |
|
2297 | + if (!is_object($invoice) && is_scalar($invoice)) { |
|
2298 | + $invoice = wpinv_get_invoice($invoice); |
|
2299 | 2299 | } |
2300 | 2300 | |
2301 | - if ( !( is_object( $invoice ) && ! empty( $invoice->ID ) && $invoice->is_recurring() ) ) { |
|
2301 | + if (!(is_object($invoice) && !empty($invoice->ID) && $invoice->is_recurring())) { |
|
2302 | 2302 | return false; |
2303 | 2303 | } |
2304 | 2304 | |
2305 | - $invoice_id = ! $by_parent && ! empty( $invoice->parent_invoice ) ? $invoice->parent_invoice : $invoice->ID; |
|
2305 | + $invoice_id = !$by_parent && !empty($invoice->parent_invoice) ? $invoice->parent_invoice : $invoice->ID; |
|
2306 | 2306 | |
2307 | 2307 | $subs_db = new WPInv_Subscriptions_DB; |
2308 | - $subs = $subs_db->get_subscriptions( array( 'parent_payment_id' => $invoice_id, 'number' => 1 ) ); |
|
2308 | + $subs = $subs_db->get_subscriptions(array('parent_payment_id' => $invoice_id, 'number' => 1)); |
|
2309 | 2309 | |
2310 | - if ( ! empty( $subs ) ) { |
|
2311 | - return reset( $subs ); |
|
2310 | + if (!empty($subs)) { |
|
2311 | + return reset($subs); |
|
2312 | 2312 | } |
2313 | 2313 | |
2314 | 2314 | return false; |
2315 | 2315 | } |
2316 | 2316 | |
2317 | -function wpinv_filter_posts_clauses( $clauses, $wp_query ) { |
|
2317 | +function wpinv_filter_posts_clauses($clauses, $wp_query) { |
|
2318 | 2318 | global $wpdb; |
2319 | 2319 | |
2320 | - if ( ! empty( $wp_query->query_vars['orderby'] ) && $wp_query->query_vars['orderby'] == 'invoice_date' ) { |
|
2321 | - if ( !empty( $clauses['join'] ) ) { |
|
2320 | + if (!empty($wp_query->query_vars['orderby']) && $wp_query->query_vars['orderby'] == 'invoice_date') { |
|
2321 | + if (!empty($clauses['join'])) { |
|
2322 | 2322 | $clauses['join'] .= " "; |
2323 | 2323 | } |
2324 | 2324 | |
2325 | - if ( !empty( $clauses['fields'] ) ) { |
|
2325 | + if (!empty($clauses['fields'])) { |
|
2326 | 2326 | $clauses['fields'] .= ", "; |
2327 | 2327 | } |
2328 | 2328 | |
@@ -2333,4 +2333,4 @@ discard block |
||
2333 | 2333 | |
2334 | 2334 | return $clauses; |
2335 | 2335 | } |
2336 | -add_filter( 'posts_clauses', 'wpinv_filter_posts_clauses', 10, 2 ); |
|
2337 | 2336 | \ No newline at end of file |
2337 | +add_filter('posts_clauses', 'wpinv_filter_posts_clauses', 10, 2); |
|
2338 | 2338 | \ No newline at end of file |
@@ -7,132 +7,132 @@ 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_item_quantities_enabled() { |
15 | - $ret = wpinv_get_option( 'item_quantities', true ); |
|
15 | + $ret = wpinv_get_option('item_quantities', true); |
|
16 | 16 | |
17 | - return (bool) apply_filters( 'wpinv_item_quantities_enabled', $ret ); |
|
17 | + return (bool)apply_filters('wpinv_item_quantities_enabled', $ret); |
|
18 | 18 | } |
19 | 19 | |
20 | 20 | function wpinv_get_ip() { |
21 | 21 | $ip = '127.0.0.1'; |
22 | 22 | |
23 | - if ( !empty( $_SERVER['HTTP_CLIENT_IP'] ) ) { |
|
24 | - $ip = sanitize_text_field( $_SERVER['HTTP_CLIENT_IP'] ); |
|
25 | - } elseif ( !empty( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) { |
|
26 | - $ip = sanitize_text_field( $_SERVER['HTTP_X_FORWARDED_FOR'] ); |
|
27 | - } elseif( !empty( $_SERVER['REMOTE_ADDR'] ) ) { |
|
28 | - $ip = sanitize_text_field( $_SERVER['REMOTE_ADDR'] ); |
|
23 | + if (!empty($_SERVER['HTTP_CLIENT_IP'])) { |
|
24 | + $ip = sanitize_text_field($_SERVER['HTTP_CLIENT_IP']); |
|
25 | + } elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) { |
|
26 | + $ip = sanitize_text_field($_SERVER['HTTP_X_FORWARDED_FOR']); |
|
27 | + } elseif (!empty($_SERVER['REMOTE_ADDR'])) { |
|
28 | + $ip = sanitize_text_field($_SERVER['REMOTE_ADDR']); |
|
29 | 29 | } |
30 | 30 | |
31 | - return apply_filters( 'wpinv_get_ip', $ip ); |
|
31 | + return apply_filters('wpinv_get_ip', $ip); |
|
32 | 32 | } |
33 | 33 | |
34 | 34 | function wpinv_get_user_agent() { |
35 | - if ( ! empty( $_SERVER['HTTP_USER_AGENT'] ) ) { |
|
36 | - $user_agent = sanitize_text_field( $_SERVER['HTTP_USER_AGENT'] ); |
|
35 | + if (!empty($_SERVER['HTTP_USER_AGENT'])) { |
|
36 | + $user_agent = sanitize_text_field($_SERVER['HTTP_USER_AGENT']); |
|
37 | 37 | } else { |
38 | 38 | $user_agent = ''; |
39 | 39 | } |
40 | 40 | |
41 | - return apply_filters( 'wpinv_get_user_agent', $user_agent ); |
|
41 | + return apply_filters('wpinv_get_user_agent', $user_agent); |
|
42 | 42 | } |
43 | 43 | |
44 | -function wpinv_sanitize_amount( $amount, $decimals = NULL ) { |
|
44 | +function wpinv_sanitize_amount($amount, $decimals = NULL) { |
|
45 | 45 | $is_negative = false; |
46 | 46 | $thousands_sep = wpinv_thousands_separator(); |
47 | 47 | $decimal_sep = wpinv_decimal_separator(); |
48 | - if ( $decimals === NULL ) { |
|
48 | + if ($decimals === NULL) { |
|
49 | 49 | $decimals = wpinv_decimals(); |
50 | 50 | } |
51 | 51 | |
52 | 52 | // Sanitize the amount |
53 | - if ( $decimal_sep == ',' && false !== ( $found = strpos( $amount, $decimal_sep ) ) ) { |
|
54 | - if ( ( $thousands_sep == '.' || $thousands_sep == ' ' ) && false !== ( $found = strpos( $amount, $thousands_sep ) ) ) { |
|
55 | - $amount = str_replace( $thousands_sep, '', $amount ); |
|
56 | - } elseif( empty( $thousands_sep ) && false !== ( $found = strpos( $amount, '.' ) ) ) { |
|
57 | - $amount = str_replace( '.', '', $amount ); |
|
53 | + if ($decimal_sep == ',' && false !== ($found = strpos($amount, $decimal_sep))) { |
|
54 | + if (($thousands_sep == '.' || $thousands_sep == ' ') && false !== ($found = strpos($amount, $thousands_sep))) { |
|
55 | + $amount = str_replace($thousands_sep, '', $amount); |
|
56 | + } elseif (empty($thousands_sep) && false !== ($found = strpos($amount, '.'))) { |
|
57 | + $amount = str_replace('.', '', $amount); |
|
58 | 58 | } |
59 | 59 | |
60 | - $amount = str_replace( $decimal_sep, '.', $amount ); |
|
61 | - } elseif( $thousands_sep == ',' && false !== ( $found = strpos( $amount, $thousands_sep ) ) ) { |
|
62 | - $amount = str_replace( $thousands_sep, '', $amount ); |
|
60 | + $amount = str_replace($decimal_sep, '.', $amount); |
|
61 | + } elseif ($thousands_sep == ',' && false !== ($found = strpos($amount, $thousands_sep))) { |
|
62 | + $amount = str_replace($thousands_sep, '', $amount); |
|
63 | 63 | } |
64 | 64 | |
65 | - if( $amount < 0 ) { |
|
65 | + if ($amount < 0) { |
|
66 | 66 | $is_negative = true; |
67 | 67 | } |
68 | 68 | |
69 | - $amount = preg_replace( '/[^0-9\.]/', '', $amount ); |
|
69 | + $amount = preg_replace('/[^0-9\.]/', '', $amount); |
|
70 | 70 | |
71 | - $decimals = apply_filters( 'wpinv_sanitize_amount_decimals', absint( $decimals ), $amount ); |
|
72 | - $amount = number_format( (double) $amount, absint( $decimals ), '.', '' ); |
|
71 | + $decimals = apply_filters('wpinv_sanitize_amount_decimals', absint($decimals), $amount); |
|
72 | + $amount = number_format((double)$amount, absint($decimals), '.', ''); |
|
73 | 73 | |
74 | - if( $is_negative ) { |
|
74 | + if ($is_negative) { |
|
75 | 75 | $amount *= -1; |
76 | 76 | } |
77 | 77 | |
78 | - return apply_filters( 'wpinv_sanitize_amount', $amount, $decimals ); |
|
78 | + return apply_filters('wpinv_sanitize_amount', $amount, $decimals); |
|
79 | 79 | } |
80 | -add_filter( 'wpinv_sanitize_amount_decimals', 'wpinv_currency_decimal_filter', 10, 1 ); |
|
80 | +add_filter('wpinv_sanitize_amount_decimals', 'wpinv_currency_decimal_filter', 10, 1); |
|
81 | 81 | |
82 | -function wpinv_round_amount( $amount, $decimals = NULL ) { |
|
83 | - if ( $decimals === NULL ) { |
|
82 | +function wpinv_round_amount($amount, $decimals = NULL) { |
|
83 | + if ($decimals === NULL) { |
|
84 | 84 | $decimals = wpinv_decimals(); |
85 | 85 | } |
86 | 86 | |
87 | - $amount = round( (double)$amount, wpinv_currency_decimal_filter( absint( $decimals ) ) ); |
|
87 | + $amount = round((double)$amount, wpinv_currency_decimal_filter(absint($decimals))); |
|
88 | 88 | |
89 | - return apply_filters( 'wpinv_round_amount', $amount, $decimals ); |
|
89 | + return apply_filters('wpinv_round_amount', $amount, $decimals); |
|
90 | 90 | } |
91 | 91 | |
92 | -function wpinv_get_invoice_statuses( $draft = false, $trashed = false, $invoice = false ) { |
|
92 | +function wpinv_get_invoice_statuses($draft = false, $trashed = false, $invoice = false) { |
|
93 | 93 | global $post; |
94 | 94 | |
95 | 95 | $invoice_statuses = array( |
96 | - 'wpi-pending' => __( 'Pending Payment', 'invoicing' ), |
|
97 | - 'publish' => __( 'Paid', 'invoicing'), |
|
98 | - 'wpi-processing' => __( 'Processing', 'invoicing' ), |
|
99 | - 'wpi-onhold' => __( 'On Hold', 'invoicing' ), |
|
100 | - 'wpi-refunded' => __( 'Refunded', 'invoicing' ), |
|
101 | - 'wpi-cancelled' => __( 'Cancelled', 'invoicing' ), |
|
102 | - 'wpi-failed' => __( 'Failed', 'invoicing' ), |
|
103 | - 'wpi-renewal' => __( 'Renewal Payment', 'invoicing' ) |
|
96 | + 'wpi-pending' => __('Pending Payment', 'invoicing'), |
|
97 | + 'publish' => __('Paid', 'invoicing'), |
|
98 | + 'wpi-processing' => __('Processing', 'invoicing'), |
|
99 | + 'wpi-onhold' => __('On Hold', 'invoicing'), |
|
100 | + 'wpi-refunded' => __('Refunded', 'invoicing'), |
|
101 | + 'wpi-cancelled' => __('Cancelled', 'invoicing'), |
|
102 | + 'wpi-failed' => __('Failed', 'invoicing'), |
|
103 | + 'wpi-renewal' => __('Renewal Payment', 'invoicing') |
|
104 | 104 | ); |
105 | 105 | |
106 | - if ( $draft ) { |
|
107 | - $invoice_statuses['draft'] = __( 'Draft', 'invoicing' ); |
|
106 | + if ($draft) { |
|
107 | + $invoice_statuses['draft'] = __('Draft', 'invoicing'); |
|
108 | 108 | } |
109 | 109 | |
110 | - if ( $trashed ) { |
|
111 | - $invoice_statuses['trash'] = __( 'Trash', 'invoicing' ); |
|
110 | + if ($trashed) { |
|
111 | + $invoice_statuses['trash'] = __('Trash', 'invoicing'); |
|
112 | 112 | } |
113 | 113 | |
114 | - return apply_filters( 'wpinv_statuses', $invoice_statuses, $invoice ); |
|
114 | + return apply_filters('wpinv_statuses', $invoice_statuses, $invoice); |
|
115 | 115 | } |
116 | 116 | |
117 | -function wpinv_status_nicename( $status ) { |
|
118 | - $statuses = wpinv_get_invoice_statuses( true, true ); |
|
119 | - $status = isset( $statuses[$status] ) ? $statuses[$status] : __( $status, 'invoicing' ); |
|
117 | +function wpinv_status_nicename($status) { |
|
118 | + $statuses = wpinv_get_invoice_statuses(true, true); |
|
119 | + $status = isset($statuses[$status]) ? $statuses[$status] : __($status, 'invoicing'); |
|
120 | 120 | |
121 | 121 | return $status; |
122 | 122 | } |
123 | 123 | |
124 | 124 | function wpinv_get_currency() { |
125 | - $currency = wpinv_get_option( 'currency', 'USD' ); |
|
125 | + $currency = wpinv_get_option('currency', 'USD'); |
|
126 | 126 | |
127 | - return apply_filters( 'wpinv_currency', $currency ); |
|
127 | + return apply_filters('wpinv_currency', $currency); |
|
128 | 128 | } |
129 | 129 | |
130 | -function wpinv_currency_symbol( $currency = '' ) { |
|
131 | - if ( empty( $currency ) ) { |
|
130 | +function wpinv_currency_symbol($currency = '') { |
|
131 | + if (empty($currency)) { |
|
132 | 132 | $currency = wpinv_get_currency(); |
133 | 133 | } |
134 | 134 | |
135 | - $symbols = apply_filters( 'wpinv_currency_symbols', array( |
|
135 | + $symbols = apply_filters('wpinv_currency_symbols', array( |
|
136 | 136 | 'AED' => 'د.إ', |
137 | 137 | 'AFN' => '؋', |
138 | 138 | 'ALL' => 'L', |
@@ -295,209 +295,209 @@ discard block |
||
295 | 295 | 'YER' => '﷼', |
296 | 296 | 'ZAR' => 'R', |
297 | 297 | 'ZMW' => 'ZK', |
298 | - ) ); |
|
298 | + )); |
|
299 | 299 | |
300 | - $currency_symbol = isset( $symbols[$currency] ) ? $symbols[$currency] : $currency; |
|
300 | + $currency_symbol = isset($symbols[$currency]) ? $symbols[$currency] : $currency; |
|
301 | 301 | |
302 | - return apply_filters( 'wpinv_currency_symbol', $currency_symbol, $currency ); |
|
302 | + return apply_filters('wpinv_currency_symbol', $currency_symbol, $currency); |
|
303 | 303 | } |
304 | 304 | |
305 | 305 | function wpinv_currency_position() { |
306 | - $position = wpinv_get_option( 'currency_position', 'left' ); |
|
306 | + $position = wpinv_get_option('currency_position', 'left'); |
|
307 | 307 | |
308 | - return apply_filters( 'wpinv_currency_position', $position ); |
|
308 | + return apply_filters('wpinv_currency_position', $position); |
|
309 | 309 | } |
310 | 310 | |
311 | 311 | function wpinv_thousands_separator() { |
312 | - $thousand_sep = wpinv_get_option( 'thousands_separator', ',' ); |
|
312 | + $thousand_sep = wpinv_get_option('thousands_separator', ','); |
|
313 | 313 | |
314 | - return apply_filters( 'wpinv_thousands_separator', $thousand_sep ); |
|
314 | + return apply_filters('wpinv_thousands_separator', $thousand_sep); |
|
315 | 315 | } |
316 | 316 | |
317 | 317 | function wpinv_decimal_separator() { |
318 | - $decimal_sep = wpinv_get_option( 'decimal_separator', '.' ); |
|
318 | + $decimal_sep = wpinv_get_option('decimal_separator', '.'); |
|
319 | 319 | |
320 | - return apply_filters( 'wpinv_decimal_separator', $decimal_sep ); |
|
320 | + return apply_filters('wpinv_decimal_separator', $decimal_sep); |
|
321 | 321 | } |
322 | 322 | |
323 | 323 | function wpinv_decimals() { |
324 | - $decimals = apply_filters( 'wpinv_decimals', wpinv_get_option( 'decimals', 2 ) ); |
|
324 | + $decimals = apply_filters('wpinv_decimals', wpinv_get_option('decimals', 2)); |
|
325 | 325 | |
326 | - return absint( $decimals ); |
|
326 | + return absint($decimals); |
|
327 | 327 | } |
328 | 328 | |
329 | 329 | function wpinv_get_currencies() { |
330 | 330 | $currencies = array( |
331 | - 'USD' => __( 'US Dollar', 'invoicing' ), |
|
332 | - 'EUR' => __( 'Euro', 'invoicing' ), |
|
333 | - 'GBP' => __( 'Pound Sterling', 'invoicing' ), |
|
334 | - 'AED' => __( 'United Arab Emirates', 'invoicing' ), |
|
335 | - 'AFN' => __( 'Afghan Afghani', 'invoicing' ), |
|
336 | - 'ALL' => __( 'Albanian Lek', 'invoicing' ), |
|
337 | - 'AMD' => __( 'Armenian Dram', 'invoicing' ), |
|
338 | - 'ANG' => __( 'Netherlands Antillean Guilder', 'invoicing' ), |
|
339 | - 'AOA' => __( 'Angolan Kwanza', 'invoicing' ), |
|
340 | - 'ARS' => __( 'Argentine Peso', 'invoicing' ), |
|
341 | - 'AUD' => __( 'Australian Dollar', 'invoicing' ), |
|
342 | - 'AWG' => __( 'Aruban Florin', 'invoicing' ), |
|
343 | - 'AZN' => __( 'Azerbaijani Manat', 'invoicing' ), |
|
344 | - 'BAM' => __( 'Bosnia and Herzegovina Convertible Marka', 'invoicing' ), |
|
345 | - 'BBD' => __( 'Barbadian Dollar', 'invoicing' ), |
|
346 | - 'BDT' => __( 'Bangladeshi Taka', 'invoicing' ), |
|
347 | - 'BGN' => __( 'Bulgarian Lev', 'invoicing' ), |
|
348 | - 'BHD' => __( 'Bahraini Dinar', 'invoicing' ), |
|
349 | - 'BIF' => __( 'Burundian Franc', 'invoicing' ), |
|
350 | - 'BMD' => __( 'Bermudian Dollar', 'invoicing' ), |
|
351 | - 'BND' => __( 'Brunei Dollar', 'invoicing' ), |
|
352 | - 'BOB' => __( 'Bolivian Boliviano', 'invoicing' ), |
|
353 | - 'BRL' => __( 'Brazilian Real', 'invoicing' ), |
|
354 | - 'BSD' => __( 'Bahamian Dollar', 'invoicing' ), |
|
355 | - 'BTC' => __( 'Bitcoin', 'invoicing' ), |
|
356 | - 'BTN' => __( 'Bhutanese Ngultrum', 'invoicing' ), |
|
357 | - 'BWP' => __( 'Botswana Pula', 'invoicing' ), |
|
358 | - 'BYN' => __( 'Belarusian Ruble', 'invoicing' ), |
|
359 | - 'BZD' => __( 'Belize Dollar', 'invoicing' ), |
|
360 | - 'CAD' => __( 'Canadian Dollar', 'invoicing' ), |
|
361 | - 'CDF' => __( 'Congolese Franc', 'invoicing' ), |
|
362 | - 'CHF' => __( 'Swiss Franc', 'invoicing' ), |
|
363 | - 'CLP' => __( 'Chilean Peso', 'invoicing' ), |
|
364 | - 'CNY' => __( 'Chinese Yuan', 'invoicing' ), |
|
365 | - 'COP' => __( 'Colombian Peso', 'invoicing' ), |
|
366 | - 'CRC' => __( 'Costa Rican Colon', 'invoicing' ), |
|
367 | - 'CUC' => __( 'Cuban Convertible Peso', 'invoicing' ), |
|
368 | - 'CUP' => __( 'Cuban Peso', 'invoicing' ), |
|
369 | - 'CVE' => __( 'Cape Verdean escudo', 'invoicing' ), |
|
370 | - 'CZK' => __( 'Czech Koruna', 'invoicing' ), |
|
371 | - 'DJF' => __( 'Djiboutian Franc', 'invoicing' ), |
|
372 | - 'DKK' => __( 'Danish Krone', 'invoicing' ), |
|
373 | - 'DOP' => __( 'Dominican Peso', 'invoicing' ), |
|
374 | - 'DZD' => __( 'Algerian Dinar', 'invoicing' ), |
|
375 | - 'EGP' => __( 'Egyptian Pound', 'invoicing' ), |
|
376 | - 'ERN' => __( 'Eritrean Nakfa', 'invoicing' ), |
|
377 | - 'ETB' => __( 'Ethiopian Irr', 'invoicing' ), |
|
378 | - 'FJD' => __( 'Fijian Dollar', 'invoicing' ), |
|
379 | - 'FKP' => __( 'Falkland Islands Pound', 'invoicing' ), |
|
380 | - 'GEL' => __( 'Georgian Lari', 'invoicing' ), |
|
381 | - 'GGP' => __( 'Guernsey Pound', 'invoicing' ), |
|
382 | - 'GHS' => __( 'Ghana Cedi', 'invoicing' ), |
|
383 | - 'GIP' => __( 'Gibraltar Pound', 'invoicing' ), |
|
384 | - 'GMD' => __( 'Gambian Dalasi', 'invoicing' ), |
|
385 | - 'GNF' => __( 'Guinean Franc', 'invoicing' ), |
|
386 | - 'GTQ' => __( 'Guatemalan Quetzal', 'invoicing' ), |
|
387 | - 'GYD' => __( 'Guyanese Dollar', 'invoicing' ), |
|
388 | - 'HKD' => __( 'Hong Kong Dollar', 'invoicing' ), |
|
389 | - 'HNL' => __( 'Honduran Lempira', 'invoicing' ), |
|
390 | - 'HRK' => __( 'Croatian Kuna', 'invoicing' ), |
|
391 | - 'HTG' => __( 'Haitian Gourde', 'invoicing' ), |
|
392 | - 'HUF' => __( 'Hungarian Forint', 'invoicing' ), |
|
393 | - 'IDR' => __( 'Indonesian Rupiah', 'invoicing' ), |
|
394 | - 'ILS' => __( 'Israeli New Shekel', 'invoicing' ), |
|
395 | - 'IMP' => __( 'Manx Pound', 'invoicing' ), |
|
396 | - 'INR' => __( 'Indian Rupee', 'invoicing' ), |
|
397 | - 'IQD' => __( 'Iraqi Dinar', 'invoicing' ), |
|
398 | - 'IRR' => __( 'Iranian Rial', 'invoicing' ), |
|
399 | - 'IRT' => __( 'Iranian Toman', 'invoicing' ), |
|
400 | - 'ISK' => __( 'Icelandic Krona', 'invoicing' ), |
|
401 | - 'JEP' => __( 'Jersey Pound', 'invoicing' ), |
|
402 | - 'JMD' => __( 'Jamaican Dollar', 'invoicing' ), |
|
403 | - 'JOD' => __( 'Jordanian Dinar', 'invoicing' ), |
|
404 | - 'JPY' => __( 'Japanese Yen', 'invoicing' ), |
|
405 | - 'KES' => __( 'Kenyan Shilling', 'invoicing' ), |
|
406 | - 'KGS' => __( 'Kyrgyzstani Som', 'invoicing' ), |
|
407 | - 'KHR' => __( 'Cambodian Riel', 'invoicing' ), |
|
408 | - 'KMF' => __( 'Comorian Franc', 'invoicing' ), |
|
409 | - 'KPW' => __( 'North Korean Won', 'invoicing' ), |
|
410 | - 'KRW' => __( 'South Korean Won', 'invoicing' ), |
|
411 | - 'KWD' => __( 'Kuwaiti Dinar', 'invoicing' ), |
|
412 | - 'KYD' => __( 'Cayman Islands Dollar', 'invoicing' ), |
|
413 | - 'KZT' => __( 'Kazakhstani Tenge', 'invoicing' ), |
|
414 | - 'LAK' => __( 'Lao Kip', 'invoicing' ), |
|
415 | - 'LBP' => __( 'Lebanese Pound', 'invoicing' ), |
|
416 | - 'LKR' => __( 'Sri Lankan Rupee', 'invoicing' ), |
|
417 | - 'LRD' => __( 'Liberian Dollar', 'invoicing' ), |
|
418 | - 'LSL' => __( 'Lesotho Loti', 'invoicing' ), |
|
419 | - 'LYD' => __( 'Libyan Dinar', 'invoicing' ), |
|
420 | - 'MAD' => __( 'Moroccan Dirham', 'invoicing' ), |
|
421 | - 'MDL' => __( 'Moldovan Leu', 'invoicing' ), |
|
422 | - 'MGA' => __( 'Malagasy Ariary', 'invoicing' ), |
|
423 | - 'MKD' => __( 'Macedonian Denar', 'invoicing' ), |
|
424 | - 'MMK' => __( 'Burmese Kyat', 'invoicing' ), |
|
425 | - 'MNT' => __( 'Mongolian Tughrik', 'invoicing' ), |
|
426 | - 'MOP' => __( 'Macanese Pataca', 'invoicing' ), |
|
427 | - 'MRO' => __( 'Mauritanian Ouguiya', 'invoicing' ), |
|
428 | - 'MUR' => __( 'Mauritian Rupee', 'invoicing' ), |
|
429 | - 'MVR' => __( 'Maldivian Rufiyaa', 'invoicing' ), |
|
430 | - 'MWK' => __( 'Malawian Kwacha', 'invoicing' ), |
|
431 | - 'MXN' => __( 'Mexican Peso', 'invoicing' ), |
|
432 | - 'MYR' => __( 'Malaysian Ringgit', 'invoicing' ), |
|
433 | - 'MZN' => __( 'Mozambican Metical', 'invoicing' ), |
|
434 | - 'NAD' => __( 'Namibian Dollar', 'invoicing' ), |
|
435 | - 'NGN' => __( 'Nigerian Naira', 'invoicing' ), |
|
436 | - 'NIO' => __( 'Nicaraguan Cordoba', 'invoicing' ), |
|
437 | - 'NOK' => __( 'Norwegian Krone', 'invoicing' ), |
|
438 | - 'NPR' => __( 'Nepalese Rupee', 'invoicing' ), |
|
439 | - 'NZD' => __( 'New Zealand Dollar', 'invoicing' ), |
|
440 | - 'OMR' => __( 'Omani Rial', 'invoicing' ), |
|
441 | - 'PAB' => __( 'Panamanian Balboa', 'invoicing' ), |
|
442 | - 'PEN' => __( 'Peruvian Nuevo Sol', 'invoicing' ), |
|
443 | - 'PGK' => __( 'Papua New Guinean Kina', 'invoicing' ), |
|
444 | - 'PHP' => __( 'Philippine Peso', 'invoicing' ), |
|
445 | - 'PKR' => __( 'Pakistani Rupee', 'invoicing' ), |
|
446 | - 'PLN' => __( 'Polish Zloty', 'invoicing' ), |
|
447 | - 'PRB' => __( 'Transnistrian Ruble', 'invoicing' ), |
|
448 | - 'PYG' => __( 'Paraguayan Guarani', 'invoicing' ), |
|
449 | - 'QAR' => __( 'Qatari Riyal', 'invoicing' ), |
|
450 | - 'RON' => __( 'Romanian Leu', 'invoicing' ), |
|
451 | - 'RSD' => __( 'Serbian Dinar', 'invoicing' ), |
|
452 | - 'RUB' => __( 'Russian Ruble', 'invoicing' ), |
|
453 | - 'RWF' => __( 'Rwandan Franc', 'invoicing' ), |
|
454 | - 'SAR' => __( 'Saudi Riyal', 'invoicing' ), |
|
455 | - 'SBD' => __( 'Solomon Islands Dollar', 'invoicing' ), |
|
456 | - 'SCR' => __( 'Seychellois Rupee', 'invoicing' ), |
|
457 | - 'SDG' => __( 'Sudanese Pound', 'invoicing' ), |
|
458 | - 'SEK' => __( 'Swedish Krona', 'invoicing' ), |
|
459 | - 'SGD' => __( 'Singapore Dollar', 'invoicing' ), |
|
460 | - 'SHP' => __( 'Saint Helena Pound', 'invoicing' ), |
|
461 | - 'SLL' => __( 'Sierra Leonean Leone', 'invoicing' ), |
|
462 | - 'SOS' => __( 'Somali Shilling', 'invoicing' ), |
|
463 | - 'SRD' => __( 'Surinamese Dollar', 'invoicing' ), |
|
464 | - 'SSP' => __( 'South Sudanese Pound', 'invoicing' ), |
|
465 | - 'STD' => __( 'Sao Tomean Dobra', 'invoicing' ), |
|
466 | - 'SYP' => __( 'Syrian Pound', 'invoicing' ), |
|
467 | - 'SZL' => __( 'Swazi Lilangeni', 'invoicing' ), |
|
468 | - 'THB' => __( 'Thai Baht', 'invoicing' ), |
|
469 | - 'TJS' => __( 'Tajikistani Somoni', 'invoicing' ), |
|
470 | - 'TMT' => __( 'Turkmenistan Manat', 'invoicing' ), |
|
471 | - 'TND' => __( 'Tunisian Dinar', 'invoicing' ), |
|
472 | - 'TOP' => __( 'Tongan Paʻanga', 'invoicing' ), |
|
473 | - 'TRY' => __( 'Turkish Lira', 'invoicing' ), |
|
474 | - 'TTD' => __( 'Trinidad and Tobago Dollar', 'invoicing' ), |
|
475 | - 'TWD' => __( 'New Taiwan Dollar', 'invoicing' ), |
|
476 | - 'TZS' => __( 'Tanzanian Shilling', 'invoicing' ), |
|
477 | - 'UAH' => __( 'Ukrainian Hryvnia', 'invoicing' ), |
|
478 | - 'UGX' => __( 'Ugandan Shilling', 'invoicing' ), |
|
479 | - 'UYU' => __( 'Uruguayan Peso', 'invoicing' ), |
|
480 | - 'UZS' => __( 'Uzbekistani Som', 'invoicing' ), |
|
481 | - 'VEF' => __( 'Venezuelan Bolívar', 'invoicing' ), |
|
482 | - 'VND' => __( 'Vietnamese Dong', 'invoicing' ), |
|
483 | - 'VUV' => __( 'Vanuatu Vatu', 'invoicing' ), |
|
484 | - 'WST' => __( 'Samoan Tala', 'invoicing' ), |
|
485 | - 'XAF' => __( 'Central African CFA Franc', 'invoicing' ), |
|
486 | - 'XCD' => __( 'East Caribbean Dollar', 'invoicing' ), |
|
487 | - 'XOF' => __( 'West African CFA Franc', 'invoicing' ), |
|
488 | - 'XPF' => __( 'CFP Franc', 'invoicing' ), |
|
489 | - 'YER' => __( 'Yemeni Rial', 'invoicing' ), |
|
490 | - 'ZAR' => __( 'South African Rand', 'invoicing' ), |
|
491 | - 'ZMW' => __( 'Zambian Kwacha', 'invoicing' ), |
|
331 | + 'USD' => __('US Dollar', 'invoicing'), |
|
332 | + 'EUR' => __('Euro', 'invoicing'), |
|
333 | + 'GBP' => __('Pound Sterling', 'invoicing'), |
|
334 | + 'AED' => __('United Arab Emirates', 'invoicing'), |
|
335 | + 'AFN' => __('Afghan Afghani', 'invoicing'), |
|
336 | + 'ALL' => __('Albanian Lek', 'invoicing'), |
|
337 | + 'AMD' => __('Armenian Dram', 'invoicing'), |
|
338 | + 'ANG' => __('Netherlands Antillean Guilder', 'invoicing'), |
|
339 | + 'AOA' => __('Angolan Kwanza', 'invoicing'), |
|
340 | + 'ARS' => __('Argentine Peso', 'invoicing'), |
|
341 | + 'AUD' => __('Australian Dollar', 'invoicing'), |
|
342 | + 'AWG' => __('Aruban Florin', 'invoicing'), |
|
343 | + 'AZN' => __('Azerbaijani Manat', 'invoicing'), |
|
344 | + 'BAM' => __('Bosnia and Herzegovina Convertible Marka', 'invoicing'), |
|
345 | + 'BBD' => __('Barbadian Dollar', 'invoicing'), |
|
346 | + 'BDT' => __('Bangladeshi Taka', 'invoicing'), |
|
347 | + 'BGN' => __('Bulgarian Lev', 'invoicing'), |
|
348 | + 'BHD' => __('Bahraini Dinar', 'invoicing'), |
|
349 | + 'BIF' => __('Burundian Franc', 'invoicing'), |
|
350 | + 'BMD' => __('Bermudian Dollar', 'invoicing'), |
|
351 | + 'BND' => __('Brunei Dollar', 'invoicing'), |
|
352 | + 'BOB' => __('Bolivian Boliviano', 'invoicing'), |
|
353 | + 'BRL' => __('Brazilian Real', 'invoicing'), |
|
354 | + 'BSD' => __('Bahamian Dollar', 'invoicing'), |
|
355 | + 'BTC' => __('Bitcoin', 'invoicing'), |
|
356 | + 'BTN' => __('Bhutanese Ngultrum', 'invoicing'), |
|
357 | + 'BWP' => __('Botswana Pula', 'invoicing'), |
|
358 | + 'BYN' => __('Belarusian Ruble', 'invoicing'), |
|
359 | + 'BZD' => __('Belize Dollar', 'invoicing'), |
|
360 | + 'CAD' => __('Canadian Dollar', 'invoicing'), |
|
361 | + 'CDF' => __('Congolese Franc', 'invoicing'), |
|
362 | + 'CHF' => __('Swiss Franc', 'invoicing'), |
|
363 | + 'CLP' => __('Chilean Peso', 'invoicing'), |
|
364 | + 'CNY' => __('Chinese Yuan', 'invoicing'), |
|
365 | + 'COP' => __('Colombian Peso', 'invoicing'), |
|
366 | + 'CRC' => __('Costa Rican Colon', 'invoicing'), |
|
367 | + 'CUC' => __('Cuban Convertible Peso', 'invoicing'), |
|
368 | + 'CUP' => __('Cuban Peso', 'invoicing'), |
|
369 | + 'CVE' => __('Cape Verdean escudo', 'invoicing'), |
|
370 | + 'CZK' => __('Czech Koruna', 'invoicing'), |
|
371 | + 'DJF' => __('Djiboutian Franc', 'invoicing'), |
|
372 | + 'DKK' => __('Danish Krone', 'invoicing'), |
|
373 | + 'DOP' => __('Dominican Peso', 'invoicing'), |
|
374 | + 'DZD' => __('Algerian Dinar', 'invoicing'), |
|
375 | + 'EGP' => __('Egyptian Pound', 'invoicing'), |
|
376 | + 'ERN' => __('Eritrean Nakfa', 'invoicing'), |
|
377 | + 'ETB' => __('Ethiopian Irr', 'invoicing'), |
|
378 | + 'FJD' => __('Fijian Dollar', 'invoicing'), |
|
379 | + 'FKP' => __('Falkland Islands Pound', 'invoicing'), |
|
380 | + 'GEL' => __('Georgian Lari', 'invoicing'), |
|
381 | + 'GGP' => __('Guernsey Pound', 'invoicing'), |
|
382 | + 'GHS' => __('Ghana Cedi', 'invoicing'), |
|
383 | + 'GIP' => __('Gibraltar Pound', 'invoicing'), |
|
384 | + 'GMD' => __('Gambian Dalasi', 'invoicing'), |
|
385 | + 'GNF' => __('Guinean Franc', 'invoicing'), |
|
386 | + 'GTQ' => __('Guatemalan Quetzal', 'invoicing'), |
|
387 | + 'GYD' => __('Guyanese Dollar', 'invoicing'), |
|
388 | + 'HKD' => __('Hong Kong Dollar', 'invoicing'), |
|
389 | + 'HNL' => __('Honduran Lempira', 'invoicing'), |
|
390 | + 'HRK' => __('Croatian Kuna', 'invoicing'), |
|
391 | + 'HTG' => __('Haitian Gourde', 'invoicing'), |
|
392 | + 'HUF' => __('Hungarian Forint', 'invoicing'), |
|
393 | + 'IDR' => __('Indonesian Rupiah', 'invoicing'), |
|
394 | + 'ILS' => __('Israeli New Shekel', 'invoicing'), |
|
395 | + 'IMP' => __('Manx Pound', 'invoicing'), |
|
396 | + 'INR' => __('Indian Rupee', 'invoicing'), |
|
397 | + 'IQD' => __('Iraqi Dinar', 'invoicing'), |
|
398 | + 'IRR' => __('Iranian Rial', 'invoicing'), |
|
399 | + 'IRT' => __('Iranian Toman', 'invoicing'), |
|
400 | + 'ISK' => __('Icelandic Krona', 'invoicing'), |
|
401 | + 'JEP' => __('Jersey Pound', 'invoicing'), |
|
402 | + 'JMD' => __('Jamaican Dollar', 'invoicing'), |
|
403 | + 'JOD' => __('Jordanian Dinar', 'invoicing'), |
|
404 | + 'JPY' => __('Japanese Yen', 'invoicing'), |
|
405 | + 'KES' => __('Kenyan Shilling', 'invoicing'), |
|
406 | + 'KGS' => __('Kyrgyzstani Som', 'invoicing'), |
|
407 | + 'KHR' => __('Cambodian Riel', 'invoicing'), |
|
408 | + 'KMF' => __('Comorian Franc', 'invoicing'), |
|
409 | + 'KPW' => __('North Korean Won', 'invoicing'), |
|
410 | + 'KRW' => __('South Korean Won', 'invoicing'), |
|
411 | + 'KWD' => __('Kuwaiti Dinar', 'invoicing'), |
|
412 | + 'KYD' => __('Cayman Islands Dollar', 'invoicing'), |
|
413 | + 'KZT' => __('Kazakhstani Tenge', 'invoicing'), |
|
414 | + 'LAK' => __('Lao Kip', 'invoicing'), |
|
415 | + 'LBP' => __('Lebanese Pound', 'invoicing'), |
|
416 | + 'LKR' => __('Sri Lankan Rupee', 'invoicing'), |
|
417 | + 'LRD' => __('Liberian Dollar', 'invoicing'), |
|
418 | + 'LSL' => __('Lesotho Loti', 'invoicing'), |
|
419 | + 'LYD' => __('Libyan Dinar', 'invoicing'), |
|
420 | + 'MAD' => __('Moroccan Dirham', 'invoicing'), |
|
421 | + 'MDL' => __('Moldovan Leu', 'invoicing'), |
|
422 | + 'MGA' => __('Malagasy Ariary', 'invoicing'), |
|
423 | + 'MKD' => __('Macedonian Denar', 'invoicing'), |
|
424 | + 'MMK' => __('Burmese Kyat', 'invoicing'), |
|
425 | + 'MNT' => __('Mongolian Tughrik', 'invoicing'), |
|
426 | + 'MOP' => __('Macanese Pataca', 'invoicing'), |
|
427 | + 'MRO' => __('Mauritanian Ouguiya', 'invoicing'), |
|
428 | + 'MUR' => __('Mauritian Rupee', 'invoicing'), |
|
429 | + 'MVR' => __('Maldivian Rufiyaa', 'invoicing'), |
|
430 | + 'MWK' => __('Malawian Kwacha', 'invoicing'), |
|
431 | + 'MXN' => __('Mexican Peso', 'invoicing'), |
|
432 | + 'MYR' => __('Malaysian Ringgit', 'invoicing'), |
|
433 | + 'MZN' => __('Mozambican Metical', 'invoicing'), |
|
434 | + 'NAD' => __('Namibian Dollar', 'invoicing'), |
|
435 | + 'NGN' => __('Nigerian Naira', 'invoicing'), |
|
436 | + 'NIO' => __('Nicaraguan Cordoba', 'invoicing'), |
|
437 | + 'NOK' => __('Norwegian Krone', 'invoicing'), |
|
438 | + 'NPR' => __('Nepalese Rupee', 'invoicing'), |
|
439 | + 'NZD' => __('New Zealand Dollar', 'invoicing'), |
|
440 | + 'OMR' => __('Omani Rial', 'invoicing'), |
|
441 | + 'PAB' => __('Panamanian Balboa', 'invoicing'), |
|
442 | + 'PEN' => __('Peruvian Nuevo Sol', 'invoicing'), |
|
443 | + 'PGK' => __('Papua New Guinean Kina', 'invoicing'), |
|
444 | + 'PHP' => __('Philippine Peso', 'invoicing'), |
|
445 | + 'PKR' => __('Pakistani Rupee', 'invoicing'), |
|
446 | + 'PLN' => __('Polish Zloty', 'invoicing'), |
|
447 | + 'PRB' => __('Transnistrian Ruble', 'invoicing'), |
|
448 | + 'PYG' => __('Paraguayan Guarani', 'invoicing'), |
|
449 | + 'QAR' => __('Qatari Riyal', 'invoicing'), |
|
450 | + 'RON' => __('Romanian Leu', 'invoicing'), |
|
451 | + 'RSD' => __('Serbian Dinar', 'invoicing'), |
|
452 | + 'RUB' => __('Russian Ruble', 'invoicing'), |
|
453 | + 'RWF' => __('Rwandan Franc', 'invoicing'), |
|
454 | + 'SAR' => __('Saudi Riyal', 'invoicing'), |
|
455 | + 'SBD' => __('Solomon Islands Dollar', 'invoicing'), |
|
456 | + 'SCR' => __('Seychellois Rupee', 'invoicing'), |
|
457 | + 'SDG' => __('Sudanese Pound', 'invoicing'), |
|
458 | + 'SEK' => __('Swedish Krona', 'invoicing'), |
|
459 | + 'SGD' => __('Singapore Dollar', 'invoicing'), |
|
460 | + 'SHP' => __('Saint Helena Pound', 'invoicing'), |
|
461 | + 'SLL' => __('Sierra Leonean Leone', 'invoicing'), |
|
462 | + 'SOS' => __('Somali Shilling', 'invoicing'), |
|
463 | + 'SRD' => __('Surinamese Dollar', 'invoicing'), |
|
464 | + 'SSP' => __('South Sudanese Pound', 'invoicing'), |
|
465 | + 'STD' => __('Sao Tomean Dobra', 'invoicing'), |
|
466 | + 'SYP' => __('Syrian Pound', 'invoicing'), |
|
467 | + 'SZL' => __('Swazi Lilangeni', 'invoicing'), |
|
468 | + 'THB' => __('Thai Baht', 'invoicing'), |
|
469 | + 'TJS' => __('Tajikistani Somoni', 'invoicing'), |
|
470 | + 'TMT' => __('Turkmenistan Manat', 'invoicing'), |
|
471 | + 'TND' => __('Tunisian Dinar', 'invoicing'), |
|
472 | + 'TOP' => __('Tongan Paʻanga', 'invoicing'), |
|
473 | + 'TRY' => __('Turkish Lira', 'invoicing'), |
|
474 | + 'TTD' => __('Trinidad and Tobago Dollar', 'invoicing'), |
|
475 | + 'TWD' => __('New Taiwan Dollar', 'invoicing'), |
|
476 | + 'TZS' => __('Tanzanian Shilling', 'invoicing'), |
|
477 | + 'UAH' => __('Ukrainian Hryvnia', 'invoicing'), |
|
478 | + 'UGX' => __('Ugandan Shilling', 'invoicing'), |
|
479 | + 'UYU' => __('Uruguayan Peso', 'invoicing'), |
|
480 | + 'UZS' => __('Uzbekistani Som', 'invoicing'), |
|
481 | + 'VEF' => __('Venezuelan Bolívar', 'invoicing'), |
|
482 | + 'VND' => __('Vietnamese Dong', 'invoicing'), |
|
483 | + 'VUV' => __('Vanuatu Vatu', 'invoicing'), |
|
484 | + 'WST' => __('Samoan Tala', 'invoicing'), |
|
485 | + 'XAF' => __('Central African CFA Franc', 'invoicing'), |
|
486 | + 'XCD' => __('East Caribbean Dollar', 'invoicing'), |
|
487 | + 'XOF' => __('West African CFA Franc', 'invoicing'), |
|
488 | + 'XPF' => __('CFP Franc', 'invoicing'), |
|
489 | + 'YER' => __('Yemeni Rial', 'invoicing'), |
|
490 | + 'ZAR' => __('South African Rand', 'invoicing'), |
|
491 | + 'ZMW' => __('Zambian Kwacha', 'invoicing'), |
|
492 | 492 | ); |
493 | 493 | |
494 | 494 | //asort( $currencies ); // this |
495 | 495 | |
496 | - return apply_filters( 'wpinv_currencies', $currencies ); |
|
496 | + return apply_filters('wpinv_currencies', $currencies); |
|
497 | 497 | } |
498 | 498 | |
499 | -function wpinv_price( $amount = '', $currency = '' ) { |
|
500 | - if( empty( $currency ) ) { |
|
499 | +function wpinv_price($amount = '', $currency = '') { |
|
500 | + if (empty($currency)) { |
|
501 | 501 | $currency = wpinv_get_currency(); |
502 | 502 | } |
503 | 503 | |
@@ -505,14 +505,14 @@ discard block |
||
505 | 505 | |
506 | 506 | $negative = $amount < 0; |
507 | 507 | |
508 | - if ( $negative ) { |
|
509 | - $amount = substr( $amount, 1 ); |
|
508 | + if ($negative) { |
|
509 | + $amount = substr($amount, 1); |
|
510 | 510 | } |
511 | 511 | |
512 | - $symbol = wpinv_currency_symbol( $currency ); |
|
512 | + $symbol = wpinv_currency_symbol($currency); |
|
513 | 513 | |
514 | - if ( $position == 'left' || $position == 'left_space' ) { |
|
515 | - switch ( $currency ) { |
|
514 | + if ($position == 'left' || $position == 'left_space') { |
|
515 | + switch ($currency) { |
|
516 | 516 | case "GBP" : |
517 | 517 | case "BRL" : |
518 | 518 | case "EUR" : |
@@ -524,15 +524,15 @@ discard block |
||
524 | 524 | case "NZD" : |
525 | 525 | case "SGD" : |
526 | 526 | case "JPY" : |
527 | - $price = $position == 'left_space' ? $symbol . ' ' . $amount : $symbol . $amount; |
|
527 | + $price = $position == 'left_space' ? $symbol . ' ' . $amount : $symbol . $amount; |
|
528 | 528 | break; |
529 | 529 | default : |
530 | 530 | //$price = $currency . ' ' . $amount; |
531 | - $price = $position == 'left_space' ? $symbol . ' ' . $amount : $symbol . $amount; |
|
531 | + $price = $position == 'left_space' ? $symbol . ' ' . $amount : $symbol . $amount; |
|
532 | 532 | break; |
533 | 533 | } |
534 | 534 | } else { |
535 | - switch ( $currency ) { |
|
535 | + switch ($currency) { |
|
536 | 536 | case "GBP" : |
537 | 537 | case "BRL" : |
538 | 538 | case "EUR" : |
@@ -543,83 +543,83 @@ discard block |
||
543 | 543 | case "MXN" : |
544 | 544 | case "SGD" : |
545 | 545 | case "JPY" : |
546 | - $price = $position == 'right_space' ? $amount . ' ' . $symbol : $amount . $symbol; |
|
546 | + $price = $position == 'right_space' ? $amount . ' ' . $symbol : $amount . $symbol; |
|
547 | 547 | break; |
548 | 548 | default : |
549 | 549 | //$price = $amount . ' ' . $currency; |
550 | - $price = $position == 'right_space' ? $amount . ' ' . $symbol : $amount . $symbol; |
|
550 | + $price = $position == 'right_space' ? $amount . ' ' . $symbol : $amount . $symbol; |
|
551 | 551 | break; |
552 | 552 | } |
553 | 553 | } |
554 | 554 | |
555 | - if ( $negative ) { |
|
555 | + if ($negative) { |
|
556 | 556 | $price = '-' . $price; |
557 | 557 | } |
558 | 558 | |
559 | - $price = apply_filters( 'wpinv_' . strtolower( $currency ) . '_currency_filter_' . $position, $price, $currency, $amount ); |
|
559 | + $price = apply_filters('wpinv_' . strtolower($currency) . '_currency_filter_' . $position, $price, $currency, $amount); |
|
560 | 560 | |
561 | 561 | return $price; |
562 | 562 | } |
563 | 563 | |
564 | -function wpinv_format_amount( $amount, $decimals = NULL, $calculate = false ) { |
|
564 | +function wpinv_format_amount($amount, $decimals = NULL, $calculate = false) { |
|
565 | 565 | $thousands_sep = wpinv_thousands_separator(); |
566 | 566 | $decimal_sep = wpinv_decimal_separator(); |
567 | 567 | |
568 | - if ( $decimals === NULL ) { |
|
568 | + if ($decimals === NULL) { |
|
569 | 569 | $decimals = wpinv_decimals(); |
570 | 570 | } |
571 | 571 | |
572 | - if ( $decimal_sep == ',' && false !== ( $sep_found = strpos( $amount, $decimal_sep ) ) ) { |
|
573 | - $whole = substr( $amount, 0, $sep_found ); |
|
574 | - $part = substr( $amount, $sep_found + 1, ( strlen( $amount ) - 1 ) ); |
|
572 | + if ($decimal_sep == ',' && false !== ($sep_found = strpos($amount, $decimal_sep))) { |
|
573 | + $whole = substr($amount, 0, $sep_found); |
|
574 | + $part = substr($amount, $sep_found + 1, (strlen($amount) - 1)); |
|
575 | 575 | $amount = $whole . '.' . $part; |
576 | 576 | } |
577 | 577 | |
578 | - if ( $thousands_sep == ',' && false !== ( $found = strpos( $amount, $thousands_sep ) ) ) { |
|
579 | - $amount = str_replace( ',', '', $amount ); |
|
578 | + if ($thousands_sep == ',' && false !== ($found = strpos($amount, $thousands_sep))) { |
|
579 | + $amount = str_replace(',', '', $amount); |
|
580 | 580 | } |
581 | 581 | |
582 | - if ( $thousands_sep == ' ' && false !== ( $found = strpos( $amount, $thousands_sep ) ) ) { |
|
583 | - $amount = str_replace( ' ', '', $amount ); |
|
582 | + if ($thousands_sep == ' ' && false !== ($found = strpos($amount, $thousands_sep))) { |
|
583 | + $amount = str_replace(' ', '', $amount); |
|
584 | 584 | } |
585 | 585 | |
586 | - if ( empty( $amount ) ) { |
|
586 | + if (empty($amount)) { |
|
587 | 587 | $amount = 0; |
588 | 588 | } |
589 | 589 | |
590 | - $decimals = apply_filters( 'wpinv_amount_format_decimals', $decimals ? $decimals : 0, $amount, $calculate ); |
|
591 | - $formatted = number_format( (float)$amount, $decimals, $decimal_sep, $thousands_sep ); |
|
590 | + $decimals = apply_filters('wpinv_amount_format_decimals', $decimals ? $decimals : 0, $amount, $calculate); |
|
591 | + $formatted = number_format((float)$amount, $decimals, $decimal_sep, $thousands_sep); |
|
592 | 592 | |
593 | - if ( $calculate ) { |
|
594 | - if ( $thousands_sep === "," ) { |
|
595 | - $formatted = str_replace( ",", "", $formatted ); |
|
593 | + if ($calculate) { |
|
594 | + if ($thousands_sep === ",") { |
|
595 | + $formatted = str_replace(",", "", $formatted); |
|
596 | 596 | } |
597 | 597 | |
598 | - if ( $decimal_sep === "," ) { |
|
599 | - $formatted = str_replace( ",", ".", $formatted ); |
|
598 | + if ($decimal_sep === ",") { |
|
599 | + $formatted = str_replace(",", ".", $formatted); |
|
600 | 600 | } |
601 | 601 | } |
602 | 602 | |
603 | - return apply_filters( 'wpinv_amount_format', $formatted, $amount, $decimals, $decimal_sep, $thousands_sep, $calculate ); |
|
603 | + return apply_filters('wpinv_amount_format', $formatted, $amount, $decimals, $decimal_sep, $thousands_sep, $calculate); |
|
604 | 604 | } |
605 | -add_filter( 'wpinv_amount_format_decimals', 'wpinv_currency_decimal_filter', 10, 1 ); |
|
605 | +add_filter('wpinv_amount_format_decimals', 'wpinv_currency_decimal_filter', 10, 1); |
|
606 | 606 | |
607 | -function wpinv_sanitize_key( $key ) { |
|
607 | +function wpinv_sanitize_key($key) { |
|
608 | 608 | $raw_key = $key; |
609 | - $key = preg_replace( '/[^a-zA-Z0-9_\-\.\:\/]/', '', $key ); |
|
609 | + $key = preg_replace('/[^a-zA-Z0-9_\-\.\:\/]/', '', $key); |
|
610 | 610 | |
611 | - return apply_filters( 'wpinv_sanitize_key', $key, $raw_key ); |
|
611 | + return apply_filters('wpinv_sanitize_key', $key, $raw_key); |
|
612 | 612 | } |
613 | 613 | |
614 | -function wpinv_get_file_extension( $str ) { |
|
615 | - $parts = explode( '.', $str ); |
|
616 | - return end( $parts ); |
|
614 | +function wpinv_get_file_extension($str) { |
|
615 | + $parts = explode('.', $str); |
|
616 | + return end($parts); |
|
617 | 617 | } |
618 | 618 | |
619 | -function wpinv_string_is_image_url( $str ) { |
|
620 | - $ext = wpinv_get_file_extension( $str ); |
|
619 | +function wpinv_string_is_image_url($str) { |
|
620 | + $ext = wpinv_get_file_extension($str); |
|
621 | 621 | |
622 | - switch ( strtolower( $ext ) ) { |
|
622 | + switch (strtolower($ext)) { |
|
623 | 623 | case 'jpeg'; |
624 | 624 | case 'jpg'; |
625 | 625 | $return = true; |
@@ -635,32 +635,32 @@ discard block |
||
635 | 635 | break; |
636 | 636 | } |
637 | 637 | |
638 | - return (bool)apply_filters( 'wpinv_string_is_image', $return, $str ); |
|
638 | + return (bool)apply_filters('wpinv_string_is_image', $return, $str); |
|
639 | 639 | } |
640 | 640 | |
641 | -function wpinv_error_log( $log, $title = '', $file = '', $line = '', $exit = false ) { |
|
642 | - $should_log = apply_filters( 'wpinv_log_errors', WP_DEBUG ); |
|
641 | +function wpinv_error_log($log, $title = '', $file = '', $line = '', $exit = false) { |
|
642 | + $should_log = apply_filters('wpinv_log_errors', WP_DEBUG); |
|
643 | 643 | |
644 | - if ( true === $should_log ) { |
|
644 | + if (true === $should_log) { |
|
645 | 645 | $label = ''; |
646 | - if ( $file && $file !== '' ) { |
|
647 | - $label .= basename( $file ) . ( $line ? '(' . $line . ')' : '' ); |
|
646 | + if ($file && $file !== '') { |
|
647 | + $label .= basename($file) . ($line ? '(' . $line . ')' : ''); |
|
648 | 648 | } |
649 | 649 | |
650 | - if ( $title && $title !== '' ) { |
|
650 | + if ($title && $title !== '') { |
|
651 | 651 | $label = $label !== '' ? $label . ' ' : ''; |
652 | 652 | $label .= $title . ' '; |
653 | 653 | } |
654 | 654 | |
655 | - $label = $label !== '' ? trim( $label ) . ' : ' : ''; |
|
655 | + $label = $label !== '' ? trim($label) . ' : ' : ''; |
|
656 | 656 | |
657 | - if ( is_array( $log ) || is_object( $log ) ) { |
|
658 | - error_log( $label . print_r( $log, true ) ); |
|
657 | + if (is_array($log) || is_object($log)) { |
|
658 | + error_log($label . print_r($log, true)); |
|
659 | 659 | } else { |
660 | - error_log( $label . $log ); |
|
660 | + error_log($label . $log); |
|
661 | 661 | } |
662 | 662 | |
663 | - if ( $exit ) { |
|
663 | + if ($exit) { |
|
664 | 664 | exit; |
665 | 665 | } |
666 | 666 | } |
@@ -668,65 +668,65 @@ discard block |
||
668 | 668 | |
669 | 669 | function wpinv_is_ajax_disabled() { |
670 | 670 | $retval = false; |
671 | - return apply_filters( 'wpinv_is_ajax_disabled', $retval ); |
|
671 | + return apply_filters('wpinv_is_ajax_disabled', $retval); |
|
672 | 672 | } |
673 | 673 | |
674 | -function wpinv_get_current_page_url( $nocache = false ) { |
|
674 | +function wpinv_get_current_page_url($nocache = false) { |
|
675 | 675 | global $wp; |
676 | 676 | |
677 | - if ( get_option( 'permalink_structure' ) ) { |
|
678 | - $base = trailingslashit( home_url( $wp->request ) ); |
|
677 | + if (get_option('permalink_structure')) { |
|
678 | + $base = trailingslashit(home_url($wp->request)); |
|
679 | 679 | } else { |
680 | - $base = add_query_arg( $wp->query_string, '', trailingslashit( home_url( $wp->request ) ) ); |
|
681 | - $base = remove_query_arg( array( 'post_type', 'name' ), $base ); |
|
680 | + $base = add_query_arg($wp->query_string, '', trailingslashit(home_url($wp->request))); |
|
681 | + $base = remove_query_arg(array('post_type', 'name'), $base); |
|
682 | 682 | } |
683 | 683 | |
684 | 684 | $scheme = is_ssl() ? 'https' : 'http'; |
685 | - $uri = set_url_scheme( $base, $scheme ); |
|
685 | + $uri = set_url_scheme($base, $scheme); |
|
686 | 686 | |
687 | - if ( is_front_page() ) { |
|
688 | - $uri = home_url( '/' ); |
|
689 | - } elseif ( wpinv_is_checkout( array(), false ) ) { |
|
687 | + if (is_front_page()) { |
|
688 | + $uri = home_url('/'); |
|
689 | + } elseif (wpinv_is_checkout(array(), false)) { |
|
690 | 690 | $uri = wpinv_get_checkout_uri(); |
691 | 691 | } |
692 | 692 | |
693 | - $uri = apply_filters( 'wpinv_get_current_page_url', $uri ); |
|
693 | + $uri = apply_filters('wpinv_get_current_page_url', $uri); |
|
694 | 694 | |
695 | - if ( $nocache ) { |
|
696 | - $uri = wpinv_add_cache_busting( $uri ); |
|
695 | + if ($nocache) { |
|
696 | + $uri = wpinv_add_cache_busting($uri); |
|
697 | 697 | } |
698 | 698 | |
699 | 699 | return $uri; |
700 | 700 | } |
701 | 701 | |
702 | 702 | function wpinv_get_php_arg_separator_output() { |
703 | - return ini_get( 'arg_separator.output' ); |
|
703 | + return ini_get('arg_separator.output'); |
|
704 | 704 | } |
705 | 705 | |
706 | -function wpinv_rgb_from_hex( $color ) { |
|
707 | - $color = str_replace( '#', '', $color ); |
|
706 | +function wpinv_rgb_from_hex($color) { |
|
707 | + $color = str_replace('#', '', $color); |
|
708 | 708 | // Convert shorthand colors to full format, e.g. "FFF" -> "FFFFFF" |
709 | - $color = preg_replace( '~^(.)(.)(.)$~', '$1$1$2$2$3$3', $color ); |
|
709 | + $color = preg_replace('~^(.)(.)(.)$~', '$1$1$2$2$3$3', $color); |
|
710 | 710 | |
711 | 711 | $rgb = array(); |
712 | - $rgb['R'] = hexdec( $color{0}.$color{1} ); |
|
713 | - $rgb['G'] = hexdec( $color{2}.$color{3} ); |
|
714 | - $rgb['B'] = hexdec( $color{4}.$color{5} ); |
|
712 | + $rgb['R'] = hexdec($color{0} . $color{1} ); |
|
713 | + $rgb['G'] = hexdec($color{2} . $color{3} ); |
|
714 | + $rgb['B'] = hexdec($color{4} . $color{5} ); |
|
715 | 715 | |
716 | 716 | return $rgb; |
717 | 717 | } |
718 | 718 | |
719 | -function wpinv_hex_darker( $color, $factor = 30 ) { |
|
720 | - $base = wpinv_rgb_from_hex( $color ); |
|
719 | +function wpinv_hex_darker($color, $factor = 30) { |
|
720 | + $base = wpinv_rgb_from_hex($color); |
|
721 | 721 | $color = '#'; |
722 | 722 | |
723 | - foreach ( $base as $k => $v ) { |
|
723 | + foreach ($base as $k => $v) { |
|
724 | 724 | $amount = $v / 100; |
725 | - $amount = round( $amount * $factor ); |
|
725 | + $amount = round($amount * $factor); |
|
726 | 726 | $new_decimal = $v - $amount; |
727 | 727 | |
728 | - $new_hex_component = dechex( $new_decimal ); |
|
729 | - if ( strlen( $new_hex_component ) < 2 ) { |
|
728 | + $new_hex_component = dechex($new_decimal); |
|
729 | + if (strlen($new_hex_component) < 2) { |
|
730 | 730 | $new_hex_component = "0" . $new_hex_component; |
731 | 731 | } |
732 | 732 | $color .= $new_hex_component; |
@@ -735,18 +735,18 @@ discard block |
||
735 | 735 | return $color; |
736 | 736 | } |
737 | 737 | |
738 | -function wpinv_hex_lighter( $color, $factor = 30 ) { |
|
739 | - $base = wpinv_rgb_from_hex( $color ); |
|
738 | +function wpinv_hex_lighter($color, $factor = 30) { |
|
739 | + $base = wpinv_rgb_from_hex($color); |
|
740 | 740 | $color = '#'; |
741 | 741 | |
742 | - foreach ( $base as $k => $v ) { |
|
742 | + foreach ($base as $k => $v) { |
|
743 | 743 | $amount = 255 - $v; |
744 | 744 | $amount = $amount / 100; |
745 | - $amount = round( $amount * $factor ); |
|
745 | + $amount = round($amount * $factor); |
|
746 | 746 | $new_decimal = $v + $amount; |
747 | 747 | |
748 | - $new_hex_component = dechex( $new_decimal ); |
|
749 | - if ( strlen( $new_hex_component ) < 2 ) { |
|
748 | + $new_hex_component = dechex($new_decimal); |
|
749 | + if (strlen($new_hex_component) < 2) { |
|
750 | 750 | $new_hex_component = "0" . $new_hex_component; |
751 | 751 | } |
752 | 752 | $color .= $new_hex_component; |
@@ -755,22 +755,22 @@ discard block |
||
755 | 755 | return $color; |
756 | 756 | } |
757 | 757 | |
758 | -function wpinv_light_or_dark( $color, $dark = '#000000', $light = '#FFFFFF' ) { |
|
759 | - $hex = str_replace( '#', '', $color ); |
|
758 | +function wpinv_light_or_dark($color, $dark = '#000000', $light = '#FFFFFF') { |
|
759 | + $hex = str_replace('#', '', $color); |
|
760 | 760 | |
761 | - $c_r = hexdec( substr( $hex, 0, 2 ) ); |
|
762 | - $c_g = hexdec( substr( $hex, 2, 2 ) ); |
|
763 | - $c_b = hexdec( substr( $hex, 4, 2 ) ); |
|
761 | + $c_r = hexdec(substr($hex, 0, 2)); |
|
762 | + $c_g = hexdec(substr($hex, 2, 2)); |
|
763 | + $c_b = hexdec(substr($hex, 4, 2)); |
|
764 | 764 | |
765 | - $brightness = ( ( $c_r * 299 ) + ( $c_g * 587 ) + ( $c_b * 114 ) ) / 1000; |
|
765 | + $brightness = (($c_r * 299) + ($c_g * 587) + ($c_b * 114)) / 1000; |
|
766 | 766 | |
767 | 767 | return $brightness > 155 ? $dark : $light; |
768 | 768 | } |
769 | 769 | |
770 | -function wpinv_format_hex( $hex ) { |
|
771 | - $hex = trim( str_replace( '#', '', $hex ) ); |
|
770 | +function wpinv_format_hex($hex) { |
|
771 | + $hex = trim(str_replace('#', '', $hex)); |
|
772 | 772 | |
773 | - if ( strlen( $hex ) == 3 ) { |
|
773 | + if (strlen($hex) == 3) { |
|
774 | 774 | $hex = $hex[0] . $hex[0] . $hex[1] . $hex[1] . $hex[2] . $hex[2]; |
775 | 775 | } |
776 | 776 | |
@@ -790,12 +790,12 @@ discard block |
||
790 | 790 | * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8". |
791 | 791 | * @return string |
792 | 792 | */ |
793 | -function wpinv_utf8_strimwidth( $str, $start, $width, $trimmaker = '', $encoding = 'UTF-8' ) { |
|
794 | - if ( function_exists( 'mb_strimwidth' ) ) { |
|
795 | - return mb_strimwidth( $str, $start, $width, $trimmaker, $encoding ); |
|
793 | +function wpinv_utf8_strimwidth($str, $start, $width, $trimmaker = '', $encoding = 'UTF-8') { |
|
794 | + if (function_exists('mb_strimwidth')) { |
|
795 | + return mb_strimwidth($str, $start, $width, $trimmaker, $encoding); |
|
796 | 796 | } |
797 | 797 | |
798 | - return wpinv_utf8_substr( $str, $start, $width, $encoding ) . $trimmaker; |
|
798 | + return wpinv_utf8_substr($str, $start, $width, $encoding) . $trimmaker; |
|
799 | 799 | } |
800 | 800 | |
801 | 801 | /** |
@@ -807,28 +807,28 @@ discard block |
||
807 | 807 | * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8". |
808 | 808 | * @return int Returns the number of characters in string. |
809 | 809 | */ |
810 | -function wpinv_utf8_strlen( $str, $encoding = 'UTF-8' ) { |
|
811 | - if ( function_exists( 'mb_strlen' ) ) { |
|
812 | - return mb_strlen( $str, $encoding ); |
|
810 | +function wpinv_utf8_strlen($str, $encoding = 'UTF-8') { |
|
811 | + if (function_exists('mb_strlen')) { |
|
812 | + return mb_strlen($str, $encoding); |
|
813 | 813 | } |
814 | 814 | |
815 | - return strlen( $str ); |
|
815 | + return strlen($str); |
|
816 | 816 | } |
817 | 817 | |
818 | -function wpinv_utf8_strtolower( $str, $encoding = 'UTF-8' ) { |
|
819 | - if ( function_exists( 'mb_strtolower' ) ) { |
|
820 | - return mb_strtolower( $str, $encoding ); |
|
818 | +function wpinv_utf8_strtolower($str, $encoding = 'UTF-8') { |
|
819 | + if (function_exists('mb_strtolower')) { |
|
820 | + return mb_strtolower($str, $encoding); |
|
821 | 821 | } |
822 | 822 | |
823 | - return strtolower( $str ); |
|
823 | + return strtolower($str); |
|
824 | 824 | } |
825 | 825 | |
826 | -function wpinv_utf8_strtoupper( $str, $encoding = 'UTF-8' ) { |
|
827 | - if ( function_exists( 'mb_strtoupper' ) ) { |
|
828 | - return mb_strtoupper( $str, $encoding ); |
|
826 | +function wpinv_utf8_strtoupper($str, $encoding = 'UTF-8') { |
|
827 | + if (function_exists('mb_strtoupper')) { |
|
828 | + return mb_strtoupper($str, $encoding); |
|
829 | 829 | } |
830 | 830 | |
831 | - return strtoupper( $str ); |
|
831 | + return strtoupper($str); |
|
832 | 832 | } |
833 | 833 | |
834 | 834 | /** |
@@ -842,12 +842,12 @@ discard block |
||
842 | 842 | * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8". |
843 | 843 | * @return int Returns the position of the first occurrence of search in the string. |
844 | 844 | */ |
845 | -function wpinv_utf8_strpos( $str, $find, $offset = 0, $encoding = 'UTF-8' ) { |
|
846 | - if ( function_exists( 'mb_strpos' ) ) { |
|
847 | - return mb_strpos( $str, $find, $offset, $encoding ); |
|
845 | +function wpinv_utf8_strpos($str, $find, $offset = 0, $encoding = 'UTF-8') { |
|
846 | + if (function_exists('mb_strpos')) { |
|
847 | + return mb_strpos($str, $find, $offset, $encoding); |
|
848 | 848 | } |
849 | 849 | |
850 | - return strpos( $str, $find, $offset ); |
|
850 | + return strpos($str, $find, $offset); |
|
851 | 851 | } |
852 | 852 | |
853 | 853 | /** |
@@ -861,12 +861,12 @@ discard block |
||
861 | 861 | * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8". |
862 | 862 | * @return int Returns the position of the last occurrence of search. |
863 | 863 | */ |
864 | -function wpinv_utf8_strrpos( $str, $find, $offset = 0, $encoding = 'UTF-8' ) { |
|
865 | - if ( function_exists( 'mb_strrpos' ) ) { |
|
866 | - return mb_strrpos( $str, $find, $offset, $encoding ); |
|
864 | +function wpinv_utf8_strrpos($str, $find, $offset = 0, $encoding = 'UTF-8') { |
|
865 | + if (function_exists('mb_strrpos')) { |
|
866 | + return mb_strrpos($str, $find, $offset, $encoding); |
|
867 | 867 | } |
868 | 868 | |
869 | - return strrpos( $str, $find, $offset ); |
|
869 | + return strrpos($str, $find, $offset); |
|
870 | 870 | } |
871 | 871 | |
872 | 872 | /** |
@@ -881,16 +881,16 @@ discard block |
||
881 | 881 | * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8". |
882 | 882 | * @return string |
883 | 883 | */ |
884 | -function wpinv_utf8_substr( $str, $start, $length = null, $encoding = 'UTF-8' ) { |
|
885 | - if ( function_exists( 'mb_substr' ) ) { |
|
886 | - if ( $length === null ) { |
|
887 | - return mb_substr( $str, $start, wpinv_utf8_strlen( $str, $encoding ), $encoding ); |
|
884 | +function wpinv_utf8_substr($str, $start, $length = null, $encoding = 'UTF-8') { |
|
885 | + if (function_exists('mb_substr')) { |
|
886 | + if ($length === null) { |
|
887 | + return mb_substr($str, $start, wpinv_utf8_strlen($str, $encoding), $encoding); |
|
888 | 888 | } else { |
889 | - return mb_substr( $str, $start, $length, $encoding ); |
|
889 | + return mb_substr($str, $start, $length, $encoding); |
|
890 | 890 | } |
891 | 891 | } |
892 | 892 | |
893 | - return substr( $str, $start, $length ); |
|
893 | + return substr($str, $start, $length); |
|
894 | 894 | } |
895 | 895 | |
896 | 896 | /** |
@@ -902,48 +902,48 @@ discard block |
||
902 | 902 | * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8". |
903 | 903 | * @return string The width of string. |
904 | 904 | */ |
905 | -function wpinv_utf8_strwidth( $str, $encoding = 'UTF-8' ) { |
|
906 | - if ( function_exists( 'mb_strwidth' ) ) { |
|
907 | - return mb_strwidth( $str, $encoding ); |
|
905 | +function wpinv_utf8_strwidth($str, $encoding = 'UTF-8') { |
|
906 | + if (function_exists('mb_strwidth')) { |
|
907 | + return mb_strwidth($str, $encoding); |
|
908 | 908 | } |
909 | 909 | |
910 | - return wpinv_utf8_strlen( $str, $encoding ); |
|
910 | + return wpinv_utf8_strlen($str, $encoding); |
|
911 | 911 | } |
912 | 912 | |
913 | -function wpinv_utf8_ucfirst( $str, $lower_str_end = false, $encoding = 'UTF-8' ) { |
|
914 | - if ( function_exists( 'mb_strlen' ) ) { |
|
915 | - $first_letter = wpinv_utf8_strtoupper( wpinv_utf8_substr( $str, 0, 1, $encoding ), $encoding ); |
|
913 | +function wpinv_utf8_ucfirst($str, $lower_str_end = false, $encoding = 'UTF-8') { |
|
914 | + if (function_exists('mb_strlen')) { |
|
915 | + $first_letter = wpinv_utf8_strtoupper(wpinv_utf8_substr($str, 0, 1, $encoding), $encoding); |
|
916 | 916 | $str_end = ""; |
917 | 917 | |
918 | - if ( $lower_str_end ) { |
|
919 | - $str_end = wpinv_utf8_strtolower( wpinv_utf8_substr( $str, 1, wpinv_utf8_strlen( $str, $encoding ), $encoding ), $encoding ); |
|
918 | + if ($lower_str_end) { |
|
919 | + $str_end = wpinv_utf8_strtolower(wpinv_utf8_substr($str, 1, wpinv_utf8_strlen($str, $encoding), $encoding), $encoding); |
|
920 | 920 | } else { |
921 | - $str_end = wpinv_utf8_substr( $str, 1, wpinv_utf8_strlen( $str, $encoding ), $encoding ); |
|
921 | + $str_end = wpinv_utf8_substr($str, 1, wpinv_utf8_strlen($str, $encoding), $encoding); |
|
922 | 922 | } |
923 | 923 | |
924 | 924 | return $first_letter . $str_end; |
925 | 925 | } |
926 | 926 | |
927 | - return ucfirst( $str ); |
|
927 | + return ucfirst($str); |
|
928 | 928 | } |
929 | 929 | |
930 | -function wpinv_utf8_ucwords( $str, $encoding = 'UTF-8' ) { |
|
931 | - if ( function_exists( 'mb_convert_case' ) ) { |
|
932 | - return mb_convert_case( $str, MB_CASE_TITLE, $encoding ); |
|
930 | +function wpinv_utf8_ucwords($str, $encoding = 'UTF-8') { |
|
931 | + if (function_exists('mb_convert_case')) { |
|
932 | + return mb_convert_case($str, MB_CASE_TITLE, $encoding); |
|
933 | 933 | } |
934 | 934 | |
935 | - return ucwords( $str ); |
|
935 | + return ucwords($str); |
|
936 | 936 | } |
937 | 937 | |
938 | -function wpinv_period_in_days( $period, $unit ) { |
|
939 | - $period = absint( $period ); |
|
938 | +function wpinv_period_in_days($period, $unit) { |
|
939 | + $period = absint($period); |
|
940 | 940 | |
941 | - if ( $period > 0 ) { |
|
942 | - if ( in_array( strtolower( $unit ), array( 'w', 'week', 'weeks' ) ) ) { |
|
941 | + if ($period > 0) { |
|
942 | + if (in_array(strtolower($unit), array('w', 'week', 'weeks'))) { |
|
943 | 943 | $period = $period * 7; |
944 | - } else if ( in_array( strtolower( $unit ), array( 'm', 'month', 'months' ) ) ) { |
|
944 | + } else if (in_array(strtolower($unit), array('m', 'month', 'months'))) { |
|
945 | 945 | $period = $period * 30; |
946 | - } else if ( in_array( strtolower( $unit ), array( 'y', 'year', 'years' ) ) ) { |
|
946 | + } else if (in_array(strtolower($unit), array('y', 'year', 'years'))) { |
|
947 | 947 | $period = $period * 365; |
948 | 948 | } |
949 | 949 | } |
@@ -951,14 +951,14 @@ discard block |
||
951 | 951 | return $period; |
952 | 952 | } |
953 | 953 | |
954 | -function wpinv_cal_days_in_month( $calendar, $month, $year ) { |
|
955 | - if ( function_exists( 'cal_days_in_month' ) ) { |
|
956 | - return cal_days_in_month( $calendar, $month, $year ); |
|
954 | +function wpinv_cal_days_in_month($calendar, $month, $year) { |
|
955 | + if (function_exists('cal_days_in_month')) { |
|
956 | + return cal_days_in_month($calendar, $month, $year); |
|
957 | 957 | } |
958 | 958 | |
959 | 959 | // Fallback in case the calendar extension is not loaded in PHP |
960 | 960 | // Only supports Gregorian calendar |
961 | - return date( 't', mktime( 0, 0, 0, $month, 1, $year ) ); |
|
961 | + return date('t', mktime(0, 0, 0, $month, 1, $year)); |
|
962 | 962 | } |
963 | 963 | |
964 | 964 | /** |
@@ -969,11 +969,11 @@ discard block |
||
969 | 969 | * |
970 | 970 | * @return string |
971 | 971 | */ |
972 | -function wpi_help_tip( $tip, $allow_html = false ) { |
|
973 | - if ( $allow_html ) { |
|
974 | - $tip = wpi_sanitize_tooltip( $tip ); |
|
972 | +function wpi_help_tip($tip, $allow_html = false) { |
|
973 | + if ($allow_html) { |
|
974 | + $tip = wpi_sanitize_tooltip($tip); |
|
975 | 975 | } else { |
976 | - $tip = esc_attr( $tip ); |
|
976 | + $tip = esc_attr($tip); |
|
977 | 977 | } |
978 | 978 | |
979 | 979 | return '<span class="wpi-help-tip dashicons dashicons-editor-help" title="' . $tip . '"></span>'; |
@@ -987,8 +987,8 @@ discard block |
||
987 | 987 | * @param string $var |
988 | 988 | * @return string |
989 | 989 | */ |
990 | -function wpi_sanitize_tooltip( $var ) { |
|
991 | - return htmlspecialchars( wp_kses( html_entity_decode( $var ), array( |
|
990 | +function wpi_sanitize_tooltip($var) { |
|
991 | + return htmlspecialchars(wp_kses(html_entity_decode($var), array( |
|
992 | 992 | 'br' => array(), |
993 | 993 | 'em' => array(), |
994 | 994 | 'strong' => array(), |
@@ -998,7 +998,7 @@ discard block |
||
998 | 998 | 'li' => array(), |
999 | 999 | 'ol' => array(), |
1000 | 1000 | 'p' => array(), |
1001 | - ) ) ); |
|
1001 | + ))); |
|
1002 | 1002 | } |
1003 | 1003 | |
1004 | 1004 | /** |
@@ -1008,7 +1008,7 @@ discard block |
||
1008 | 1008 | */ |
1009 | 1009 | function wpinv_get_screen_ids() { |
1010 | 1010 | |
1011 | - $screen_id = sanitize_title( __( 'Invoicing', 'invoicing' ) ); |
|
1011 | + $screen_id = sanitize_title(__('Invoicing', 'invoicing')); |
|
1012 | 1012 | |
1013 | 1013 | $screen_ids = array( |
1014 | 1014 | 'toplevel_page_' . $screen_id, |
@@ -1026,5 +1026,5 @@ discard block |
||
1026 | 1026 | 'invoicing_page_wpi-addons', |
1027 | 1027 | ); |
1028 | 1028 | |
1029 | - return apply_filters( 'wpinv_screen_ids', $screen_ids ); |
|
1029 | + return apply_filters('wpinv_screen_ids', $screen_ids); |
|
1030 | 1030 | } |
1031 | 1031 | \ No newline at end of file |
@@ -7,12 +7,12 @@ 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_init_transactional_emails() { |
15 | - $email_actions = apply_filters( 'wpinv_email_actions', array( |
|
15 | + $email_actions = apply_filters('wpinv_email_actions', array( |
|
16 | 16 | 'wpinv_status_wpi-pending_to_wpi-processing', |
17 | 17 | 'wpinv_status_wpi-pending_to_publish', |
18 | 18 | 'wpinv_status_wpi-pending_to_wpi-cancelled', |
@@ -30,381 +30,381 @@ discard block |
||
30 | 30 | 'wpinv_fully_refunded', |
31 | 31 | 'wpinv_partially_refunded', |
32 | 32 | 'wpinv_new_invoice_note' |
33 | - ) ); |
|
33 | + )); |
|
34 | 34 | |
35 | - foreach ( $email_actions as $action ) { |
|
36 | - add_action( $action, 'wpinv_send_transactional_email', 10, 10 ); |
|
35 | + foreach ($email_actions as $action) { |
|
36 | + add_action($action, 'wpinv_send_transactional_email', 10, 10); |
|
37 | 37 | } |
38 | 38 | } |
39 | -add_action( 'init', 'wpinv_init_transactional_emails' ); |
|
39 | +add_action('init', 'wpinv_init_transactional_emails'); |
|
40 | 40 | |
41 | 41 | // New invoice email |
42 | -add_action( 'wpinv_status_wpi-pending_to_wpi-processing_notification', 'wpinv_new_invoice_notification' ); |
|
43 | -add_action( 'wpinv_status_wpi-pending_to_publish_notification', 'wpinv_new_invoice_notification' ); |
|
44 | -add_action( 'wpinv_status_wpi-pending_to_wpi-onhold_notification', 'wpinv_new_invoice_notification' ); |
|
45 | -add_action( 'wpinv_status_wpi-failed_to_wpi-processing_notification', 'wpinv_new_invoice_notification' ); |
|
46 | -add_action( 'wpinv_status_wpi-failed_to_publish_notification', 'wpinv_new_invoice_notification' ); |
|
47 | -add_action( 'wpinv_status_wpi-failed_to_wpi-onhold_notification', 'wpinv_new_invoice_notification' ); |
|
42 | +add_action('wpinv_status_wpi-pending_to_wpi-processing_notification', 'wpinv_new_invoice_notification'); |
|
43 | +add_action('wpinv_status_wpi-pending_to_publish_notification', 'wpinv_new_invoice_notification'); |
|
44 | +add_action('wpinv_status_wpi-pending_to_wpi-onhold_notification', 'wpinv_new_invoice_notification'); |
|
45 | +add_action('wpinv_status_wpi-failed_to_wpi-processing_notification', 'wpinv_new_invoice_notification'); |
|
46 | +add_action('wpinv_status_wpi-failed_to_publish_notification', 'wpinv_new_invoice_notification'); |
|
47 | +add_action('wpinv_status_wpi-failed_to_wpi-onhold_notification', 'wpinv_new_invoice_notification'); |
|
48 | 48 | |
49 | 49 | // Cancelled invoice email |
50 | -add_action( 'wpinv_status_wpi-pending_to_wpi-cancelled_notification', 'wpinv_cancelled_invoice_notification' ); |
|
51 | -add_action( 'wpinv_status_wpi-onhold_to_wpi-cancelled_notification', 'wpinv_cancelled_invoice_notification' ); |
|
50 | +add_action('wpinv_status_wpi-pending_to_wpi-cancelled_notification', 'wpinv_cancelled_invoice_notification'); |
|
51 | +add_action('wpinv_status_wpi-onhold_to_wpi-cancelled_notification', 'wpinv_cancelled_invoice_notification'); |
|
52 | 52 | |
53 | 53 | // Failed invoice email |
54 | -add_action( 'wpinv_status_wpi-pending_to_wpi-failed_notification', 'wpinv_failed_invoice_notification' ); |
|
55 | -add_action( 'wpinv_status_wpi-onhold_to_wpi-failed_notification', 'wpinv_failed_invoice_notification' ); |
|
54 | +add_action('wpinv_status_wpi-pending_to_wpi-failed_notification', 'wpinv_failed_invoice_notification'); |
|
55 | +add_action('wpinv_status_wpi-onhold_to_wpi-failed_notification', 'wpinv_failed_invoice_notification'); |
|
56 | 56 | |
57 | 57 | // On hold invoice email |
58 | -add_action( 'wpinv_status_wpi-pending_to_wpi-onhold_notification', 'wpinv_onhold_invoice_notification' ); |
|
59 | -add_action( 'wpinv_status_wpi-failed_to_wpi-onhold_notification', 'wpinv_onhold_invoice_notification' ); |
|
58 | +add_action('wpinv_status_wpi-pending_to_wpi-onhold_notification', 'wpinv_onhold_invoice_notification'); |
|
59 | +add_action('wpinv_status_wpi-failed_to_wpi-onhold_notification', 'wpinv_onhold_invoice_notification'); |
|
60 | 60 | |
61 | 61 | // Processing invoice email |
62 | -add_action( 'wpinv_status_wpi-pending_to_wpi-processing_notification', 'wpinv_processing_invoice_notification' ); |
|
62 | +add_action('wpinv_status_wpi-pending_to_wpi-processing_notification', 'wpinv_processing_invoice_notification'); |
|
63 | 63 | |
64 | 64 | // Paid invoice email |
65 | -add_action( 'wpinv_status_publish_notification', 'wpinv_completed_invoice_notification' ); |
|
65 | +add_action('wpinv_status_publish_notification', 'wpinv_completed_invoice_notification'); |
|
66 | 66 | |
67 | 67 | // Refunded invoice email |
68 | -add_action( 'wpinv_fully_refunded_notification', 'wpinv_fully_refunded_notification' ); |
|
69 | -add_action( 'wpinv_partially_refunded_notification', 'wpinv_partially_refunded_notification' ); |
|
70 | -add_action( 'wpinv_status_publish_to_wpi-refunded_notification', 'wpinv_fully_refunded_notification' ); |
|
71 | -add_action( 'wpinv_status_wpi-processing_to_wpi-refunded_notification', 'wpinv_fully_refunded_notification' ); |
|
68 | +add_action('wpinv_fully_refunded_notification', 'wpinv_fully_refunded_notification'); |
|
69 | +add_action('wpinv_partially_refunded_notification', 'wpinv_partially_refunded_notification'); |
|
70 | +add_action('wpinv_status_publish_to_wpi-refunded_notification', 'wpinv_fully_refunded_notification'); |
|
71 | +add_action('wpinv_status_wpi-processing_to_wpi-refunded_notification', 'wpinv_fully_refunded_notification'); |
|
72 | 72 | |
73 | 73 | // Invoice note |
74 | -add_action( 'wpinv_new_invoice_note_notification', 'wpinv_new_invoice_note_notification' ); |
|
74 | +add_action('wpinv_new_invoice_note_notification', 'wpinv_new_invoice_note_notification'); |
|
75 | 75 | |
76 | -add_action( 'wpinv_email_header', 'wpinv_email_header' ); |
|
77 | -add_action( 'wpinv_email_footer', 'wpinv_email_footer' ); |
|
78 | -add_action( 'wpinv_email_invoice_details', 'wpinv_email_invoice_details', 10, 3 ); |
|
79 | -add_action( 'wpinv_email_invoice_items', 'wpinv_email_invoice_items', 10, 3 ); |
|
80 | -add_action( 'wpinv_email_billing_details', 'wpinv_email_billing_details', 10, 3 ); |
|
76 | +add_action('wpinv_email_header', 'wpinv_email_header'); |
|
77 | +add_action('wpinv_email_footer', 'wpinv_email_footer'); |
|
78 | +add_action('wpinv_email_invoice_details', 'wpinv_email_invoice_details', 10, 3); |
|
79 | +add_action('wpinv_email_invoice_items', 'wpinv_email_invoice_items', 10, 3); |
|
80 | +add_action('wpinv_email_billing_details', 'wpinv_email_billing_details', 10, 3); |
|
81 | 81 | |
82 | 82 | function wpinv_send_transactional_email() { |
83 | 83 | $args = func_get_args(); |
84 | 84 | $function = current_filter() . '_notification'; |
85 | - do_action_ref_array( $function, $args ); |
|
85 | + do_action_ref_array($function, $args); |
|
86 | 86 | } |
87 | 87 | |
88 | -function wpinv_new_invoice_notification( $invoice_id, $new_status = '' ) { |
|
88 | +function wpinv_new_invoice_notification($invoice_id, $new_status = '') { |
|
89 | 89 | $email_type = 'new_invoice'; |
90 | - if ( !wpinv_email_is_enabled( $email_type ) ) { |
|
90 | + if (!wpinv_email_is_enabled($email_type)) { |
|
91 | 91 | return false; |
92 | 92 | } |
93 | 93 | |
94 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
95 | - if ( empty( $invoice ) ) { |
|
94 | + $invoice = wpinv_get_invoice($invoice_id); |
|
95 | + if (empty($invoice)) { |
|
96 | 96 | return false; |
97 | 97 | } |
98 | 98 | |
99 | - if ( !("wpi_invoice" === $invoice->post_type) ) { |
|
99 | + if (!("wpi_invoice" === $invoice->post_type)) { |
|
100 | 100 | return false; |
101 | 101 | } |
102 | 102 | |
103 | - $recipient = wpinv_email_get_recipient( $email_type, $invoice_id, $invoice ); |
|
104 | - if ( !is_email( $recipient ) ) { |
|
103 | + $recipient = wpinv_email_get_recipient($email_type, $invoice_id, $invoice); |
|
104 | + if (!is_email($recipient)) { |
|
105 | 105 | return false; |
106 | 106 | } |
107 | 107 | |
108 | - do_action( 'wpinv_pre_send_invoice_notification', $invoice, $email_type, true ); |
|
108 | + do_action('wpinv_pre_send_invoice_notification', $invoice, $email_type, true); |
|
109 | 109 | |
110 | - $subject = wpinv_email_get_subject( $email_type, $invoice_id, $invoice ); |
|
111 | - $email_heading = wpinv_email_get_heading( $email_type, $invoice_id, $invoice ); |
|
112 | - $headers = wpinv_email_get_headers( $email_type, $invoice_id, $invoice ); |
|
113 | - $message_body = wpinv_email_get_content( $email_type, $invoice_id, $invoice ); |
|
114 | - $attachments = wpinv_email_get_attachments( $email_type, $invoice_id, $invoice ); |
|
110 | + $subject = wpinv_email_get_subject($email_type, $invoice_id, $invoice); |
|
111 | + $email_heading = wpinv_email_get_heading($email_type, $invoice_id, $invoice); |
|
112 | + $headers = wpinv_email_get_headers($email_type, $invoice_id, $invoice); |
|
113 | + $message_body = wpinv_email_get_content($email_type, $invoice_id, $invoice); |
|
114 | + $attachments = wpinv_email_get_attachments($email_type, $invoice_id, $invoice); |
|
115 | 115 | |
116 | - $content = wpinv_get_template_html( 'emails/wpinv-email-' . $email_type . '.php', array( |
|
116 | + $content = wpinv_get_template_html('emails/wpinv-email-' . $email_type . '.php', array( |
|
117 | 117 | 'invoice' => $invoice, |
118 | 118 | 'email_type' => $email_type, |
119 | 119 | 'email_heading' => $email_heading, |
120 | 120 | 'sent_to_admin' => true, |
121 | 121 | 'plain_text' => false, |
122 | 122 | 'message_body' => $message_body, |
123 | - ) ); |
|
123 | + )); |
|
124 | 124 | |
125 | - $sent = wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
125 | + $sent = wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
126 | 126 | |
127 | - do_action( 'wpinv_post_send_invoice_notification', $invoice, $email_type, true ); |
|
127 | + do_action('wpinv_post_send_invoice_notification', $invoice, $email_type, true); |
|
128 | 128 | |
129 | 129 | return $sent; |
130 | 130 | } |
131 | 131 | |
132 | -function wpinv_cancelled_invoice_notification( $invoice_id, $new_status = '' ) { |
|
132 | +function wpinv_cancelled_invoice_notification($invoice_id, $new_status = '') { |
|
133 | 133 | $email_type = 'cancelled_invoice'; |
134 | - if ( !wpinv_email_is_enabled( $email_type ) ) { |
|
134 | + if (!wpinv_email_is_enabled($email_type)) { |
|
135 | 135 | return false; |
136 | 136 | } |
137 | 137 | |
138 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
139 | - if ( empty( $invoice ) ) { |
|
138 | + $invoice = wpinv_get_invoice($invoice_id); |
|
139 | + if (empty($invoice)) { |
|
140 | 140 | return false; |
141 | 141 | } |
142 | 142 | |
143 | - if ( !("wpi_invoice" === $invoice->post_type) ) { |
|
143 | + if (!("wpi_invoice" === $invoice->post_type)) { |
|
144 | 144 | return false; |
145 | 145 | } |
146 | 146 | |
147 | - $recipient = wpinv_email_get_recipient( $email_type, $invoice_id, $invoice ); |
|
148 | - if ( !is_email( $recipient ) ) { |
|
147 | + $recipient = wpinv_email_get_recipient($email_type, $invoice_id, $invoice); |
|
148 | + if (!is_email($recipient)) { |
|
149 | 149 | return false; |
150 | 150 | } |
151 | 151 | |
152 | - do_action( 'wpinv_pre_send_invoice_notification', $invoice, $email_type, true ); |
|
152 | + do_action('wpinv_pre_send_invoice_notification', $invoice, $email_type, true); |
|
153 | 153 | |
154 | - $subject = wpinv_email_get_subject( $email_type, $invoice_id, $invoice ); |
|
155 | - $email_heading = wpinv_email_get_heading( $email_type, $invoice_id, $invoice ); |
|
156 | - $headers = wpinv_email_get_headers( $email_type, $invoice_id, $invoice ); |
|
157 | - $message_body = wpinv_email_get_content( $email_type, $invoice_id, $invoice ); |
|
158 | - $attachments = wpinv_email_get_attachments( $email_type, $invoice_id, $invoice ); |
|
154 | + $subject = wpinv_email_get_subject($email_type, $invoice_id, $invoice); |
|
155 | + $email_heading = wpinv_email_get_heading($email_type, $invoice_id, $invoice); |
|
156 | + $headers = wpinv_email_get_headers($email_type, $invoice_id, $invoice); |
|
157 | + $message_body = wpinv_email_get_content($email_type, $invoice_id, $invoice); |
|
158 | + $attachments = wpinv_email_get_attachments($email_type, $invoice_id, $invoice); |
|
159 | 159 | |
160 | - $content = wpinv_get_template_html( 'emails/wpinv-email-' . $email_type . '.php', array( |
|
160 | + $content = wpinv_get_template_html('emails/wpinv-email-' . $email_type . '.php', array( |
|
161 | 161 | 'invoice' => $invoice, |
162 | 162 | 'email_type' => $email_type, |
163 | 163 | 'email_heading' => $email_heading, |
164 | 164 | 'sent_to_admin' => true, |
165 | 165 | 'plain_text' => false, |
166 | 166 | 'message_body' => $message_body, |
167 | - ) ); |
|
167 | + )); |
|
168 | 168 | |
169 | - $sent = wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
169 | + $sent = wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
170 | 170 | |
171 | - do_action( 'wpinv_post_send_invoice_notification', $invoice, $email_type, true ); |
|
171 | + do_action('wpinv_post_send_invoice_notification', $invoice, $email_type, true); |
|
172 | 172 | |
173 | 173 | return $sent; |
174 | 174 | } |
175 | 175 | |
176 | -function wpinv_failed_invoice_notification( $invoice_id, $new_status = '' ) { |
|
176 | +function wpinv_failed_invoice_notification($invoice_id, $new_status = '') { |
|
177 | 177 | $email_type = 'failed_invoice'; |
178 | - if ( !wpinv_email_is_enabled( $email_type ) ) { |
|
178 | + if (!wpinv_email_is_enabled($email_type)) { |
|
179 | 179 | return false; |
180 | 180 | } |
181 | 181 | |
182 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
183 | - if ( empty( $invoice ) ) { |
|
182 | + $invoice = wpinv_get_invoice($invoice_id); |
|
183 | + if (empty($invoice)) { |
|
184 | 184 | return false; |
185 | 185 | } |
186 | 186 | |
187 | - if ( !("wpi_invoice" === $invoice->post_type) ) { |
|
187 | + if (!("wpi_invoice" === $invoice->post_type)) { |
|
188 | 188 | return false; |
189 | 189 | } |
190 | 190 | |
191 | - $recipient = wpinv_email_get_recipient( $email_type, $invoice_id, $invoice ); |
|
192 | - if ( !is_email( $recipient ) ) { |
|
191 | + $recipient = wpinv_email_get_recipient($email_type, $invoice_id, $invoice); |
|
192 | + if (!is_email($recipient)) { |
|
193 | 193 | return false; |
194 | 194 | } |
195 | 195 | |
196 | - do_action( 'wpinv_pre_send_invoice_notification', $invoice, $email_type, true ); |
|
196 | + do_action('wpinv_pre_send_invoice_notification', $invoice, $email_type, true); |
|
197 | 197 | |
198 | - $subject = wpinv_email_get_subject( $email_type, $invoice_id, $invoice ); |
|
199 | - $email_heading = wpinv_email_get_heading( $email_type, $invoice_id, $invoice ); |
|
200 | - $headers = wpinv_email_get_headers( $email_type, $invoice_id, $invoice ); |
|
201 | - $message_body = wpinv_email_get_content( $email_type, $invoice_id, $invoice ); |
|
202 | - $attachments = wpinv_email_get_attachments( $email_type, $invoice_id, $invoice ); |
|
198 | + $subject = wpinv_email_get_subject($email_type, $invoice_id, $invoice); |
|
199 | + $email_heading = wpinv_email_get_heading($email_type, $invoice_id, $invoice); |
|
200 | + $headers = wpinv_email_get_headers($email_type, $invoice_id, $invoice); |
|
201 | + $message_body = wpinv_email_get_content($email_type, $invoice_id, $invoice); |
|
202 | + $attachments = wpinv_email_get_attachments($email_type, $invoice_id, $invoice); |
|
203 | 203 | |
204 | - $content = wpinv_get_template_html( 'emails/wpinv-email-' . $email_type . '.php', array( |
|
204 | + $content = wpinv_get_template_html('emails/wpinv-email-' . $email_type . '.php', array( |
|
205 | 205 | 'invoice' => $invoice, |
206 | 206 | 'email_type' => $email_type, |
207 | 207 | 'email_heading' => $email_heading, |
208 | 208 | 'sent_to_admin' => true, |
209 | 209 | 'plain_text' => false, |
210 | 210 | 'message_body' => $message_body, |
211 | - ) ); |
|
211 | + )); |
|
212 | 212 | |
213 | - $sent = wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
213 | + $sent = wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
214 | 214 | |
215 | - do_action( 'wpinv_post_send_invoice_notification', $invoice, $email_type, true ); |
|
215 | + do_action('wpinv_post_send_invoice_notification', $invoice, $email_type, true); |
|
216 | 216 | |
217 | 217 | return $sent; |
218 | 218 | } |
219 | 219 | |
220 | -function wpinv_onhold_invoice_notification( $invoice_id, $new_status = '' ) { |
|
220 | +function wpinv_onhold_invoice_notification($invoice_id, $new_status = '') { |
|
221 | 221 | $email_type = 'onhold_invoice'; |
222 | - if ( !wpinv_email_is_enabled( $email_type ) ) { |
|
222 | + if (!wpinv_email_is_enabled($email_type)) { |
|
223 | 223 | return false; |
224 | 224 | } |
225 | 225 | |
226 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
227 | - if ( empty( $invoice ) ) { |
|
226 | + $invoice = wpinv_get_invoice($invoice_id); |
|
227 | + if (empty($invoice)) { |
|
228 | 228 | return false; |
229 | 229 | } |
230 | 230 | |
231 | - if ( !("wpi_invoice" === $invoice->post_type) ) { |
|
231 | + if (!("wpi_invoice" === $invoice->post_type)) { |
|
232 | 232 | return false; |
233 | 233 | } |
234 | 234 | |
235 | - $recipient = wpinv_email_get_recipient( $email_type, $invoice_id, $invoice ); |
|
236 | - if ( !is_email( $recipient ) ) { |
|
235 | + $recipient = wpinv_email_get_recipient($email_type, $invoice_id, $invoice); |
|
236 | + if (!is_email($recipient)) { |
|
237 | 237 | return false; |
238 | 238 | } |
239 | 239 | |
240 | - do_action( 'wpinv_pre_send_invoice_notification', $invoice, $email_type ); |
|
240 | + do_action('wpinv_pre_send_invoice_notification', $invoice, $email_type); |
|
241 | 241 | |
242 | - $subject = wpinv_email_get_subject( $email_type, $invoice_id, $invoice ); |
|
243 | - $email_heading = wpinv_email_get_heading( $email_type, $invoice_id, $invoice ); |
|
244 | - $headers = wpinv_email_get_headers( $email_type, $invoice_id, $invoice ); |
|
245 | - $message_body = wpinv_email_get_content( $email_type, $invoice_id, $invoice ); |
|
246 | - $attachments = wpinv_email_get_attachments( $email_type, $invoice_id, $invoice ); |
|
242 | + $subject = wpinv_email_get_subject($email_type, $invoice_id, $invoice); |
|
243 | + $email_heading = wpinv_email_get_heading($email_type, $invoice_id, $invoice); |
|
244 | + $headers = wpinv_email_get_headers($email_type, $invoice_id, $invoice); |
|
245 | + $message_body = wpinv_email_get_content($email_type, $invoice_id, $invoice); |
|
246 | + $attachments = wpinv_email_get_attachments($email_type, $invoice_id, $invoice); |
|
247 | 247 | |
248 | - $content = wpinv_get_template_html( 'emails/wpinv-email-' . $email_type . '.php', array( |
|
248 | + $content = wpinv_get_template_html('emails/wpinv-email-' . $email_type . '.php', array( |
|
249 | 249 | 'invoice' => $invoice, |
250 | 250 | 'email_type' => $email_type, |
251 | 251 | 'email_heading' => $email_heading, |
252 | 252 | 'sent_to_admin' => false, |
253 | 253 | 'plain_text' => false, |
254 | 254 | 'message_body' => $message_body, |
255 | - ) ); |
|
255 | + )); |
|
256 | 256 | |
257 | - $sent = wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
257 | + $sent = wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
258 | 258 | |
259 | - if ( wpinv_mail_admin_bcc_active( $email_type ) ) { |
|
260 | - $recipient = wpinv_get_admin_email(); |
|
261 | - $subject .= ' - ADMIN BCC COPY'; |
|
262 | - wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
259 | + if (wpinv_mail_admin_bcc_active($email_type)) { |
|
260 | + $recipient = wpinv_get_admin_email(); |
|
261 | + $subject .= ' - ADMIN BCC COPY'; |
|
262 | + wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
263 | 263 | } |
264 | 264 | |
265 | - do_action( 'wpinv_post_send_invoice_notification', $invoice, $email_type ); |
|
265 | + do_action('wpinv_post_send_invoice_notification', $invoice, $email_type); |
|
266 | 266 | |
267 | 267 | return $sent; |
268 | 268 | } |
269 | 269 | |
270 | -function wpinv_processing_invoice_notification( $invoice_id, $new_status = '' ) { |
|
270 | +function wpinv_processing_invoice_notification($invoice_id, $new_status = '') { |
|
271 | 271 | $email_type = 'processing_invoice'; |
272 | - if ( !wpinv_email_is_enabled( $email_type ) ) { |
|
272 | + if (!wpinv_email_is_enabled($email_type)) { |
|
273 | 273 | return false; |
274 | 274 | } |
275 | 275 | |
276 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
277 | - if ( empty( $invoice ) ) { |
|
276 | + $invoice = wpinv_get_invoice($invoice_id); |
|
277 | + if (empty($invoice)) { |
|
278 | 278 | return false; |
279 | 279 | } |
280 | 280 | |
281 | - if ( !("wpi_invoice" === $invoice->post_type) ) { |
|
281 | + if (!("wpi_invoice" === $invoice->post_type)) { |
|
282 | 282 | return false; |
283 | 283 | } |
284 | 284 | |
285 | - $recipient = wpinv_email_get_recipient( $email_type, $invoice_id, $invoice ); |
|
286 | - if ( !is_email( $recipient ) ) { |
|
285 | + $recipient = wpinv_email_get_recipient($email_type, $invoice_id, $invoice); |
|
286 | + if (!is_email($recipient)) { |
|
287 | 287 | return false; |
288 | 288 | } |
289 | 289 | |
290 | - do_action( 'wpinv_pre_send_invoice_notification', $invoice, $email_type ); |
|
290 | + do_action('wpinv_pre_send_invoice_notification', $invoice, $email_type); |
|
291 | 291 | |
292 | 292 | $search = array(); |
293 | 293 | $search['invoice_number'] = '{invoice_number}'; |
294 | 294 | $search['invoice_date'] = '{invoice_date}'; |
295 | 295 | $search['name'] = '{name}'; |
296 | 296 | |
297 | - $subject = wpinv_email_get_subject( $email_type, $invoice_id, $invoice ); |
|
298 | - $email_heading = wpinv_email_get_heading( $email_type, $invoice_id, $invoice ); |
|
299 | - $headers = wpinv_email_get_headers( $email_type, $invoice_id, $invoice ); |
|
300 | - $message_body = wpinv_email_get_content( $email_type, $invoice_id, $invoice ); |
|
301 | - $attachments = wpinv_email_get_attachments( $email_type, $invoice_id, $invoice ); |
|
297 | + $subject = wpinv_email_get_subject($email_type, $invoice_id, $invoice); |
|
298 | + $email_heading = wpinv_email_get_heading($email_type, $invoice_id, $invoice); |
|
299 | + $headers = wpinv_email_get_headers($email_type, $invoice_id, $invoice); |
|
300 | + $message_body = wpinv_email_get_content($email_type, $invoice_id, $invoice); |
|
301 | + $attachments = wpinv_email_get_attachments($email_type, $invoice_id, $invoice); |
|
302 | 302 | |
303 | - $content = wpinv_get_template_html( 'emails/wpinv-email-' . $email_type . '.php', array( |
|
303 | + $content = wpinv_get_template_html('emails/wpinv-email-' . $email_type . '.php', array( |
|
304 | 304 | 'invoice' => $invoice, |
305 | 305 | 'email_type' => $email_type, |
306 | 306 | 'email_heading' => $email_heading, |
307 | 307 | 'sent_to_admin' => false, |
308 | 308 | 'plain_text' => false, |
309 | 309 | 'message_body' => $message_body, |
310 | - ) ); |
|
310 | + )); |
|
311 | 311 | |
312 | - $sent = wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
312 | + $sent = wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
313 | 313 | |
314 | - if ( wpinv_mail_admin_bcc_active( $email_type ) ) { |
|
315 | - $recipient = wpinv_get_admin_email(); |
|
316 | - $subject .= ' - ADMIN BCC COPY'; |
|
317 | - wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
314 | + if (wpinv_mail_admin_bcc_active($email_type)) { |
|
315 | + $recipient = wpinv_get_admin_email(); |
|
316 | + $subject .= ' - ADMIN BCC COPY'; |
|
317 | + wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
318 | 318 | } |
319 | 319 | |
320 | - do_action( 'wpinv_post_send_invoice_notification', $invoice, $email_type ); |
|
320 | + do_action('wpinv_post_send_invoice_notification', $invoice, $email_type); |
|
321 | 321 | |
322 | 322 | return $sent; |
323 | 323 | } |
324 | 324 | |
325 | -function wpinv_completed_invoice_notification( $invoice_id, $new_status = '' ) { |
|
325 | +function wpinv_completed_invoice_notification($invoice_id, $new_status = '') { |
|
326 | 326 | $email_type = 'completed_invoice'; |
327 | - if ( !wpinv_email_is_enabled( $email_type ) ) { |
|
327 | + if (!wpinv_email_is_enabled($email_type)) { |
|
328 | 328 | return false; |
329 | 329 | } |
330 | 330 | |
331 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
332 | - if ( empty( $invoice ) ) { |
|
331 | + $invoice = wpinv_get_invoice($invoice_id); |
|
332 | + if (empty($invoice)) { |
|
333 | 333 | return false; |
334 | 334 | } |
335 | 335 | |
336 | - if ( !("wpi_invoice" === $invoice->post_type) ) { |
|
336 | + if (!("wpi_invoice" === $invoice->post_type)) { |
|
337 | 337 | return false; |
338 | 338 | } |
339 | 339 | |
340 | - if($invoice->is_renewal() && wpinv_email_is_enabled( 'completed_invoice_renewal' )){ |
|
340 | + if ($invoice->is_renewal() && wpinv_email_is_enabled('completed_invoice_renewal')) { |
|
341 | 341 | return false; |
342 | 342 | } |
343 | 343 | |
344 | - $recipient = wpinv_email_get_recipient( $email_type, $invoice_id, $invoice ); |
|
345 | - if ( !is_email( $recipient ) ) { |
|
344 | + $recipient = wpinv_email_get_recipient($email_type, $invoice_id, $invoice); |
|
345 | + if (!is_email($recipient)) { |
|
346 | 346 | return false; |
347 | 347 | } |
348 | 348 | |
349 | - do_action( 'wpinv_pre_send_invoice_notification', $invoice, $email_type ); |
|
349 | + do_action('wpinv_pre_send_invoice_notification', $invoice, $email_type); |
|
350 | 350 | |
351 | - $subject = wpinv_email_get_subject( $email_type, $invoice_id, $invoice ); |
|
352 | - $email_heading = wpinv_email_get_heading( $email_type, $invoice_id, $invoice ); |
|
353 | - $headers = wpinv_email_get_headers( $email_type, $invoice_id, $invoice ); |
|
354 | - $message_body = wpinv_email_get_content( $email_type, $invoice_id, $invoice ); |
|
355 | - $attachments = wpinv_email_get_attachments( $email_type, $invoice_id, $invoice ); |
|
351 | + $subject = wpinv_email_get_subject($email_type, $invoice_id, $invoice); |
|
352 | + $email_heading = wpinv_email_get_heading($email_type, $invoice_id, $invoice); |
|
353 | + $headers = wpinv_email_get_headers($email_type, $invoice_id, $invoice); |
|
354 | + $message_body = wpinv_email_get_content($email_type, $invoice_id, $invoice); |
|
355 | + $attachments = wpinv_email_get_attachments($email_type, $invoice_id, $invoice); |
|
356 | 356 | |
357 | - $content = wpinv_get_template_html( 'emails/wpinv-email-' . $email_type . '.php', array( |
|
357 | + $content = wpinv_get_template_html('emails/wpinv-email-' . $email_type . '.php', array( |
|
358 | 358 | 'invoice' => $invoice, |
359 | 359 | 'email_type' => $email_type, |
360 | 360 | 'email_heading' => $email_heading, |
361 | 361 | 'sent_to_admin' => false, |
362 | 362 | 'plain_text' => false, |
363 | 363 | 'message_body' => $message_body, |
364 | - ) ); |
|
364 | + )); |
|
365 | 365 | |
366 | - $sent = wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
366 | + $sent = wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
367 | 367 | |
368 | - if ( wpinv_mail_admin_bcc_active( $email_type ) ) { |
|
369 | - $recipient = wpinv_get_admin_email(); |
|
370 | - $subject .= ' - ADMIN BCC COPY'; |
|
371 | - wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
368 | + if (wpinv_mail_admin_bcc_active($email_type)) { |
|
369 | + $recipient = wpinv_get_admin_email(); |
|
370 | + $subject .= ' - ADMIN BCC COPY'; |
|
371 | + wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
372 | 372 | } |
373 | 373 | |
374 | - do_action( 'wpinv_post_send_invoice_notification', $invoice, $email_type ); |
|
374 | + do_action('wpinv_post_send_invoice_notification', $invoice, $email_type); |
|
375 | 375 | |
376 | 376 | return $sent; |
377 | 377 | } |
378 | 378 | |
379 | -function wpinv_fully_refunded_notification( $invoice_id, $new_status = '' ) { |
|
379 | +function wpinv_fully_refunded_notification($invoice_id, $new_status = '') { |
|
380 | 380 | $email_type = 'refunded_invoice'; |
381 | - if ( !wpinv_email_is_enabled( $email_type ) ) { |
|
381 | + if (!wpinv_email_is_enabled($email_type)) { |
|
382 | 382 | return false; |
383 | 383 | } |
384 | 384 | |
385 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
386 | - if ( empty( $invoice ) ) { |
|
385 | + $invoice = wpinv_get_invoice($invoice_id); |
|
386 | + if (empty($invoice)) { |
|
387 | 387 | return false; |
388 | 388 | } |
389 | 389 | |
390 | - if ( !("wpi_invoice" === $invoice->post_type) ) { |
|
390 | + if (!("wpi_invoice" === $invoice->post_type)) { |
|
391 | 391 | return false; |
392 | 392 | } |
393 | 393 | |
394 | - $recipient = wpinv_email_get_recipient( $email_type, $invoice_id, $invoice ); |
|
395 | - if ( !is_email( $recipient ) ) { |
|
394 | + $recipient = wpinv_email_get_recipient($email_type, $invoice_id, $invoice); |
|
395 | + if (!is_email($recipient)) { |
|
396 | 396 | return false; |
397 | 397 | } |
398 | 398 | |
399 | - do_action( 'wpinv_pre_send_invoice_notification', $invoice, $email_type ); |
|
399 | + do_action('wpinv_pre_send_invoice_notification', $invoice, $email_type); |
|
400 | 400 | |
401 | - $subject = wpinv_email_get_subject( $email_type, $invoice_id, $invoice ); |
|
402 | - $email_heading = wpinv_email_get_heading( $email_type, $invoice_id, $invoice ); |
|
403 | - $headers = wpinv_email_get_headers( $email_type, $invoice_id, $invoice ); |
|
404 | - $message_body = wpinv_email_get_content( $email_type, $invoice_id, $invoice ); |
|
405 | - $attachments = wpinv_email_get_attachments( $email_type, $invoice_id, $invoice ); |
|
401 | + $subject = wpinv_email_get_subject($email_type, $invoice_id, $invoice); |
|
402 | + $email_heading = wpinv_email_get_heading($email_type, $invoice_id, $invoice); |
|
403 | + $headers = wpinv_email_get_headers($email_type, $invoice_id, $invoice); |
|
404 | + $message_body = wpinv_email_get_content($email_type, $invoice_id, $invoice); |
|
405 | + $attachments = wpinv_email_get_attachments($email_type, $invoice_id, $invoice); |
|
406 | 406 | |
407 | - $content = wpinv_get_template_html( 'emails/wpinv-email-' . $email_type . '.php', array( |
|
407 | + $content = wpinv_get_template_html('emails/wpinv-email-' . $email_type . '.php', array( |
|
408 | 408 | 'invoice' => $invoice, |
409 | 409 | 'email_type' => $email_type, |
410 | 410 | 'email_heading' => $email_heading, |
@@ -412,50 +412,50 @@ discard block |
||
412 | 412 | 'plain_text' => false, |
413 | 413 | 'partial_refund' => false, |
414 | 414 | 'message_body' => $message_body, |
415 | - ) ); |
|
415 | + )); |
|
416 | 416 | |
417 | - $sent = wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
417 | + $sent = wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
418 | 418 | |
419 | - if ( wpinv_mail_admin_bcc_active( $email_type ) ) { |
|
420 | - $recipient = wpinv_get_admin_email(); |
|
421 | - $subject .= ' - ADMIN BCC COPY'; |
|
422 | - wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
419 | + if (wpinv_mail_admin_bcc_active($email_type)) { |
|
420 | + $recipient = wpinv_get_admin_email(); |
|
421 | + $subject .= ' - ADMIN BCC COPY'; |
|
422 | + wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
423 | 423 | } |
424 | 424 | |
425 | - do_action( 'wpinv_post_send_invoice_notification', $invoice, $email_type ); |
|
425 | + do_action('wpinv_post_send_invoice_notification', $invoice, $email_type); |
|
426 | 426 | |
427 | 427 | return $sent; |
428 | 428 | } |
429 | 429 | |
430 | -function wpinv_partially_refunded_notification( $invoice_id, $new_status = '' ) { |
|
430 | +function wpinv_partially_refunded_notification($invoice_id, $new_status = '') { |
|
431 | 431 | $email_type = 'refunded_invoice'; |
432 | - if ( !wpinv_email_is_enabled( $email_type ) ) { |
|
432 | + if (!wpinv_email_is_enabled($email_type)) { |
|
433 | 433 | return false; |
434 | 434 | } |
435 | 435 | |
436 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
437 | - if ( empty( $invoice ) ) { |
|
436 | + $invoice = wpinv_get_invoice($invoice_id); |
|
437 | + if (empty($invoice)) { |
|
438 | 438 | return false; |
439 | 439 | } |
440 | 440 | |
441 | - if ( !("wpi_invoice" === $invoice->post_type) ) { |
|
441 | + if (!("wpi_invoice" === $invoice->post_type)) { |
|
442 | 442 | return false; |
443 | 443 | } |
444 | 444 | |
445 | - $recipient = wpinv_email_get_recipient( $email_type, $invoice_id, $invoice ); |
|
446 | - if ( !is_email( $recipient ) ) { |
|
445 | + $recipient = wpinv_email_get_recipient($email_type, $invoice_id, $invoice); |
|
446 | + if (!is_email($recipient)) { |
|
447 | 447 | return false; |
448 | 448 | } |
449 | 449 | |
450 | - do_action( 'wpinv_pre_send_invoice_notification', $invoice, $email_type ); |
|
450 | + do_action('wpinv_pre_send_invoice_notification', $invoice, $email_type); |
|
451 | 451 | |
452 | - $subject = wpinv_email_get_subject( $email_type, $invoice_id, $invoice ); |
|
453 | - $email_heading = wpinv_email_get_heading( $email_type, $invoice_id, $invoice ); |
|
454 | - $headers = wpinv_email_get_headers( $email_type, $invoice_id, $invoice ); |
|
455 | - $message_body = wpinv_email_get_content( $email_type, $invoice_id, $invoice ); |
|
456 | - $attachments = wpinv_email_get_attachments( $email_type, $invoice_id, $invoice ); |
|
452 | + $subject = wpinv_email_get_subject($email_type, $invoice_id, $invoice); |
|
453 | + $email_heading = wpinv_email_get_heading($email_type, $invoice_id, $invoice); |
|
454 | + $headers = wpinv_email_get_headers($email_type, $invoice_id, $invoice); |
|
455 | + $message_body = wpinv_email_get_content($email_type, $invoice_id, $invoice); |
|
456 | + $attachments = wpinv_email_get_attachments($email_type, $invoice_id, $invoice); |
|
457 | 457 | |
458 | - $content = wpinv_get_template_html( 'emails/wpinv-email-' . $email_type . '.php', array( |
|
458 | + $content = wpinv_get_template_html('emails/wpinv-email-' . $email_type . '.php', array( |
|
459 | 459 | 'invoice' => $invoice, |
460 | 460 | 'email_type' => $email_type, |
461 | 461 | 'email_heading' => $email_heading, |
@@ -463,95 +463,95 @@ discard block |
||
463 | 463 | 'plain_text' => false, |
464 | 464 | 'partial_refund' => true, |
465 | 465 | 'message_body' => $message_body, |
466 | - ) ); |
|
466 | + )); |
|
467 | 467 | |
468 | - $sent = wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
468 | + $sent = wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
469 | 469 | |
470 | - if ( wpinv_mail_admin_bcc_active( $email_type ) ) { |
|
471 | - $recipient = wpinv_get_admin_email(); |
|
472 | - $subject .= ' - ADMIN BCC COPY'; |
|
473 | - wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
470 | + if (wpinv_mail_admin_bcc_active($email_type)) { |
|
471 | + $recipient = wpinv_get_admin_email(); |
|
472 | + $subject .= ' - ADMIN BCC COPY'; |
|
473 | + wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
474 | 474 | } |
475 | 475 | |
476 | - do_action( 'wpinv_post_send_invoice_notification', $invoice, $email_type ); |
|
476 | + do_action('wpinv_post_send_invoice_notification', $invoice, $email_type); |
|
477 | 477 | |
478 | 478 | return $sent; |
479 | 479 | } |
480 | 480 | |
481 | -function wpinv_new_invoice_note_notification( $invoice_id, $new_status = '' ) { |
|
481 | +function wpinv_new_invoice_note_notification($invoice_id, $new_status = '') { |
|
482 | 482 | } |
483 | 483 | |
484 | -function wpinv_user_invoice_notification( $invoice_id ) { |
|
484 | +function wpinv_user_invoice_notification($invoice_id) { |
|
485 | 485 | $email_type = 'user_invoice'; |
486 | - if ( !wpinv_email_is_enabled( $email_type ) ) { |
|
486 | + if (!wpinv_email_is_enabled($email_type)) { |
|
487 | 487 | return -1; |
488 | 488 | } |
489 | 489 | |
490 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
491 | - if ( empty( $invoice ) ) { |
|
490 | + $invoice = wpinv_get_invoice($invoice_id); |
|
491 | + if (empty($invoice)) { |
|
492 | 492 | return false; |
493 | 493 | } |
494 | 494 | |
495 | - if ( !("wpi_invoice" === $invoice->post_type) ) { |
|
495 | + if (!("wpi_invoice" === $invoice->post_type)) { |
|
496 | 496 | return false; |
497 | 497 | } |
498 | 498 | |
499 | - $recipient = wpinv_email_get_recipient( $email_type, $invoice_id, $invoice ); |
|
500 | - if ( !is_email( $recipient ) ) { |
|
499 | + $recipient = wpinv_email_get_recipient($email_type, $invoice_id, $invoice); |
|
500 | + if (!is_email($recipient)) { |
|
501 | 501 | return false; |
502 | 502 | } |
503 | 503 | |
504 | - do_action( 'wpinv_pre_send_invoice_notification', $invoice, $email_type ); |
|
504 | + do_action('wpinv_pre_send_invoice_notification', $invoice, $email_type); |
|
505 | 505 | |
506 | - $subject = wpinv_email_get_subject( $email_type, $invoice_id, $invoice ); |
|
507 | - $email_heading = wpinv_email_get_heading( $email_type, $invoice_id, $invoice ); |
|
508 | - $headers = wpinv_email_get_headers( $email_type, $invoice_id, $invoice ); |
|
509 | - $message_body = wpinv_email_get_content( $email_type, $invoice_id, $invoice ); |
|
510 | - $attachments = wpinv_email_get_attachments( $email_type, $invoice_id, $invoice ); |
|
506 | + $subject = wpinv_email_get_subject($email_type, $invoice_id, $invoice); |
|
507 | + $email_heading = wpinv_email_get_heading($email_type, $invoice_id, $invoice); |
|
508 | + $headers = wpinv_email_get_headers($email_type, $invoice_id, $invoice); |
|
509 | + $message_body = wpinv_email_get_content($email_type, $invoice_id, $invoice); |
|
510 | + $attachments = wpinv_email_get_attachments($email_type, $invoice_id, $invoice); |
|
511 | 511 | |
512 | - $content = wpinv_get_template_html( 'emails/wpinv-email-' . $email_type . '.php', array( |
|
512 | + $content = wpinv_get_template_html('emails/wpinv-email-' . $email_type . '.php', array( |
|
513 | 513 | 'invoice' => $invoice, |
514 | 514 | 'email_type' => $email_type, |
515 | 515 | 'email_heading' => $email_heading, |
516 | 516 | 'sent_to_admin' => false, |
517 | 517 | 'plain_text' => false, |
518 | 518 | 'message_body' => $message_body, |
519 | - ) ); |
|
519 | + )); |
|
520 | 520 | |
521 | - $sent = wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
521 | + $sent = wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
522 | 522 | |
523 | - if ( wpinv_mail_admin_bcc_active( $email_type ) ) { |
|
524 | - $recipient = wpinv_get_admin_email(); |
|
525 | - $subject .= ' - ADMIN BCC COPY'; |
|
526 | - wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
523 | + if (wpinv_mail_admin_bcc_active($email_type)) { |
|
524 | + $recipient = wpinv_get_admin_email(); |
|
525 | + $subject .= ' - ADMIN BCC COPY'; |
|
526 | + wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
527 | 527 | } |
528 | 528 | |
529 | - do_action( 'wpinv_post_send_invoice_notification', $invoice, $email_type ); |
|
529 | + do_action('wpinv_post_send_invoice_notification', $invoice, $email_type); |
|
530 | 530 | |
531 | - if ( $sent ) { |
|
532 | - $note = __( 'Invoice has been emailed to the user.', 'invoicing' ); |
|
531 | + if ($sent) { |
|
532 | + $note = __('Invoice has been emailed to the user.', 'invoicing'); |
|
533 | 533 | } else { |
534 | - $note = __( 'Fail to send invoice to the user!', 'invoicing' ); |
|
534 | + $note = __('Fail to send invoice to the user!', 'invoicing'); |
|
535 | 535 | } |
536 | 536 | |
537 | - $invoice->add_note( $note, '', '', true ); // Add system note. |
|
537 | + $invoice->add_note($note, '', '', true); // Add system note. |
|
538 | 538 | |
539 | 539 | return $sent; |
540 | 540 | } |
541 | 541 | |
542 | -function wpinv_user_note_notification( $invoice_id, $args = array() ) { |
|
542 | +function wpinv_user_note_notification($invoice_id, $args = array()) { |
|
543 | 543 | $email_type = 'user_note'; |
544 | - if ( !wpinv_email_is_enabled( $email_type ) ) { |
|
544 | + if (!wpinv_email_is_enabled($email_type)) { |
|
545 | 545 | return false; |
546 | 546 | } |
547 | 547 | |
548 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
549 | - if ( empty( $invoice ) ) { |
|
548 | + $invoice = wpinv_get_invoice($invoice_id); |
|
549 | + if (empty($invoice)) { |
|
550 | 550 | return false; |
551 | 551 | } |
552 | 552 | |
553 | - $recipient = wpinv_email_get_recipient( $email_type, $invoice_id, $invoice ); |
|
554 | - if ( !is_email( $recipient ) ) { |
|
553 | + $recipient = wpinv_email_get_recipient($email_type, $invoice_id, $invoice); |
|
554 | + if (!is_email($recipient)) { |
|
555 | 555 | return false; |
556 | 556 | } |
557 | 557 | |
@@ -559,19 +559,19 @@ discard block |
||
559 | 559 | 'user_note' => '' |
560 | 560 | ); |
561 | 561 | |
562 | - $args = wp_parse_args( $args, $defaults ); |
|
562 | + $args = wp_parse_args($args, $defaults); |
|
563 | 563 | |
564 | - do_action( 'wpinv_pre_send_invoice_notification', $invoice, $email_type ); |
|
564 | + do_action('wpinv_pre_send_invoice_notification', $invoice, $email_type); |
|
565 | 565 | |
566 | - $subject = wpinv_email_get_subject( $email_type, $invoice_id, $invoice ); |
|
567 | - $email_heading = wpinv_email_get_heading( $email_type, $invoice_id, $invoice ); |
|
568 | - $headers = wpinv_email_get_headers( $email_type, $invoice_id, $invoice ); |
|
569 | - $message_body = wpinv_email_get_content( $email_type, $invoice_id, $invoice ); |
|
570 | - $attachments = wpinv_email_get_attachments( $email_type, $invoice_id, $invoice ); |
|
566 | + $subject = wpinv_email_get_subject($email_type, $invoice_id, $invoice); |
|
567 | + $email_heading = wpinv_email_get_heading($email_type, $invoice_id, $invoice); |
|
568 | + $headers = wpinv_email_get_headers($email_type, $invoice_id, $invoice); |
|
569 | + $message_body = wpinv_email_get_content($email_type, $invoice_id, $invoice); |
|
570 | + $attachments = wpinv_email_get_attachments($email_type, $invoice_id, $invoice); |
|
571 | 571 | |
572 | - $message_body = str_replace( '{customer_note}', $args['user_note'], $message_body ); |
|
572 | + $message_body = str_replace('{customer_note}', $args['user_note'], $message_body); |
|
573 | 573 | |
574 | - $content = wpinv_get_template_html( 'emails/wpinv-email-' . $email_type . '.php', array( |
|
574 | + $content = wpinv_get_template_html('emails/wpinv-email-' . $email_type . '.php', array( |
|
575 | 575 | 'invoice' => $invoice, |
576 | 576 | 'email_type' => $email_type, |
577 | 577 | 'email_heading' => $email_heading, |
@@ -579,36 +579,36 @@ discard block |
||
579 | 579 | 'plain_text' => false, |
580 | 580 | 'message_body' => $message_body, |
581 | 581 | 'customer_note' => $args['user_note'] |
582 | - ) ); |
|
582 | + )); |
|
583 | 583 | |
584 | - $content = wpinv_email_format_text( $content, $invoice ); |
|
584 | + $content = wpinv_email_format_text($content, $invoice); |
|
585 | 585 | |
586 | - $sent = wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
586 | + $sent = wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
587 | 587 | |
588 | - do_action( 'wpinv_post_send_invoice_notification', $invoice, $email_type ); |
|
588 | + do_action('wpinv_post_send_invoice_notification', $invoice, $email_type); |
|
589 | 589 | |
590 | 590 | return $sent; |
591 | 591 | } |
592 | 592 | |
593 | 593 | function wpinv_mail_get_from_address() { |
594 | - $from_address = apply_filters( 'wpinv_mail_from_address', wpinv_get_option( 'email_from' ) ); |
|
595 | - return sanitize_email( $from_address ); |
|
594 | + $from_address = apply_filters('wpinv_mail_from_address', wpinv_get_option('email_from')); |
|
595 | + return sanitize_email($from_address); |
|
596 | 596 | } |
597 | 597 | |
598 | 598 | function wpinv_mail_get_from_name() { |
599 | - $from_name = apply_filters( 'wpinv_mail_from_name', wpinv_get_option( 'email_from_name' ) ); |
|
600 | - return wp_specialchars_decode( esc_html( $from_name ), ENT_QUOTES ); |
|
599 | + $from_name = apply_filters('wpinv_mail_from_name', wpinv_get_option('email_from_name')); |
|
600 | + return wp_specialchars_decode(esc_html($from_name), ENT_QUOTES); |
|
601 | 601 | } |
602 | 602 | |
603 | -function wpinv_mail_admin_bcc_active( $mail_type = '' ) { |
|
604 | - $active = apply_filters( 'wpinv_mail_admin_bcc_active', wpinv_get_option( 'email_' . $mail_type . '_admin_bcc' ) ); |
|
605 | - return ( $active ? true : false ); |
|
603 | +function wpinv_mail_admin_bcc_active($mail_type = '') { |
|
604 | + $active = apply_filters('wpinv_mail_admin_bcc_active', wpinv_get_option('email_' . $mail_type . '_admin_bcc')); |
|
605 | + return ($active ? true : false); |
|
606 | 606 | } |
607 | 607 | |
608 | -function wpinv_mail_get_content_type( $content_type = 'text/html', $email_type = 'html' ) { |
|
609 | - $email_type = apply_filters( 'wpinv_mail_content_type', $email_type ); |
|
608 | +function wpinv_mail_get_content_type($content_type = 'text/html', $email_type = 'html') { |
|
609 | + $email_type = apply_filters('wpinv_mail_content_type', $email_type); |
|
610 | 610 | |
611 | - switch ( $email_type ) { |
|
611 | + switch ($email_type) { |
|
612 | 612 | case 'html' : |
613 | 613 | $content_type = 'text/html'; |
614 | 614 | break; |
@@ -623,35 +623,35 @@ discard block |
||
623 | 623 | return $content_type; |
624 | 624 | } |
625 | 625 | |
626 | -function wpinv_mail_send( $to, $subject, $message, $headers, $attachments ) { |
|
627 | - add_filter( 'wp_mail_from', 'wpinv_mail_get_from_address' ); |
|
628 | - add_filter( 'wp_mail_from_name', 'wpinv_mail_get_from_name' ); |
|
629 | - add_filter( 'wp_mail_content_type', 'wpinv_mail_get_content_type' ); |
|
626 | +function wpinv_mail_send($to, $subject, $message, $headers, $attachments) { |
|
627 | + add_filter('wp_mail_from', 'wpinv_mail_get_from_address'); |
|
628 | + add_filter('wp_mail_from_name', 'wpinv_mail_get_from_name'); |
|
629 | + add_filter('wp_mail_content_type', 'wpinv_mail_get_content_type'); |
|
630 | 630 | |
631 | - $message = wpinv_email_style_body( $message ); |
|
632 | - $message = apply_filters( 'wpinv_mail_content', $message ); |
|
631 | + $message = wpinv_email_style_body($message); |
|
632 | + $message = apply_filters('wpinv_mail_content', $message); |
|
633 | 633 | |
634 | - $sent = wp_mail( $to, $subject, $message, $headers, $attachments ); |
|
634 | + $sent = wp_mail($to, $subject, $message, $headers, $attachments); |
|
635 | 635 | |
636 | - if ( !$sent ) { |
|
637 | - $log_message = wp_sprintf( __( "\nTime: %s\nTo: %s\nSubject: %s\n", 'invoicing' ), date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ), ( is_array( $to ) ? implode( ', ', $to ) : $to ), $subject ); |
|
638 | - wpinv_error_log( $log_message, __( "Email from Invoicing plugin failed to send", 'invoicing' ), __FILE__, __LINE__ ); |
|
636 | + if (!$sent) { |
|
637 | + $log_message = wp_sprintf(__("\nTime: %s\nTo: %s\nSubject: %s\n", 'invoicing'), date_i18n('F j Y H:i:s', current_time('timestamp')), (is_array($to) ? implode(', ', $to) : $to), $subject); |
|
638 | + wpinv_error_log($log_message, __("Email from Invoicing plugin failed to send", 'invoicing'), __FILE__, __LINE__); |
|
639 | 639 | } |
640 | 640 | |
641 | - remove_filter( 'wp_mail_from', 'wpinv_mail_get_from_address' ); |
|
642 | - remove_filter( 'wp_mail_from_name', 'wpinv_mail_get_from_name' ); |
|
643 | - remove_filter( 'wp_mail_content_type', 'wpinv_mail_get_content_type' ); |
|
641 | + remove_filter('wp_mail_from', 'wpinv_mail_get_from_address'); |
|
642 | + remove_filter('wp_mail_from_name', 'wpinv_mail_get_from_name'); |
|
643 | + remove_filter('wp_mail_content_type', 'wpinv_mail_get_content_type'); |
|
644 | 644 | |
645 | 645 | return $sent; |
646 | 646 | } |
647 | 647 | |
648 | 648 | function wpinv_get_emails() { |
649 | 649 | $overdue_days_options = array(); |
650 | - $overdue_days_options[0] = __( 'On the Due Date', 'invoicing' ); |
|
651 | - $overdue_days_options[1] = __( '1 day after Due Date', 'invoicing' ); |
|
650 | + $overdue_days_options[0] = __('On the Due Date', 'invoicing'); |
|
651 | + $overdue_days_options[1] = __('1 day after Due Date', 'invoicing'); |
|
652 | 652 | |
653 | - for ( $i = 2; $i <= 10; $i++ ) { |
|
654 | - $overdue_days_options[$i] = wp_sprintf( __( '%d days after Due Date', 'invoicing' ), $i ); |
|
653 | + for ($i = 2; $i <= 10; $i++) { |
|
654 | + $overdue_days_options[$i] = wp_sprintf(__('%d days after Due Date', 'invoicing'), $i); |
|
655 | 655 | } |
656 | 656 | |
657 | 657 | // Default, built-in gateways |
@@ -659,39 +659,39 @@ discard block |
||
659 | 659 | 'new_invoice' => array( |
660 | 660 | 'email_new_invoice_header' => array( |
661 | 661 | 'id' => 'email_new_invoice_header', |
662 | - 'name' => '<h3>' . __( 'New Invoice', 'invoicing' ) . '</h3>', |
|
663 | - 'desc' => __( 'New invoice emails are sent to admin when a new invoice is received.', 'invoicing' ), |
|
662 | + 'name' => '<h3>' . __('New Invoice', 'invoicing') . '</h3>', |
|
663 | + 'desc' => __('New invoice emails are sent to admin when a new invoice is received.', 'invoicing'), |
|
664 | 664 | 'type' => 'header', |
665 | 665 | ), |
666 | 666 | 'email_new_invoice_active' => array( |
667 | 667 | 'id' => 'email_new_invoice_active', |
668 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
669 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
668 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
669 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
670 | 670 | 'type' => 'checkbox', |
671 | 671 | 'std' => 1 |
672 | 672 | ), |
673 | 673 | 'email_new_invoice_subject' => array( |
674 | 674 | 'id' => 'email_new_invoice_subject', |
675 | - 'name' => __( 'Subject', 'invoicing' ), |
|
676 | - 'desc' => __( 'Enter the subject line for the invoice receipt email.', 'invoicing' ), |
|
675 | + 'name' => __('Subject', 'invoicing'), |
|
676 | + 'desc' => __('Enter the subject line for the invoice receipt email.', 'invoicing'), |
|
677 | 677 | 'type' => 'text', |
678 | - 'std' => __( '[{site_title}] New payment invoice ({invoice_number}) - {invoice_date}', 'invoicing' ), |
|
678 | + 'std' => __('[{site_title}] New payment invoice ({invoice_number}) - {invoice_date}', 'invoicing'), |
|
679 | 679 | 'size' => 'large' |
680 | 680 | ), |
681 | 681 | 'email_new_invoice_heading' => array( |
682 | 682 | 'id' => 'email_new_invoice_heading', |
683 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
684 | - 'desc' => __( 'Enter the main heading contained within the email notification for the invoice receipt email.', 'invoicing' ), |
|
683 | + 'name' => __('Email Heading', 'invoicing'), |
|
684 | + 'desc' => __('Enter the main heading contained within the email notification for the invoice receipt email.', 'invoicing'), |
|
685 | 685 | 'type' => 'text', |
686 | - 'std' => __( 'New payment invoice', 'invoicing' ), |
|
686 | + 'std' => __('New payment invoice', 'invoicing'), |
|
687 | 687 | 'size' => 'large' |
688 | 688 | ), |
689 | 689 | 'email_new_invoice_body' => array( |
690 | 690 | 'id' => 'email_new_invoice_body', |
691 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
692 | - 'desc' => __( 'The content of the email (wildcards and HTML are allowed).', 'invoicing' ), |
|
691 | + 'name' => __('Email Content', 'invoicing'), |
|
692 | + 'desc' => __('The content of the email (wildcards and HTML are allowed).', 'invoicing'), |
|
693 | 693 | 'type' => 'rich_editor', |
694 | - 'std' => __( '<p>Hi Admin,</p><p>You have received payment invoice from {name}.</p>', 'invoicing' ), |
|
694 | + 'std' => __('<p>Hi Admin,</p><p>You have received payment invoice from {name}.</p>', 'invoicing'), |
|
695 | 695 | 'class' => 'large', |
696 | 696 | 'size' => '10' |
697 | 697 | ), |
@@ -699,39 +699,39 @@ discard block |
||
699 | 699 | 'cancelled_invoice' => array( |
700 | 700 | 'email_cancelled_invoice_header' => array( |
701 | 701 | 'id' => 'email_cancelled_invoice_header', |
702 | - 'name' => '<h3>' . __( 'Cancelled Invoice', 'invoicing' ) . '</h3>', |
|
703 | - 'desc' => __( 'Cancelled invoice emails are sent to admin when invoices have been marked cancelled.', 'invoicing' ), |
|
702 | + 'name' => '<h3>' . __('Cancelled Invoice', 'invoicing') . '</h3>', |
|
703 | + 'desc' => __('Cancelled invoice emails are sent to admin when invoices have been marked cancelled.', 'invoicing'), |
|
704 | 704 | 'type' => 'header', |
705 | 705 | ), |
706 | 706 | 'email_cancelled_invoice_active' => array( |
707 | 707 | 'id' => 'email_cancelled_invoice_active', |
708 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
709 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
708 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
709 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
710 | 710 | 'type' => 'checkbox', |
711 | 711 | 'std' => 1 |
712 | 712 | ), |
713 | 713 | 'email_cancelled_invoice_subject' => array( |
714 | 714 | 'id' => 'email_cancelled_invoice_subject', |
715 | - 'name' => __( 'Subject', 'invoicing' ), |
|
716 | - 'desc' => __( 'Enter the subject line for the invoice receipt email.', 'invoicing' ), |
|
715 | + 'name' => __('Subject', 'invoicing'), |
|
716 | + 'desc' => __('Enter the subject line for the invoice receipt email.', 'invoicing'), |
|
717 | 717 | 'type' => 'text', |
718 | - 'std' => __( '[{site_title}] Cancelled invoice ({invoice_number})', 'invoicing' ), |
|
718 | + 'std' => __('[{site_title}] Cancelled invoice ({invoice_number})', 'invoicing'), |
|
719 | 719 | 'size' => 'large' |
720 | 720 | ), |
721 | 721 | 'email_cancelled_invoice_heading' => array( |
722 | 722 | 'id' => 'email_cancelled_invoice_heading', |
723 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
724 | - 'desc' => __( 'Enter the main heading contained within the email notification.', 'invoicing' ), |
|
723 | + 'name' => __('Email Heading', 'invoicing'), |
|
724 | + 'desc' => __('Enter the main heading contained within the email notification.', 'invoicing'), |
|
725 | 725 | 'type' => 'text', |
726 | - 'std' => __( 'Cancelled invoice', 'invoicing' ), |
|
726 | + 'std' => __('Cancelled invoice', 'invoicing'), |
|
727 | 727 | 'size' => 'large' |
728 | 728 | ), |
729 | 729 | 'email_cancelled_invoice_body' => array( |
730 | 730 | 'id' => 'email_cancelled_invoice_body', |
731 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
732 | - 'desc' => __( 'The content of the email (wildcards and HTML are allowed).', 'invoicing' ), |
|
731 | + 'name' => __('Email Content', 'invoicing'), |
|
732 | + 'desc' => __('The content of the email (wildcards and HTML are allowed).', 'invoicing'), |
|
733 | 733 | 'type' => 'rich_editor', |
734 | - 'std' => __( '<p>Hi Admin,</p><p>The invoice #{invoice_number} from {site_title} has been cancelled.</p>', 'invoicing' ), |
|
734 | + 'std' => __('<p>Hi Admin,</p><p>The invoice #{invoice_number} from {site_title} has been cancelled.</p>', 'invoicing'), |
|
735 | 735 | 'class' => 'large', |
736 | 736 | 'size' => '10' |
737 | 737 | ), |
@@ -739,39 +739,39 @@ discard block |
||
739 | 739 | 'failed_invoice' => array( |
740 | 740 | 'email_failed_invoice_header' => array( |
741 | 741 | 'id' => 'email_failed_invoice_header', |
742 | - 'name' => '<h3>' . __( 'Failed Invoice', 'invoicing' ) . '</h3>', |
|
743 | - 'desc' => __( 'Failed invoice emails are sent to admin when invoices have been marked failed (if they were previously processing or on-hold).', 'invoicing' ), |
|
742 | + 'name' => '<h3>' . __('Failed Invoice', 'invoicing') . '</h3>', |
|
743 | + 'desc' => __('Failed invoice emails are sent to admin when invoices have been marked failed (if they were previously processing or on-hold).', 'invoicing'), |
|
744 | 744 | 'type' => 'header', |
745 | 745 | ), |
746 | 746 | 'email_failed_invoice_active' => array( |
747 | 747 | 'id' => 'email_failed_invoice_active', |
748 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
749 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
748 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
749 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
750 | 750 | 'type' => 'checkbox', |
751 | 751 | 'std' => 1 |
752 | 752 | ), |
753 | 753 | 'email_failed_invoice_subject' => array( |
754 | 754 | 'id' => 'email_failed_invoice_subject', |
755 | - 'name' => __( 'Subject', 'invoicing' ), |
|
756 | - 'desc' => __( 'Enter the subject line for the invoice receipt email.', 'invoicing' ), |
|
755 | + 'name' => __('Subject', 'invoicing'), |
|
756 | + 'desc' => __('Enter the subject line for the invoice receipt email.', 'invoicing'), |
|
757 | 757 | 'type' => 'text', |
758 | - 'std' => __( '[{site_title}] Failed invoice ({invoice_number})', 'invoicing' ), |
|
758 | + 'std' => __('[{site_title}] Failed invoice ({invoice_number})', 'invoicing'), |
|
759 | 759 | 'size' => 'large' |
760 | 760 | ), |
761 | 761 | 'email_failed_invoice_heading' => array( |
762 | 762 | 'id' => 'email_failed_invoice_heading', |
763 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
764 | - 'desc' => __( 'Enter the main heading contained within the email notification.', 'invoicing' ), |
|
763 | + 'name' => __('Email Heading', 'invoicing'), |
|
764 | + 'desc' => __('Enter the main heading contained within the email notification.', 'invoicing'), |
|
765 | 765 | 'type' => 'text', |
766 | - 'std' => __( 'Failed invoice', 'invoicing' ), |
|
766 | + 'std' => __('Failed invoice', 'invoicing'), |
|
767 | 767 | 'size' => 'large' |
768 | 768 | ), |
769 | 769 | 'email_failed_invoice_body' => array( |
770 | 770 | 'id' => 'email_failed_invoice_body', |
771 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
772 | - 'desc' => __( 'The content of the email (wildcards and HTML are allowed).', 'invoicing' ), |
|
771 | + 'name' => __('Email Content', 'invoicing'), |
|
772 | + 'desc' => __('The content of the email (wildcards and HTML are allowed).', 'invoicing'), |
|
773 | 773 | 'type' => 'rich_editor', |
774 | - 'std' => __( '<p>Hi Admin,</p><p>Payment for invoice #{invoice_number} from {site_title} has been failed.</p>', 'invoicing' ), |
|
774 | + 'std' => __('<p>Hi Admin,</p><p>Payment for invoice #{invoice_number} from {site_title} has been failed.</p>', 'invoicing'), |
|
775 | 775 | 'class' => 'large', |
776 | 776 | 'size' => '10' |
777 | 777 | ), |
@@ -779,46 +779,46 @@ discard block |
||
779 | 779 | 'onhold_invoice' => array( |
780 | 780 | 'email_onhold_invoice_header' => array( |
781 | 781 | 'id' => 'email_onhold_invoice_header', |
782 | - 'name' => '<h3>' . __( 'On Hold Invoice', 'invoicing' ) . '</h3>', |
|
783 | - 'desc' => __( 'This is an invoice notification sent to users containing invoice details after an invoice is placed on-hold.', 'invoicing' ), |
|
782 | + 'name' => '<h3>' . __('On Hold Invoice', 'invoicing') . '</h3>', |
|
783 | + 'desc' => __('This is an invoice notification sent to users containing invoice details after an invoice is placed on-hold.', 'invoicing'), |
|
784 | 784 | 'type' => 'header', |
785 | 785 | ), |
786 | 786 | 'email_onhold_invoice_active' => array( |
787 | 787 | 'id' => 'email_onhold_invoice_active', |
788 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
789 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
788 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
789 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
790 | 790 | 'type' => 'checkbox', |
791 | 791 | 'std' => 1 |
792 | 792 | ), |
793 | 793 | 'email_onhold_invoice_subject' => array( |
794 | 794 | 'id' => 'email_onhold_invoice_subject', |
795 | - 'name' => __( 'Subject', 'invoicing' ), |
|
796 | - 'desc' => __( 'Enter the subject line for the invoice receipt email.', 'invoicing' ), |
|
795 | + 'name' => __('Subject', 'invoicing'), |
|
796 | + 'desc' => __('Enter the subject line for the invoice receipt email.', 'invoicing'), |
|
797 | 797 | 'type' => 'text', |
798 | - 'std' => __( '[{site_title}] Your invoice receipt from {invoice_date}', 'invoicing' ), |
|
798 | + 'std' => __('[{site_title}] Your invoice receipt from {invoice_date}', 'invoicing'), |
|
799 | 799 | 'size' => 'large' |
800 | 800 | ), |
801 | 801 | 'email_onhold_invoice_heading' => array( |
802 | 802 | 'id' => 'email_onhold_invoice_heading', |
803 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
804 | - 'desc' => __( 'Enter the main heading contained within the email notification.', 'invoicing' ), |
|
803 | + 'name' => __('Email Heading', 'invoicing'), |
|
804 | + 'desc' => __('Enter the main heading contained within the email notification.', 'invoicing'), |
|
805 | 805 | 'type' => 'text', |
806 | - 'std' => __( 'Thank you for your invoice', 'invoicing' ), |
|
806 | + 'std' => __('Thank you for your invoice', 'invoicing'), |
|
807 | 807 | 'size' => 'large' |
808 | 808 | ), |
809 | 809 | 'email_onhold_invoice_admin_bcc' => array( |
810 | 810 | 'id' => 'email_onhold_invoice_admin_bcc', |
811 | - 'name' => __( 'Enable Admin BCC', 'invoicing' ), |
|
812 | - 'desc' => __( 'Check if you want to send this notification email to site Admin.', 'invoicing' ), |
|
811 | + 'name' => __('Enable Admin BCC', 'invoicing'), |
|
812 | + 'desc' => __('Check if you want to send this notification email to site Admin.', 'invoicing'), |
|
813 | 813 | 'type' => 'checkbox', |
814 | 814 | 'std' => 1 |
815 | 815 | ), |
816 | 816 | 'email_onhold_invoice_body' => array( |
817 | 817 | 'id' => 'email_onhold_invoice_body', |
818 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
819 | - 'desc' => __( 'The content of the email (wildcards and HTML are allowed).', 'invoicing' ), |
|
818 | + 'name' => __('Email Content', 'invoicing'), |
|
819 | + 'desc' => __('The content of the email (wildcards and HTML are allowed).', 'invoicing'), |
|
820 | 820 | 'type' => 'rich_editor', |
821 | - 'std' => __( '<p>Hi {name},</p><p>Your invoice is on-hold until we confirm your payment has been received.</p>', 'invoicing' ), |
|
821 | + 'std' => __('<p>Hi {name},</p><p>Your invoice is on-hold until we confirm your payment has been received.</p>', 'invoicing'), |
|
822 | 822 | 'class' => 'large', |
823 | 823 | 'size' => '10' |
824 | 824 | ), |
@@ -826,46 +826,46 @@ discard block |
||
826 | 826 | 'processing_invoice' => array( |
827 | 827 | 'email_processing_invoice_header' => array( |
828 | 828 | 'id' => 'email_processing_invoice_header', |
829 | - 'name' => '<h3>' . __( 'Processing Invoice', 'invoicing' ) . '</h3>', |
|
830 | - 'desc' => __( 'This is an invoice notification sent to users containing invoice details after payment.', 'invoicing' ), |
|
829 | + 'name' => '<h3>' . __('Processing Invoice', 'invoicing') . '</h3>', |
|
830 | + 'desc' => __('This is an invoice notification sent to users containing invoice details after payment.', 'invoicing'), |
|
831 | 831 | 'type' => 'header', |
832 | 832 | ), |
833 | 833 | 'email_processing_invoice_active' => array( |
834 | 834 | 'id' => 'email_processing_invoice_active', |
835 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
836 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
835 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
836 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
837 | 837 | 'type' => 'checkbox', |
838 | 838 | 'std' => 1 |
839 | 839 | ), |
840 | 840 | 'email_processing_invoice_subject' => array( |
841 | 841 | 'id' => 'email_processing_invoice_subject', |
842 | - 'name' => __( 'Subject', 'invoicing' ), |
|
843 | - 'desc' => __( 'Enter the subject line for the invoice receipt email.', 'invoicing' ), |
|
842 | + 'name' => __('Subject', 'invoicing'), |
|
843 | + 'desc' => __('Enter the subject line for the invoice receipt email.', 'invoicing'), |
|
844 | 844 | 'type' => 'text', |
845 | - 'std' => __( '[{site_title}] Your invoice receipt from {invoice_date}', 'invoicing' ), |
|
845 | + 'std' => __('[{site_title}] Your invoice receipt from {invoice_date}', 'invoicing'), |
|
846 | 846 | 'size' => 'large' |
847 | 847 | ), |
848 | 848 | 'email_processing_invoice_heading' => array( |
849 | 849 | 'id' => 'email_processing_invoice_heading', |
850 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
851 | - 'desc' => __( 'Enter the main heading contained within the email notification for the invoice receipt email.', 'invoicing' ), |
|
850 | + 'name' => __('Email Heading', 'invoicing'), |
|
851 | + 'desc' => __('Enter the main heading contained within the email notification for the invoice receipt email.', 'invoicing'), |
|
852 | 852 | 'type' => 'text', |
853 | - 'std' => __( 'Thank you for your invoice', 'invoicing' ), |
|
853 | + 'std' => __('Thank you for your invoice', 'invoicing'), |
|
854 | 854 | 'size' => 'large' |
855 | 855 | ), |
856 | 856 | 'email_processing_invoice_admin_bcc' => array( |
857 | 857 | 'id' => 'email_processing_invoice_admin_bcc', |
858 | - 'name' => __( 'Enable Admin BCC', 'invoicing' ), |
|
859 | - 'desc' => __( 'Check if you want to send this notification email to site Admin.', 'invoicing' ), |
|
858 | + 'name' => __('Enable Admin BCC', 'invoicing'), |
|
859 | + 'desc' => __('Check if you want to send this notification email to site Admin.', 'invoicing'), |
|
860 | 860 | 'type' => 'checkbox', |
861 | 861 | 'std' => 1 |
862 | 862 | ), |
863 | 863 | 'email_processing_invoice_body' => array( |
864 | 864 | 'id' => 'email_processing_invoice_body', |
865 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
866 | - 'desc' => __( 'The content of the email (wildcards and HTML are allowed).', 'invoicing' ), |
|
865 | + 'name' => __('Email Content', 'invoicing'), |
|
866 | + 'desc' => __('The content of the email (wildcards and HTML are allowed).', 'invoicing'), |
|
867 | 867 | 'type' => 'rich_editor', |
868 | - 'std' => __( '<p>Hi {name},</p><p>Your invoice has been received at {site_title} and is now being processed.</p>', 'invoicing' ), |
|
868 | + 'std' => __('<p>Hi {name},</p><p>Your invoice has been received at {site_title} and is now being processed.</p>', 'invoicing'), |
|
869 | 869 | 'class' => 'large', |
870 | 870 | 'size' => '10' |
871 | 871 | ), |
@@ -873,52 +873,52 @@ discard block |
||
873 | 873 | 'completed_invoice' => array( |
874 | 874 | 'email_completed_invoice_header' => array( |
875 | 875 | 'id' => 'email_completed_invoice_header', |
876 | - 'name' => '<h3>' . __( 'Paid Invoice', 'invoicing' ) . '</h3>', |
|
877 | - 'desc' => __( 'Invoice paid emails are sent to users when their invoices are marked paid and usually indicate that their payment has been done.', 'invoicing' ), |
|
876 | + 'name' => '<h3>' . __('Paid Invoice', 'invoicing') . '</h3>', |
|
877 | + 'desc' => __('Invoice paid emails are sent to users when their invoices are marked paid and usually indicate that their payment has been done.', 'invoicing'), |
|
878 | 878 | 'type' => 'header', |
879 | 879 | ), |
880 | 880 | 'email_completed_invoice_active' => array( |
881 | 881 | 'id' => 'email_completed_invoice_active', |
882 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
883 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
882 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
883 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
884 | 884 | 'type' => 'checkbox', |
885 | 885 | 'std' => 1 |
886 | 886 | ), |
887 | 887 | 'email_completed_invoice_renewal_active' => array( |
888 | 888 | 'id' => 'email_completed_invoice_renewal_active', |
889 | - 'name' => __( 'Enable renewal notification', 'invoicing' ), |
|
890 | - 'desc' => __( 'Enable renewal invoice email notification. This notification will be sent on renewal.', 'invoicing' ), |
|
889 | + 'name' => __('Enable renewal notification', 'invoicing'), |
|
890 | + 'desc' => __('Enable renewal invoice email notification. This notification will be sent on renewal.', 'invoicing'), |
|
891 | 891 | 'type' => 'checkbox', |
892 | 892 | 'std' => 0 |
893 | 893 | ), |
894 | 894 | 'email_completed_invoice_subject' => array( |
895 | 895 | 'id' => 'email_completed_invoice_subject', |
896 | - 'name' => __( 'Subject', 'invoicing' ), |
|
897 | - 'desc' => __( 'Enter the subject line for the invoice receipt email.', 'invoicing' ), |
|
896 | + 'name' => __('Subject', 'invoicing'), |
|
897 | + 'desc' => __('Enter the subject line for the invoice receipt email.', 'invoicing'), |
|
898 | 898 | 'type' => 'text', |
899 | - 'std' => __( '[{site_title}] Your invoice from {invoice_date} has been paid', 'invoicing' ), |
|
899 | + 'std' => __('[{site_title}] Your invoice from {invoice_date} has been paid', 'invoicing'), |
|
900 | 900 | 'size' => 'large' |
901 | 901 | ), |
902 | 902 | 'email_completed_invoice_heading' => array( |
903 | 903 | 'id' => 'email_completed_invoice_heading', |
904 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
905 | - 'desc' => __( 'Enter the main heading contained within the email notification for the invoice receipt email.', 'invoicing' ), |
|
904 | + 'name' => __('Email Heading', 'invoicing'), |
|
905 | + 'desc' => __('Enter the main heading contained within the email notification for the invoice receipt email.', 'invoicing'), |
|
906 | 906 | 'type' => 'text', |
907 | - 'std' => __( 'Your invoice has been paid', 'invoicing' ), |
|
907 | + 'std' => __('Your invoice has been paid', 'invoicing'), |
|
908 | 908 | 'size' => 'large' |
909 | 909 | ), |
910 | 910 | 'email_completed_invoice_admin_bcc' => array( |
911 | 911 | 'id' => 'email_completed_invoice_admin_bcc', |
912 | - 'name' => __( 'Enable Admin BCC', 'invoicing' ), |
|
913 | - 'desc' => __( 'Check if you want to send this notification email to site Admin.', 'invoicing' ), |
|
912 | + 'name' => __('Enable Admin BCC', 'invoicing'), |
|
913 | + 'desc' => __('Check if you want to send this notification email to site Admin.', 'invoicing'), |
|
914 | 914 | 'type' => 'checkbox', |
915 | 915 | ), |
916 | 916 | 'email_completed_invoice_body' => array( |
917 | 917 | 'id' => 'email_completed_invoice_body', |
918 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
919 | - 'desc' => __( 'The content of the email (wildcards and HTML are allowed).', 'invoicing' ), |
|
918 | + 'name' => __('Email Content', 'invoicing'), |
|
919 | + 'desc' => __('The content of the email (wildcards and HTML are allowed).', 'invoicing'), |
|
920 | 920 | 'type' => 'rich_editor', |
921 | - 'std' => __( '<p>Hi {name},</p><p>Your recent invoice on {site_title} has been paid.</p>', 'invoicing' ), |
|
921 | + 'std' => __('<p>Hi {name},</p><p>Your recent invoice on {site_title} has been paid.</p>', 'invoicing'), |
|
922 | 922 | 'class' => 'large', |
923 | 923 | 'size' => '10' |
924 | 924 | ), |
@@ -927,46 +927,46 @@ discard block |
||
927 | 927 | 'refunded_invoice' => array( |
928 | 928 | 'email_refunded_invoice_header' => array( |
929 | 929 | 'id' => 'email_refunded_invoice_header', |
930 | - 'name' => '<h3>' . __( 'Refunded Invoice', 'invoicing' ) . '</h3>', |
|
931 | - 'desc' => __( 'Invoice refunded emails are sent to users when their invoices are marked refunded.', 'invoicing' ), |
|
930 | + 'name' => '<h3>' . __('Refunded Invoice', 'invoicing') . '</h3>', |
|
931 | + 'desc' => __('Invoice refunded emails are sent to users when their invoices are marked refunded.', 'invoicing'), |
|
932 | 932 | 'type' => 'header', |
933 | 933 | ), |
934 | 934 | 'email_refunded_invoice_active' => array( |
935 | 935 | 'id' => 'email_refunded_invoice_active', |
936 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
937 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
936 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
937 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
938 | 938 | 'type' => 'checkbox', |
939 | 939 | 'std' => 1 |
940 | 940 | ), |
941 | 941 | 'email_refunded_invoice_subject' => array( |
942 | 942 | 'id' => 'email_refunded_invoice_subject', |
943 | - 'name' => __( 'Subject', 'invoicing' ), |
|
944 | - 'desc' => __( 'Enter the subject line for the invoice receipt email.', 'invoicing' ), |
|
943 | + 'name' => __('Subject', 'invoicing'), |
|
944 | + 'desc' => __('Enter the subject line for the invoice receipt email.', 'invoicing'), |
|
945 | 945 | 'type' => 'text', |
946 | - 'std' => __( '[{site_title}] Your invoice from {invoice_date} has been refunded', 'invoicing' ), |
|
946 | + 'std' => __('[{site_title}] Your invoice from {invoice_date} has been refunded', 'invoicing'), |
|
947 | 947 | 'size' => 'large' |
948 | 948 | ), |
949 | 949 | 'email_refunded_invoice_heading' => array( |
950 | 950 | 'id' => 'email_refunded_invoice_heading', |
951 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
952 | - 'desc' => __( 'Enter the main heading contained within the email notification.', 'invoicing' ), |
|
951 | + 'name' => __('Email Heading', 'invoicing'), |
|
952 | + 'desc' => __('Enter the main heading contained within the email notification.', 'invoicing'), |
|
953 | 953 | 'type' => 'text', |
954 | - 'std' => __( 'Your invoice has been refunded', 'invoicing' ), |
|
954 | + 'std' => __('Your invoice has been refunded', 'invoicing'), |
|
955 | 955 | 'size' => 'large' |
956 | 956 | ), |
957 | 957 | 'email_refunded_invoice_admin_bcc' => array( |
958 | 958 | 'id' => 'email_refunded_invoice_admin_bcc', |
959 | - 'name' => __( 'Enable Admin BCC', 'invoicing' ), |
|
960 | - 'desc' => __( 'Check if you want to send this notification email to site Admin.', 'invoicing' ), |
|
959 | + 'name' => __('Enable Admin BCC', 'invoicing'), |
|
960 | + 'desc' => __('Check if you want to send this notification email to site Admin.', 'invoicing'), |
|
961 | 961 | 'type' => 'checkbox', |
962 | 962 | 'std' => 1 |
963 | 963 | ), |
964 | 964 | 'email_refunded_invoice_body' => array( |
965 | 965 | 'id' => 'email_refunded_invoice_body', |
966 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
967 | - 'desc' => __( 'The content of the email (wildcards and HTML are allowed).', 'invoicing' ), |
|
966 | + 'name' => __('Email Content', 'invoicing'), |
|
967 | + 'desc' => __('The content of the email (wildcards and HTML are allowed).', 'invoicing'), |
|
968 | 968 | 'type' => 'rich_editor', |
969 | - 'std' => __( '<p>Hi {name},</p><p>Your invoice on {site_title} has been refunded.</p>', 'invoicing' ), |
|
969 | + 'std' => __('<p>Hi {name},</p><p>Your invoice on {site_title} has been refunded.</p>', 'invoicing'), |
|
970 | 970 | 'class' => 'large', |
971 | 971 | 'size' => '10' |
972 | 972 | ), |
@@ -974,46 +974,46 @@ discard block |
||
974 | 974 | 'user_invoice' => array( |
975 | 975 | 'email_user_invoice_header' => array( |
976 | 976 | 'id' => 'email_user_invoice_header', |
977 | - 'name' => '<h3>' . __( 'Customer Invoice', 'invoicing' ) . '</h3>', |
|
978 | - 'desc' => __( 'Customer invoice emails can be sent to customers containing their invoice information and payment links.', 'invoicing' ), |
|
977 | + 'name' => '<h3>' . __('Customer Invoice', 'invoicing') . '</h3>', |
|
978 | + 'desc' => __('Customer invoice emails can be sent to customers containing their invoice information and payment links.', 'invoicing'), |
|
979 | 979 | 'type' => 'header', |
980 | 980 | ), |
981 | 981 | 'email_user_invoice_active' => array( |
982 | 982 | 'id' => 'email_user_invoice_active', |
983 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
984 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
983 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
984 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
985 | 985 | 'type' => 'checkbox', |
986 | 986 | 'std' => 1 |
987 | 987 | ), |
988 | 988 | 'email_user_invoice_subject' => array( |
989 | 989 | 'id' => 'email_user_invoice_subject', |
990 | - 'name' => __( 'Subject', 'invoicing' ), |
|
991 | - 'desc' => __( 'Enter the subject line for the invoice receipt email.', 'invoicing' ), |
|
990 | + 'name' => __('Subject', 'invoicing'), |
|
991 | + 'desc' => __('Enter the subject line for the invoice receipt email.', 'invoicing'), |
|
992 | 992 | 'type' => 'text', |
993 | - 'std' => __( '[{site_title}] Your invoice from {invoice_date}', 'invoicing' ), |
|
993 | + 'std' => __('[{site_title}] Your invoice from {invoice_date}', 'invoicing'), |
|
994 | 994 | 'size' => 'large' |
995 | 995 | ), |
996 | 996 | 'email_user_invoice_heading' => array( |
997 | 997 | 'id' => 'email_user_invoice_heading', |
998 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
999 | - 'desc' => __( 'Enter the main heading contained within the email notification for the invoice receipt email.', 'invoicing' ), |
|
998 | + 'name' => __('Email Heading', 'invoicing'), |
|
999 | + 'desc' => __('Enter the main heading contained within the email notification for the invoice receipt email.', 'invoicing'), |
|
1000 | 1000 | 'type' => 'text', |
1001 | - 'std' => __( 'Your invoice {invoice_number} details', 'invoicing' ), |
|
1001 | + 'std' => __('Your invoice {invoice_number} details', 'invoicing'), |
|
1002 | 1002 | 'size' => 'large' |
1003 | 1003 | ), |
1004 | 1004 | 'email_user_invoice_admin_bcc' => array( |
1005 | 1005 | 'id' => 'email_user_invoice_admin_bcc', |
1006 | - 'name' => __( 'Enable Admin BCC', 'invoicing' ), |
|
1007 | - 'desc' => __( 'Check if you want to send this notification email to site Admin.', 'invoicing' ), |
|
1006 | + 'name' => __('Enable Admin BCC', 'invoicing'), |
|
1007 | + 'desc' => __('Check if you want to send this notification email to site Admin.', 'invoicing'), |
|
1008 | 1008 | 'type' => 'checkbox', |
1009 | 1009 | 'std' => 1 |
1010 | 1010 | ), |
1011 | 1011 | 'email_user_invoice_body' => array( |
1012 | 1012 | 'id' => 'email_user_invoice_body', |
1013 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
1014 | - 'desc' => __( 'The content of the email (wildcards and HTML are allowed).', 'invoicing' ), |
|
1013 | + 'name' => __('Email Content', 'invoicing'), |
|
1014 | + 'desc' => __('The content of the email (wildcards and HTML are allowed).', 'invoicing'), |
|
1015 | 1015 | 'type' => 'rich_editor', |
1016 | - 'std' => __( '<p>Hi {name},</p><p>An invoice has been created for you on {site_title}. To view / pay for this invoice please use the following link: <a class="btn btn-success" href="{invoice_link}">View / Pay</a></p>', 'invoicing' ), |
|
1016 | + 'std' => __('<p>Hi {name},</p><p>An invoice has been created for you on {site_title}. To view / pay for this invoice please use the following link: <a class="btn btn-success" href="{invoice_link}">View / Pay</a></p>', 'invoicing'), |
|
1017 | 1017 | 'class' => 'large', |
1018 | 1018 | 'size' => '10' |
1019 | 1019 | ), |
@@ -1021,39 +1021,39 @@ discard block |
||
1021 | 1021 | 'user_note' => array( |
1022 | 1022 | 'email_user_note_header' => array( |
1023 | 1023 | 'id' => 'email_user_note_header', |
1024 | - 'name' => '<h3>' . __( 'Customer Note', 'invoicing' ) . '</h3>', |
|
1025 | - 'desc' => __( 'Customer note emails are sent when you add a note to an invoice/quote.', 'invoicing' ), |
|
1024 | + 'name' => '<h3>' . __('Customer Note', 'invoicing') . '</h3>', |
|
1025 | + 'desc' => __('Customer note emails are sent when you add a note to an invoice/quote.', 'invoicing'), |
|
1026 | 1026 | 'type' => 'header', |
1027 | 1027 | ), |
1028 | 1028 | 'email_user_note_active' => array( |
1029 | 1029 | 'id' => 'email_user_note_active', |
1030 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
1031 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
1030 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
1031 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
1032 | 1032 | 'type' => 'checkbox', |
1033 | 1033 | 'std' => 1 |
1034 | 1034 | ), |
1035 | 1035 | 'email_user_note_subject' => array( |
1036 | 1036 | 'id' => 'email_user_note_subject', |
1037 | - 'name' => __( 'Subject', 'invoicing' ), |
|
1038 | - 'desc' => __( 'Enter the subject line for the invoice receipt email.', 'invoicing' ), |
|
1037 | + 'name' => __('Subject', 'invoicing'), |
|
1038 | + 'desc' => __('Enter the subject line for the invoice receipt email.', 'invoicing'), |
|
1039 | 1039 | 'type' => 'text', |
1040 | - 'std' => __( '[{site_title}] Note added to your {invoice_label} #{invoice_number} from {invoice_date}', 'invoicing' ), |
|
1040 | + 'std' => __('[{site_title}] Note added to your {invoice_label} #{invoice_number} from {invoice_date}', 'invoicing'), |
|
1041 | 1041 | 'size' => 'large' |
1042 | 1042 | ), |
1043 | 1043 | 'email_user_note_heading' => array( |
1044 | 1044 | 'id' => 'email_user_note_heading', |
1045 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
1046 | - 'desc' => __( 'Enter the main heading contained within the email notification.', 'invoicing' ), |
|
1045 | + 'name' => __('Email Heading', 'invoicing'), |
|
1046 | + 'desc' => __('Enter the main heading contained within the email notification.', 'invoicing'), |
|
1047 | 1047 | 'type' => 'text', |
1048 | - 'std' => __( 'A note has been added to your {invoice_label}', 'invoicing' ), |
|
1048 | + 'std' => __('A note has been added to your {invoice_label}', 'invoicing'), |
|
1049 | 1049 | 'size' => 'large' |
1050 | 1050 | ), |
1051 | 1051 | 'email_user_note_body' => array( |
1052 | 1052 | 'id' => 'email_user_note_body', |
1053 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
1054 | - 'desc' => __( 'The content of the email (wildcards and HTML are allowed).', 'invoicing' ), |
|
1053 | + 'name' => __('Email Content', 'invoicing'), |
|
1054 | + 'desc' => __('The content of the email (wildcards and HTML are allowed).', 'invoicing'), |
|
1055 | 1055 | 'type' => 'rich_editor', |
1056 | - 'std' => __( '<p>Hi {name},</p><p>Following note has been added to your {invoice_label}:</p><blockquote class="wpinv-note">{customer_note}</blockquote>', 'invoicing' ), |
|
1056 | + 'std' => __('<p>Hi {name},</p><p>Following note has been added to your {invoice_label}:</p><blockquote class="wpinv-note">{customer_note}</blockquote>', 'invoicing'), |
|
1057 | 1057 | 'class' => 'large', |
1058 | 1058 | 'size' => '10' |
1059 | 1059 | ), |
@@ -1061,158 +1061,158 @@ discard block |
||
1061 | 1061 | 'overdue' => array( |
1062 | 1062 | 'email_overdue_header' => array( |
1063 | 1063 | 'id' => 'email_overdue_header', |
1064 | - 'name' => '<h3>' . __( 'Payment Reminder', 'invoicing' ) . '</h3>', |
|
1065 | - 'desc' => __( 'Payment reminder emails are sent to user automatically.', 'invoicing' ), |
|
1064 | + 'name' => '<h3>' . __('Payment Reminder', 'invoicing') . '</h3>', |
|
1065 | + 'desc' => __('Payment reminder emails are sent to user automatically.', 'invoicing'), |
|
1066 | 1066 | 'type' => 'header', |
1067 | 1067 | ), |
1068 | 1068 | 'email_overdue_active' => array( |
1069 | 1069 | 'id' => 'email_overdue_active', |
1070 | - 'name' => __( 'Enable/Disable', 'invoicing' ), |
|
1071 | - 'desc' => __( 'Enable this email notification', 'invoicing' ), |
|
1070 | + 'name' => __('Enable/Disable', 'invoicing'), |
|
1071 | + 'desc' => __('Enable this email notification', 'invoicing'), |
|
1072 | 1072 | 'type' => 'checkbox', |
1073 | 1073 | 'std' => 1 |
1074 | 1074 | ), |
1075 | 1075 | 'email_due_reminder_days' => array( |
1076 | 1076 | 'id' => 'email_due_reminder_days', |
1077 | - 'name' => __( 'When to Send', 'invoicing' ), |
|
1078 | - 'desc' => __( 'Check when you would like payment reminders sent out.', 'invoicing' ), |
|
1077 | + 'name' => __('When to Send', 'invoicing'), |
|
1078 | + 'desc' => __('Check when you would like payment reminders sent out.', 'invoicing'), |
|
1079 | 1079 | 'default' => '', |
1080 | 1080 | 'type' => 'multicheck', |
1081 | 1081 | 'options' => $overdue_days_options, |
1082 | 1082 | ), |
1083 | 1083 | 'email_overdue_subject' => array( |
1084 | 1084 | 'id' => 'email_overdue_subject', |
1085 | - 'name' => __( 'Subject', 'invoicing' ), |
|
1086 | - 'desc' => __( 'Enter the subject line for the invoice receipt email.', 'invoicing' ), |
|
1085 | + 'name' => __('Subject', 'invoicing'), |
|
1086 | + 'desc' => __('Enter the subject line for the invoice receipt email.', 'invoicing'), |
|
1087 | 1087 | 'type' => 'text', |
1088 | - 'std' => __( '[{site_title}] Payment Reminder', 'invoicing' ), |
|
1088 | + 'std' => __('[{site_title}] Payment Reminder', 'invoicing'), |
|
1089 | 1089 | 'size' => 'large' |
1090 | 1090 | ), |
1091 | 1091 | 'email_overdue_heading' => array( |
1092 | 1092 | 'id' => 'email_overdue_heading', |
1093 | - 'name' => __( 'Email Heading', 'invoicing' ), |
|
1094 | - 'desc' => __( 'Enter the main heading contained within the email notification.', 'invoicing' ), |
|
1093 | + 'name' => __('Email Heading', 'invoicing'), |
|
1094 | + 'desc' => __('Enter the main heading contained within the email notification.', 'invoicing'), |
|
1095 | 1095 | 'type' => 'text', |
1096 | - 'std' => __( 'Payment reminder for your invoice', 'invoicing' ), |
|
1096 | + 'std' => __('Payment reminder for your invoice', 'invoicing'), |
|
1097 | 1097 | 'size' => 'large' |
1098 | 1098 | ), |
1099 | 1099 | 'email_overdue_body' => array( |
1100 | 1100 | 'id' => 'email_overdue_body', |
1101 | - 'name' => __( 'Email Content', 'invoicing' ), |
|
1102 | - 'desc' => __( 'The content of the email.', 'invoicing' ), |
|
1101 | + 'name' => __('Email Content', 'invoicing'), |
|
1102 | + 'desc' => __('The content of the email.', 'invoicing'), |
|
1103 | 1103 | 'type' => 'rich_editor', |
1104 | - 'std' => __( '<p>Hi {full_name},</p><p>This is just a friendly reminder that your invoice <a href="{invoice_link}">#{invoice_number}</a> {is_was} due on {invoice_due_date}.</p><p>The total of this invoice is {invoice_total}</p><p>To view / pay now for this invoice please use the following link: <a class="btn btn-success" href="{invoice_link}">View / Pay</a></p>', 'invoicing' ), |
|
1104 | + 'std' => __('<p>Hi {full_name},</p><p>This is just a friendly reminder that your invoice <a href="{invoice_link}">#{invoice_number}</a> {is_was} due on {invoice_due_date}.</p><p>The total of this invoice is {invoice_total}</p><p>To view / pay now for this invoice please use the following link: <a class="btn btn-success" href="{invoice_link}">View / Pay</a></p>', 'invoicing'), |
|
1105 | 1105 | 'class' => 'large', |
1106 | 1106 | 'size' => 10, |
1107 | 1107 | ), |
1108 | 1108 | ), |
1109 | 1109 | ); |
1110 | 1110 | |
1111 | - return apply_filters( 'wpinv_get_emails', $emails ); |
|
1111 | + return apply_filters('wpinv_get_emails', $emails); |
|
1112 | 1112 | } |
1113 | 1113 | |
1114 | -function wpinv_settings_emails( $settings = array() ) { |
|
1114 | +function wpinv_settings_emails($settings = array()) { |
|
1115 | 1115 | $emails = wpinv_get_emails(); |
1116 | 1116 | |
1117 | - if ( !empty( $emails ) ) { |
|
1118 | - foreach ( $emails as $key => $email ) { |
|
1117 | + if (!empty($emails)) { |
|
1118 | + foreach ($emails as $key => $email) { |
|
1119 | 1119 | $settings[$key] = $email; |
1120 | 1120 | } |
1121 | 1121 | } |
1122 | 1122 | |
1123 | - return apply_filters( 'wpinv_settings_get_emails', $settings ); |
|
1123 | + return apply_filters('wpinv_settings_get_emails', $settings); |
|
1124 | 1124 | } |
1125 | -add_filter( 'wpinv_settings_emails', 'wpinv_settings_emails', 10, 1 ); |
|
1125 | +add_filter('wpinv_settings_emails', 'wpinv_settings_emails', 10, 1); |
|
1126 | 1126 | |
1127 | -function wpinv_settings_sections_emails( $settings ) { |
|
1127 | +function wpinv_settings_sections_emails($settings) { |
|
1128 | 1128 | $emails = wpinv_get_emails(); |
1129 | 1129 | |
1130 | 1130 | if (!empty($emails)) { |
1131 | - foreach ($emails as $key => $email) { |
|
1132 | - $settings[$key] = !empty( $email['email_' . $key . '_header']['name'] ) ? strip_tags( $email['email_' . $key . '_header']['name'] ) : $key; |
|
1131 | + foreach ($emails as $key => $email) { |
|
1132 | + $settings[$key] = !empty($email['email_' . $key . '_header']['name']) ? strip_tags($email['email_' . $key . '_header']['name']) : $key; |
|
1133 | 1133 | } |
1134 | 1134 | } |
1135 | 1135 | |
1136 | 1136 | return $settings; |
1137 | 1137 | } |
1138 | -add_filter( 'wpinv_settings_sections_emails', 'wpinv_settings_sections_emails', 10, 1 ); |
|
1138 | +add_filter('wpinv_settings_sections_emails', 'wpinv_settings_sections_emails', 10, 1); |
|
1139 | 1139 | |
1140 | -function wpinv_email_is_enabled( $email_type ) { |
|
1140 | +function wpinv_email_is_enabled($email_type) { |
|
1141 | 1141 | $emails = wpinv_get_emails(); |
1142 | - $enabled = isset( $emails[$email_type] ) && wpinv_get_option( 'email_'. $email_type . '_active', 0 ) ? true : false; |
|
1142 | + $enabled = isset($emails[$email_type]) && wpinv_get_option('email_' . $email_type . '_active', 0) ? true : false; |
|
1143 | 1143 | |
1144 | - return apply_filters( 'wpinv_email_is_enabled', $enabled, $email_type ); |
|
1144 | + return apply_filters('wpinv_email_is_enabled', $enabled, $email_type); |
|
1145 | 1145 | } |
1146 | 1146 | |
1147 | -function wpinv_email_get_recipient( $email_type = '', $invoice_id = 0, $invoice = array() ) { |
|
1148 | - switch ( $email_type ) { |
|
1147 | +function wpinv_email_get_recipient($email_type = '', $invoice_id = 0, $invoice = array()) { |
|
1148 | + switch ($email_type) { |
|
1149 | 1149 | case 'new_invoice': |
1150 | 1150 | case 'cancelled_invoice': |
1151 | 1151 | case 'failed_invoice': |
1152 | 1152 | $recipient = wpinv_get_admin_email(); |
1153 | 1153 | break; |
1154 | 1154 | default: |
1155 | - $invoice = !empty( $invoice ) && is_object( $invoice ) ? $invoice : ( $invoice_id > 0 ? wpinv_get_invoice( $invoice_id ) : NULL ); |
|
1156 | - $recipient = !empty( $invoice ) ? $invoice->get_email() : ''; |
|
1155 | + $invoice = !empty($invoice) && is_object($invoice) ? $invoice : ($invoice_id > 0 ? wpinv_get_invoice($invoice_id) : NULL); |
|
1156 | + $recipient = !empty($invoice) ? $invoice->get_email() : ''; |
|
1157 | 1157 | break; |
1158 | 1158 | } |
1159 | 1159 | |
1160 | - return apply_filters( 'wpinv_email_recipient', $recipient, $email_type, $invoice_id, $invoice ); |
|
1160 | + return apply_filters('wpinv_email_recipient', $recipient, $email_type, $invoice_id, $invoice); |
|
1161 | 1161 | } |
1162 | 1162 | |
1163 | -function wpinv_email_get_subject( $email_type = '', $invoice_id = 0, $invoice = array() ) { |
|
1164 | - $subject = wpinv_get_option( 'email_' . $email_type . '_subject' ); |
|
1165 | - $subject = __( $subject, 'invoicing' ); |
|
1163 | +function wpinv_email_get_subject($email_type = '', $invoice_id = 0, $invoice = array()) { |
|
1164 | + $subject = wpinv_get_option('email_' . $email_type . '_subject'); |
|
1165 | + $subject = __($subject, 'invoicing'); |
|
1166 | 1166 | |
1167 | - $subject = wpinv_email_format_text( $subject, $invoice ); |
|
1167 | + $subject = wpinv_email_format_text($subject, $invoice); |
|
1168 | 1168 | |
1169 | - return apply_filters( 'wpinv_email_subject', $subject, $email_type, $invoice_id, $invoice ); |
|
1169 | + return apply_filters('wpinv_email_subject', $subject, $email_type, $invoice_id, $invoice); |
|
1170 | 1170 | } |
1171 | 1171 | |
1172 | -function wpinv_email_get_heading( $email_type = '', $invoice_id = 0, $invoice = array() ) { |
|
1173 | - $email_heading = wpinv_get_option( 'email_' . $email_type . '_heading' ); |
|
1174 | - $email_heading = __( $email_heading, 'invoicing' ); |
|
1172 | +function wpinv_email_get_heading($email_type = '', $invoice_id = 0, $invoice = array()) { |
|
1173 | + $email_heading = wpinv_get_option('email_' . $email_type . '_heading'); |
|
1174 | + $email_heading = __($email_heading, 'invoicing'); |
|
1175 | 1175 | |
1176 | - $email_heading = wpinv_email_format_text( $email_heading, $invoice ); |
|
1176 | + $email_heading = wpinv_email_format_text($email_heading, $invoice); |
|
1177 | 1177 | |
1178 | - return apply_filters( 'wpinv_email_heading', $email_heading, $email_type, $invoice_id, $invoice ); |
|
1178 | + return apply_filters('wpinv_email_heading', $email_heading, $email_type, $invoice_id, $invoice); |
|
1179 | 1179 | } |
1180 | 1180 | |
1181 | -function wpinv_email_get_content( $email_type = '', $invoice_id = 0, $invoice = array() ) { |
|
1182 | - $content = wpinv_get_option( 'email_' . $email_type . '_body' ); |
|
1183 | - $content = __( $content, 'invoicing' ); |
|
1181 | +function wpinv_email_get_content($email_type = '', $invoice_id = 0, $invoice = array()) { |
|
1182 | + $content = wpinv_get_option('email_' . $email_type . '_body'); |
|
1183 | + $content = __($content, 'invoicing'); |
|
1184 | 1184 | |
1185 | - $content = wpinv_email_format_text( $content, $invoice ); |
|
1185 | + $content = wpinv_email_format_text($content, $invoice); |
|
1186 | 1186 | |
1187 | - return apply_filters( 'wpinv_email_content', $content, $email_type, $invoice_id, $invoice ); |
|
1187 | + return apply_filters('wpinv_email_content', $content, $email_type, $invoice_id, $invoice); |
|
1188 | 1188 | } |
1189 | 1189 | |
1190 | -function wpinv_email_get_headers( $email_type = '', $invoice_id = 0, $invoice = array() ) { |
|
1190 | +function wpinv_email_get_headers($email_type = '', $invoice_id = 0, $invoice = array()) { |
|
1191 | 1191 | $from_name = wpinv_mail_get_from_address(); |
1192 | 1192 | $from_email = wpinv_mail_get_from_address(); |
1193 | 1193 | |
1194 | - $invoice = !empty( $invoice ) && is_object( $invoice ) ? $invoice : ( $invoice_id > 0 ? wpinv_get_invoice( $invoice_id ) : NULL ); |
|
1194 | + $invoice = !empty($invoice) && is_object($invoice) ? $invoice : ($invoice_id > 0 ? wpinv_get_invoice($invoice_id) : NULL); |
|
1195 | 1195 | |
1196 | - $headers = "From: " . stripslashes_deep( html_entity_decode( $from_name, ENT_COMPAT, 'UTF-8' ) ) . " <$from_email>\r\n"; |
|
1197 | - $headers .= "Reply-To: ". $from_email . "\r\n"; |
|
1196 | + $headers = "From: " . stripslashes_deep(html_entity_decode($from_name, ENT_COMPAT, 'UTF-8')) . " <$from_email>\r\n"; |
|
1197 | + $headers .= "Reply-To: " . $from_email . "\r\n"; |
|
1198 | 1198 | $headers .= "Content-Type: " . wpinv_mail_get_content_type() . "\r\n"; |
1199 | 1199 | |
1200 | - return apply_filters( 'wpinv_email_headers', $headers, $email_type, $invoice_id, $invoice ); |
|
1200 | + return apply_filters('wpinv_email_headers', $headers, $email_type, $invoice_id, $invoice); |
|
1201 | 1201 | } |
1202 | 1202 | |
1203 | -function wpinv_email_get_attachments( $email_type = '', $invoice_id = 0, $invoice = array() ) { |
|
1203 | +function wpinv_email_get_attachments($email_type = '', $invoice_id = 0, $invoice = array()) { |
|
1204 | 1204 | $attachments = array(); |
1205 | 1205 | |
1206 | - return apply_filters( 'wpinv_email_attachments', $attachments, $email_type, $invoice_id, $invoice ); |
|
1206 | + return apply_filters('wpinv_email_attachments', $attachments, $email_type, $invoice_id, $invoice); |
|
1207 | 1207 | } |
1208 | 1208 | |
1209 | -function wpinv_email_format_text( $content, $invoice ) { |
|
1209 | +function wpinv_email_format_text($content, $invoice) { |
|
1210 | 1210 | $replace_array = array( |
1211 | 1211 | '{site_title}' => wpinv_get_blogname(), |
1212 | - '{date}' => date_i18n( get_option( 'date_format' ), (int) current_time( 'timestamp' ) ), |
|
1212 | + '{date}' => date_i18n(get_option('date_format'), (int)current_time('timestamp')), |
|
1213 | 1213 | ); |
1214 | 1214 | |
1215 | - if ( !empty( $invoice->ID ) ) { |
|
1215 | + if (!empty($invoice->ID)) { |
|
1216 | 1216 | $replace_array = array_merge( |
1217 | 1217 | $replace_array, |
1218 | 1218 | array( |
@@ -1222,65 +1222,65 @@ discard block |
||
1222 | 1222 | '{last_name}' => $invoice->get_last_name(), |
1223 | 1223 | '{email}' => $invoice->get_email(), |
1224 | 1224 | '{invoice_number}' => $invoice->get_number(), |
1225 | - '{invoice_total}' => $invoice->get_total( true ), |
|
1226 | - '{invoice_link}' => $invoice->get_view_url( true ), |
|
1227 | - '{invoice_pay_link}'=> $invoice->get_view_url( true ), |
|
1228 | - '{invoice_date}' => $invoice->get_invoice_date( true ), |
|
1229 | - '{invoice_due_date}'=> $invoice->get_due_date( true ), |
|
1230 | - '{invoice_quote}' => $invoice->get_invoice_quote_type( $invoice->ID ), |
|
1231 | - '{invoice_label}' => $invoice->get_invoice_quote_type( $invoice->ID ), |
|
1232 | - '{is_was}' => strtotime( $invoice->get_due_date() ) < strtotime( date_i18n( 'Y-m-d' ) ) ? __( 'was', 'invoicing' ) : __( 'is', 'invoicing' ), |
|
1225 | + '{invoice_total}' => $invoice->get_total(true), |
|
1226 | + '{invoice_link}' => $invoice->get_view_url(true), |
|
1227 | + '{invoice_pay_link}'=> $invoice->get_view_url(true), |
|
1228 | + '{invoice_date}' => $invoice->get_invoice_date(true), |
|
1229 | + '{invoice_due_date}'=> $invoice->get_due_date(true), |
|
1230 | + '{invoice_quote}' => $invoice->get_invoice_quote_type($invoice->ID), |
|
1231 | + '{invoice_label}' => $invoice->get_invoice_quote_type($invoice->ID), |
|
1232 | + '{is_was}' => strtotime($invoice->get_due_date()) < strtotime(date_i18n('Y-m-d')) ? __('was', 'invoicing') : __('is', 'invoicing'), |
|
1233 | 1233 | ) |
1234 | 1234 | ); |
1235 | 1235 | } |
1236 | 1236 | |
1237 | - $replace_array = apply_filters( 'wpinv_email_format_text', $replace_array, $content, $invoice ); |
|
1237 | + $replace_array = apply_filters('wpinv_email_format_text', $replace_array, $content, $invoice); |
|
1238 | 1238 | |
1239 | - foreach ( $replace_array as $key => $value ) { |
|
1240 | - $content = str_replace( $key, $value, $content ); |
|
1239 | + foreach ($replace_array as $key => $value) { |
|
1240 | + $content = str_replace($key, $value, $content); |
|
1241 | 1241 | } |
1242 | 1242 | |
1243 | - return apply_filters( 'wpinv_email_content_replace', $content ); |
|
1243 | + return apply_filters('wpinv_email_content_replace', $content); |
|
1244 | 1244 | } |
1245 | 1245 | |
1246 | -function wpinv_email_style_body( $content ) { |
|
1246 | +function wpinv_email_style_body($content) { |
|
1247 | 1247 | // make sure we only inline CSS for html emails |
1248 | - if ( in_array( wpinv_mail_get_content_type(), array( 'text/html', 'multipart/alternative' ) ) && class_exists( 'DOMDocument' ) ) { |
|
1248 | + if (in_array(wpinv_mail_get_content_type(), array('text/html', 'multipart/alternative')) && class_exists('DOMDocument')) { |
|
1249 | 1249 | ob_start(); |
1250 | - wpinv_get_template( 'emails/wpinv-email-styles.php' ); |
|
1251 | - $css = apply_filters( 'wpinv_email_styles', ob_get_clean() ); |
|
1250 | + wpinv_get_template('emails/wpinv-email-styles.php'); |
|
1251 | + $css = apply_filters('wpinv_email_styles', ob_get_clean()); |
|
1252 | 1252 | |
1253 | 1253 | // apply CSS styles inline for picky email clients |
1254 | 1254 | try { |
1255 | - $emogrifier = new Emogrifier( $content, $css ); |
|
1255 | + $emogrifier = new Emogrifier($content, $css); |
|
1256 | 1256 | $content = $emogrifier->emogrify(); |
1257 | - } catch ( Exception $e ) { |
|
1258 | - wpinv_error_log( $e->getMessage(), 'emogrifier' ); |
|
1257 | + } catch (Exception $e) { |
|
1258 | + wpinv_error_log($e->getMessage(), 'emogrifier'); |
|
1259 | 1259 | } |
1260 | 1260 | } |
1261 | 1261 | return $content; |
1262 | 1262 | } |
1263 | 1263 | |
1264 | -function wpinv_email_header( $email_heading = '', $invoice = array(), $email_type = '', $sent_to_admin = false ) { |
|
1265 | - wpinv_get_template( 'emails/wpinv-email-header.php', array( 'email_heading' => $email_heading, 'invoice' => $invoice, 'email_type' => $email_type, 'sent_to_admin' => $sent_to_admin ) ); |
|
1264 | +function wpinv_email_header($email_heading = '', $invoice = array(), $email_type = '', $sent_to_admin = false) { |
|
1265 | + wpinv_get_template('emails/wpinv-email-header.php', array('email_heading' => $email_heading, 'invoice' => $invoice, 'email_type' => $email_type, 'sent_to_admin' => $sent_to_admin)); |
|
1266 | 1266 | } |
1267 | 1267 | |
1268 | 1268 | /** |
1269 | 1269 | * Get the email footer. |
1270 | 1270 | */ |
1271 | -function wpinv_email_footer( $invoice = array(), $email_type = '', $sent_to_admin = false ) { |
|
1272 | - wpinv_get_template( 'emails/wpinv-email-footer.php', array( 'invoice' => $invoice, 'email_type' => $email_type, 'sent_to_admin' => $sent_to_admin ) ); |
|
1271 | +function wpinv_email_footer($invoice = array(), $email_type = '', $sent_to_admin = false) { |
|
1272 | + wpinv_get_template('emails/wpinv-email-footer.php', array('invoice' => $invoice, 'email_type' => $email_type, 'sent_to_admin' => $sent_to_admin)); |
|
1273 | 1273 | } |
1274 | 1274 | |
1275 | -function wpinv_email_wrap_message( $message ) { |
|
1275 | +function wpinv_email_wrap_message($message) { |
|
1276 | 1276 | // Buffer |
1277 | 1277 | ob_start(); |
1278 | 1278 | |
1279 | - do_action( 'wpinv_email_header' ); |
|
1279 | + do_action('wpinv_email_header'); |
|
1280 | 1280 | |
1281 | - echo wpautop( wptexturize( $message ) ); |
|
1281 | + echo wpautop(wptexturize($message)); |
|
1282 | 1282 | |
1283 | - do_action( 'wpinv_email_footer' ); |
|
1283 | + do_action('wpinv_email_footer'); |
|
1284 | 1284 | |
1285 | 1285 | // Get contents |
1286 | 1286 | $message = ob_get_clean(); |
@@ -1288,92 +1288,92 @@ discard block |
||
1288 | 1288 | return $message; |
1289 | 1289 | } |
1290 | 1290 | |
1291 | -function wpinv_email_invoice_details( $invoice, $email_type = '', $sent_to_admin = false ) { |
|
1292 | - wpinv_get_template( 'emails/wpinv-email-invoice-details.php', array( 'invoice' => $invoice, 'email_type' => $email_type, 'sent_to_admin' => $sent_to_admin ) ); |
|
1291 | +function wpinv_email_invoice_details($invoice, $email_type = '', $sent_to_admin = false) { |
|
1292 | + wpinv_get_template('emails/wpinv-email-invoice-details.php', array('invoice' => $invoice, 'email_type' => $email_type, 'sent_to_admin' => $sent_to_admin)); |
|
1293 | 1293 | } |
1294 | 1294 | |
1295 | -function wpinv_email_invoice_items( $invoice, $email_type = '', $sent_to_admin = false ) { |
|
1296 | - wpinv_get_template( 'emails/wpinv-email-invoice-items.php', array( 'invoice' => $invoice, 'email_type' => $email_type, 'sent_to_admin' => $sent_to_admin ) ); |
|
1295 | +function wpinv_email_invoice_items($invoice, $email_type = '', $sent_to_admin = false) { |
|
1296 | + wpinv_get_template('emails/wpinv-email-invoice-items.php', array('invoice' => $invoice, 'email_type' => $email_type, 'sent_to_admin' => $sent_to_admin)); |
|
1297 | 1297 | } |
1298 | 1298 | |
1299 | -function wpinv_email_billing_details( $invoice, $email_type = '', $sent_to_admin = false ) { |
|
1300 | - wpinv_get_template( 'emails/wpinv-email-billing-details.php', array( 'invoice' => $invoice, 'email_type' => $email_type, 'sent_to_admin' => $sent_to_admin ) ); |
|
1299 | +function wpinv_email_billing_details($invoice, $email_type = '', $sent_to_admin = false) { |
|
1300 | + wpinv_get_template('emails/wpinv-email-billing-details.php', array('invoice' => $invoice, 'email_type' => $email_type, 'sent_to_admin' => $sent_to_admin)); |
|
1301 | 1301 | } |
1302 | 1302 | |
1303 | -function wpinv_send_customer_invoice( $data = array() ) { |
|
1304 | - $invoice_id = !empty( $data['invoice_id'] ) ? absint( $data['invoice_id'] ) : NULL; |
|
1303 | +function wpinv_send_customer_invoice($data = array()) { |
|
1304 | + $invoice_id = !empty($data['invoice_id']) ? absint($data['invoice_id']) : NULL; |
|
1305 | 1305 | |
1306 | - if ( empty( $invoice_id ) ) { |
|
1306 | + if (empty($invoice_id)) { |
|
1307 | 1307 | return; |
1308 | 1308 | } |
1309 | 1309 | |
1310 | - if ( !current_user_can( 'manage_options' ) ) { |
|
1311 | - wp_die( __( 'You do not have permission to send invoice notification', 'invoicing' ), __( 'Error', 'invoicing' ), array( 'response' => 403 ) ); |
|
1310 | + if (!current_user_can('manage_options')) { |
|
1311 | + wp_die(__('You do not have permission to send invoice notification', 'invoicing'), __('Error', 'invoicing'), array('response' => 403)); |
|
1312 | 1312 | } |
1313 | 1313 | |
1314 | - $sent = wpinv_user_invoice_notification( $invoice_id ); |
|
1314 | + $sent = wpinv_user_invoice_notification($invoice_id); |
|
1315 | 1315 | |
1316 | 1316 | if ( -1 === $sent ) { |
1317 | 1317 | $status = 'email_disabled'; |
1318 | - } elseif ( $sent ) { |
|
1318 | + } elseif ($sent) { |
|
1319 | 1319 | $status = 'email_sent'; |
1320 | 1320 | } else { |
1321 | 1321 | $status = 'email_fail'; |
1322 | 1322 | } |
1323 | 1323 | |
1324 | - $redirect = add_query_arg( array( 'wpinv-message' => $status, 'wpi_action' => false, 'invoice_id' => false ) ); |
|
1325 | - wp_redirect( $redirect ); |
|
1324 | + $redirect = add_query_arg(array('wpinv-message' => $status, 'wpi_action' => false, 'invoice_id' => false)); |
|
1325 | + wp_redirect($redirect); |
|
1326 | 1326 | exit; |
1327 | 1327 | } |
1328 | -add_action( 'wpinv_send_invoice', 'wpinv_send_customer_invoice' ); |
|
1328 | +add_action('wpinv_send_invoice', 'wpinv_send_customer_invoice'); |
|
1329 | 1329 | |
1330 | -function wpinv_send_overdue_reminder( $data = array() ) { |
|
1331 | - $invoice_id = !empty( $data['invoice_id'] ) ? absint( $data['invoice_id'] ) : NULL; |
|
1330 | +function wpinv_send_overdue_reminder($data = array()) { |
|
1331 | + $invoice_id = !empty($data['invoice_id']) ? absint($data['invoice_id']) : NULL; |
|
1332 | 1332 | |
1333 | - if ( empty( $invoice_id ) ) { |
|
1333 | + if (empty($invoice_id)) { |
|
1334 | 1334 | return; |
1335 | 1335 | } |
1336 | 1336 | |
1337 | - if ( !current_user_can( 'manage_options' ) ) { |
|
1338 | - wp_die( __( 'You do not have permission to send reminder notification', 'invoicing' ), __( 'Error', 'invoicing' ), array( 'response' => 403 ) ); |
|
1337 | + if (!current_user_can('manage_options')) { |
|
1338 | + wp_die(__('You do not have permission to send reminder notification', 'invoicing'), __('Error', 'invoicing'), array('response' => 403)); |
|
1339 | 1339 | } |
1340 | 1340 | |
1341 | - $sent = wpinv_send_payment_reminder_notification( $invoice_id ); |
|
1341 | + $sent = wpinv_send_payment_reminder_notification($invoice_id); |
|
1342 | 1342 | |
1343 | 1343 | $status = $sent ? 'email_sent' : 'email_fail'; |
1344 | 1344 | |
1345 | - $redirect = add_query_arg( array( 'wpinv-message' => $status, 'wpi_action' => false, 'invoice_id' => false ) ); |
|
1346 | - wp_redirect( $redirect ); |
|
1345 | + $redirect = add_query_arg(array('wpinv-message' => $status, 'wpi_action' => false, 'invoice_id' => false)); |
|
1346 | + wp_redirect($redirect); |
|
1347 | 1347 | exit; |
1348 | 1348 | } |
1349 | -add_action( 'wpinv_send_reminder', 'wpinv_send_overdue_reminder' ); |
|
1349 | +add_action('wpinv_send_reminder', 'wpinv_send_overdue_reminder'); |
|
1350 | 1350 | |
1351 | -function wpinv_send_customer_note_email( $data ) { |
|
1352 | - $invoice_id = !empty( $data['invoice_id'] ) ? absint( $data['invoice_id'] ) : NULL; |
|
1351 | +function wpinv_send_customer_note_email($data) { |
|
1352 | + $invoice_id = !empty($data['invoice_id']) ? absint($data['invoice_id']) : NULL; |
|
1353 | 1353 | |
1354 | - if ( empty( $invoice_id ) ) { |
|
1354 | + if (empty($invoice_id)) { |
|
1355 | 1355 | return; |
1356 | 1356 | } |
1357 | 1357 | |
1358 | - $sent = wpinv_user_note_notification( $invoice_id, $data ); |
|
1358 | + $sent = wpinv_user_note_notification($invoice_id, $data); |
|
1359 | 1359 | } |
1360 | -add_action( 'wpinv_new_customer_note', 'wpinv_send_customer_note_email', 10, 1 ); |
|
1360 | +add_action('wpinv_new_customer_note', 'wpinv_send_customer_note_email', 10, 1); |
|
1361 | 1361 | |
1362 | -function wpinv_add_notes_to_invoice_email( $invoice, $email_type, $sent_to_admin ) { |
|
1363 | - if ( !empty( $invoice ) && $email_type == 'user_invoice' && $invoice_notes = wpinv_get_invoice_notes( $invoice->ID, true ) ) { |
|
1364 | - $date_format = get_option( 'date_format' ); |
|
1365 | - $time_format = get_option( 'time_format' ); |
|
1362 | +function wpinv_add_notes_to_invoice_email($invoice, $email_type, $sent_to_admin) { |
|
1363 | + if (!empty($invoice) && $email_type == 'user_invoice' && $invoice_notes = wpinv_get_invoice_notes($invoice->ID, true)) { |
|
1364 | + $date_format = get_option('date_format'); |
|
1365 | + $time_format = get_option('time_format'); |
|
1366 | 1366 | ?> |
1367 | 1367 | <div id="wpinv-email-notes"> |
1368 | - <h3 class="wpinv-notes-t"><?php echo apply_filters( 'wpinv_email_invoice_notes_title', __( 'Invoice Notes', 'invoicing' ) ); ?></h3> |
|
1368 | + <h3 class="wpinv-notes-t"><?php echo apply_filters('wpinv_email_invoice_notes_title', __('Invoice Notes', 'invoicing')); ?></h3> |
|
1369 | 1369 | <ol class="wpinv-notes-lists"> |
1370 | 1370 | <?php |
1371 | - foreach ( $invoice_notes as $note ) { |
|
1372 | - $note_time = strtotime( $note->comment_date ); |
|
1371 | + foreach ($invoice_notes as $note) { |
|
1372 | + $note_time = strtotime($note->comment_date); |
|
1373 | 1373 | ?> |
1374 | 1374 | <li class="comment wpinv-note"> |
1375 | - <p class="wpinv-note-date meta"><?php printf( __( '%2$s at %3$s', 'invoicing' ), $note->comment_author, date_i18n( $date_format, $note_time ), date_i18n( $time_format, $note_time ), $note_time ); ?></p> |
|
1376 | - <div class="wpinv-note-desc description"><?php echo wpautop( wptexturize( $note->comment_content ) ); ?></div> |
|
1375 | + <p class="wpinv-note-date meta"><?php printf(__('%2$s at %3$s', 'invoicing'), $note->comment_author, date_i18n($date_format, $note_time), date_i18n($time_format, $note_time), $note_time); ?></p> |
|
1376 | + <div class="wpinv-note-desc description"><?php echo wpautop(wptexturize($note->comment_content)); ?></div> |
|
1377 | 1377 | </li> |
1378 | 1378 | <?php |
1379 | 1379 | } |
@@ -1382,21 +1382,21 @@ discard block |
||
1382 | 1382 | <?php |
1383 | 1383 | } |
1384 | 1384 | } |
1385 | -add_action( 'wpinv_email_billing_details', 'wpinv_add_notes_to_invoice_email', 10, 3 ); |
|
1385 | +add_action('wpinv_email_billing_details', 'wpinv_add_notes_to_invoice_email', 10, 3); |
|
1386 | 1386 | |
1387 | 1387 | function wpinv_email_payment_reminders() { |
1388 | 1388 | global $wpi_auto_reminder; |
1389 | - if ( !wpinv_get_option( 'email_overdue_active' ) ) { |
|
1389 | + if (!wpinv_get_option('email_overdue_active')) { |
|
1390 | 1390 | return; |
1391 | 1391 | } |
1392 | 1392 | |
1393 | - if ( $reminder_days = wpinv_get_option( 'email_due_reminder_days' ) ) { |
|
1394 | - $reminder_days = is_array( $reminder_days ) ? array_values( $reminder_days ) : ''; |
|
1393 | + if ($reminder_days = wpinv_get_option('email_due_reminder_days')) { |
|
1394 | + $reminder_days = is_array($reminder_days) ? array_values($reminder_days) : ''; |
|
1395 | 1395 | |
1396 | - if ( empty( $reminder_days ) ) { |
|
1396 | + if (empty($reminder_days)) { |
|
1397 | 1397 | return; |
1398 | 1398 | } |
1399 | - $reminder_days = array_unique( array_map( 'absint', $reminder_days ) ); |
|
1399 | + $reminder_days = array_unique(array_map('absint', $reminder_days)); |
|
1400 | 1400 | |
1401 | 1401 | $args = array( |
1402 | 1402 | 'post_type' => 'wpi_invoice', |
@@ -1406,7 +1406,7 @@ discard block |
||
1406 | 1406 | 'meta_query' => array( |
1407 | 1407 | array( |
1408 | 1408 | 'key' => '_wpinv_due_date', |
1409 | - 'value' => array( '', 'none' ), |
|
1409 | + 'value' => array('', 'none'), |
|
1410 | 1410 | 'compare' => 'NOT IN', |
1411 | 1411 | ) |
1412 | 1412 | ), |
@@ -1415,143 +1415,143 @@ discard block |
||
1415 | 1415 | 'order' => 'ASC', |
1416 | 1416 | ); |
1417 | 1417 | |
1418 | - $invoices = get_posts( $args ); |
|
1418 | + $invoices = get_posts($args); |
|
1419 | 1419 | |
1420 | - if ( empty( $invoices ) ) { |
|
1420 | + if (empty($invoices)) { |
|
1421 | 1421 | return; |
1422 | 1422 | } |
1423 | 1423 | |
1424 | - $date_to_send = array(); |
|
1424 | + $date_to_send = array(); |
|
1425 | 1425 | |
1426 | - foreach ( $invoices as $id ) { |
|
1427 | - $due_date = get_post_meta( $id, '_wpinv_due_date', true ); |
|
1426 | + foreach ($invoices as $id) { |
|
1427 | + $due_date = get_post_meta($id, '_wpinv_due_date', true); |
|
1428 | 1428 | |
1429 | - foreach ( $reminder_days as $key => $days ) { |
|
1430 | - if ( $days !== '' ) { |
|
1431 | - $date_to_send[$id][] = date_i18n( 'Y-m-d', strtotime( $due_date ) + ( $days * DAY_IN_SECONDS ) ); |
|
1429 | + foreach ($reminder_days as $key => $days) { |
|
1430 | + if ($days !== '') { |
|
1431 | + $date_to_send[$id][] = date_i18n('Y-m-d', strtotime($due_date) + ($days * DAY_IN_SECONDS)); |
|
1432 | 1432 | } |
1433 | 1433 | } |
1434 | 1434 | } |
1435 | 1435 | |
1436 | - $today = date_i18n( 'Y-m-d' ); |
|
1436 | + $today = date_i18n('Y-m-d'); |
|
1437 | 1437 | $wpi_auto_reminder = true; |
1438 | 1438 | |
1439 | - foreach ( $date_to_send as $id => $values ) { |
|
1440 | - if ( in_array( $today, $values ) ) { |
|
1441 | - $sent = get_post_meta( $id, '_wpinv_reminder_sent', true ); |
|
1439 | + foreach ($date_to_send as $id => $values) { |
|
1440 | + if (in_array($today, $values)) { |
|
1441 | + $sent = get_post_meta($id, '_wpinv_reminder_sent', true); |
|
1442 | 1442 | |
1443 | - if ( isset( $sent ) && !empty( $sent ) ) { |
|
1444 | - if ( !in_array( $today, $sent ) ) { |
|
1445 | - do_action( 'wpinv_send_payment_reminder_notification', $id ); |
|
1443 | + if (isset($sent) && !empty($sent)) { |
|
1444 | + if (!in_array($today, $sent)) { |
|
1445 | + do_action('wpinv_send_payment_reminder_notification', $id); |
|
1446 | 1446 | } |
1447 | 1447 | } else { |
1448 | - do_action( 'wpinv_send_payment_reminder_notification', $id ); |
|
1448 | + do_action('wpinv_send_payment_reminder_notification', $id); |
|
1449 | 1449 | } |
1450 | 1450 | } |
1451 | 1451 | } |
1452 | 1452 | |
1453 | - $wpi_auto_reminder = false; |
|
1453 | + $wpi_auto_reminder = false; |
|
1454 | 1454 | } |
1455 | 1455 | } |
1456 | 1456 | |
1457 | -function wpinv_send_payment_reminder_notification( $invoice_id ) { |
|
1457 | +function wpinv_send_payment_reminder_notification($invoice_id) { |
|
1458 | 1458 | $email_type = 'overdue'; |
1459 | - if ( !wpinv_email_is_enabled( $email_type ) ) { |
|
1459 | + if (!wpinv_email_is_enabled($email_type)) { |
|
1460 | 1460 | return false; |
1461 | 1461 | } |
1462 | 1462 | |
1463 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
1464 | - if ( empty( $invoice ) ) { |
|
1463 | + $invoice = wpinv_get_invoice($invoice_id); |
|
1464 | + if (empty($invoice)) { |
|
1465 | 1465 | return false; |
1466 | 1466 | } |
1467 | 1467 | |
1468 | - if ( !$invoice->needs_payment() ) { |
|
1468 | + if (!$invoice->needs_payment()) { |
|
1469 | 1469 | return false; |
1470 | 1470 | } |
1471 | 1471 | |
1472 | - $recipient = wpinv_email_get_recipient( $email_type, $invoice_id, $invoice ); |
|
1473 | - if ( !is_email( $recipient ) ) { |
|
1472 | + $recipient = wpinv_email_get_recipient($email_type, $invoice_id, $invoice); |
|
1473 | + if (!is_email($recipient)) { |
|
1474 | 1474 | return false; |
1475 | 1475 | } |
1476 | 1476 | |
1477 | - do_action( 'wpinv_pre_send_invoice_notification', $invoice, $email_type ); |
|
1477 | + do_action('wpinv_pre_send_invoice_notification', $invoice, $email_type); |
|
1478 | 1478 | |
1479 | - $subject = wpinv_email_get_subject( $email_type, $invoice_id, $invoice ); |
|
1480 | - $email_heading = wpinv_email_get_heading( $email_type, $invoice_id, $invoice ); |
|
1481 | - $headers = wpinv_email_get_headers( $email_type, $invoice_id, $invoice ); |
|
1482 | - $message_body = wpinv_email_get_content( $email_type, $invoice_id, $invoice ); |
|
1483 | - $attachments = wpinv_email_get_attachments( $email_type, $invoice_id, $invoice ); |
|
1479 | + $subject = wpinv_email_get_subject($email_type, $invoice_id, $invoice); |
|
1480 | + $email_heading = wpinv_email_get_heading($email_type, $invoice_id, $invoice); |
|
1481 | + $headers = wpinv_email_get_headers($email_type, $invoice_id, $invoice); |
|
1482 | + $message_body = wpinv_email_get_content($email_type, $invoice_id, $invoice); |
|
1483 | + $attachments = wpinv_email_get_attachments($email_type, $invoice_id, $invoice); |
|
1484 | 1484 | |
1485 | - $content = wpinv_get_template_html( 'emails/wpinv-email-' . $email_type . '.php', array( |
|
1485 | + $content = wpinv_get_template_html('emails/wpinv-email-' . $email_type . '.php', array( |
|
1486 | 1486 | 'invoice' => $invoice, |
1487 | 1487 | 'email_type' => $email_type, |
1488 | 1488 | 'email_heading' => $email_heading, |
1489 | 1489 | 'sent_to_admin' => false, |
1490 | 1490 | 'plain_text' => false, |
1491 | 1491 | 'message_body' => $message_body |
1492 | - ) ); |
|
1492 | + )); |
|
1493 | 1493 | |
1494 | - $content = wpinv_email_format_text( $content, $invoice ); |
|
1494 | + $content = wpinv_email_format_text($content, $invoice); |
|
1495 | 1495 | |
1496 | - $sent = wpinv_mail_send( $recipient, $subject, $content, $headers, $attachments ); |
|
1497 | - if ( $sent ) { |
|
1498 | - do_action( 'wpinv_payment_reminder_sent', $invoice_id, $invoice ); |
|
1496 | + $sent = wpinv_mail_send($recipient, $subject, $content, $headers, $attachments); |
|
1497 | + if ($sent) { |
|
1498 | + do_action('wpinv_payment_reminder_sent', $invoice_id, $invoice); |
|
1499 | 1499 | } |
1500 | 1500 | |
1501 | - do_action( 'wpinv_post_send_invoice_notification', $invoice, $email_type ); |
|
1501 | + do_action('wpinv_post_send_invoice_notification', $invoice, $email_type); |
|
1502 | 1502 | |
1503 | 1503 | return $sent; |
1504 | 1504 | } |
1505 | -add_action( 'wpinv_send_payment_reminder_notification', 'wpinv_send_payment_reminder_notification', 10, 1 ); |
|
1505 | +add_action('wpinv_send_payment_reminder_notification', 'wpinv_send_payment_reminder_notification', 10, 1); |
|
1506 | 1506 | |
1507 | -function wpinv_payment_reminder_sent( $invoice_id, $invoice ) { |
|
1507 | +function wpinv_payment_reminder_sent($invoice_id, $invoice) { |
|
1508 | 1508 | global $wpi_auto_reminder; |
1509 | 1509 | |
1510 | - $sent = get_post_meta( $invoice_id, '_wpinv_reminder_sent', true ); |
|
1510 | + $sent = get_post_meta($invoice_id, '_wpinv_reminder_sent', true); |
|
1511 | 1511 | |
1512 | - if ( empty( $sent ) ) { |
|
1512 | + if (empty($sent)) { |
|
1513 | 1513 | $sent = array(); |
1514 | 1514 | } |
1515 | - $sent[] = date_i18n( 'Y-m-d' ); |
|
1515 | + $sent[] = date_i18n('Y-m-d'); |
|
1516 | 1516 | |
1517 | - update_post_meta( $invoice_id, '_wpinv_reminder_sent', $sent ); |
|
1517 | + update_post_meta($invoice_id, '_wpinv_reminder_sent', $sent); |
|
1518 | 1518 | |
1519 | - if ( $wpi_auto_reminder ) { // Auto reminder note. |
|
1520 | - $note = __( 'Automated reminder sent to the user.', 'invoicing' ); |
|
1521 | - $invoice->add_note( $note, false, false, true ); |
|
1519 | + if ($wpi_auto_reminder) { // Auto reminder note. |
|
1520 | + $note = __('Automated reminder sent to the user.', 'invoicing'); |
|
1521 | + $invoice->add_note($note, false, false, true); |
|
1522 | 1522 | } else { // Menual reminder note. |
1523 | - $note = __( 'Manual reminder sent to the user.', 'invoicing' ); |
|
1524 | - $invoice->add_note( $note ); |
|
1523 | + $note = __('Manual reminder sent to the user.', 'invoicing'); |
|
1524 | + $invoice->add_note($note); |
|
1525 | 1525 | } |
1526 | 1526 | } |
1527 | -add_action( 'wpinv_payment_reminder_sent', 'wpinv_payment_reminder_sent', 10, 2 ); |
|
1527 | +add_action('wpinv_payment_reminder_sent', 'wpinv_payment_reminder_sent', 10, 2); |
|
1528 | 1528 | |
1529 | -function wpinv_invoice_notification_set_locale( $invoice, $email_type, $site = false ) { |
|
1530 | - if ( empty( $invoice ) ) { |
|
1529 | +function wpinv_invoice_notification_set_locale($invoice, $email_type, $site = false) { |
|
1530 | + if (empty($invoice)) { |
|
1531 | 1531 | return; |
1532 | 1532 | } |
1533 | 1533 | |
1534 | - if ( is_int( $invoice ) ) { |
|
1535 | - $invoice = new wpinv_get_invoice( $invoice ); |
|
1534 | + if (is_int($invoice)) { |
|
1535 | + $invoice = new wpinv_get_invoice($invoice); |
|
1536 | 1536 | } |
1537 | 1537 | |
1538 | - if ( ! empty( $invoice ) && is_object( $invoice ) ) { |
|
1539 | - if ( ! $site && function_exists( 'get_user_locale' ) ) { |
|
1540 | - $locale = get_user_locale( $invoice->get_user_id() ); |
|
1538 | + if (!empty($invoice) && is_object($invoice)) { |
|
1539 | + if (!$site && function_exists('get_user_locale')) { |
|
1540 | + $locale = get_user_locale($invoice->get_user_id()); |
|
1541 | 1541 | } else { |
1542 | 1542 | $locale = get_locale(); |
1543 | 1543 | } |
1544 | 1544 | |
1545 | - wpinv_switch_to_locale( $locale ); |
|
1545 | + wpinv_switch_to_locale($locale); |
|
1546 | 1546 | } |
1547 | 1547 | } |
1548 | -add_action( 'wpinv_pre_send_invoice_notification', 'wpinv_invoice_notification_set_locale', 10, 3 ); |
|
1548 | +add_action('wpinv_pre_send_invoice_notification', 'wpinv_invoice_notification_set_locale', 10, 3); |
|
1549 | 1549 | |
1550 | -function wpinv_invoice_notification_restore_locale( $invoice, $email_type, $site = false ) { |
|
1551 | - if ( empty( $invoice ) ) { |
|
1550 | +function wpinv_invoice_notification_restore_locale($invoice, $email_type, $site = false) { |
|
1551 | + if (empty($invoice)) { |
|
1552 | 1552 | return; |
1553 | 1553 | } |
1554 | 1554 | |
1555 | 1555 | wpinv_restore_locale(); |
1556 | 1556 | } |
1557 | -add_action( 'wpinv_post_send_invoice_notification', 'wpinv_invoice_notification_restore_locale', 10, 3 ); |
|
1557 | +add_action('wpinv_post_send_invoice_notification', 'wpinv_invoice_notification_restore_locale', 10, 3); |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
2 | +if (!defined('ABSPATH')) { |
|
3 | 3 | exit; // Exit if accessed directly |
4 | 4 | } |
5 | 5 | |
@@ -21,166 +21,166 @@ discard block |
||
21 | 21 | public function init() { |
22 | 22 | global $wp_filesystem; |
23 | 23 | |
24 | - if ( empty( $wp_filesystem ) ) { |
|
25 | - require_once( ABSPATH . '/wp-admin/includes/file.php' ); |
|
24 | + if (empty($wp_filesystem)) { |
|
25 | + require_once(ABSPATH . '/wp-admin/includes/file.php'); |
|
26 | 26 | WP_Filesystem(); |
27 | 27 | global $wp_filesystem; |
28 | 28 | } |
29 | 29 | $this->wp_filesystem = $wp_filesystem; |
30 | 30 | |
31 | 31 | $this->export_dir = $this->export_location(); |
32 | - $this->export_url = $this->export_location( true ); |
|
32 | + $this->export_url = $this->export_location(true); |
|
33 | 33 | $this->export = 'invoicing'; |
34 | 34 | $this->filetype = 'csv'; |
35 | 35 | $this->per_page = 20; |
36 | 36 | |
37 | - do_action( 'wpinv_class_reports_init', $this ); |
|
37 | + do_action('wpinv_class_reports_init', $this); |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | public function includes() { |
41 | - do_action( 'wpinv_class_reports_includes', $this ); |
|
41 | + do_action('wpinv_class_reports_includes', $this); |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | public function actions() { |
45 | - if ( is_admin() ) { |
|
46 | - add_action( 'admin_menu', array( $this, 'add_submenu' ), 10 ); |
|
47 | - add_action( 'wpinv_reports_tab_export', array( $this, 'export' ) ); |
|
48 | - add_action( 'wp_ajax_wpinv_ajax_export', array( $this, 'ajax_export' ) ); |
|
45 | + if (is_admin()) { |
|
46 | + add_action('admin_menu', array($this, 'add_submenu'), 10); |
|
47 | + add_action('wpinv_reports_tab_export', array($this, 'export')); |
|
48 | + add_action('wp_ajax_wpinv_ajax_export', array($this, 'ajax_export')); |
|
49 | 49 | |
50 | 50 | // Export Invoices. |
51 | - add_action( 'wpinv_export_set_params_invoices', array( $this, 'set_invoices_export' ) ); |
|
52 | - add_filter( 'wpinv_export_get_columns_invoices', array( $this, 'get_invoices_columns' ) ); |
|
53 | - add_filter( 'wpinv_export_get_data_invoices', array( $this, 'get_invoices_data' ) ); |
|
54 | - add_filter( 'wpinv_get_export_status_invoices', array( $this, 'invoices_export_status' ) ); |
|
51 | + add_action('wpinv_export_set_params_invoices', array($this, 'set_invoices_export')); |
|
52 | + add_filter('wpinv_export_get_columns_invoices', array($this, 'get_invoices_columns')); |
|
53 | + add_filter('wpinv_export_get_data_invoices', array($this, 'get_invoices_data')); |
|
54 | + add_filter('wpinv_get_export_status_invoices', array($this, 'invoices_export_status')); |
|
55 | 55 | } |
56 | - do_action( 'wpinv_class_reports_actions', $this ); |
|
56 | + do_action('wpinv_class_reports_actions', $this); |
|
57 | 57 | } |
58 | 58 | |
59 | 59 | public function add_submenu() { |
60 | 60 | global $wpi_reports_page; |
61 | - $wpi_reports_page = add_submenu_page( 'wpinv', __( 'Reports', 'invoicing' ), __( 'Reports', 'invoicing' ), 'manage_options', 'wpinv-reports', array( $this, 'reports_page' ) ); |
|
61 | + $wpi_reports_page = add_submenu_page('wpinv', __('Reports', 'invoicing'), __('Reports', 'invoicing'), 'manage_options', 'wpinv-reports', array($this, 'reports_page')); |
|
62 | 62 | } |
63 | 63 | |
64 | 64 | public function reports_page() { |
65 | - if ( !wp_script_is( 'postbox', 'enqueued' ) ) { |
|
66 | - wp_enqueue_script( 'postbox' ); |
|
65 | + if (!wp_script_is('postbox', 'enqueued')) { |
|
66 | + wp_enqueue_script('postbox'); |
|
67 | 67 | } |
68 | - if ( !wp_script_is( 'jquery-ui-datepicker', 'enqueued' ) ) { |
|
69 | - wp_enqueue_script( 'jquery-ui-datepicker' ); |
|
68 | + if (!wp_script_is('jquery-ui-datepicker', 'enqueued')) { |
|
69 | + wp_enqueue_script('jquery-ui-datepicker'); |
|
70 | 70 | } |
71 | 71 | |
72 | - $current_page = admin_url( 'admin.php?page=wpinv-reports' ); |
|
73 | - $active_tab = isset( $_GET['tab'] ) ? sanitize_text_field( $_GET['tab'] ) : 'export'; |
|
72 | + $current_page = admin_url('admin.php?page=wpinv-reports'); |
|
73 | + $active_tab = isset($_GET['tab']) ? sanitize_text_field($_GET['tab']) : 'export'; |
|
74 | 74 | ?> |
75 | 75 | <div class="wrap wpi-reports-wrap"> |
76 | - <h1><?php echo esc_html( __( 'Reports', 'invoicing' ) ); ?></h1> |
|
76 | + <h1><?php echo esc_html(__('Reports', 'invoicing')); ?></h1> |
|
77 | 77 | <h2 class="nav-tab-wrapper wp-clearfix"> |
78 | - <a href="<?php echo add_query_arg( array( 'tab' => 'export', 'settings-updated' => false ), $current_page ); ?>" class="nav-tab <?php echo $active_tab == 'export' ? 'nav-tab-active' : ''; ?>"><?php _e( 'Export', 'invoicing' ); ?></a> |
|
79 | - <?php do_action( 'wpinv_reports_page_tabs' ); ;?> |
|
78 | + <a href="<?php echo add_query_arg(array('tab' => 'export', 'settings-updated' => false), $current_page); ?>" class="nav-tab <?php echo $active_tab == 'export' ? 'nav-tab-active' : ''; ?>"><?php _e('Export', 'invoicing'); ?></a> |
|
79 | + <?php do_action('wpinv_reports_page_tabs'); ;?> |
|
80 | 80 | </h2> |
81 | 81 | <div class="wpi-reports-content wpi-reports-<?php echo $active_tab; ?>"> |
82 | 82 | <?php |
83 | - do_action( 'wpinv_reports_page_top' ); |
|
84 | - do_action( 'wpinv_reports_tab_' . $active_tab ); |
|
85 | - do_action( 'wpinv_reports_page_bottom' ); |
|
83 | + do_action('wpinv_reports_page_top'); |
|
84 | + do_action('wpinv_reports_tab_' . $active_tab); |
|
85 | + do_action('wpinv_reports_page_bottom'); |
|
86 | 86 | ?> |
87 | 87 | </div> |
88 | 88 | <?php |
89 | 89 | } |
90 | 90 | |
91 | 91 | public function export() { |
92 | - $statuses = wpinv_get_invoice_statuses( true ); |
|
93 | - $statuses = array_merge( array( 'any' => __( 'All Statuses', 'invoicing' ) ), $statuses ); |
|
92 | + $statuses = wpinv_get_invoice_statuses(true); |
|
93 | + $statuses = array_merge(array('any' => __('All Statuses', 'invoicing')), $statuses); |
|
94 | 94 | ?> |
95 | 95 | <div class="metabox-holder"> |
96 | 96 | <div id="post-body"> |
97 | 97 | <div id="post-body-content"> |
98 | - <?php do_action( 'wpinv_reports_tab_export_content_top' ); ?> |
|
98 | + <?php do_action('wpinv_reports_tab_export_content_top'); ?> |
|
99 | 99 | |
100 | 100 | <div class="postbox wpi-export-invoices"> |
101 | - <h2 class="hndle ui-sortabled-handle"><span><?php _e( 'Invoices','invoicing' ); ?></span></h2> |
|
101 | + <h2 class="hndle ui-sortabled-handle"><span><?php _e('Invoices', 'invoicing'); ?></span></h2> |
|
102 | 102 | <div class="inside"> |
103 | - <p><?php _e( 'Download a CSV of all payment invoices.', 'invoicing' ); ?></p> |
|
103 | + <p><?php _e('Download a CSV of all payment invoices.', 'invoicing'); ?></p> |
|
104 | 104 | <form id="wpi-export-invoices" class="wpi-export-form" method="post"> |
105 | - <?php echo wpinv_html_date_field( array( |
|
105 | + <?php echo wpinv_html_date_field(array( |
|
106 | 106 | 'id' => 'wpi_export_from_date', |
107 | 107 | 'name' => 'from_date', |
108 | 108 | 'data' => array( |
109 | 109 | 'dateFormat' => 'yy-mm-dd' |
110 | 110 | ), |
111 | - 'placeholder' => __( 'From date', 'invoicing' ) ) |
|
111 | + 'placeholder' => __('From date', 'invoicing') ) |
|
112 | 112 | ); ?> |
113 | - <?php echo wpinv_html_date_field( array( |
|
113 | + <?php echo wpinv_html_date_field(array( |
|
114 | 114 | 'id' => 'wpi_export_to_date', |
115 | 115 | 'name' => 'to_date', |
116 | 116 | 'data' => array( |
117 | 117 | 'dateFormat' => 'yy-mm-dd' |
118 | 118 | ), |
119 | - 'placeholder' => __( 'To date', 'invoicing' ) ) |
|
119 | + 'placeholder' => __('To date', 'invoicing') ) |
|
120 | 120 | ); ?> |
121 | 121 | <span id="wpinv-status-wrap"> |
122 | - <?php echo wpinv_html_select( array( |
|
122 | + <?php echo wpinv_html_select(array( |
|
123 | 123 | 'options' => $statuses, |
124 | 124 | 'name' => 'status', |
125 | 125 | 'id' => 'wpi_export_status', |
126 | 126 | 'show_option_all' => false, |
127 | 127 | 'show_option_none' => false, |
128 | 128 | 'class' => 'wpi_select2', |
129 | - ) ); ?> |
|
130 | - <?php wp_nonce_field( 'wpi_ajax_export', 'wpi_ajax_export' ); ?> |
|
129 | + )); ?> |
|
130 | + <?php wp_nonce_field('wpi_ajax_export', 'wpi_ajax_export'); ?> |
|
131 | 131 | </span> |
132 | 132 | <span id="wpinv-submit-wrap"> |
133 | 133 | <input type="hidden" value="invoices" name="export" /> |
134 | - <input type="submit" value="<?php _e( 'Generate CSV', 'invoicing' ); ?>" class="button-primary" /> |
|
134 | + <input type="submit" value="<?php _e('Generate CSV', 'invoicing'); ?>" class="button-primary" /> |
|
135 | 135 | </span> |
136 | 136 | </form> |
137 | 137 | </div> |
138 | 138 | </div> |
139 | 139 | |
140 | - <?php do_action( 'wpinv_reports_tab_export_content_bottom' ); ?> |
|
140 | + <?php do_action('wpinv_reports_tab_export_content_bottom'); ?> |
|
141 | 141 | </div> |
142 | 142 | </div> |
143 | 143 | </div> |
144 | 144 | <?php |
145 | 145 | } |
146 | 146 | |
147 | - public function export_location( $relative = false ) { |
|
147 | + public function export_location($relative = false) { |
|
148 | 148 | $upload_dir = wp_upload_dir(); |
149 | - $export_location = $relative ? trailingslashit( $upload_dir['baseurl'] ) . 'cache' : trailingslashit( $upload_dir['basedir'] ) . 'cache'; |
|
150 | - $export_location = apply_filters( 'wpinv_export_location', $export_location, $relative ); |
|
149 | + $export_location = $relative ? trailingslashit($upload_dir['baseurl']) . 'cache' : trailingslashit($upload_dir['basedir']) . 'cache'; |
|
150 | + $export_location = apply_filters('wpinv_export_location', $export_location, $relative); |
|
151 | 151 | |
152 | - return trailingslashit( $export_location ); |
|
152 | + return trailingslashit($export_location); |
|
153 | 153 | } |
154 | 154 | |
155 | 155 | public function check_export_location() { |
156 | 156 | try { |
157 | - if ( empty( $this->wp_filesystem ) ) { |
|
158 | - return __( 'Filesystem ERROR: Could not access filesystem.', 'invoicing' ); |
|
157 | + if (empty($this->wp_filesystem)) { |
|
158 | + return __('Filesystem ERROR: Could not access filesystem.', 'invoicing'); |
|
159 | 159 | } |
160 | 160 | |
161 | - if ( is_wp_error( $this->wp_filesystem ) ) { |
|
162 | - return __( 'Filesystem ERROR: ' . $this->wp_filesystem->get_error_message(), 'invoicing' ); |
|
161 | + if (is_wp_error($this->wp_filesystem)) { |
|
162 | + return __('Filesystem ERROR: ' . $this->wp_filesystem->get_error_message(), 'invoicing'); |
|
163 | 163 | } |
164 | 164 | |
165 | - $is_dir = $this->wp_filesystem->is_dir( $this->export_dir ); |
|
166 | - $is_writeable = $is_dir && is_writeable( $this->export_dir ); |
|
165 | + $is_dir = $this->wp_filesystem->is_dir($this->export_dir); |
|
166 | + $is_writeable = $is_dir && is_writeable($this->export_dir); |
|
167 | 167 | |
168 | - if ( $is_dir && $is_writeable ) { |
|
168 | + if ($is_dir && $is_writeable) { |
|
169 | 169 | return true; |
170 | - } else if ( $is_dir && !$is_writeable ) { |
|
171 | - if ( !$this->wp_filesystem->chmod( $this->export_dir, FS_CHMOD_DIR ) ) { |
|
172 | - return wp_sprintf( __( 'Filesystem ERROR: Export location %s is not writable, check your file permissions.', 'invoicing' ), $this->export_dir ); |
|
170 | + } else if ($is_dir && !$is_writeable) { |
|
171 | + if (!$this->wp_filesystem->chmod($this->export_dir, FS_CHMOD_DIR)) { |
|
172 | + return wp_sprintf(__('Filesystem ERROR: Export location %s is not writable, check your file permissions.', 'invoicing'), $this->export_dir); |
|
173 | 173 | } |
174 | 174 | |
175 | 175 | return true; |
176 | 176 | } else { |
177 | - if ( !$this->wp_filesystem->mkdir( $this->export_dir, FS_CHMOD_DIR ) ) { |
|
178 | - return wp_sprintf( __( 'Filesystem ERROR: Could not create directory %s. This is usually due to inconsistent file permissions.', 'invoicing' ), $this->export_dir ); |
|
177 | + if (!$this->wp_filesystem->mkdir($this->export_dir, FS_CHMOD_DIR)) { |
|
178 | + return wp_sprintf(__('Filesystem ERROR: Could not create directory %s. This is usually due to inconsistent file permissions.', 'invoicing'), $this->export_dir); |
|
179 | 179 | } |
180 | 180 | |
181 | 181 | return true; |
182 | 182 | } |
183 | - } catch ( Exception $e ) { |
|
183 | + } catch (Exception $e) { |
|
184 | 184 | return $e->getMessage(); |
185 | 185 | } |
186 | 186 | } |
@@ -188,127 +188,127 @@ discard block |
||
188 | 188 | public function ajax_export() { |
189 | 189 | $response = array(); |
190 | 190 | $response['success'] = false; |
191 | - $response['msg'] = __( 'Invalid export request found.', 'invoicing' ); |
|
191 | + $response['msg'] = __('Invalid export request found.', 'invoicing'); |
|
192 | 192 | |
193 | - if ( empty( $_POST['data'] ) || !current_user_can( 'manage_options' ) ) { |
|
194 | - wp_send_json( $response ); |
|
193 | + if (empty($_POST['data']) || !current_user_can('manage_options')) { |
|
194 | + wp_send_json($response); |
|
195 | 195 | } |
196 | 196 | |
197 | - parse_str( $_POST['data'], $data ); |
|
197 | + parse_str($_POST['data'], $data); |
|
198 | 198 | |
199 | - $data['step'] = !empty( $_POST['step'] ) ? absint( $_POST['step'] ) : 1; |
|
199 | + $data['step'] = !empty($_POST['step']) ? absint($_POST['step']) : 1; |
|
200 | 200 | |
201 | 201 | $_REQUEST = (array)$data; |
202 | - if ( !( !empty( $_REQUEST['wpi_ajax_export'] ) && wp_verify_nonce( $_REQUEST['wpi_ajax_export'], 'wpi_ajax_export' ) ) ) { |
|
203 | - $response['msg'] = __( 'Security check failed.', 'invoicing' ); |
|
204 | - wp_send_json( $response ); |
|
202 | + if (!(!empty($_REQUEST['wpi_ajax_export']) && wp_verify_nonce($_REQUEST['wpi_ajax_export'], 'wpi_ajax_export'))) { |
|
203 | + $response['msg'] = __('Security check failed.', 'invoicing'); |
|
204 | + wp_send_json($response); |
|
205 | 205 | } |
206 | 206 | |
207 | - if ( ( $error = $this->check_export_location( true ) ) !== true ) { |
|
208 | - $response['msg'] = __( 'Filesystem ERROR: ' . $error, 'invoicing' ); |
|
209 | - wp_send_json( $response ); |
|
207 | + if (($error = $this->check_export_location(true)) !== true) { |
|
208 | + $response['msg'] = __('Filesystem ERROR: ' . $error, 'invoicing'); |
|
209 | + wp_send_json($response); |
|
210 | 210 | } |
211 | 211 | |
212 | - $this->set_export_params( $_REQUEST ); |
|
212 | + $this->set_export_params($_REQUEST); |
|
213 | 213 | |
214 | 214 | $return = $this->process_export_step(); |
215 | 215 | $done = $this->get_export_status(); |
216 | 216 | |
217 | - if ( $return ) { |
|
217 | + if ($return) { |
|
218 | 218 | $this->step += 1; |
219 | 219 | |
220 | 220 | $response['success'] = true; |
221 | 221 | $response['msg'] = ''; |
222 | 222 | |
223 | - if ( $done >= 100 ) { |
|
223 | + if ($done >= 100) { |
|
224 | 224 | $this->step = 'done'; |
225 | - $new_filename = 'wpi-' . $this->export . '-' . date( 'y-m-d-H-i' ) . '.' . $this->filetype; |
|
225 | + $new_filename = 'wpi-' . $this->export . '-' . date('y-m-d-H-i') . '.' . $this->filetype; |
|
226 | 226 | $new_file = $this->export_dir . $new_filename; |
227 | 227 | |
228 | - if ( file_exists( $this->file ) ) { |
|
229 | - $this->wp_filesystem->move( $this->file, $new_file, true ); |
|
228 | + if (file_exists($this->file)) { |
|
229 | + $this->wp_filesystem->move($this->file, $new_file, true); |
|
230 | 230 | } |
231 | 231 | |
232 | - if ( file_exists( $new_file ) ) { |
|
233 | - $response['data']['file'] = array( 'u' => $this->export_url . $new_filename, 's' => size_format( filesize( $new_file ), 2 ) ); |
|
232 | + if (file_exists($new_file)) { |
|
233 | + $response['data']['file'] = array('u' => $this->export_url . $new_filename, 's' => size_format(filesize($new_file), 2)); |
|
234 | 234 | } |
235 | 235 | } |
236 | 236 | |
237 | 237 | $response['data']['step'] = $this->step; |
238 | 238 | $response['data']['done'] = $done; |
239 | 239 | } else { |
240 | - $response['msg'] = __( 'No data found for export.', 'invoicing' ); |
|
240 | + $response['msg'] = __('No data found for export.', 'invoicing'); |
|
241 | 241 | } |
242 | 242 | |
243 | - wp_send_json( $response ); |
|
243 | + wp_send_json($response); |
|
244 | 244 | } |
245 | 245 | |
246 | - public function set_export_params( $request ) { |
|
246 | + public function set_export_params($request) { |
|
247 | 247 | $this->empty = false; |
248 | - $this->step = !empty( $request['step'] ) ? absint( $request['step'] ) : 1; |
|
249 | - $this->export = !empty( $request['export'] ) ? $request['export'] : $this->export; |
|
248 | + $this->step = !empty($request['step']) ? absint($request['step']) : 1; |
|
249 | + $this->export = !empty($request['export']) ? $request['export'] : $this->export; |
|
250 | 250 | $this->filename = 'wpi-' . $this->export . '-' . $request['wpi_ajax_export'] . '.' . $this->filetype; |
251 | 251 | $this->file = $this->export_dir . $this->filename; |
252 | 252 | |
253 | - do_action( 'wpinv_export_set_params_' . $this->export, $request ); |
|
253 | + do_action('wpinv_export_set_params_' . $this->export, $request); |
|
254 | 254 | } |
255 | 255 | |
256 | 256 | public function get_columns() { |
257 | 257 | $columns = array(); |
258 | 258 | |
259 | - return apply_filters( 'wpinv_export_get_columns_' . $this->export, $columns ); |
|
259 | + return apply_filters('wpinv_export_get_columns_' . $this->export, $columns); |
|
260 | 260 | } |
261 | 261 | |
262 | 262 | protected function get_export_file() { |
263 | 263 | $file = ''; |
264 | 264 | |
265 | - if ( $this->wp_filesystem->exists( $this->file ) ) { |
|
266 | - $file = $this->wp_filesystem->get_contents( $this->file ); |
|
265 | + if ($this->wp_filesystem->exists($this->file)) { |
|
266 | + $file = $this->wp_filesystem->get_contents($this->file); |
|
267 | 267 | } else { |
268 | - $this->wp_filesystem->put_contents( $this->file, '' ); |
|
268 | + $this->wp_filesystem->put_contents($this->file, ''); |
|
269 | 269 | } |
270 | 270 | |
271 | 271 | return $file; |
272 | 272 | } |
273 | 273 | |
274 | - protected function attach_export_data( $data = '' ) { |
|
275 | - $filedata = $this->get_export_file(); |
|
276 | - $filedata .= $data; |
|
274 | + protected function attach_export_data($data = '') { |
|
275 | + $filedata = $this->get_export_file(); |
|
276 | + $filedata .= $data; |
|
277 | 277 | |
278 | - $this->wp_filesystem->put_contents( $this->file, $filedata ); |
|
278 | + $this->wp_filesystem->put_contents($this->file, $filedata); |
|
279 | 279 | |
280 | - $rows = file( $this->file, FILE_SKIP_EMPTY_LINES ); |
|
280 | + $rows = file($this->file, FILE_SKIP_EMPTY_LINES); |
|
281 | 281 | $columns = $this->get_columns(); |
282 | - $columns = empty( $columns ) ? 0 : 1; |
|
282 | + $columns = empty($columns) ? 0 : 1; |
|
283 | 283 | |
284 | - $this->empty = count( $rows ) == $columns ? true : false; |
|
284 | + $this->empty = count($rows) == $columns ? true : false; |
|
285 | 285 | } |
286 | 286 | |
287 | 287 | public function print_columns() { |
288 | 288 | $column_data = ''; |
289 | 289 | $columns = $this->get_columns(); |
290 | 290 | $i = 1; |
291 | - foreach( $columns as $key => $column ) { |
|
292 | - $column_data .= '"' . addslashes( $column ) . '"'; |
|
293 | - $column_data .= $i == count( $columns ) ? '' : ','; |
|
291 | + foreach ($columns as $key => $column) { |
|
292 | + $column_data .= '"' . addslashes($column) . '"'; |
|
293 | + $column_data .= $i == count($columns) ? '' : ','; |
|
294 | 294 | $i++; |
295 | 295 | } |
296 | 296 | $column_data .= "\r\n"; |
297 | 297 | |
298 | - $this->attach_export_data( $column_data ); |
|
298 | + $this->attach_export_data($column_data); |
|
299 | 299 | |
300 | 300 | return $column_data; |
301 | 301 | } |
302 | 302 | |
303 | 303 | public function process_export_step() { |
304 | - if ( $this->step < 2 ) { |
|
305 | - @unlink( $this->file ); |
|
304 | + if ($this->step < 2) { |
|
305 | + @unlink($this->file); |
|
306 | 306 | $this->print_columns(); |
307 | 307 | } |
308 | 308 | |
309 | 309 | $return = $this->print_rows(); |
310 | 310 | |
311 | - if ( $return ) { |
|
311 | + if ($return) { |
|
312 | 312 | return true; |
313 | 313 | } else { |
314 | 314 | return false; |
@@ -317,23 +317,23 @@ discard block |
||
317 | 317 | |
318 | 318 | public function get_export_status() { |
319 | 319 | $status = 100; |
320 | - return apply_filters( 'wpinv_get_export_status_' . $this->export, $status ); |
|
320 | + return apply_filters('wpinv_get_export_status_' . $this->export, $status); |
|
321 | 321 | } |
322 | 322 | |
323 | 323 | public function get_export_data() { |
324 | 324 | $data = array( |
325 | 325 | 0 => array( |
326 | 326 | 'id' => '', |
327 | - 'data' => date( 'F j, Y' ) |
|
327 | + 'data' => date('F j, Y') |
|
328 | 328 | ), |
329 | 329 | 1 => array( |
330 | 330 | 'id' => '', |
331 | - 'data' => date( 'F j, Y' ) |
|
331 | + 'data' => date('F j, Y') |
|
332 | 332 | ) |
333 | 333 | ); |
334 | 334 | |
335 | - $data = apply_filters( 'wpinv_export_get_data', $data ); |
|
336 | - $data = apply_filters( 'wpinv_export_get_data_' . $this->export, $data ); |
|
335 | + $data = apply_filters('wpinv_export_get_data', $data); |
|
336 | + $data = apply_filters('wpinv_export_get_data_' . $this->export, $data); |
|
337 | 337 | |
338 | 338 | return $data; |
339 | 339 | } |
@@ -343,20 +343,20 @@ discard block |
||
343 | 343 | $data = $this->get_export_data(); |
344 | 344 | $columns = $this->get_columns(); |
345 | 345 | |
346 | - if ( $data ) { |
|
347 | - foreach ( $data as $row ) { |
|
346 | + if ($data) { |
|
347 | + foreach ($data as $row) { |
|
348 | 348 | $i = 1; |
349 | - foreach ( $row as $key => $column ) { |
|
350 | - if ( array_key_exists( $key, $columns ) ) { |
|
351 | - $row_data .= '"' . addslashes( preg_replace( "/\"/","'", $column ) ) . '"'; |
|
352 | - $row_data .= $i == count( $columns ) ? '' : ','; |
|
349 | + foreach ($row as $key => $column) { |
|
350 | + if (array_key_exists($key, $columns)) { |
|
351 | + $row_data .= '"' . addslashes(preg_replace("/\"/", "'", $column)) . '"'; |
|
352 | + $row_data .= $i == count($columns) ? '' : ','; |
|
353 | 353 | $i++; |
354 | 354 | } |
355 | 355 | } |
356 | 356 | $row_data .= "\r\n"; |
357 | 357 | } |
358 | 358 | |
359 | - $this->attach_export_data( $row_data ); |
|
359 | + $this->attach_export_data($row_data); |
|
360 | 360 | |
361 | 361 | return $row_data; |
362 | 362 | } |
@@ -365,46 +365,46 @@ discard block |
||
365 | 365 | } |
366 | 366 | |
367 | 367 | // Export Invoices. |
368 | - public function set_invoices_export( $request ) { |
|
369 | - $this->from_date = isset( $request['from_date'] ) ? sanitize_text_field( $request['from_date'] ) : ''; |
|
370 | - $this->to_date = isset( $request['to_date'] ) ? sanitize_text_field( $request['to_date'] ) : ''; |
|
371 | - $this->status = isset( $request['status'] ) ? sanitize_text_field( $request['status'] ) : 'publish'; |
|
368 | + public function set_invoices_export($request) { |
|
369 | + $this->from_date = isset($request['from_date']) ? sanitize_text_field($request['from_date']) : ''; |
|
370 | + $this->to_date = isset($request['to_date']) ? sanitize_text_field($request['to_date']) : ''; |
|
371 | + $this->status = isset($request['status']) ? sanitize_text_field($request['status']) : 'publish'; |
|
372 | 372 | } |
373 | 373 | |
374 | - public function get_invoices_columns( $columns = array() ) { |
|
374 | + public function get_invoices_columns($columns = array()) { |
|
375 | 375 | $columns = array( |
376 | - 'id' => __( 'ID', 'invoicing' ), |
|
377 | - 'number' => __( 'Number', 'invoicing' ), |
|
378 | - 'date' => __( 'Date', 'invoicing' ), |
|
379 | - 'amount' => __( 'Amount', 'invoicing' ), |
|
380 | - 'status_nicename' => __( 'Status Nicename', 'invoicing' ), |
|
381 | - 'status' => __( 'Status', 'invoicing' ), |
|
382 | - 'tax' => __( 'Tax', 'invoicing' ), |
|
383 | - 'discount' => __( 'Discount', 'invoicing' ), |
|
384 | - 'user_id' => __( 'User ID', 'invoicing' ), |
|
385 | - 'email' => __( 'Email', 'invoicing' ), |
|
386 | - 'first_name' => __( 'First Name', 'invoicing' ), |
|
387 | - 'last_name' => __( 'Last Name', 'invoicing' ), |
|
388 | - 'address' => __( 'Address', 'invoicing' ), |
|
389 | - 'city' => __( 'City', 'invoicing' ), |
|
390 | - 'state' => __( 'State', 'invoicing' ), |
|
391 | - 'country' => __( 'Country', 'invoicing' ), |
|
392 | - 'zip' => __( 'Zipcode', 'invoicing' ), |
|
393 | - 'phone' => __( 'Phone', 'invoicing' ), |
|
394 | - 'company' => __( 'Company', 'invoicing' ), |
|
395 | - 'vat_number' => __( 'Vat Number', 'invoicing' ), |
|
396 | - 'ip' => __( 'IP', 'invoicing' ), |
|
397 | - 'gateway' => __( 'Gateway', 'invoicing' ), |
|
398 | - 'gateway_nicename' => __( 'Gateway Nicename', 'invoicing' ), |
|
399 | - 'transaction_id'=> __( 'Transaction ID', 'invoicing' ), |
|
400 | - 'currency' => __( 'Currency', 'invoicing' ), |
|
401 | - 'due_date' => __( 'Due Date', 'invoicing' ), |
|
376 | + 'id' => __('ID', 'invoicing'), |
|
377 | + 'number' => __('Number', 'invoicing'), |
|
378 | + 'date' => __('Date', 'invoicing'), |
|
379 | + 'amount' => __('Amount', 'invoicing'), |
|
380 | + 'status_nicename' => __('Status Nicename', 'invoicing'), |
|
381 | + 'status' => __('Status', 'invoicing'), |
|
382 | + 'tax' => __('Tax', 'invoicing'), |
|
383 | + 'discount' => __('Discount', 'invoicing'), |
|
384 | + 'user_id' => __('User ID', 'invoicing'), |
|
385 | + 'email' => __('Email', 'invoicing'), |
|
386 | + 'first_name' => __('First Name', 'invoicing'), |
|
387 | + 'last_name' => __('Last Name', 'invoicing'), |
|
388 | + 'address' => __('Address', 'invoicing'), |
|
389 | + 'city' => __('City', 'invoicing'), |
|
390 | + 'state' => __('State', 'invoicing'), |
|
391 | + 'country' => __('Country', 'invoicing'), |
|
392 | + 'zip' => __('Zipcode', 'invoicing'), |
|
393 | + 'phone' => __('Phone', 'invoicing'), |
|
394 | + 'company' => __('Company', 'invoicing'), |
|
395 | + 'vat_number' => __('Vat Number', 'invoicing'), |
|
396 | + 'ip' => __('IP', 'invoicing'), |
|
397 | + 'gateway' => __('Gateway', 'invoicing'), |
|
398 | + 'gateway_nicename' => __('Gateway Nicename', 'invoicing'), |
|
399 | + 'transaction_id'=> __('Transaction ID', 'invoicing'), |
|
400 | + 'currency' => __('Currency', 'invoicing'), |
|
401 | + 'due_date' => __('Due Date', 'invoicing'), |
|
402 | 402 | ); |
403 | 403 | |
404 | 404 | return $columns; |
405 | 405 | } |
406 | 406 | |
407 | - public function get_invoices_data( $response = array() ) { |
|
407 | + public function get_invoices_data($response = array()) { |
|
408 | 408 | $args = array( |
409 | 409 | 'limit' => $this->per_page, |
410 | 410 | 'page' => $this->step, |
@@ -412,37 +412,37 @@ discard block |
||
412 | 412 | 'orderby' => 'date', |
413 | 413 | ); |
414 | 414 | |
415 | - if ( $this->status != 'any' ) { |
|
415 | + if ($this->status != 'any') { |
|
416 | 416 | $args['status'] = $this->status; |
417 | 417 | } else { |
418 | - $args['status'] = array_keys( wpinv_get_invoice_statuses( true ) ); |
|
418 | + $args['status'] = array_keys(wpinv_get_invoice_statuses(true)); |
|
419 | 419 | } |
420 | 420 | |
421 | - if ( !empty( $this->from_date ) || !empty( $this->to_date ) ) { |
|
421 | + if (!empty($this->from_date) || !empty($this->to_date)) { |
|
422 | 422 | $args['date_query'] = array( |
423 | 423 | array( |
424 | - 'after' => date( 'Y-n-d 00:00:00', strtotime( $this->from_date ) ), |
|
425 | - 'before' => date( 'Y-n-d 23:59:59', strtotime( $this->to_date ) ), |
|
424 | + 'after' => date('Y-n-d 00:00:00', strtotime($this->from_date)), |
|
425 | + 'before' => date('Y-n-d 23:59:59', strtotime($this->to_date)), |
|
426 | 426 | 'inclusive' => true |
427 | 427 | ) |
428 | 428 | ); |
429 | 429 | } |
430 | 430 | |
431 | - $invoices = wpinv_get_invoices( $args ); |
|
431 | + $invoices = wpinv_get_invoices($args); |
|
432 | 432 | |
433 | 433 | $data = array(); |
434 | 434 | |
435 | - if ( !empty( $invoices ) ) { |
|
436 | - foreach ( $invoices as $invoice ) { |
|
435 | + if (!empty($invoices)) { |
|
436 | + foreach ($invoices as $invoice) { |
|
437 | 437 | $row = array( |
438 | 438 | 'id' => $invoice->ID, |
439 | 439 | 'number' => $invoice->get_number(), |
440 | - 'date' => $invoice->get_invoice_date( false ), |
|
441 | - 'amount' => wpinv_round_amount( $invoice->get_total() ), |
|
442 | - 'status_nicename' => $invoice->get_status( true ), |
|
440 | + 'date' => $invoice->get_invoice_date(false), |
|
441 | + 'amount' => wpinv_round_amount($invoice->get_total()), |
|
442 | + 'status_nicename' => $invoice->get_status(true), |
|
443 | 443 | 'status' => $invoice->get_status(), |
444 | - 'tax' => $invoice->get_tax() > 0 ? wpinv_round_amount( $invoice->get_tax() ) : '', |
|
445 | - 'discount' => $invoice->get_discount() > 0 ? wpinv_round_amount( $invoice->get_discount() ) : '', |
|
444 | + 'tax' => $invoice->get_tax() > 0 ? wpinv_round_amount($invoice->get_tax()) : '', |
|
445 | + 'discount' => $invoice->get_discount() > 0 ? wpinv_round_amount($invoice->get_discount()) : '', |
|
446 | 446 | 'user_id' => $invoice->get_user_id(), |
447 | 447 | 'email' => $invoice->get_email(), |
448 | 448 | 'first_name' => $invoice->get_first_name(), |
@@ -463,7 +463,7 @@ discard block |
||
463 | 463 | 'due_date' => $invoice->needs_payment() || $invoice->status == 'draft' ? $invoice->get_due_date() : '', |
464 | 464 | ); |
465 | 465 | |
466 | - $data[] = apply_filters( 'wpinv_export_invoice_row', $row, $invoice ); |
|
466 | + $data[] = apply_filters('wpinv_export_invoice_row', $row, $invoice); |
|
467 | 467 | } |
468 | 468 | |
469 | 469 | return $data; |
@@ -479,31 +479,31 @@ discard block |
||
479 | 479 | 'return' => 'ids', |
480 | 480 | ); |
481 | 481 | |
482 | - if ( $this->status != 'any' ) { |
|
482 | + if ($this->status != 'any') { |
|
483 | 483 | $args['status'] = $this->status; |
484 | 484 | } else { |
485 | - $args['status'] = array_keys( wpinv_get_invoice_statuses( true ) ); |
|
485 | + $args['status'] = array_keys(wpinv_get_invoice_statuses(true)); |
|
486 | 486 | } |
487 | 487 | |
488 | - if ( !empty( $this->from_date ) || !empty( $this->to_date ) ) { |
|
488 | + if (!empty($this->from_date) || !empty($this->to_date)) { |
|
489 | 489 | $args['date_query'] = array( |
490 | 490 | array( |
491 | - 'after' => date( 'Y-n-d 00:00:00', strtotime( $this->from_date ) ), |
|
492 | - 'before' => date( 'Y-n-d 23:59:59', strtotime( $this->to_date ) ), |
|
491 | + 'after' => date('Y-n-d 00:00:00', strtotime($this->from_date)), |
|
492 | + 'before' => date('Y-n-d 23:59:59', strtotime($this->to_date)), |
|
493 | 493 | 'inclusive' => true |
494 | 494 | ) |
495 | 495 | ); |
496 | 496 | } |
497 | 497 | |
498 | - $invoices = wpinv_get_invoices( $args ); |
|
499 | - $total = !empty( $invoices ) ? count( $invoices ) : 0; |
|
498 | + $invoices = wpinv_get_invoices($args); |
|
499 | + $total = !empty($invoices) ? count($invoices) : 0; |
|
500 | 500 | $status = 100; |
501 | 501 | |
502 | - if ( $total > 0 ) { |
|
503 | - $status = ( ( $this->per_page * $this->step ) / $total ) * 100; |
|
502 | + if ($total > 0) { |
|
503 | + $status = (($this->per_page * $this->step) / $total) * 100; |
|
504 | 504 | } |
505 | 505 | |
506 | - if ( $status > 100 ) { |
|
506 | + if ($status > 100) { |
|
507 | 507 | $status = 100; |
508 | 508 | } |
509 | 509 |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
2 | +if (!defined('ABSPATH')) { |
|
3 | 3 | exit; // Exit if accessed directly |
4 | 4 | } |
5 | 5 | |
@@ -9,38 +9,38 @@ discard block |
||
9 | 9 | |
10 | 10 | public function __construct() { |
11 | 11 | |
12 | - if ( !defined( 'WPINV_BP_SLUG' ) ) { |
|
13 | - define( 'WPINV_BP_SLUG', 'invoices' ); |
|
12 | + if (!defined('WPINV_BP_SLUG')) { |
|
13 | + define('WPINV_BP_SLUG', 'invoices'); |
|
14 | 14 | } |
15 | 15 | |
16 | - add_action( 'wp_ajax_invoicing_filter', array( $this, 'invoices_content' ) ); |
|
17 | - add_action( 'wp_ajax_nopriv_invoicing_filter', array( $this, 'invoices_content' ) ); |
|
18 | - add_filter( 'wpinv_settings_sections_general', array( $this, 'bp_section' ), 10, 1 ); |
|
19 | - add_filter( 'wpinv_settings_general', array( $this, 'bp_settings' ), 10, 1 ); |
|
20 | - add_filter( 'wp_nav_menu_objects', array( $this, 'wp_nav_menu_objects' ), 10, 2 ); |
|
16 | + add_action('wp_ajax_invoicing_filter', array($this, 'invoices_content')); |
|
17 | + add_action('wp_ajax_nopriv_invoicing_filter', array($this, 'invoices_content')); |
|
18 | + add_filter('wpinv_settings_sections_general', array($this, 'bp_section'), 10, 1); |
|
19 | + add_filter('wpinv_settings_general', array($this, 'bp_settings'), 10, 1); |
|
20 | + add_filter('wp_nav_menu_objects', array($this, 'wp_nav_menu_objects'), 10, 2); |
|
21 | 21 | add_action('bp_setup_nav', array($this, 'setup_nav'), 15); |
22 | 22 | |
23 | - $position = wpinv_get_option( 'wpinv_menu_position' ); |
|
23 | + $position = wpinv_get_option('wpinv_menu_position'); |
|
24 | 24 | $position = $position !== '' && $position !== false ? $position : 91; |
25 | - $this->position = apply_filters( 'wpinv_bp_nav_position', $position ); |
|
26 | - $this->id = WPINV_BP_SLUG; |
|
25 | + $this->position = apply_filters('wpinv_bp_nav_position', $position); |
|
26 | + $this->id = WPINV_BP_SLUG; |
|
27 | 27 | } |
28 | 28 | |
29 | 29 | public function setup_nav() { |
30 | 30 | |
31 | - if ( wpinv_get_option( 'wpinv_bp_hide_menu' ) ) { |
|
31 | + if (wpinv_get_option('wpinv_bp_hide_menu')) { |
|
32 | 32 | return; |
33 | 33 | } |
34 | 34 | |
35 | 35 | $this->setup_invoice_count(); |
36 | - $class = ( 0 === $this->count ) ? 'no-count' : 'count'; |
|
36 | + $class = (0 === $this->count) ? 'no-count' : 'count'; |
|
37 | 37 | |
38 | 38 | $main_nav_name = sprintf( |
39 | - __( 'My Invoices %s', 'invoicing' ), |
|
39 | + __('My Invoices %s', 'invoicing'), |
|
40 | 40 | sprintf( |
41 | 41 | '<span class="%s">%s</span>', |
42 | - esc_attr( $class ), |
|
43 | - bp_core_number_format( $this->count ) |
|
42 | + esc_attr($class), |
|
43 | + bp_core_number_format($this->count) |
|
44 | 44 | ) |
45 | 45 | ); |
46 | 46 | |
@@ -48,31 +48,31 @@ discard block |
||
48 | 48 | 'name' => $main_nav_name, |
49 | 49 | 'slug' => WPINV_BP_SLUG, |
50 | 50 | 'position' => $this->position, |
51 | - 'screen_function' => array( $this, 'invoices_screen' ), |
|
51 | + 'screen_function' => array($this, 'invoices_screen'), |
|
52 | 52 | 'default_subnav_slug' => 'invoices', |
53 | 53 | 'item_css_id' => $this->id |
54 | 54 | ); |
55 | 55 | |
56 | - bp_core_new_nav_item( $main_nav ); |
|
56 | + bp_core_new_nav_item($main_nav); |
|
57 | 57 | } |
58 | 58 | |
59 | 59 | public function invoices_screen() { |
60 | - if ( wpinv_get_option( 'wpinv_bp_hide_menu' ) ) { |
|
60 | + if (wpinv_get_option('wpinv_bp_hide_menu')) { |
|
61 | 61 | return; |
62 | 62 | } |
63 | 63 | |
64 | - add_action( 'bp_template_content', array( $this, 'invoices_content' ) ); |
|
64 | + add_action('bp_template_content', array($this, 'invoices_content')); |
|
65 | 65 | |
66 | - $template = apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ); |
|
66 | + $template = apply_filters('bp_core_template_plugin', 'members/single/plugins'); |
|
67 | 67 | |
68 | - bp_core_load_template( apply_filters( 'wpinv_bp_core_template_plugin', $template ) ); |
|
68 | + bp_core_load_template(apply_filters('wpinv_bp_core_template_plugin', $template)); |
|
69 | 69 | } |
70 | 70 | |
71 | 71 | public function invoices_content() { |
72 | - if ( $this->has_invoices( bp_ajax_querystring( 'invoices' ) ) ) { |
|
72 | + if ($this->has_invoices(bp_ajax_querystring('invoices'))) { |
|
73 | 73 | global $invoices_template; |
74 | 74 | |
75 | - do_action( 'wpinv_bp_invoices_before_content' ); |
|
75 | + do_action('wpinv_bp_invoices_before_content'); |
|
76 | 76 | ?> |
77 | 77 | <div class="wpi-g wpi-bp-invoices invoices invoicing" style="position:relative"> |
78 | 78 | <div id="pag-top" class="pagination"> |
@@ -86,61 +86,61 @@ discard block |
||
86 | 86 | <table class="table table-bordered table-hover table-responsive wpi-user-invoices" style="margin:0"> |
87 | 87 | <thead> |
88 | 88 | <tr> |
89 | - <?php foreach ( wpinv_get_user_invoices_columns() as $column_id => $column_name ) : ?> |
|
90 | - <th class="<?php echo esc_attr( $column_id ); ?> <?php echo (!empty($column_name['class']) ? $column_name['class'] : '');?>"><span class="nobr"><?php echo esc_html( $column_name['title'] ); ?></span></th> |
|
89 | + <?php foreach (wpinv_get_user_invoices_columns() as $column_id => $column_name) : ?> |
|
90 | + <th class="<?php echo esc_attr($column_id); ?> <?php echo (!empty($column_name['class']) ? $column_name['class'] : ''); ?>"><span class="nobr"><?php echo esc_html($column_name['title']); ?></span></th> |
|
91 | 91 | <?php endforeach; ?> |
92 | 92 | </tr> |
93 | 93 | </thead> |
94 | 94 | <tbody> |
95 | - <?php foreach ( $invoices_template->invoices as $invoice ) { |
|
95 | + <?php foreach ($invoices_template->invoices as $invoice) { |
|
96 | 96 | ?> |
97 | 97 | <tr class="wpinv-item wpinv-item-<?php echo $invoice_status = $invoice->get_status(); ?>"> |
98 | - <?php foreach ( wpinv_get_user_invoices_columns() as $column_id => $column_name ) : ?> |
|
99 | - <td class="<?php echo esc_attr( $column_id ); ?> <?php echo (!empty($column_name['class']) ? $column_name['class'] : '');?>" data-title="<?php echo esc_attr( $column_name['title'] ); ?>"> |
|
100 | - <?php if ( has_action( 'wpinv_user_invoices_column_' . $column_id ) ) : ?> |
|
101 | - <?php do_action( 'wpinv_user_invoices_column_' . $column_id, $invoice ); ?> |
|
102 | - |
|
103 | - <?php elseif ( 'invoice-number' === $column_id ) : ?> |
|
104 | - <a href="<?php echo esc_url( $invoice->get_view_url() ); ?>"> |
|
105 | - <?php echo _x( '#', 'hash before invoice number', 'invoicing' ) . $invoice->get_number(); ?> |
|
98 | + <?php foreach (wpinv_get_user_invoices_columns() as $column_id => $column_name) : ?> |
|
99 | + <td class="<?php echo esc_attr($column_id); ?> <?php echo (!empty($column_name['class']) ? $column_name['class'] : ''); ?>" data-title="<?php echo esc_attr($column_name['title']); ?>"> |
|
100 | + <?php if (has_action('wpinv_user_invoices_column_' . $column_id)) : ?> |
|
101 | + <?php do_action('wpinv_user_invoices_column_' . $column_id, $invoice); ?> |
|
102 | + |
|
103 | + <?php elseif ('invoice-number' === $column_id) : ?> |
|
104 | + <a href="<?php echo esc_url($invoice->get_view_url()); ?>"> |
|
105 | + <?php echo _x('#', 'hash before invoice number', 'invoicing') . $invoice->get_number(); ?> |
|
106 | 106 | </a> |
107 | 107 | |
108 | - <?php elseif ( 'created-date' === $column_id ) : $date = wpinv_get_date_created( $invoice->ID ); $dateYMD = wpinv_get_date_created( $invoice->ID, 'Y-m-d H:i:s' ); ?> |
|
109 | - <time datetime="<?php echo strtotime( $dateYMD ); ?>" title="<?php echo $dateYMD; ?>"><?php echo $date; ?></time> |
|
108 | + <?php elseif ('created-date' === $column_id) : $date = wpinv_get_date_created($invoice->ID); $dateYMD = wpinv_get_date_created($invoice->ID, 'Y-m-d H:i:s'); ?> |
|
109 | + <time datetime="<?php echo strtotime($dateYMD); ?>" title="<?php echo $dateYMD; ?>"><?php echo $date; ?></time> |
|
110 | 110 | |
111 | - <?php elseif ( 'payment-date' === $column_id ) : $date = wpinv_get_invoice_date( $invoice->ID, '', false ); $dateYMD = wpinv_get_invoice_date( $invoice->ID, 'Y-m-d H:i:s', false ); ?> |
|
112 | - <time datetime="<?php echo strtotime( $dateYMD ); ?>" title="<?php echo $dateYMD; ?>"><?php echo $date; ?></time> |
|
111 | + <?php elseif ('payment-date' === $column_id) : $date = wpinv_get_invoice_date($invoice->ID, '', false); $dateYMD = wpinv_get_invoice_date($invoice->ID, 'Y-m-d H:i:s', false); ?> |
|
112 | + <time datetime="<?php echo strtotime($dateYMD); ?>" title="<?php echo $dateYMD; ?>"><?php echo $date; ?></time> |
|
113 | 113 | |
114 | - <?php elseif ( 'invoice-status' === $column_id ) : ?> |
|
115 | - <?php echo wpinv_invoice_status_label( $invoice_status, $invoice->get_status( true ) ) ; ?> |
|
114 | + <?php elseif ('invoice-status' === $column_id) : ?> |
|
115 | + <?php echo wpinv_invoice_status_label($invoice_status, $invoice->get_status(true)); ?> |
|
116 | 116 | |
117 | - <?php elseif ( 'invoice-total' === $column_id ) : ?> |
|
118 | - <?php echo $invoice->get_total( true ); ?> |
|
117 | + <?php elseif ('invoice-total' === $column_id) : ?> |
|
118 | + <?php echo $invoice->get_total(true); ?> |
|
119 | 119 | |
120 | - <?php elseif ( 'invoice-actions' === $column_id ) : ?> |
|
120 | + <?php elseif ('invoice-actions' === $column_id) : ?> |
|
121 | 121 | <?php |
122 | 122 | $actions = array( |
123 | 123 | 'pay' => array( |
124 | 124 | 'url' => $invoice->get_checkout_payment_url(), |
125 | - 'name' => __( 'Pay Now', 'invoicing' ), |
|
125 | + 'name' => __('Pay Now', 'invoicing'), |
|
126 | 126 | 'class' => 'btn-success' |
127 | 127 | ), |
128 | 128 | 'print' => array( |
129 | 129 | 'url' => $invoice->get_view_url(), |
130 | - 'name' => __( 'Print', 'invoicing' ), |
|
130 | + 'name' => __('Print', 'invoicing'), |
|
131 | 131 | 'class' => 'btn-primary', |
132 | 132 | 'attrs' => 'target="_blank"' |
133 | 133 | ) |
134 | 134 | ); |
135 | 135 | |
136 | - if ( ! $invoice->needs_payment() ) { |
|
137 | - unset( $actions['pay'] ); |
|
136 | + if (!$invoice->needs_payment()) { |
|
137 | + unset($actions['pay']); |
|
138 | 138 | } |
139 | 139 | |
140 | - if ( $actions = apply_filters( 'wpinv_user_invoices_actions', $actions, $invoice ) ) { |
|
141 | - foreach ( $actions as $key => $action ) { |
|
140 | + if ($actions = apply_filters('wpinv_user_invoices_actions', $actions, $invoice)) { |
|
141 | + foreach ($actions as $key => $action) { |
|
142 | 142 | $class = !empty($action['class']) ? sanitize_html_class($action['class']) : ''; |
143 | - echo '<a href="' . esc_url( $action['url'] ) . '" class="btn btn-sm ' . $class . ' ' . sanitize_html_class( $key ) . '" ' . ( !empty($action['attrs']) ? $action['attrs'] : '' ) . '>' . $action['name'] . '</a>'; |
|
143 | + echo '<a href="' . esc_url($action['url']) . '" class="btn btn-sm ' . $class . ' ' . sanitize_html_class($key) . '" ' . (!empty($action['attrs']) ? $action['attrs'] : '') . '>' . $action['name'] . '</a>'; |
|
144 | 144 | } |
145 | 145 | } |
146 | 146 | ?> |
@@ -168,64 +168,64 @@ discard block |
||
168 | 168 | </div> |
169 | 169 | <?php |
170 | 170 | |
171 | - do_action( 'wpinv_bp_invoices_after_content' ); |
|
171 | + do_action('wpinv_bp_invoices_after_content'); |
|
172 | 172 | } else { |
173 | 173 | ?> |
174 | 174 | <div id="message" class="info"> |
175 | - <p><?php _e( 'No invoice has been made yet.', 'invoicing' ); ?></p> |
|
175 | + <p><?php _e('No invoice has been made yet.', 'invoicing'); ?></p> |
|
176 | 176 | </div> |
177 | 177 | <?php |
178 | 178 | } |
179 | 179 | |
180 | - if ( defined( 'DOING_AJAX' ) ) { |
|
180 | + if (defined('DOING_AJAX')) { |
|
181 | 181 | exit; |
182 | 182 | } |
183 | 183 | } |
184 | 184 | |
185 | - public function has_invoices( $args = '' ) { |
|
185 | + public function has_invoices($args = '') { |
|
186 | 186 | global $invoices_template; |
187 | 187 | |
188 | - $per_page = absint( wpinv_get_option( 'wpinv_bp_per_page' ) ); |
|
188 | + $per_page = absint(wpinv_get_option('wpinv_bp_per_page')); |
|
189 | 189 | // Parse arguments. |
190 | - $r = bp_parse_args( $args, array( |
|
190 | + $r = bp_parse_args($args, array( |
|
191 | 191 | 'status' => 'all', |
192 | 192 | 'page_arg' => 'bpage', |
193 | 193 | 'page' => 1, |
194 | 194 | 'per_page' => $per_page > 0 ? $per_page : 20, |
195 | 195 | 'max' => false, |
196 | 196 | 'user_id' => bp_loggedin_user_id(), |
197 | - ), 'has_invoices' ); |
|
197 | + ), 'has_invoices'); |
|
198 | 198 | |
199 | 199 | |
200 | - if ( ! empty( $r['max'] ) && ( (int)$r['per_page'] > (int)$r['max'] ) ) { |
|
200 | + if (!empty($r['max']) && ((int)$r['per_page'] > (int)$r['max'])) { |
|
201 | 201 | $r['per_page'] = (int)$r['max']; |
202 | 202 | } |
203 | 203 | |
204 | 204 | // Get the invoices. |
205 | - $invoices_template = new WPInv_BP_Invoices_Template( $r['status'], $r['page'], $r['per_page'], $r['max'], $r['user_id'], $r['page_arg'] ); |
|
205 | + $invoices_template = new WPInv_BP_Invoices_Template($r['status'], $r['page'], $r['per_page'], $r['max'], $r['user_id'], $r['page_arg']); |
|
206 | 206 | |
207 | - return apply_filters( 'wpinv_bp_has_invoices', $invoices_template->has_invoices(), $invoices_template, $r ); |
|
207 | + return apply_filters('wpinv_bp_has_invoices', $invoices_template->has_invoices(), $invoices_template, $r); |
|
208 | 208 | } |
209 | 209 | |
210 | 210 | public function setup_invoice_count() { |
211 | - $query = apply_filters( 'wpinv_user_invoices_count_query', array( 'user' => bp_loggedin_user_id(), 'limit' => '-1', 'return' => 'ids', 'paginate' => false ) ); |
|
212 | - $invoices = wpinv_get_invoices( $query ); |
|
211 | + $query = apply_filters('wpinv_user_invoices_count_query', array('user' => bp_loggedin_user_id(), 'limit' => '-1', 'return' => 'ids', 'paginate' => false)); |
|
212 | + $invoices = wpinv_get_invoices($query); |
|
213 | 213 | |
214 | - $this->count = !empty( $invoices ) ? count( $invoices ) : 0; |
|
214 | + $this->count = !empty($invoices) ? count($invoices) : 0; |
|
215 | 215 | } |
216 | 216 | |
217 | 217 | public function pagination_count() { |
218 | 218 | global $invoices_template; |
219 | 219 | |
220 | - $start_num = intval( ( $invoices_template->pag_page - 1 ) * $invoices_template->pag_num ) + 1; |
|
221 | - $from_num = bp_core_number_format( $start_num ); |
|
222 | - $to_num = bp_core_number_format( ( $start_num + ( $invoices_template->pag_num - 1 ) > $invoices_template->total_invoice_count ) ? $invoices_template->total_invoice_count : $start_num + ( $invoices_template->pag_num - 1 ) ); |
|
223 | - $total = bp_core_number_format( $invoices_template->total_invoice_count ); |
|
220 | + $start_num = intval(($invoices_template->pag_page - 1) * $invoices_template->pag_num) + 1; |
|
221 | + $from_num = bp_core_number_format($start_num); |
|
222 | + $to_num = bp_core_number_format(($start_num + ($invoices_template->pag_num - 1) > $invoices_template->total_invoice_count) ? $invoices_template->total_invoice_count : $start_num + ($invoices_template->pag_num - 1)); |
|
223 | + $total = bp_core_number_format($invoices_template->total_invoice_count); |
|
224 | 224 | |
225 | - if ( 1 == $invoices_template->total_invoice_count ) { |
|
226 | - $message = __( 'Viewing 1 invoice', 'invoicing' ); |
|
225 | + if (1 == $invoices_template->total_invoice_count) { |
|
226 | + $message = __('Viewing 1 invoice', 'invoicing'); |
|
227 | 227 | } else { |
228 | - $message = sprintf( _n( 'Viewing %1$s - %2$s of %3$s invoice', 'Viewing %1$s - %2$s of %3$s invoices', $invoices_template->total_invoice_count, 'invoicing' ), $from_num, $to_num, $total ); |
|
228 | + $message = sprintf(_n('Viewing %1$s - %2$s of %3$s invoice', 'Viewing %1$s - %2$s of %3$s invoices', $invoices_template->total_invoice_count, 'invoicing'), $from_num, $to_num, $total); |
|
229 | 229 | } |
230 | 230 | |
231 | 231 | return $message; |
@@ -234,32 +234,32 @@ discard block |
||
234 | 234 | function pagination_links() { |
235 | 235 | global $invoices_template; |
236 | 236 | |
237 | - return apply_filters( 'wpinv_bp_get_pagination_links', $invoices_template->pag_links ); |
|
237 | + return apply_filters('wpinv_bp_get_pagination_links', $invoices_template->pag_links); |
|
238 | 238 | } |
239 | 239 | |
240 | - public function bp_section( $settings = array() ) { |
|
241 | - $settings['wpinv_bp'] = __( 'BuddyPress Integration', 'invoicing' ); |
|
240 | + public function bp_section($settings = array()) { |
|
241 | + $settings['wpinv_bp'] = __('BuddyPress Integration', 'invoicing'); |
|
242 | 242 | return $settings; |
243 | 243 | } |
244 | 244 | |
245 | - public function bp_settings( $settings = array() ) { |
|
245 | + public function bp_settings($settings = array()) { |
|
246 | 246 | $settings['wpinv_bp'] = array( |
247 | 247 | 'wpinv_bp_labels' => array( |
248 | 248 | 'id' => 'wpinv_bp_settings', |
249 | - 'name' => '<h3>' . __( 'BuddyPress Integration', 'invoicing' ) . '</h3>', |
|
249 | + 'name' => '<h3>' . __('BuddyPress Integration', 'invoicing') . '</h3>', |
|
250 | 250 | 'desc' => '', |
251 | 251 | 'type' => 'header', |
252 | 252 | ), |
253 | 253 | 'wpinv_bp_hide_menu' => array( |
254 | 254 | 'id' => 'wpinv_bp_hide_menu', |
255 | - 'name' => __( 'Hide Invoices link', 'invoicing' ), |
|
256 | - 'desc' => __( 'Hide Invoices link from BP Profile menu.', 'invoicing' ), |
|
255 | + 'name' => __('Hide Invoices link', 'invoicing'), |
|
256 | + 'desc' => __('Hide Invoices link from BP Profile menu.', 'invoicing'), |
|
257 | 257 | 'type' => 'checkbox', |
258 | 258 | ), |
259 | 259 | 'wpinv_menu_position' => array( |
260 | 260 | 'id' => 'wpinv_menu_position', |
261 | - 'name' => __( 'Menu position', 'invoicing' ), |
|
262 | - 'desc' => __( 'Menu position for the Invoices link in BP Profile menu.', 'invoicing' ), |
|
261 | + 'name' => __('Menu position', 'invoicing'), |
|
262 | + 'desc' => __('Menu position for the Invoices link in BP Profile menu.', 'invoicing'), |
|
263 | 263 | 'type' => 'number', |
264 | 264 | 'size' => 'small', |
265 | 265 | 'min' => '1', |
@@ -269,8 +269,8 @@ discard block |
||
269 | 269 | ), |
270 | 270 | 'wpinv_bp_per_page' => array( |
271 | 271 | 'id' => 'wpinv_bp_per_page', |
272 | - 'name' => __( 'Max invoices per page', 'invoicing' ), |
|
273 | - 'desc' => __( 'Enter a number to lists the invoices for each page.', 'invoicing' ), |
|
272 | + 'name' => __('Max invoices per page', 'invoicing'), |
|
273 | + 'desc' => __('Enter a number to lists the invoices for each page.', 'invoicing'), |
|
274 | 274 | 'type' => 'number', |
275 | 275 | 'size' => 'small', |
276 | 276 | 'min' => '1', |
@@ -283,20 +283,20 @@ discard block |
||
283 | 283 | return $settings; |
284 | 284 | } |
285 | 285 | |
286 | - public function wp_nav_menu_objects($items, $args){ |
|
287 | - if(!is_user_logged_in()){ |
|
286 | + public function wp_nav_menu_objects($items, $args) { |
|
287 | + if (!is_user_logged_in()) { |
|
288 | 288 | return $items; |
289 | 289 | } |
290 | 290 | |
291 | - if(!apply_filters('wpinv_bp_invoice_history_redirect', true, $items, $args)){ |
|
291 | + if (!apply_filters('wpinv_bp_invoice_history_redirect', true, $items, $args)) { |
|
292 | 292 | return $items; |
293 | 293 | } |
294 | 294 | |
295 | 295 | $user_id = get_current_user_id(); |
296 | - $link = bp_core_get_user_domain( $user_id ).WPINV_BP_SLUG; |
|
296 | + $link = bp_core_get_user_domain($user_id) . WPINV_BP_SLUG; |
|
297 | 297 | $history_link = wpinv_get_history_page_uri(); |
298 | - foreach ( $items as $item ) { |
|
299 | - $item->url = str_replace( $history_link, $link, $item->url ); |
|
298 | + foreach ($items as $item) { |
|
299 | + $item->url = str_replace($history_link, $link, $item->url); |
|
300 | 300 | } |
301 | 301 | |
302 | 302 | return $items; |
@@ -314,25 +314,25 @@ discard block |
||
314 | 314 | public $pag_links = ''; |
315 | 315 | public $total_invoice_count = 0; |
316 | 316 | |
317 | - public function __construct( $status, $page, $per_page, $max, $user_id, $page_arg = 'bpage' ) { |
|
318 | - $this->invoices = array( 'invoices' => array(), 'total' => 0 ); |
|
317 | + public function __construct($status, $page, $per_page, $max, $user_id, $page_arg = 'bpage') { |
|
318 | + $this->invoices = array('invoices' => array(), 'total' => 0); |
|
319 | 319 | |
320 | - $this->pag_arg = sanitize_key( $page_arg ); |
|
321 | - $this->pag_page = bp_sanitize_pagination_arg( $this->pag_arg, $page ); |
|
322 | - $this->pag_num = bp_sanitize_pagination_arg( 'num', $per_page ); |
|
320 | + $this->pag_arg = sanitize_key($page_arg); |
|
321 | + $this->pag_page = bp_sanitize_pagination_arg($this->pag_arg, $page); |
|
322 | + $this->pag_num = bp_sanitize_pagination_arg('num', $per_page); |
|
323 | 323 | |
324 | - $query_args = array( 'user' => $user_id, 'page' => $this->pag_page, 'limit' => $this->pag_num, 'return' => 'self', 'paginate' => true ); |
|
325 | - if ( !empty( $status ) && $status != 'all' ) { |
|
324 | + $query_args = array('user' => $user_id, 'page' => $this->pag_page, 'limit' => $this->pag_num, 'return' => 'self', 'paginate' => true); |
|
325 | + if (!empty($status) && $status != 'all') { |
|
326 | 326 | $query_args['status'] = $status; |
327 | 327 | } |
328 | - $invoices = wpinv_get_invoices( apply_filters( 'wpinv_bp_user_invoices_query', $query_args ) ); |
|
328 | + $invoices = wpinv_get_invoices(apply_filters('wpinv_bp_user_invoices_query', $query_args)); |
|
329 | 329 | |
330 | - if ( !empty( $invoices ) && !empty( $invoices->found_posts ) ) { |
|
331 | - $this->invoices['invoices'] = array_map( 'wpinv_get_invoice', $invoices->posts ); |
|
330 | + if (!empty($invoices) && !empty($invoices->found_posts)) { |
|
331 | + $this->invoices['invoices'] = array_map('wpinv_get_invoice', $invoices->posts); |
|
332 | 332 | $this->invoices['total'] = $invoices->found_posts; |
333 | 333 | } |
334 | 334 | |
335 | - if ( empty( $max ) || ( $max >= (int)$this->invoices['total'] ) ) { |
|
335 | + if (empty($max) || ($max >= (int)$this->invoices['total'])) { |
|
336 | 336 | $this->total_invoice_count = (int)$this->invoices['total']; |
337 | 337 | } else { |
338 | 338 | $this->total_invoice_count = (int)$max; |
@@ -340,52 +340,52 @@ discard block |
||
340 | 340 | |
341 | 341 | $this->invoices = $this->invoices['invoices']; |
342 | 342 | |
343 | - $invoice_count = count( $this->invoices ); |
|
343 | + $invoice_count = count($this->invoices); |
|
344 | 344 | |
345 | - if ( empty( $max ) || ( $max >= (int)$invoice_count ) ) { |
|
345 | + if (empty($max) || ($max >= (int)$invoice_count)) { |
|
346 | 346 | $this->invoice_count = (int)$invoice_count; |
347 | 347 | } else { |
348 | 348 | $this->invoice_count = (int)$max; |
349 | 349 | } |
350 | 350 | |
351 | - if ( ! empty( $this->total_invoice_count ) && ! empty( $this->pag_num ) ) { |
|
352 | - $this->pag_links = paginate_links( array( |
|
353 | - 'base' => add_query_arg( $this->pag_arg, '%#%' ), |
|
351 | + if (!empty($this->total_invoice_count) && !empty($this->pag_num)) { |
|
352 | + $this->pag_links = paginate_links(array( |
|
353 | + 'base' => add_query_arg($this->pag_arg, '%#%'), |
|
354 | 354 | 'format' => '', |
355 | - 'total' => ceil( (int)$this->total_invoice_count / (int)$this->pag_num ), |
|
355 | + 'total' => ceil((int)$this->total_invoice_count / (int)$this->pag_num), |
|
356 | 356 | 'current' => (int)$this->pag_page, |
357 | - 'prev_text' => _x( '←', 'Invoice pagination previous text', 'invoicing' ), |
|
358 | - 'next_text' => _x( '→', 'Invoice pagination next text', 'invoicing' ), |
|
357 | + 'prev_text' => _x('←', 'Invoice pagination previous text', 'invoicing'), |
|
358 | + 'next_text' => _x('→', 'Invoice pagination next text', 'invoicing'), |
|
359 | 359 | 'mid_size' => 1, |
360 | 360 | 'add_args' => array(), |
361 | - ) ); |
|
361 | + )); |
|
362 | 362 | } |
363 | 363 | } |
364 | 364 | |
365 | 365 | public function has_invoices() { |
366 | - return (bool) ! empty( $this->invoice_count ); |
|
366 | + return (bool)!empty($this->invoice_count); |
|
367 | 367 | } |
368 | 368 | |
369 | 369 | public function next_invoice() { |
370 | 370 | $this->current_invoice++; |
371 | - $this->invoice = $this->invoices[ $this->current_invoice ]; |
|
371 | + $this->invoice = $this->invoices[$this->current_invoice]; |
|
372 | 372 | |
373 | 373 | return $this->invoice; |
374 | 374 | } |
375 | 375 | |
376 | 376 | public function rewind_invoices() { |
377 | 377 | $this->current_invoice = -1; |
378 | - if ( $this->invoice_count > 0 ) { |
|
378 | + if ($this->invoice_count > 0) { |
|
379 | 379 | $this->invoice = $this->invoices[0]; |
380 | 380 | } |
381 | 381 | } |
382 | 382 | |
383 | 383 | public function invoices() { |
384 | - if ( ( $this->current_invoice + 1 ) < $this->invoice_count ) { |
|
384 | + if (($this->current_invoice + 1) < $this->invoice_count) { |
|
385 | 385 | return true; |
386 | - } elseif ( ( $this->current_invoice + 1 ) === $this->invoice_count ) { |
|
386 | + } elseif (($this->current_invoice + 1) === $this->invoice_count) { |
|
387 | 387 | |
388 | - do_action( 'wpinv_bp_invoice_loop_end' ); |
|
388 | + do_action('wpinv_bp_invoice_loop_end'); |
|
389 | 389 | |
390 | 390 | $this->rewind_invoices(); |
391 | 391 | } |
@@ -399,8 +399,8 @@ discard block |
||
399 | 399 | $this->in_the_loop = true; |
400 | 400 | $this->invoice = $this->next_invoice(); |
401 | 401 | |
402 | - if ( 0 === $this->current_invoice ) { |
|
403 | - do_action( 'wpinv_bp_invoice_loop_start' ); |
|
402 | + if (0 === $this->current_invoice) { |
|
403 | + do_action('wpinv_bp_invoice_loop_start'); |
|
404 | 404 | } |
405 | 405 | } |
406 | 406 | } |
@@ -410,4 +410,4 @@ discard block |
||
410 | 410 | new WPInv_BP_Component(); |
411 | 411 | |
412 | 412 | } |
413 | -add_action( 'bp_loaded', 'wpinv_bp_setup_component' ); |
|
414 | 413 | \ No newline at end of file |
414 | +add_action('bp_loaded', 'wpinv_bp_setup_component'); |
|
415 | 415 | \ No newline at end of file |