@@ -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 | |
@@ -14,17 +14,17 @@ discard block |
||
14 | 14 | * Hook in methods. |
15 | 15 | */ |
16 | 16 | public static function init() { |
17 | - add_action( 'init', array( __CLASS__, 'init_hooks' ), 0 ); |
|
18 | - add_action( 'admin_notices', array( __CLASS__, 'notices' ) ); |
|
17 | + add_action('init', array(__CLASS__, 'init_hooks'), 0); |
|
18 | + add_action('admin_notices', array(__CLASS__, 'notices')); |
|
19 | 19 | } |
20 | 20 | |
21 | 21 | public static function init_hooks() { |
22 | - if ( false === ( $page_uris = get_transient( 'wpinv_cache_excluded_uris' ) ) ) { |
|
23 | - $checkout_page = wpinv_get_option( 'checkout_page', '' ); |
|
24 | - $success_page = wpinv_get_option( 'success_page', '' ); |
|
25 | - $failure_page = wpinv_get_option( 'failure_page', '' ); |
|
26 | - $history_page = wpinv_get_option( 'invoice_history_page', '' ); |
|
27 | - if ( empty( $checkout_page ) || empty( $success_page ) || empty( $failure_page ) || empty( $history_page ) ) { |
|
22 | + if (false === ($page_uris = get_transient('wpinv_cache_excluded_uris'))) { |
|
23 | + $checkout_page = wpinv_get_option('checkout_page', ''); |
|
24 | + $success_page = wpinv_get_option('success_page', ''); |
|
25 | + $failure_page = wpinv_get_option('failure_page', ''); |
|
26 | + $history_page = wpinv_get_option('invoice_history_page', ''); |
|
27 | + if (empty($checkout_page) || empty($success_page) || empty($failure_page) || empty($history_page)) { |
|
28 | 28 | return; |
29 | 29 | } |
30 | 30 | |
@@ -37,30 +37,30 @@ discard block |
||
37 | 37 | $page_uris[] = 'p=' . $history_page; |
38 | 38 | |
39 | 39 | // Exclude permalinks |
40 | - $checkout_page = get_post( $checkout_page ); |
|
41 | - $success_page = get_post( $success_page ); |
|
42 | - $failure_page = get_post( $failure_page ); |
|
43 | - $history_page = get_post( $history_page ); |
|
40 | + $checkout_page = get_post($checkout_page); |
|
41 | + $success_page = get_post($success_page); |
|
42 | + $failure_page = get_post($failure_page); |
|
43 | + $history_page = get_post($history_page); |
|
44 | 44 | |
45 | - if ( ! is_null( $checkout_page ) ) { |
|
45 | + if (!is_null($checkout_page)) { |
|
46 | 46 | $page_uris[] = '/' . $checkout_page->post_name; |
47 | 47 | } |
48 | - if ( ! is_null( $success_page ) ) { |
|
48 | + if (!is_null($success_page)) { |
|
49 | 49 | $page_uris[] = '/' . $success_page->post_name; |
50 | 50 | } |
51 | - if ( ! is_null( $failure_page ) ) { |
|
51 | + if (!is_null($failure_page)) { |
|
52 | 52 | $page_uris[] = '/' . $failure_page->post_name; |
53 | 53 | } |
54 | - if ( ! is_null( $history_page ) ) { |
|
54 | + if (!is_null($history_page)) { |
|
55 | 55 | $page_uris[] = '/' . $history_page->post_name; |
56 | 56 | } |
57 | 57 | |
58 | - set_transient( 'wpinv_cache_excluded_uris', $page_uris ); |
|
58 | + set_transient('wpinv_cache_excluded_uris', $page_uris); |
|
59 | 59 | } |
60 | 60 | |
61 | - if ( is_array( $page_uris ) ) { |
|
62 | - foreach( $page_uris as $uri ) { |
|
63 | - if ( strstr( $_SERVER['REQUEST_URI'], $uri ) ) { |
|
61 | + if (is_array($page_uris)) { |
|
62 | + foreach ($page_uris as $uri) { |
|
63 | + if (strstr($_SERVER['REQUEST_URI'], $uri)) { |
|
64 | 64 | self::nocache(); |
65 | 65 | break; |
66 | 66 | } |
@@ -73,14 +73,14 @@ discard block |
||
73 | 73 | * @access private |
74 | 74 | */ |
75 | 75 | private static function nocache() { |
76 | - if ( ! defined( 'DONOTCACHEPAGE' ) ) { |
|
77 | - define( "DONOTCACHEPAGE", true ); |
|
76 | + if (!defined('DONOTCACHEPAGE')) { |
|
77 | + define("DONOTCACHEPAGE", true); |
|
78 | 78 | } |
79 | - if ( ! defined( 'DONOTCACHEOBJECT' ) ) { |
|
80 | - define( "DONOTCACHEOBJECT", true ); |
|
79 | + if (!defined('DONOTCACHEOBJECT')) { |
|
80 | + define("DONOTCACHEOBJECT", true); |
|
81 | 81 | } |
82 | - if ( ! defined( 'DONOTCACHEDB' ) ) { |
|
83 | - define( "DONOTCACHEDB", true ); |
|
82 | + if (!defined('DONOTCACHEDB')) { |
|
83 | + define("DONOTCACHEDB", true); |
|
84 | 84 | } |
85 | 85 | nocache_headers(); |
86 | 86 | } |
@@ -89,18 +89,18 @@ discard block |
||
89 | 89 | * notices function. |
90 | 90 | */ |
91 | 91 | public static function notices() { |
92 | - if ( ! function_exists( 'w3tc_pgcache_flush' ) || ! function_exists( 'w3_instance' ) ) { |
|
92 | + if (!function_exists('w3tc_pgcache_flush') || !function_exists('w3_instance')) { |
|
93 | 93 | return; |
94 | 94 | } |
95 | 95 | |
96 | - $config = w3_instance( 'W3_Config' ); |
|
97 | - $enabled = $config->get_integer( 'dbcache.enabled' ); |
|
98 | - $settings = array_map( 'trim', $config->get_array( 'dbcache.reject.sql' ) ); |
|
96 | + $config = w3_instance('W3_Config'); |
|
97 | + $enabled = $config->get_integer('dbcache.enabled'); |
|
98 | + $settings = array_map('trim', $config->get_array('dbcache.reject.sql')); |
|
99 | 99 | |
100 | - if ( $enabled && ! in_array( '_wp_session_', $settings ) ) { |
|
100 | + if ($enabled && !in_array('_wp_session_', $settings)) { |
|
101 | 101 | ?> |
102 | 102 | <div class="error"> |
103 | - <p><?php printf( __( 'In order for <strong>database caching</strong> to work with Invoicing you must add %1$s to the "Ignored Query Strings" option in <a href="%2$s">W3 Total Cache settings</a>.', 'invoicing' ), '<code>_wp_session_</code>', admin_url( 'admin.php?page=w3tc_dbcache' ) ); ?></p> |
|
103 | + <p><?php printf(__('In order for <strong>database caching</strong> to work with Invoicing you must add %1$s to the "Ignored Query Strings" option in <a href="%2$s">W3 Total Cache settings</a>.', 'invoicing'), '<code>_wp_session_</code>', admin_url('admin.php?page=w3tc_dbcache')); ?></p> |
|
104 | 104 | </div> |
105 | 105 | <?php |
106 | 106 | } |
@@ -7,15 +7,15 @@ discard block |
||
7 | 7 | */ |
8 | 8 | |
9 | 9 | // MUST have WordPress. |
10 | -if ( !defined( 'WPINC' ) ) { |
|
11 | - exit( 'Do NOT access this file directly: ' . basename( __FILE__ ) ); |
|
10 | +if (!defined('WPINC')) { |
|
11 | + exit('Do NOT access this file directly: ' . basename(__FILE__)); |
|
12 | 12 | } |
13 | 13 | |
14 | 14 | class WPInv_Plugin { |
15 | 15 | private static $instance; |
16 | 16 | |
17 | 17 | public static function run() { |
18 | - if ( !isset( self::$instance ) && !( self::$instance instanceof WPInv_Plugin ) ) { |
|
18 | + if (!isset(self::$instance) && !(self::$instance instanceof WPInv_Plugin)) { |
|
19 | 19 | self::$instance = new WPInv_Plugin; |
20 | 20 | self::$instance->includes(); |
21 | 21 | self::$instance->actions(); |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | self::$instance->reports = new WPInv_Reports(); |
24 | 24 | } |
25 | 25 | |
26 | - do_action( 'wpinv_loaded' ); |
|
26 | + do_action('wpinv_loaded'); |
|
27 | 27 | |
28 | 28 | return self::$instance; |
29 | 29 | } |
@@ -33,31 +33,31 @@ discard block |
||
33 | 33 | } |
34 | 34 | |
35 | 35 | public function define_constants() { |
36 | - define( 'WPINV_PLUGIN_DIR', plugin_dir_path( WPINV_PLUGIN_FILE ) ); |
|
37 | - define( 'WPINV_PLUGIN_URL', plugin_dir_url( WPINV_PLUGIN_FILE ) ); |
|
36 | + define('WPINV_PLUGIN_DIR', plugin_dir_path(WPINV_PLUGIN_FILE)); |
|
37 | + define('WPINV_PLUGIN_URL', plugin_dir_url(WPINV_PLUGIN_FILE)); |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | private function actions() { |
41 | 41 | /* Internationalize the text strings used. */ |
42 | - add_action( 'plugins_loaded', array( &$this, 'plugins_loaded' ) ); |
|
42 | + add_action('plugins_loaded', array(&$this, 'plugins_loaded')); |
|
43 | 43 | |
44 | 44 | /* Perform actions on admin initialization. */ |
45 | - add_action( 'admin_init', array( &$this, 'admin_init') ); |
|
46 | - add_action( 'init', array( &$this, 'init' ), 3 ); |
|
47 | - add_action( 'init', array( 'WPInv_Shortcodes', 'init' ) ); |
|
48 | - add_action( 'init', array( &$this, 'wpinv_actions' ) ); |
|
45 | + add_action('admin_init', array(&$this, 'admin_init')); |
|
46 | + add_action('init', array(&$this, 'init'), 3); |
|
47 | + add_action('init', array('WPInv_Shortcodes', 'init')); |
|
48 | + add_action('init', array(&$this, 'wpinv_actions')); |
|
49 | 49 | |
50 | - if ( class_exists( 'BuddyPress' ) ) { |
|
51 | - add_action( 'bp_include', array( &$this, 'bp_invoicing_init' ) ); |
|
50 | + if (class_exists('BuddyPress')) { |
|
51 | + add_action('bp_include', array(&$this, 'bp_invoicing_init')); |
|
52 | 52 | } |
53 | 53 | |
54 | - add_action( 'wp_enqueue_scripts', array( &$this, 'enqueue_scripts' ) ); |
|
54 | + add_action('wp_enqueue_scripts', array(&$this, 'enqueue_scripts')); |
|
55 | 55 | |
56 | - if ( is_admin() ) { |
|
57 | - add_action( 'admin_enqueue_scripts', array( &$this, 'admin_enqueue_scripts' ) ); |
|
58 | - add_action( 'admin_body_class', array( &$this, 'admin_body_class' ) ); |
|
56 | + if (is_admin()) { |
|
57 | + add_action('admin_enqueue_scripts', array(&$this, 'admin_enqueue_scripts')); |
|
58 | + add_action('admin_body_class', array(&$this, 'admin_body_class')); |
|
59 | 59 | } else { |
60 | - add_filter( 'pre_get_posts', array( &$this, 'pre_get_posts' ) ); |
|
60 | + add_filter('pre_get_posts', array(&$this, 'pre_get_posts')); |
|
61 | 61 | } |
62 | 62 | |
63 | 63 | /** |
@@ -67,9 +67,9 @@ discard block |
||
67 | 67 | * |
68 | 68 | * @param WPInv_Plugin $this. Current WPInv_Plugin instance. Passed by reference. |
69 | 69 | */ |
70 | - do_action_ref_array( 'wpinv_actions', array( &$this ) ); |
|
70 | + do_action_ref_array('wpinv_actions', array(&$this)); |
|
71 | 71 | |
72 | - add_action( 'admin_init', array( &$this, 'activation_redirect') ); |
|
72 | + add_action('admin_init', array(&$this, 'activation_redirect')); |
|
73 | 73 | } |
74 | 74 | |
75 | 75 | public function plugins_loaded() { |
@@ -83,192 +83,192 @@ discard block |
||
83 | 83 | * @since 1.0 |
84 | 84 | */ |
85 | 85 | public function load_textdomain() { |
86 | - $locale = apply_filters( 'plugin_locale', get_locale(), 'invoicing' ); |
|
86 | + $locale = apply_filters('plugin_locale', get_locale(), 'invoicing'); |
|
87 | 87 | |
88 | - load_textdomain( 'invoicing', WP_LANG_DIR . '/invoicing/invoicing-' . $locale . '.mo' ); |
|
89 | - load_plugin_textdomain( 'invoicing', false, WPINV_PLUGIN_DIR . 'languages' ); |
|
88 | + load_textdomain('invoicing', WP_LANG_DIR . '/invoicing/invoicing-' . $locale . '.mo'); |
|
89 | + load_plugin_textdomain('invoicing', false, WPINV_PLUGIN_DIR . 'languages'); |
|
90 | 90 | |
91 | 91 | /** |
92 | 92 | * Define language constants. |
93 | 93 | */ |
94 | - require_once( WPINV_PLUGIN_DIR . 'language.php' ); |
|
94 | + require_once(WPINV_PLUGIN_DIR . 'language.php'); |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | public function includes() { |
98 | 98 | global $wpinv_options; |
99 | 99 | |
100 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/register-settings.php' ); |
|
100 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/register-settings.php'); |
|
101 | 101 | $wpinv_options = wpinv_get_settings(); |
102 | 102 | |
103 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-post-types.php' ); |
|
104 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-email-functions.php' ); |
|
105 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-general-functions.php' ); |
|
106 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-helper-functions.php' ); |
|
107 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-tax-functions.php' ); |
|
108 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-template-functions.php' ); |
|
109 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-address-functions.php' ); |
|
110 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-invoice-functions.php' ); |
|
111 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-item-functions.php' ); |
|
112 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-discount-functions.php' ); |
|
113 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-gateway-functions.php' ); |
|
114 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-payment-functions.php' ); |
|
115 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-user-functions.php' ); |
|
116 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-error-functions.php' ); |
|
103 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-post-types.php'); |
|
104 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-email-functions.php'); |
|
105 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-general-functions.php'); |
|
106 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-helper-functions.php'); |
|
107 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-tax-functions.php'); |
|
108 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-template-functions.php'); |
|
109 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-address-functions.php'); |
|
110 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-invoice-functions.php'); |
|
111 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-item-functions.php'); |
|
112 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-discount-functions.php'); |
|
113 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-gateway-functions.php'); |
|
114 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-payment-functions.php'); |
|
115 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-user-functions.php'); |
|
116 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-error-functions.php'); |
|
117 | 117 | //require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-db.php' ); |
118 | 118 | //require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-subscriptions-db.php' ); |
119 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-invoice.php' ); |
|
119 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-invoice.php'); |
|
120 | 120 | //require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-subscription.php' ); |
121 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-item.php' ); |
|
122 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-notes.php' ); |
|
123 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-session.php' ); |
|
124 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-ajax.php' ); |
|
125 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-api.php' ); |
|
126 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-reports.php' ); |
|
127 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-shortcodes.php' ); |
|
128 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-cache-helper.php' ); |
|
129 | - if ( !class_exists( 'WPInv_EUVat' ) ) { |
|
130 | - require_once( WPINV_PLUGIN_DIR . 'includes/libraries/wpinv-euvat/class-wpinv-euvat.php' ); |
|
121 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-item.php'); |
|
122 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-notes.php'); |
|
123 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-session.php'); |
|
124 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-ajax.php'); |
|
125 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-api.php'); |
|
126 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-reports.php'); |
|
127 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-shortcodes.php'); |
|
128 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-cache-helper.php'); |
|
129 | + if (!class_exists('WPInv_EUVat')) { |
|
130 | + require_once(WPINV_PLUGIN_DIR . 'includes/libraries/wpinv-euvat/class-wpinv-euvat.php'); |
|
131 | 131 | } |
132 | 132 | |
133 | - $gateways = array_keys( wpinv_get_enabled_payment_gateways() ); |
|
134 | - if ( !empty( $gateways ) ) { |
|
135 | - foreach ( $gateways as $gateway ) { |
|
136 | - if ( $gateway == 'manual' ) { |
|
133 | + $gateways = array_keys(wpinv_get_enabled_payment_gateways()); |
|
134 | + if (!empty($gateways)) { |
|
135 | + foreach ($gateways as $gateway) { |
|
136 | + if ($gateway == 'manual') { |
|
137 | 137 | continue; |
138 | 138 | } |
139 | 139 | |
140 | 140 | $gateway_file = WPINV_PLUGIN_DIR . 'includes/gateways/' . $gateway . '.php'; |
141 | 141 | |
142 | - if ( file_exists( $gateway_file ) ) { |
|
143 | - require_once( $gateway_file ); |
|
142 | + if (file_exists($gateway_file)) { |
|
143 | + require_once($gateway_file); |
|
144 | 144 | } |
145 | 145 | } |
146 | 146 | } |
147 | - require_once( WPINV_PLUGIN_DIR . 'includes/gateways/manual.php' ); |
|
147 | + require_once(WPINV_PLUGIN_DIR . 'includes/gateways/manual.php'); |
|
148 | 148 | |
149 | - if ( is_admin() || ( defined( 'WP_CLI' ) && WP_CLI ) ) { |
|
150 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/wpinv-upgrade-functions.php' ); |
|
151 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/wpinv-admin-functions.php' ); |
|
152 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/admin-meta-boxes.php' ); |
|
149 | + if (is_admin() || (defined('WP_CLI') && WP_CLI)) { |
|
150 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/wpinv-upgrade-functions.php'); |
|
151 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/wpinv-admin-functions.php'); |
|
152 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/admin-meta-boxes.php'); |
|
153 | 153 | //require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-recurring-admin.php' ); |
154 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-invoice-details.php' ); |
|
155 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-invoice-items.php' ); |
|
156 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-invoice-notes.php' ); |
|
157 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-invoice-address.php' ); |
|
158 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/admin-pages.php' ); |
|
154 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-invoice-details.php'); |
|
155 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-invoice-items.php'); |
|
156 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-invoice-notes.php'); |
|
157 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-invoice-address.php'); |
|
158 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/admin-pages.php'); |
|
159 | 159 | //require_once( WPINV_PLUGIN_DIR . 'includes/admin/subscriptions.php' ); |
160 | 160 | } |
161 | 161 | |
162 | 162 | // include css inliner |
163 | - if ( ! class_exists( 'Emogrifier' ) && class_exists( 'DOMDocument' ) ) { |
|
164 | - include_once( WPINV_PLUGIN_DIR . 'includes/libraries/class-emogrifier.php' ); |
|
163 | + if (!class_exists('Emogrifier') && class_exists('DOMDocument')) { |
|
164 | + include_once(WPINV_PLUGIN_DIR . 'includes/libraries/class-emogrifier.php'); |
|
165 | 165 | } |
166 | 166 | |
167 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/install.php' ); |
|
167 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/install.php'); |
|
168 | 168 | } |
169 | 169 | |
170 | 170 | public function init() { |
171 | 171 | } |
172 | 172 | |
173 | 173 | public function admin_init() { |
174 | - if (!(defined( 'DOING_AJAX' ) && DOING_AJAX)) { |
|
174 | + if (!(defined('DOING_AJAX') && DOING_AJAX)) { |
|
175 | 175 | } |
176 | 176 | |
177 | - add_action( 'admin_print_scripts-edit.php', array( &$this, 'admin_print_scripts_edit_php' ) ); |
|
177 | + add_action('admin_print_scripts-edit.php', array(&$this, 'admin_print_scripts_edit_php')); |
|
178 | 178 | } |
179 | 179 | |
180 | 180 | public function activation_redirect() { |
181 | 181 | // Bail if no activation redirect |
182 | - if ( !get_transient( '_wpinv_activation_redirect' ) ) { |
|
182 | + if (!get_transient('_wpinv_activation_redirect')) { |
|
183 | 183 | return; |
184 | 184 | } |
185 | 185 | |
186 | 186 | // Delete the redirect transient |
187 | - delete_transient( '_wpinv_activation_redirect' ); |
|
187 | + delete_transient('_wpinv_activation_redirect'); |
|
188 | 188 | |
189 | 189 | // Bail if activating from network, or bulk |
190 | - if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) { |
|
190 | + if (is_network_admin() || isset($_GET['activate-multi'])) { |
|
191 | 191 | return; |
192 | 192 | } |
193 | 193 | |
194 | - wp_safe_redirect( admin_url( 'admin.php?page=wpinv-settings&tab=general' ) ); |
|
194 | + wp_safe_redirect(admin_url('admin.php?page=wpinv-settings&tab=general')); |
|
195 | 195 | exit; |
196 | 196 | } |
197 | 197 | |
198 | 198 | public function enqueue_scripts() { |
199 | - $suffix = '';//defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; |
|
199 | + $suffix = ''; //defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; |
|
200 | 200 | |
201 | - wp_deregister_style( 'font-awesome' ); |
|
202 | - wp_register_style( 'font-awesome', '//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome' . $suffix . '.css', array(), '4.7.0' ); |
|
203 | - wp_enqueue_style( 'font-awesome' ); |
|
201 | + wp_deregister_style('font-awesome'); |
|
202 | + wp_register_style('font-awesome', '//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome' . $suffix . '.css', array(), '4.7.0'); |
|
203 | + wp_enqueue_style('font-awesome'); |
|
204 | 204 | |
205 | - wp_register_style( 'wpinv_front_style', WPINV_PLUGIN_URL . 'assets/css/invoice-front.css', array(), WPINV_VERSION ); |
|
206 | - wp_enqueue_style( 'wpinv_front_style' ); |
|
205 | + wp_register_style('wpinv_front_style', WPINV_PLUGIN_URL . 'assets/css/invoice-front.css', array(), WPINV_VERSION); |
|
206 | + wp_enqueue_style('wpinv_front_style'); |
|
207 | 207 | |
208 | 208 | // Register scripts |
209 | - wp_register_script( 'jquery-blockui', WPINV_PLUGIN_URL . 'assets/js/jquery.blockUI.min.js', array( 'jquery' ), '2.70', true ); |
|
210 | - wp_register_script( 'wpinv-front-script', WPINV_PLUGIN_URL . 'assets/js/invoice-front' . $suffix . '.js', array( 'jquery', 'wpinv-vat-script' ), WPINV_VERSION ); |
|
209 | + wp_register_script('jquery-blockui', WPINV_PLUGIN_URL . 'assets/js/jquery.blockUI.min.js', array('jquery'), '2.70', true); |
|
210 | + wp_register_script('wpinv-front-script', WPINV_PLUGIN_URL . 'assets/js/invoice-front' . $suffix . '.js', array('jquery', 'wpinv-vat-script'), WPINV_VERSION); |
|
211 | 211 | |
212 | 212 | $localize = array(); |
213 | - $localize['ajax_url'] = admin_url( 'admin-ajax.php' ); |
|
214 | - $localize['nonce'] = wp_create_nonce( 'wpinv-nonce' ); |
|
213 | + $localize['ajax_url'] = admin_url('admin-ajax.php'); |
|
214 | + $localize['nonce'] = wp_create_nonce('wpinv-nonce'); |
|
215 | 215 | $localize['currency_symbol'] = wpinv_currency_symbol(); |
216 | 216 | $localize['currency_pos'] = wpinv_currency_position(); |
217 | 217 | $localize['thousand_sep'] = wpinv_thousands_separator(); |
218 | 218 | $localize['decimal_sep'] = wpinv_decimal_separator(); |
219 | 219 | $localize['decimals'] = wpinv_decimals(); |
220 | 220 | |
221 | - $localize = apply_filters( 'wpinv_front_js_localize', $localize ); |
|
221 | + $localize = apply_filters('wpinv_front_js_localize', $localize); |
|
222 | 222 | |
223 | - wp_enqueue_script( 'jquery-blockui' ); |
|
223 | + wp_enqueue_script('jquery-blockui'); |
|
224 | 224 | $autofill_api = wpinv_get_option('address_autofill_api'); |
225 | 225 | $autofill_active = wpinv_get_option('address_autofill_active'); |
226 | - if ( isset( $autofill_active ) && 1 == $autofill_active && !empty( $autofill_api ) && wpinv_is_checkout() ) { |
|
227 | - if ( wp_script_is( 'google-maps-api', 'enqueued' ) ) { |
|
228 | - wp_dequeue_script( 'google-maps-api' ); |
|
226 | + if (isset($autofill_active) && 1 == $autofill_active && !empty($autofill_api) && wpinv_is_checkout()) { |
|
227 | + if (wp_script_is('google-maps-api', 'enqueued')) { |
|
228 | + wp_dequeue_script('google-maps-api'); |
|
229 | 229 | } |
230 | - wp_enqueue_script( 'google-maps-api', 'https://maps.googleapis.com/maps/api/js?key=' . $autofill_api . '&libraries=places', array( 'jquery' ), '', false ); |
|
231 | - wp_enqueue_script( 'google-maps-init', WPINV_PLUGIN_URL . 'assets/js/gaaf.js', array( 'jquery', 'google-maps-api' ), '', true ); |
|
230 | + wp_enqueue_script('google-maps-api', 'https://maps.googleapis.com/maps/api/js?key=' . $autofill_api . '&libraries=places', array('jquery'), '', false); |
|
231 | + wp_enqueue_script('google-maps-init', WPINV_PLUGIN_URL . 'assets/js/gaaf.js', array('jquery', 'google-maps-api'), '', true); |
|
232 | 232 | } |
233 | - wp_enqueue_script( 'wpinv-front-script' ); |
|
234 | - wp_localize_script( 'wpinv-front-script', 'WPInv', $localize ); |
|
233 | + wp_enqueue_script('wpinv-front-script'); |
|
234 | + wp_localize_script('wpinv-front-script', 'WPInv', $localize); |
|
235 | 235 | } |
236 | 236 | |
237 | 237 | public function admin_enqueue_scripts() { |
238 | 238 | global $post, $pagenow; |
239 | 239 | |
240 | 240 | $post_type = wpinv_admin_post_type(); |
241 | - $suffix = '';//defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; |
|
241 | + $suffix = ''; //defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; |
|
242 | 242 | |
243 | - wp_deregister_style( 'font-awesome' ); |
|
244 | - wp_register_style( 'font-awesome', '//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome' . $suffix . '.css', array(), '4.7.0' ); |
|
245 | - wp_enqueue_style( 'font-awesome' ); |
|
243 | + wp_deregister_style('font-awesome'); |
|
244 | + wp_register_style('font-awesome', '//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome' . $suffix . '.css', array(), '4.7.0'); |
|
245 | + wp_enqueue_style('font-awesome'); |
|
246 | 246 | |
247 | 247 | if ($post_type == 'wpi_invoice' || $post_type == 'wpi_quote' && ($pagenow == 'post-new.php' || $pagenow == 'post.php')) { |
248 | - wp_register_style( 'jquery-ui-css', WPINV_PLUGIN_URL . 'assets/css/jquery-ui' . $suffix . '.css', array(), '1.8.16' ); |
|
249 | - wp_enqueue_style( 'jquery-ui-css' ); |
|
248 | + wp_register_style('jquery-ui-css', WPINV_PLUGIN_URL . 'assets/css/jquery-ui' . $suffix . '.css', array(), '1.8.16'); |
|
249 | + wp_enqueue_style('jquery-ui-css'); |
|
250 | 250 | } |
251 | 251 | |
252 | - wp_register_style( 'jquery-chosen', WPINV_PLUGIN_URL . 'assets/css/chosen' . $suffix . '.css', array(), '1.6.2' ); |
|
253 | - wp_enqueue_style( 'jquery-chosen' ); |
|
252 | + wp_register_style('jquery-chosen', WPINV_PLUGIN_URL . 'assets/css/chosen' . $suffix . '.css', array(), '1.6.2'); |
|
253 | + wp_enqueue_style('jquery-chosen'); |
|
254 | 254 | |
255 | - wp_register_script( 'jquery-chosen', WPINV_PLUGIN_URL . 'assets/js/chosen.jquery' . $suffix . '.js', array( 'jquery' ), '1.6.2' ); |
|
256 | - wp_enqueue_script( 'jquery-chosen' ); |
|
255 | + wp_register_script('jquery-chosen', WPINV_PLUGIN_URL . 'assets/js/chosen.jquery' . $suffix . '.js', array('jquery'), '1.6.2'); |
|
256 | + wp_enqueue_script('jquery-chosen'); |
|
257 | 257 | |
258 | - wp_register_style( 'wpinv_meta_box_style', WPINV_PLUGIN_URL . 'assets/css/meta-box.css', array(), WPINV_VERSION ); |
|
259 | - wp_enqueue_style( 'wpinv_meta_box_style' ); |
|
258 | + wp_register_style('wpinv_meta_box_style', WPINV_PLUGIN_URL . 'assets/css/meta-box.css', array(), WPINV_VERSION); |
|
259 | + wp_enqueue_style('wpinv_meta_box_style'); |
|
260 | 260 | |
261 | - wp_register_style( 'wpinv_admin_style', WPINV_PLUGIN_URL . 'assets/css/admin.css', array(), WPINV_VERSION ); |
|
262 | - wp_enqueue_style( 'wpinv_admin_style' ); |
|
261 | + wp_register_style('wpinv_admin_style', WPINV_PLUGIN_URL . 'assets/css/admin.css', array(), WPINV_VERSION); |
|
262 | + wp_enqueue_style('wpinv_admin_style'); |
|
263 | 263 | |
264 | - if ( $post_type == 'wpi_discount' || $post_type == 'wpi_invoice' && ( $pagenow == 'post-new.php' || $pagenow == 'post.php' ) ) { |
|
265 | - wp_enqueue_script( 'jquery-ui-datepicker' ); |
|
264 | + if ($post_type == 'wpi_discount' || $post_type == 'wpi_invoice' && ($pagenow == 'post-new.php' || $pagenow == 'post.php')) { |
|
265 | + wp_enqueue_script('jquery-ui-datepicker'); |
|
266 | 266 | } |
267 | 267 | |
268 | - wp_enqueue_style( 'wp-color-picker' ); |
|
269 | - wp_enqueue_script( 'wp-color-picker' ); |
|
268 | + wp_enqueue_style('wp-color-picker'); |
|
269 | + wp_enqueue_script('wp-color-picker'); |
|
270 | 270 | |
271 | - wp_register_script( 'jquery-blockui', WPINV_PLUGIN_URL . 'assets/js/jquery.blockUI.min.js', array( 'jquery' ), '2.70', true ); |
|
271 | + wp_register_script('jquery-blockui', WPINV_PLUGIN_URL . 'assets/js/jquery.blockUI.min.js', array('jquery'), '2.70', true); |
|
272 | 272 | |
273 | 273 | if ($post_type == 'wpi_invoice' || $post_type == 'wpi_quote' && ($pagenow == 'post-new.php' || $pagenow == 'post.php')) { |
274 | 274 | $autofill_api = wpinv_get_option('address_autofill_api'); |
@@ -279,17 +279,17 @@ discard block |
||
279 | 279 | } |
280 | 280 | } |
281 | 281 | |
282 | - wp_register_script( 'wpinv-admin-script', WPINV_PLUGIN_URL . 'assets/js/admin' . $suffix . '.js', array( 'jquery', 'jquery-blockui','jquery-ui-tooltip' ), WPINV_VERSION ); |
|
283 | - wp_enqueue_script( 'wpinv-admin-script' ); |
|
282 | + wp_register_script('wpinv-admin-script', WPINV_PLUGIN_URL . 'assets/js/admin' . $suffix . '.js', array('jquery', 'jquery-blockui', 'jquery-ui-tooltip'), WPINV_VERSION); |
|
283 | + wp_enqueue_script('wpinv-admin-script'); |
|
284 | 284 | |
285 | 285 | $localize = array(); |
286 | - $localize['ajax_url'] = admin_url( 'admin-ajax.php' ); |
|
287 | - $localize['post_ID'] = isset( $post->ID ) ? $post->ID : ''; |
|
288 | - $localize['wpinv_nonce'] = wp_create_nonce( 'wpinv-nonce' ); |
|
289 | - $localize['add_invoice_note_nonce'] = wp_create_nonce( 'add-invoice-note' ); |
|
290 | - $localize['delete_invoice_note_nonce'] = wp_create_nonce( 'delete-invoice-note' ); |
|
291 | - $localize['invoice_item_nonce'] = wp_create_nonce( 'invoice-item' ); |
|
292 | - $localize['billing_details_nonce'] = wp_create_nonce( 'get-billing-details' ); |
|
286 | + $localize['ajax_url'] = admin_url('admin-ajax.php'); |
|
287 | + $localize['post_ID'] = isset($post->ID) ? $post->ID : ''; |
|
288 | + $localize['wpinv_nonce'] = wp_create_nonce('wpinv-nonce'); |
|
289 | + $localize['add_invoice_note_nonce'] = wp_create_nonce('add-invoice-note'); |
|
290 | + $localize['delete_invoice_note_nonce'] = wp_create_nonce('delete-invoice-note'); |
|
291 | + $localize['invoice_item_nonce'] = wp_create_nonce('invoice-item'); |
|
292 | + $localize['billing_details_nonce'] = wp_create_nonce('get-billing-details'); |
|
293 | 293 | $localize['tax'] = wpinv_tax_amount(); |
294 | 294 | $localize['discount'] = wpinv_discount_amount(); |
295 | 295 | $localize['currency_symbol'] = wpinv_currency_symbol(); |
@@ -297,60 +297,60 @@ discard block |
||
297 | 297 | $localize['thousand_sep'] = wpinv_thousands_separator(); |
298 | 298 | $localize['decimal_sep'] = wpinv_decimal_separator(); |
299 | 299 | $localize['decimals'] = wpinv_decimals(); |
300 | - $localize['save_invoice'] = __( 'Save Invoice', 'invoicing' ); |
|
301 | - $localize['status_publish'] = wpinv_status_nicename( 'publish' ); |
|
302 | - $localize['status_pending'] = wpinv_status_nicename( 'wpi-pending' ); |
|
303 | - $localize['delete_tax_rate'] = __( 'Are you sure you wish to delete this tax rate?', 'invoicing' ); |
|
304 | - $localize['OneItemMin'] = __( 'Invoice must contain at least one item', 'invoicing' ); |
|
305 | - $localize['DeleteInvoiceItem'] = __( 'Are you sure you wish to delete this item?', 'invoicing' ); |
|
306 | - $localize['FillBillingDetails'] = __( 'Fill the user\'s billing information? This will remove any currently entered billing information', 'invoicing' ); |
|
307 | - $localize['confirmCalcTotals'] = __( 'Recalculate totals? This will recalculate totals based on the user billing country. If no billing country is set it will use the base country.', 'invoicing' ); |
|
308 | - $localize['AreYouSure'] = __( 'Are you sure?', 'invoicing' ); |
|
309 | - $localize['errDeleteItem'] = __( 'This item is in use! Before delete this item, you need to delete all the invoice(s) using this item.', 'invoicing' ); |
|
300 | + $localize['save_invoice'] = __('Save Invoice', 'invoicing'); |
|
301 | + $localize['status_publish'] = wpinv_status_nicename('publish'); |
|
302 | + $localize['status_pending'] = wpinv_status_nicename('wpi-pending'); |
|
303 | + $localize['delete_tax_rate'] = __('Are you sure you wish to delete this tax rate?', 'invoicing'); |
|
304 | + $localize['OneItemMin'] = __('Invoice must contain at least one item', 'invoicing'); |
|
305 | + $localize['DeleteInvoiceItem'] = __('Are you sure you wish to delete this item?', 'invoicing'); |
|
306 | + $localize['FillBillingDetails'] = __('Fill the user\'s billing information? This will remove any currently entered billing information', 'invoicing'); |
|
307 | + $localize['confirmCalcTotals'] = __('Recalculate totals? This will recalculate totals based on the user billing country. If no billing country is set it will use the base country.', 'invoicing'); |
|
308 | + $localize['AreYouSure'] = __('Are you sure?', 'invoicing'); |
|
309 | + $localize['errDeleteItem'] = __('This item is in use! Before delete this item, you need to delete all the invoice(s) using this item.', 'invoicing'); |
|
310 | 310 | |
311 | - $localize = apply_filters( 'wpinv_admin_js_localize', $localize ); |
|
311 | + $localize = apply_filters('wpinv_admin_js_localize', $localize); |
|
312 | 312 | |
313 | - wp_localize_script( 'wpinv-admin-script', 'WPInv_Admin', $localize ); |
|
313 | + wp_localize_script('wpinv-admin-script', 'WPInv_Admin', $localize); |
|
314 | 314 | } |
315 | 315 | |
316 | - public function admin_body_class( $classes ) { |
|
316 | + public function admin_body_class($classes) { |
|
317 | 317 | global $pagenow, $post, $current_screen; |
318 | 318 | |
319 | - if ( !empty( $current_screen->post_type ) && ( $current_screen->post_type == 'wpi_invoice' || $current_screen->post_type == 'wpi_quote' ) ) { |
|
319 | + if (!empty($current_screen->post_type) && ($current_screen->post_type == 'wpi_invoice' || $current_screen->post_type == 'wpi_quote')) { |
|
320 | 320 | $classes .= ' wpinv-cpt'; |
321 | 321 | } |
322 | 322 | |
323 | - $page = isset( $_GET['page'] ) ? strtolower( $_GET['page'] ) : false; |
|
323 | + $page = isset($_GET['page']) ? strtolower($_GET['page']) : false; |
|
324 | 324 | |
325 | 325 | $add_class = false; |
326 | - if ( $pagenow == 'admin.php' && $page ) { |
|
327 | - $add_class = strpos( $page, 'wpinv-' ); |
|
326 | + if ($pagenow == 'admin.php' && $page) { |
|
327 | + $add_class = strpos($page, 'wpinv-'); |
|
328 | 328 | } |
329 | 329 | |
330 | 330 | $settings_class = array(); |
331 | - if ( $page == 'wpinv-settings' ) { |
|
332 | - if ( !empty( $_REQUEST['tab'] ) ) { |
|
333 | - $settings_class[] = sanitize_text_field( $_REQUEST['tab'] ); |
|
331 | + if ($page == 'wpinv-settings') { |
|
332 | + if (!empty($_REQUEST['tab'])) { |
|
333 | + $settings_class[] = sanitize_text_field($_REQUEST['tab']); |
|
334 | 334 | } |
335 | 335 | |
336 | - if ( !empty( $_REQUEST['section'] ) ) { |
|
337 | - $settings_class[] = sanitize_text_field( $_REQUEST['section'] ); |
|
336 | + if (!empty($_REQUEST['section'])) { |
|
337 | + $settings_class[] = sanitize_text_field($_REQUEST['section']); |
|
338 | 338 | } |
339 | 339 | |
340 | - $settings_class[] = isset( $_REQUEST['wpi_sub'] ) && $_REQUEST['wpi_sub'] !== '' ? sanitize_text_field( $_REQUEST['wpi_sub'] ) : 'main'; |
|
340 | + $settings_class[] = isset($_REQUEST['wpi_sub']) && $_REQUEST['wpi_sub'] !== '' ? sanitize_text_field($_REQUEST['wpi_sub']) : 'main'; |
|
341 | 341 | } |
342 | 342 | |
343 | - if ( !empty( $settings_class ) ) { |
|
344 | - $classes .= ' wpi-' . wpinv_sanitize_key( implode( $settings_class, '-' ) ); |
|
343 | + if (!empty($settings_class)) { |
|
344 | + $classes .= ' wpi-' . wpinv_sanitize_key(implode($settings_class, '-')); |
|
345 | 345 | } |
346 | 346 | |
347 | 347 | $post_type = wpinv_admin_post_type(); |
348 | 348 | |
349 | - if ( $post_type == 'wpi_invoice' || $post_type == 'wpi_quote' || $add_class !== false ) { |
|
349 | + if ($post_type == 'wpi_invoice' || $post_type == 'wpi_quote' || $add_class !== false) { |
|
350 | 350 | return $classes .= ' wpinv'; |
351 | 351 | } |
352 | 352 | |
353 | - if ( $pagenow == 'post.php' && $post_type == 'wpi_item' && !empty( $post ) && !wpinv_item_is_editable( $post ) ) { |
|
353 | + if ($pagenow == 'post.php' && $post_type == 'wpi_item' && !empty($post) && !wpinv_item_is_editable($post)) { |
|
354 | 354 | $classes .= ' wpi-editable-n'; |
355 | 355 | } |
356 | 356 | |
@@ -362,20 +362,20 @@ discard block |
||
362 | 362 | } |
363 | 363 | |
364 | 364 | public function wpinv_actions() { |
365 | - if ( isset( $_REQUEST['wpi_action'] ) ) { |
|
366 | - do_action( 'wpinv_' . wpinv_sanitize_key( $_REQUEST['wpi_action'] ), $_REQUEST ); |
|
365 | + if (isset($_REQUEST['wpi_action'])) { |
|
366 | + do_action('wpinv_' . wpinv_sanitize_key($_REQUEST['wpi_action']), $_REQUEST); |
|
367 | 367 | } |
368 | 368 | } |
369 | 369 | |
370 | - public function pre_get_posts( $wp_query ) { |
|
371 | - if ( !empty( $wp_query->query_vars['post_type'] ) && $wp_query->query_vars['post_type'] == 'wpi_invoice' && is_user_logged_in() && is_single() && $wp_query->is_main_query() ) { |
|
372 | - $wp_query->query_vars['post_status'] = array_keys( wpinv_get_invoice_statuses() ); |
|
370 | + public function pre_get_posts($wp_query) { |
|
371 | + if (!empty($wp_query->query_vars['post_type']) && $wp_query->query_vars['post_type'] == 'wpi_invoice' && is_user_logged_in() && is_single() && $wp_query->is_main_query()) { |
|
372 | + $wp_query->query_vars['post_status'] = array_keys(wpinv_get_invoice_statuses()); |
|
373 | 373 | } |
374 | 374 | |
375 | 375 | return $wp_query; |
376 | 376 | } |
377 | 377 | |
378 | 378 | public function bp_invoicing_init() { |
379 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-bp-core.php' ); |
|
379 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-bp-core.php'); |
|
380 | 380 | } |
381 | 381 | } |
382 | 382 | \ No newline at end of file |