@@ -11,121 +11,121 @@ |
||
11 | 11 | */ |
12 | 12 | class GetPaid_Cache_Helper { |
13 | 13 | |
14 | - /** |
|
15 | - * Transients to delete on shutdown. |
|
16 | - * |
|
17 | - * @var array Array of transient keys. |
|
18 | - */ |
|
19 | - private static $delete_transients = array(); |
|
20 | - |
|
21 | - /** |
|
22 | - * Hook in methods. |
|
23 | - */ |
|
24 | - public static function init() { |
|
25 | - add_action( 'shutdown', array( __CLASS__, 'delete_transients_on_shutdown' ), 10 ); |
|
26 | - add_action( 'wp', array( __CLASS__, 'prevent_caching' ) ); |
|
27 | - } |
|
28 | - |
|
29 | - /** |
|
30 | - * Add a transient to delete on shutdown. |
|
31 | - * |
|
32 | - * @since 1.0.19 |
|
33 | - * @param string|array $keys Transient key or keys. |
|
34 | - */ |
|
35 | - public static function queue_delete_transient( $keys ) { |
|
36 | - self::$delete_transients = array_unique( array_merge( is_array( $keys ) ? $keys : array( $keys ), self::$delete_transients ) ); |
|
37 | - } |
|
38 | - |
|
39 | - /** |
|
40 | - * Transients that don't need to be cleaned right away can be deleted on shutdown to avoid repetition. |
|
41 | - * |
|
42 | - * @since 1.0.19 |
|
43 | - */ |
|
44 | - public static function delete_transients_on_shutdown() { |
|
45 | - if ( self::$delete_transients ) { |
|
46 | - foreach ( self::$delete_transients as $key ) { |
|
47 | - delete_transient( $key ); |
|
48 | - } |
|
49 | - self::$delete_transients = array(); |
|
50 | - } |
|
51 | - } |
|
52 | - |
|
53 | - /** |
|
54 | - * Get prefix for use with wp_cache_set. Allows all cache in a group to be invalidated at once. |
|
55 | - * |
|
56 | - * @param string $group Group of cache to get. |
|
57 | - * @return string |
|
58 | - */ |
|
59 | - public static function get_cache_prefix( $group ) { |
|
60 | - // Get cache key. |
|
61 | - $prefix = wp_cache_get( 'getpaid_' . $group . '_cache_prefix', $group ); |
|
62 | - |
|
63 | - if ( false === $prefix ) { |
|
64 | - $prefix = microtime(); |
|
65 | - wp_cache_set( 'getpaid_' . $group . '_cache_prefix', $prefix, $group ); |
|
66 | - } |
|
67 | - |
|
68 | - return 'getpaid_cache_' . $prefix . '_'; |
|
69 | - } |
|
70 | - |
|
71 | - /** |
|
72 | - * Invalidate cache group. |
|
73 | - * |
|
74 | - * @param string $group Group of cache to clear. |
|
75 | - * @since 1.0.19 |
|
76 | - */ |
|
77 | - public static function invalidate_cache_group( $group ) { |
|
78 | - wp_cache_set( 'getpaid_' . $group . '_cache_prefix', microtime(), $group ); |
|
79 | - } |
|
80 | - |
|
81 | - /** |
|
82 | - * Prevent caching on certain pages |
|
83 | - */ |
|
84 | - public static function prevent_caching() { |
|
85 | - if ( ! is_blog_installed() ) { |
|
86 | - return; |
|
87 | - } |
|
88 | - |
|
89 | - if ( wpinv_is_checkout() || wpinv_is_success_page() || wpinv_is_invoice_history_page() || wpinv_is_subscriptions_history_page() ) { |
|
90 | - self::set_nocache_constants(); |
|
91 | - nocache_headers(); |
|
92 | - } |
|
93 | - |
|
94 | - } |
|
95 | - |
|
96 | - /** |
|
97 | - * Get transient version. |
|
98 | - * |
|
99 | - * |
|
100 | - * @param string $group Name for the group of transients we need to invalidate. |
|
101 | - * @param boolean $refresh true to force a new version. |
|
102 | - * @return string transient version based on time(), 10 digits. |
|
103 | - */ |
|
104 | - public static function get_transient_version( $group, $refresh = false ) { |
|
105 | - $transient_name = $group . '-transient-version'; |
|
106 | - $transient_value = get_transient( $transient_name ); |
|
107 | - |
|
108 | - if ( false === $transient_value || true === $refresh ) { |
|
109 | - $transient_value = (string) time(); |
|
110 | - |
|
111 | - set_transient( $transient_name, $transient_value ); |
|
112 | - } |
|
113 | - |
|
114 | - return $transient_value; |
|
115 | - } |
|
116 | - |
|
117 | - /** |
|
118 | - * Set constants to prevent caching by some plugins. |
|
119 | - * |
|
120 | - * @param mixed $return Value to return. Previously hooked into a filter. |
|
121 | - * @return mixed |
|
122 | - */ |
|
123 | - public static function set_nocache_constants( $return = true ) { |
|
124 | - getpaid_maybe_define_constant( 'DONOTCACHEPAGE', true ); |
|
125 | - getpaid_maybe_define_constant( 'DONOTCACHEOBJECT', true ); |
|
126 | - getpaid_maybe_define_constant( 'DONOTCACHEDB', true ); |
|
127 | - return $return; |
|
128 | - } |
|
14 | + /** |
|
15 | + * Transients to delete on shutdown. |
|
16 | + * |
|
17 | + * @var array Array of transient keys. |
|
18 | + */ |
|
19 | + private static $delete_transients = array(); |
|
20 | + |
|
21 | + /** |
|
22 | + * Hook in methods. |
|
23 | + */ |
|
24 | + public static function init() { |
|
25 | + add_action( 'shutdown', array( __CLASS__, 'delete_transients_on_shutdown' ), 10 ); |
|
26 | + add_action( 'wp', array( __CLASS__, 'prevent_caching' ) ); |
|
27 | + } |
|
28 | + |
|
29 | + /** |
|
30 | + * Add a transient to delete on shutdown. |
|
31 | + * |
|
32 | + * @since 1.0.19 |
|
33 | + * @param string|array $keys Transient key or keys. |
|
34 | + */ |
|
35 | + public static function queue_delete_transient( $keys ) { |
|
36 | + self::$delete_transients = array_unique( array_merge( is_array( $keys ) ? $keys : array( $keys ), self::$delete_transients ) ); |
|
37 | + } |
|
38 | + |
|
39 | + /** |
|
40 | + * Transients that don't need to be cleaned right away can be deleted on shutdown to avoid repetition. |
|
41 | + * |
|
42 | + * @since 1.0.19 |
|
43 | + */ |
|
44 | + public static function delete_transients_on_shutdown() { |
|
45 | + if ( self::$delete_transients ) { |
|
46 | + foreach ( self::$delete_transients as $key ) { |
|
47 | + delete_transient( $key ); |
|
48 | + } |
|
49 | + self::$delete_transients = array(); |
|
50 | + } |
|
51 | + } |
|
52 | + |
|
53 | + /** |
|
54 | + * Get prefix for use with wp_cache_set. Allows all cache in a group to be invalidated at once. |
|
55 | + * |
|
56 | + * @param string $group Group of cache to get. |
|
57 | + * @return string |
|
58 | + */ |
|
59 | + public static function get_cache_prefix( $group ) { |
|
60 | + // Get cache key. |
|
61 | + $prefix = wp_cache_get( 'getpaid_' . $group . '_cache_prefix', $group ); |
|
62 | + |
|
63 | + if ( false === $prefix ) { |
|
64 | + $prefix = microtime(); |
|
65 | + wp_cache_set( 'getpaid_' . $group . '_cache_prefix', $prefix, $group ); |
|
66 | + } |
|
67 | + |
|
68 | + return 'getpaid_cache_' . $prefix . '_'; |
|
69 | + } |
|
70 | + |
|
71 | + /** |
|
72 | + * Invalidate cache group. |
|
73 | + * |
|
74 | + * @param string $group Group of cache to clear. |
|
75 | + * @since 1.0.19 |
|
76 | + */ |
|
77 | + public static function invalidate_cache_group( $group ) { |
|
78 | + wp_cache_set( 'getpaid_' . $group . '_cache_prefix', microtime(), $group ); |
|
79 | + } |
|
80 | + |
|
81 | + /** |
|
82 | + * Prevent caching on certain pages |
|
83 | + */ |
|
84 | + public static function prevent_caching() { |
|
85 | + if ( ! is_blog_installed() ) { |
|
86 | + return; |
|
87 | + } |
|
88 | + |
|
89 | + if ( wpinv_is_checkout() || wpinv_is_success_page() || wpinv_is_invoice_history_page() || wpinv_is_subscriptions_history_page() ) { |
|
90 | + self::set_nocache_constants(); |
|
91 | + nocache_headers(); |
|
92 | + } |
|
93 | + |
|
94 | + } |
|
95 | + |
|
96 | + /** |
|
97 | + * Get transient version. |
|
98 | + * |
|
99 | + * |
|
100 | + * @param string $group Name for the group of transients we need to invalidate. |
|
101 | + * @param boolean $refresh true to force a new version. |
|
102 | + * @return string transient version based on time(), 10 digits. |
|
103 | + */ |
|
104 | + public static function get_transient_version( $group, $refresh = false ) { |
|
105 | + $transient_name = $group . '-transient-version'; |
|
106 | + $transient_value = get_transient( $transient_name ); |
|
107 | + |
|
108 | + if ( false === $transient_value || true === $refresh ) { |
|
109 | + $transient_value = (string) time(); |
|
110 | + |
|
111 | + set_transient( $transient_name, $transient_value ); |
|
112 | + } |
|
113 | + |
|
114 | + return $transient_value; |
|
115 | + } |
|
116 | + |
|
117 | + /** |
|
118 | + * Set constants to prevent caching by some plugins. |
|
119 | + * |
|
120 | + * @param mixed $return Value to return. Previously hooked into a filter. |
|
121 | + * @return mixed |
|
122 | + */ |
|
123 | + public static function set_nocache_constants( $return = true ) { |
|
124 | + getpaid_maybe_define_constant( 'DONOTCACHEPAGE', true ); |
|
125 | + getpaid_maybe_define_constant( 'DONOTCACHEOBJECT', true ); |
|
126 | + getpaid_maybe_define_constant( 'DONOTCACHEDB', true ); |
|
127 | + return $return; |
|
128 | + } |
|
129 | 129 | |
130 | 130 | } |
131 | 131 |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | * |
5 | 5 | */ |
6 | 6 | |
7 | -defined( 'ABSPATH' ) || exit; |
|
7 | +defined('ABSPATH') || exit; |
|
8 | 8 | |
9 | 9 | /** |
10 | 10 | * GetPaid_Cache_Helper. |
@@ -22,8 +22,8 @@ discard block |
||
22 | 22 | * Hook in methods. |
23 | 23 | */ |
24 | 24 | public static function init() { |
25 | - add_action( 'shutdown', array( __CLASS__, 'delete_transients_on_shutdown' ), 10 ); |
|
26 | - add_action( 'wp', array( __CLASS__, 'prevent_caching' ) ); |
|
25 | + add_action('shutdown', array(__CLASS__, 'delete_transients_on_shutdown'), 10); |
|
26 | + add_action('wp', array(__CLASS__, 'prevent_caching')); |
|
27 | 27 | } |
28 | 28 | |
29 | 29 | /** |
@@ -32,8 +32,8 @@ discard block |
||
32 | 32 | * @since 1.0.19 |
33 | 33 | * @param string|array $keys Transient key or keys. |
34 | 34 | */ |
35 | - public static function queue_delete_transient( $keys ) { |
|
36 | - self::$delete_transients = array_unique( array_merge( is_array( $keys ) ? $keys : array( $keys ), self::$delete_transients ) ); |
|
35 | + public static function queue_delete_transient($keys) { |
|
36 | + self::$delete_transients = array_unique(array_merge(is_array($keys) ? $keys : array($keys), self::$delete_transients)); |
|
37 | 37 | } |
38 | 38 | |
39 | 39 | /** |
@@ -42,9 +42,9 @@ discard block |
||
42 | 42 | * @since 1.0.19 |
43 | 43 | */ |
44 | 44 | public static function delete_transients_on_shutdown() { |
45 | - if ( self::$delete_transients ) { |
|
46 | - foreach ( self::$delete_transients as $key ) { |
|
47 | - delete_transient( $key ); |
|
45 | + if (self::$delete_transients) { |
|
46 | + foreach (self::$delete_transients as $key) { |
|
47 | + delete_transient($key); |
|
48 | 48 | } |
49 | 49 | self::$delete_transients = array(); |
50 | 50 | } |
@@ -56,13 +56,13 @@ discard block |
||
56 | 56 | * @param string $group Group of cache to get. |
57 | 57 | * @return string |
58 | 58 | */ |
59 | - public static function get_cache_prefix( $group ) { |
|
59 | + public static function get_cache_prefix($group) { |
|
60 | 60 | // Get cache key. |
61 | - $prefix = wp_cache_get( 'getpaid_' . $group . '_cache_prefix', $group ); |
|
61 | + $prefix = wp_cache_get('getpaid_' . $group . '_cache_prefix', $group); |
|
62 | 62 | |
63 | - if ( false === $prefix ) { |
|
63 | + if (false === $prefix) { |
|
64 | 64 | $prefix = microtime(); |
65 | - wp_cache_set( 'getpaid_' . $group . '_cache_prefix', $prefix, $group ); |
|
65 | + wp_cache_set('getpaid_' . $group . '_cache_prefix', $prefix, $group); |
|
66 | 66 | } |
67 | 67 | |
68 | 68 | return 'getpaid_cache_' . $prefix . '_'; |
@@ -74,19 +74,19 @@ discard block |
||
74 | 74 | * @param string $group Group of cache to clear. |
75 | 75 | * @since 1.0.19 |
76 | 76 | */ |
77 | - public static function invalidate_cache_group( $group ) { |
|
78 | - wp_cache_set( 'getpaid_' . $group . '_cache_prefix', microtime(), $group ); |
|
77 | + public static function invalidate_cache_group($group) { |
|
78 | + wp_cache_set('getpaid_' . $group . '_cache_prefix', microtime(), $group); |
|
79 | 79 | } |
80 | 80 | |
81 | 81 | /** |
82 | 82 | * Prevent caching on certain pages |
83 | 83 | */ |
84 | 84 | public static function prevent_caching() { |
85 | - if ( ! is_blog_installed() ) { |
|
85 | + if (!is_blog_installed()) { |
|
86 | 86 | return; |
87 | 87 | } |
88 | 88 | |
89 | - if ( wpinv_is_checkout() || wpinv_is_success_page() || wpinv_is_invoice_history_page() || wpinv_is_subscriptions_history_page() ) { |
|
89 | + if (wpinv_is_checkout() || wpinv_is_success_page() || wpinv_is_invoice_history_page() || wpinv_is_subscriptions_history_page()) { |
|
90 | 90 | self::set_nocache_constants(); |
91 | 91 | nocache_headers(); |
92 | 92 | } |
@@ -101,14 +101,14 @@ discard block |
||
101 | 101 | * @param boolean $refresh true to force a new version. |
102 | 102 | * @return string transient version based on time(), 10 digits. |
103 | 103 | */ |
104 | - public static function get_transient_version( $group, $refresh = false ) { |
|
104 | + public static function get_transient_version($group, $refresh = false) { |
|
105 | 105 | $transient_name = $group . '-transient-version'; |
106 | - $transient_value = get_transient( $transient_name ); |
|
106 | + $transient_value = get_transient($transient_name); |
|
107 | 107 | |
108 | - if ( false === $transient_value || true === $refresh ) { |
|
108 | + if (false === $transient_value || true === $refresh) { |
|
109 | 109 | $transient_value = (string) time(); |
110 | 110 | |
111 | - set_transient( $transient_name, $transient_value ); |
|
111 | + set_transient($transient_name, $transient_value); |
|
112 | 112 | } |
113 | 113 | |
114 | 114 | return $transient_value; |
@@ -120,10 +120,10 @@ discard block |
||
120 | 120 | * @param mixed $return Value to return. Previously hooked into a filter. |
121 | 121 | * @return mixed |
122 | 122 | */ |
123 | - public static function set_nocache_constants( $return = true ) { |
|
124 | - getpaid_maybe_define_constant( 'DONOTCACHEPAGE', true ); |
|
125 | - getpaid_maybe_define_constant( 'DONOTCACHEOBJECT', true ); |
|
126 | - getpaid_maybe_define_constant( 'DONOTCACHEDB', true ); |
|
123 | + public static function set_nocache_constants($return = true) { |
|
124 | + getpaid_maybe_define_constant('DONOTCACHEPAGE', true); |
|
125 | + getpaid_maybe_define_constant('DONOTCACHEOBJECT', true); |
|
126 | + getpaid_maybe_define_constant('DONOTCACHEDB', true); |
|
127 | 127 | return $return; |
128 | 128 | } |
129 | 129 |
@@ -8,7 +8,7 @@ discard block |
||
8 | 8 | * @version 1.0.19 |
9 | 9 | */ |
10 | 10 | |
11 | -defined( 'ABSPATH' ) || exit; |
|
11 | +defined('ABSPATH') || exit; |
|
12 | 12 | |
13 | 13 | /** |
14 | 14 | * Meta data class. |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | * |
37 | 37 | * @param array $meta Data to wrap behind this function. |
38 | 38 | */ |
39 | - public function __construct( $meta = array() ) { |
|
39 | + public function __construct($meta = array()) { |
|
40 | 40 | $this->current_data = $meta; |
41 | 41 | $this->apply_changes(); |
42 | 42 | } |
@@ -63,8 +63,8 @@ discard block |
||
63 | 63 | * @param string $key Key to set. |
64 | 64 | * @param mixed $value Value to set. |
65 | 65 | */ |
66 | - public function __set( $key, $value ) { |
|
67 | - $this->current_data[ $key ] = $value; |
|
66 | + public function __set($key, $value) { |
|
67 | + $this->current_data[$key] = $value; |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | /** |
@@ -75,8 +75,8 @@ discard block |
||
75 | 75 | * |
76 | 76 | * @return bool |
77 | 77 | */ |
78 | - public function __isset( $key ) { |
|
79 | - return array_key_exists( $key, $this->current_data ); |
|
78 | + public function __isset($key) { |
|
79 | + return array_key_exists($key, $this->current_data); |
|
80 | 80 | } |
81 | 81 | |
82 | 82 | /** |
@@ -85,9 +85,9 @@ discard block |
||
85 | 85 | * @param string $key Key to get. |
86 | 86 | * @return mixed Property value or NULL if it does not exists |
87 | 87 | */ |
88 | - public function __get( $key ) { |
|
89 | - if ( array_key_exists( $key, $this->current_data ) ) { |
|
90 | - return $this->current_data[ $key ]; |
|
88 | + public function __get($key) { |
|
89 | + if (array_key_exists($key, $this->current_data)) { |
|
90 | + return $this->current_data[$key]; |
|
91 | 91 | } |
92 | 92 | return null; |
93 | 93 | } |
@@ -99,9 +99,9 @@ discard block |
||
99 | 99 | */ |
100 | 100 | public function get_changes() { |
101 | 101 | $changes = array(); |
102 | - foreach ( $this->current_data as $id => $value ) { |
|
103 | - if ( ! array_key_exists( $id, $this->data ) || $value !== $this->data[ $id ] ) { |
|
104 | - $changes[ $id ] = $value; |
|
102 | + foreach ($this->current_data as $id => $value) { |
|
103 | + if (!array_key_exists($id, $this->data) || $value !== $this->data[$id]) { |
|
104 | + $changes[$id] = $value; |
|
105 | 105 | } |
106 | 106 | } |
107 | 107 | return $changes; |
@@ -15,105 +15,105 @@ |
||
15 | 15 | */ |
16 | 16 | class GetPaid_Meta_Data implements JsonSerializable { |
17 | 17 | |
18 | - /** |
|
19 | - * Current data for metadata |
|
20 | - * |
|
21 | - * @since 1.0.19 |
|
22 | - * @var array |
|
23 | - */ |
|
24 | - protected $current_data; |
|
18 | + /** |
|
19 | + * Current data for metadata |
|
20 | + * |
|
21 | + * @since 1.0.19 |
|
22 | + * @var array |
|
23 | + */ |
|
24 | + protected $current_data; |
|
25 | 25 | |
26 | - /** |
|
27 | - * Metadata data |
|
28 | - * |
|
29 | - * @since 1.0.19 |
|
30 | - * @var array |
|
31 | - */ |
|
32 | - protected $data; |
|
26 | + /** |
|
27 | + * Metadata data |
|
28 | + * |
|
29 | + * @since 1.0.19 |
|
30 | + * @var array |
|
31 | + */ |
|
32 | + protected $data; |
|
33 | 33 | |
34 | - /** |
|
35 | - * Constructor. |
|
36 | - * |
|
37 | - * @param array $meta Data to wrap behind this function. |
|
38 | - */ |
|
39 | - public function __construct( $meta = array() ) { |
|
40 | - $this->current_data = $meta; |
|
41 | - $this->apply_changes(); |
|
42 | - } |
|
34 | + /** |
|
35 | + * Constructor. |
|
36 | + * |
|
37 | + * @param array $meta Data to wrap behind this function. |
|
38 | + */ |
|
39 | + public function __construct( $meta = array() ) { |
|
40 | + $this->current_data = $meta; |
|
41 | + $this->apply_changes(); |
|
42 | + } |
|
43 | 43 | |
44 | - /** |
|
45 | - * When converted to JSON. |
|
46 | - * |
|
47 | - * @return object|array |
|
48 | - */ |
|
49 | - #[\ReturnTypeWillChange] |
|
50 | - public function jsonSerialize() { |
|
51 | - return $this->get_data(); |
|
52 | - } |
|
44 | + /** |
|
45 | + * When converted to JSON. |
|
46 | + * |
|
47 | + * @return object|array |
|
48 | + */ |
|
49 | + #[\ReturnTypeWillChange] |
|
50 | + public function jsonSerialize() { |
|
51 | + return $this->get_data(); |
|
52 | + } |
|
53 | 53 | |
54 | - /** |
|
55 | - * Merge changes with data and clear. |
|
56 | - */ |
|
57 | - public function apply_changes() { |
|
58 | - $this->data = $this->current_data; |
|
59 | - } |
|
54 | + /** |
|
55 | + * Merge changes with data and clear. |
|
56 | + */ |
|
57 | + public function apply_changes() { |
|
58 | + $this->data = $this->current_data; |
|
59 | + } |
|
60 | 60 | |
61 | - /** |
|
62 | - * Creates or updates a property in the metadata object. |
|
63 | - * |
|
64 | - * @param string $key Key to set. |
|
65 | - * @param mixed $value Value to set. |
|
66 | - */ |
|
67 | - public function __set( $key, $value ) { |
|
68 | - $this->current_data[ $key ] = $value; |
|
69 | - } |
|
61 | + /** |
|
62 | + * Creates or updates a property in the metadata object. |
|
63 | + * |
|
64 | + * @param string $key Key to set. |
|
65 | + * @param mixed $value Value to set. |
|
66 | + */ |
|
67 | + public function __set( $key, $value ) { |
|
68 | + $this->current_data[ $key ] = $value; |
|
69 | + } |
|
70 | 70 | |
71 | - /** |
|
72 | - * Checks if a given key exists in our data. This is called internally |
|
73 | - * by `empty` and `isset`. |
|
74 | - * |
|
75 | - * @param string $key Key to check if set. |
|
76 | - * |
|
77 | - * @return bool |
|
78 | - */ |
|
79 | - public function __isset( $key ) { |
|
80 | - return array_key_exists( $key, $this->current_data ); |
|
81 | - } |
|
71 | + /** |
|
72 | + * Checks if a given key exists in our data. This is called internally |
|
73 | + * by `empty` and `isset`. |
|
74 | + * |
|
75 | + * @param string $key Key to check if set. |
|
76 | + * |
|
77 | + * @return bool |
|
78 | + */ |
|
79 | + public function __isset( $key ) { |
|
80 | + return array_key_exists( $key, $this->current_data ); |
|
81 | + } |
|
82 | 82 | |
83 | - /** |
|
84 | - * Returns the value of any property. |
|
85 | - * |
|
86 | - * @param string $key Key to get. |
|
87 | - * @return mixed Property value or NULL if it does not exists |
|
88 | - */ |
|
89 | - public function __get( $key ) { |
|
90 | - if ( array_key_exists( $key, $this->current_data ) ) { |
|
91 | - return $this->current_data[ $key ]; |
|
92 | - } |
|
93 | - return null; |
|
94 | - } |
|
83 | + /** |
|
84 | + * Returns the value of any property. |
|
85 | + * |
|
86 | + * @param string $key Key to get. |
|
87 | + * @return mixed Property value or NULL if it does not exists |
|
88 | + */ |
|
89 | + public function __get( $key ) { |
|
90 | + if ( array_key_exists( $key, $this->current_data ) ) { |
|
91 | + return $this->current_data[ $key ]; |
|
92 | + } |
|
93 | + return null; |
|
94 | + } |
|
95 | 95 | |
96 | - /** |
|
97 | - * Return data changes only. |
|
98 | - * |
|
99 | - * @return array |
|
100 | - */ |
|
101 | - public function get_changes() { |
|
102 | - $changes = array(); |
|
103 | - foreach ( $this->current_data as $id => $value ) { |
|
104 | - if ( ! array_key_exists( $id, $this->data ) || $value !== $this->data[ $id ] ) { |
|
105 | - $changes[ $id ] = $value; |
|
106 | - } |
|
107 | - } |
|
108 | - return $changes; |
|
109 | - } |
|
96 | + /** |
|
97 | + * Return data changes only. |
|
98 | + * |
|
99 | + * @return array |
|
100 | + */ |
|
101 | + public function get_changes() { |
|
102 | + $changes = array(); |
|
103 | + foreach ( $this->current_data as $id => $value ) { |
|
104 | + if ( ! array_key_exists( $id, $this->data ) || $value !== $this->data[ $id ] ) { |
|
105 | + $changes[ $id ] = $value; |
|
106 | + } |
|
107 | + } |
|
108 | + return $changes; |
|
109 | + } |
|
110 | 110 | |
111 | - /** |
|
112 | - * Return all data as an array. |
|
113 | - * |
|
114 | - * @return array |
|
115 | - */ |
|
116 | - public function get_data() { |
|
117 | - return $this->data; |
|
118 | - } |
|
111 | + /** |
|
112 | + * Return all data as an array. |
|
113 | + * |
|
114 | + * @return array |
|
115 | + */ |
|
116 | + public function get_data() { |
|
117 | + return $this->data; |
|
118 | + } |
|
119 | 119 | } |
@@ -8,7 +8,7 @@ discard block |
||
8 | 8 | */ |
9 | 9 | |
10 | 10 | if ( ! defined( 'ABSPATH' ) ) { |
11 | - exit; // Exit if accessed directly |
|
11 | + exit; // Exit if accessed directly |
|
12 | 12 | } |
13 | 13 | |
14 | 14 | /** |
@@ -17,10 +17,10 @@ discard block |
||
17 | 17 | class GetPaid_Meta_Box_Item_Info { |
18 | 18 | |
19 | 19 | /** |
20 | - * Output the metabox. |
|
21 | - * |
|
22 | - * @param WP_Post $post |
|
23 | - */ |
|
20 | + * Output the metabox. |
|
21 | + * |
|
22 | + * @param WP_Post $post |
|
23 | + */ |
|
24 | 24 | public static function output( $post ) { |
25 | 25 | |
26 | 26 | // Prepare the item. |
@@ -97,9 +97,9 @@ discard block |
||
97 | 97 | } |
98 | 98 | |
99 | 99 | /** |
100 | - * Returns item type tolltip. |
|
101 | - * |
|
102 | - */ |
|
100 | + * Returns item type tolltip. |
|
101 | + * |
|
102 | + */ |
|
103 | 103 | public static function get_tooltip( $post ) { |
104 | 104 | |
105 | 105 | ob_start(); |
@@ -7,7 +7,7 @@ discard block |
||
7 | 7 | * |
8 | 8 | */ |
9 | 9 | |
10 | -if ( ! defined( 'ABSPATH' ) ) { |
|
10 | +if (!defined('ABSPATH')) { |
|
11 | 11 | exit; // Exit if accessed directly |
12 | 12 | } |
13 | 13 | |
@@ -21,20 +21,20 @@ discard block |
||
21 | 21 | * |
22 | 22 | * @param WP_Post $post |
23 | 23 | */ |
24 | - public static function output( $post ) { |
|
24 | + public static function output($post) { |
|
25 | 25 | |
26 | 26 | // Prepare the item. |
27 | - $item = new WPInv_Item( $post ); |
|
27 | + $item = new WPInv_Item($post); |
|
28 | 28 | |
29 | 29 | ?> |
30 | 30 | |
31 | 31 | <div class='bsui' style='padding-top: 10px;'> |
32 | - <?php do_action( 'wpinv_item_before_info_metabox', $item ); ?> |
|
32 | + <?php do_action('wpinv_item_before_info_metabox', $item); ?> |
|
33 | 33 | |
34 | 34 | <div class="wpinv_item_type form-group mb-3 row"> |
35 | 35 | <label for="wpinv_item_type" class="col-sm-12 col-form-label"> |
36 | - <?php esc_html_e( 'Item Type', 'invoicing' ); ?> |
|
37 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php echo esc_attr( self::get_tooltip( $post ) ); ?>"></span> |
|
36 | + <?php esc_html_e('Item Type', 'invoicing'); ?> |
|
37 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php echo esc_attr(self::get_tooltip($post)); ?>"></span> |
|
38 | 38 | </label> |
39 | 39 | |
40 | 40 | <div class="col-sm-12"> |
@@ -44,8 +44,8 @@ discard block |
||
44 | 44 | array( |
45 | 45 | 'id' => 'wpinv_item_type', |
46 | 46 | 'name' => 'wpinv_item_type', |
47 | - 'placeholder' => __( 'Select item type', 'invoicing' ), |
|
48 | - 'value' => $item->get_type( 'edit' ), |
|
47 | + 'placeholder' => __('Select item type', 'invoicing'), |
|
48 | + 'value' => $item->get_type('edit'), |
|
49 | 49 | 'select2' => true, |
50 | 50 | 'data-allow-clear' => 'false', |
51 | 51 | 'no_wrap' => true, |
@@ -58,58 +58,58 @@ discard block |
||
58 | 58 | </div> |
59 | 59 | </div> |
60 | 60 | |
61 | - <?php if ( getpaid_item_type_supports( $item->get_type( 'edit' ), 'buy_now' ) ) : ?> |
|
61 | + <?php if (getpaid_item_type_supports($item->get_type('edit'), 'buy_now')) : ?> |
|
62 | 62 | <div class="wpinv_item_shortcode form-group mb-3 row"> |
63 | 63 | <label for="wpinv_item_shortcode" class="col-sm-12 col-form-label"> |
64 | - <?php esc_html_e( 'Payment Form Shortcode', 'invoicing' ); ?> |
|
65 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Displays a payment form', 'invoicing' ); ?>"></span> |
|
64 | + <?php esc_html_e('Payment Form Shortcode', 'invoicing'); ?> |
|
65 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('Displays a payment form', 'invoicing'); ?>"></span> |
|
66 | 66 | </label> |
67 | 67 | |
68 | 68 | <div class="col-sm-12"> |
69 | - <input onClick="this.select()" type="text" id="wpinv_item_shortcode" value="[getpaid item=<?php echo esc_attr( $item->get_id() ); ?>]" style="width: 100%;" readonly/> |
|
69 | + <input onClick="this.select()" type="text" id="wpinv_item_shortcode" value="[getpaid item=<?php echo esc_attr($item->get_id()); ?>]" style="width: 100%;" readonly/> |
|
70 | 70 | </div> |
71 | 71 | </div> |
72 | 72 | |
73 | 73 | <div class="wpinv_item_buy_shortcode form-group mb-3 row"> |
74 | 74 | <label for="wpinv_item_button_shortcode" class="col-sm-12 col-form-label"> |
75 | - <?php esc_html_e( 'Payment Button Shortcode', 'invoicing' ); ?> |
|
76 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Displays a buy now button', 'invoicing' ); ?>"></span> |
|
75 | + <?php esc_html_e('Payment Button Shortcode', 'invoicing'); ?> |
|
76 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('Displays a buy now button', 'invoicing'); ?>"></span> |
|
77 | 77 | </label> |
78 | 78 | |
79 | 79 | <div class="col-sm-12"> |
80 | - <input onClick="this.select()" type="text" id="wpinv_item_button_shortcode" value="[getpaid item=<?php echo esc_attr( $item->get_id() ); ?> button='Buy Now']" style="width: 100%;" readonly/> |
|
80 | + <input onClick="this.select()" type="text" id="wpinv_item_button_shortcode" value="[getpaid item=<?php echo esc_attr($item->get_id()); ?> button='Buy Now']" style="width: 100%;" readonly/> |
|
81 | 81 | <small class="form-text text-muted"> |
82 | - <?php esc_html_e( 'Or use the following URL in a link:', 'invoicing' ); ?> |
|
83 | - <code>#getpaid-item-<?php echo intval( $item->get_id() ); ?>|0</code> |
|
82 | + <?php esc_html_e('Or use the following URL in a link:', 'invoicing'); ?> |
|
83 | + <code>#getpaid-item-<?php echo intval($item->get_id()); ?>|0</code> |
|
84 | 84 | </small> |
85 | 85 | </div> |
86 | 86 | </div> |
87 | 87 | |
88 | 88 | <div class="wpinv_item_buy_url form-group mb-3 row"> |
89 | 89 | <label for="wpinv_item_buy_url" class="col-sm-12 col-form-label"> |
90 | - <?php esc_html_e( 'Direct Payment URL', 'invoicing' ); ?> |
|
91 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'You can use this in an iFrame to embed the payment form on another website', 'invoicing' ); ?>"></span> |
|
90 | + <?php esc_html_e('Direct Payment URL', 'invoicing'); ?> |
|
91 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('You can use this in an iFrame to embed the payment form on another website', 'invoicing'); ?>"></span> |
|
92 | 92 | </label> |
93 | 93 | |
94 | 94 | <div class="col-sm-12"> |
95 | - <input onClick="this.select()" type="text" id="wpinv_item_buy_url" value="<?php echo esc_url( getpaid_embed_url( false, $item->get_id() . '|0' ) ); ?>" style="width: 100%;" readonly/> |
|
95 | + <input onClick="this.select()" type="text" id="wpinv_item_buy_url" value="<?php echo esc_url(getpaid_embed_url(false, $item->get_id() . '|0')); ?>" style="width: 100%;" readonly/> |
|
96 | 96 | </div> |
97 | 97 | </div> |
98 | 98 | |
99 | 99 | <?php endif; ?> |
100 | 100 | |
101 | 101 | <div class="wpinv_item_custom_id form-group mb-3"> |
102 | - <?php esc_html_e( 'Custom ID', 'invoicing' ); ?> — <?php echo esc_html( $item->get_custom_id() ); ?> |
|
102 | + <?php esc_html_e('Custom ID', 'invoicing'); ?> — <?php echo esc_html($item->get_custom_id()); ?> |
|
103 | 103 | </div> |
104 | 104 | |
105 | - <?php do_action( 'wpinv_meta_values_metabox_before', $post ); ?> |
|
106 | - <?php foreach ( apply_filters( 'wpinv_show_meta_values_for_keys', array() ) as $meta_key ) : ?> |
|
105 | + <?php do_action('wpinv_meta_values_metabox_before', $post); ?> |
|
106 | + <?php foreach (apply_filters('wpinv_show_meta_values_for_keys', array()) as $meta_key) : ?> |
|
107 | 107 | <div class="wpinv_item_custom_id form-group mb-3"> |
108 | - <?php echo esc_html( $meta_key ); ?> — <?php echo esc_html( get_post_meta( $item->get_id(), '_wpinv_' . $meta_key, true ) ); ?> |
|
108 | + <?php echo esc_html($meta_key); ?> — <?php echo esc_html(get_post_meta($item->get_id(), '_wpinv_' . $meta_key, true)); ?> |
|
109 | 109 | </div> |
110 | 110 | <?php endforeach; ?> |
111 | - <?php do_action( 'wpinv_meta_values_metabox_after', $post ); ?> |
|
112 | - <?php do_action( 'wpinv_item_info_metabox', $item ); ?> |
|
111 | + <?php do_action('wpinv_meta_values_metabox_after', $post); ?> |
|
112 | + <?php do_action('wpinv_item_info_metabox', $item); ?> |
|
113 | 113 | </div> |
114 | 114 | <?php |
115 | 115 | |
@@ -119,16 +119,16 @@ discard block |
||
119 | 119 | * Returns item type tolltip. |
120 | 120 | * |
121 | 121 | */ |
122 | - public static function get_tooltip( $post ) { |
|
122 | + public static function get_tooltip($post) { |
|
123 | 123 | |
124 | 124 | ob_start(); |
125 | 125 | ?> |
126 | 126 | |
127 | - <?php esc_html_e( 'Standard: Standard item type', 'invoicing' ); ?> |
|
128 | - <?php esc_html_e( 'Fee: Like Registration Fee, Sign up Fee etc', 'invoicing' ); ?> |
|
127 | + <?php esc_html_e('Standard: Standard item type', 'invoicing'); ?> |
|
128 | + <?php esc_html_e('Fee: Like Registration Fee, Sign up Fee etc', 'invoicing'); ?> |
|
129 | 129 | |
130 | 130 | <?php |
131 | - do_action( 'wpinv_item_info_metabox_after', $post ); |
|
131 | + do_action('wpinv_item_info_metabox_after', $post); |
|
132 | 132 | |
133 | 133 | return ob_get_clean(); |
134 | 134 |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | * |
5 | 5 | */ |
6 | 6 | |
7 | -defined( 'ABSPATH' ) || exit; |
|
7 | +defined('ABSPATH') || exit; |
|
8 | 8 | |
9 | 9 | /** |
10 | 10 | * Data store class. |
@@ -54,31 +54,31 @@ discard block |
||
54 | 54 | * |
55 | 55 | * @param string $object_type Name of object. |
56 | 56 | */ |
57 | - public function __construct( $object_type ) { |
|
57 | + public function __construct($object_type) { |
|
58 | 58 | $this->object_type = $object_type; |
59 | - $this->stores = apply_filters( 'getpaid_data_stores', $this->stores ); |
|
59 | + $this->stores = apply_filters('getpaid_data_stores', $this->stores); |
|
60 | 60 | |
61 | 61 | // If this object type can't be found, check to see if we can load one |
62 | 62 | // level up (so if item-type isn't found, we try item). |
63 | - if ( ! array_key_exists( $object_type, $this->stores ) ) { |
|
64 | - $pieces = explode( '-', $object_type ); |
|
63 | + if (!array_key_exists($object_type, $this->stores)) { |
|
64 | + $pieces = explode('-', $object_type); |
|
65 | 65 | $object_type = $pieces[0]; |
66 | 66 | } |
67 | 67 | |
68 | - if ( array_key_exists( $object_type, $this->stores ) ) { |
|
69 | - $store = apply_filters( 'getpaid_' . $object_type . '_data_store', $this->stores[ $object_type ] ); |
|
70 | - if ( is_object( $store ) ) { |
|
71 | - $this->current_class_name = get_class( $store ); |
|
68 | + if (array_key_exists($object_type, $this->stores)) { |
|
69 | + $store = apply_filters('getpaid_' . $object_type . '_data_store', $this->stores[$object_type]); |
|
70 | + if (is_object($store)) { |
|
71 | + $this->current_class_name = get_class($store); |
|
72 | 72 | $this->instance = $store; |
73 | 73 | } else { |
74 | - if ( ! class_exists( $store ) ) { |
|
75 | - throw new Exception( __( 'Data store class does not exist.', 'invoicing' ) ); |
|
74 | + if (!class_exists($store)) { |
|
75 | + throw new Exception(__('Data store class does not exist.', 'invoicing')); |
|
76 | 76 | } |
77 | 77 | $this->current_class_name = $store; |
78 | 78 | $this->instance = new $store(); |
79 | 79 | } |
80 | 80 | } else { |
81 | - throw new Exception( __( 'Invalid data store.', 'invoicing' ) ); |
|
81 | + throw new Exception(__('Invalid data store.', 'invoicing')); |
|
82 | 82 | } |
83 | 83 | } |
84 | 84 | |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | * @return array |
89 | 89 | */ |
90 | 90 | public function __sleep() { |
91 | - return array( 'object_type' ); |
|
91 | + return array('object_type'); |
|
92 | 92 | } |
93 | 93 | |
94 | 94 | /** |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | * @throws Exception When validation fails. |
98 | 98 | */ |
99 | 99 | public function __wakeup() { |
100 | - $this->__construct( $this->object_type ); |
|
100 | + $this->__construct($this->object_type); |
|
101 | 101 | } |
102 | 102 | |
103 | 103 | /** |
@@ -109,8 +109,8 @@ discard block |
||
109 | 109 | * @throws Exception When validation fails. |
110 | 110 | * @return GetPaid_Data_Store |
111 | 111 | */ |
112 | - public static function load( $object_type ) { |
|
113 | - return new GetPaid_Data_Store( $object_type ); |
|
112 | + public static function load($object_type) { |
|
113 | + return new GetPaid_Data_Store($object_type); |
|
114 | 114 | } |
115 | 115 | |
116 | 116 | /** |
@@ -139,8 +139,8 @@ discard block |
||
139 | 139 | * @since 1.0.19 |
140 | 140 | * @param GetPaid_Data $data GetPaid data instance. |
141 | 141 | */ |
142 | - public function read( &$data ) { |
|
143 | - $this->instance->read( $data ); |
|
142 | + public function read(&$data) { |
|
143 | + $this->instance->read($data); |
|
144 | 144 | } |
145 | 145 | |
146 | 146 | /** |
@@ -149,8 +149,8 @@ discard block |
||
149 | 149 | * @since 1.0.19 |
150 | 150 | * @param GetPaid_Data $data GetPaid data instance. |
151 | 151 | */ |
152 | - public function create( &$data ) { |
|
153 | - $this->instance->create( $data ); |
|
152 | + public function create(&$data) { |
|
153 | + $this->instance->create($data); |
|
154 | 154 | } |
155 | 155 | |
156 | 156 | /** |
@@ -159,8 +159,8 @@ discard block |
||
159 | 159 | * @since 1.0.19 |
160 | 160 | * @param GetPaid_Data $data GetPaid data instance. |
161 | 161 | */ |
162 | - public function update( &$data ) { |
|
163 | - $this->instance->update( $data ); |
|
162 | + public function update(&$data) { |
|
163 | + $this->instance->update($data); |
|
164 | 164 | } |
165 | 165 | |
166 | 166 | /** |
@@ -170,8 +170,8 @@ discard block |
||
170 | 170 | * @param GetPaid_Data $data GetPaid data instance. |
171 | 171 | * @param array $args Array of args to pass to the delete method. |
172 | 172 | */ |
173 | - public function delete( &$data, $args = array() ) { |
|
174 | - $this->instance->delete( $data, $args ); |
|
173 | + public function delete(&$data, $args = array()) { |
|
174 | + $this->instance->delete($data, $args); |
|
175 | 175 | } |
176 | 176 | |
177 | 177 | /** |
@@ -182,11 +182,11 @@ discard block |
||
182 | 182 | * @param string $method Method. |
183 | 183 | * @return mixed |
184 | 184 | */ |
185 | - public function __call( $method, $parameters ) { |
|
186 | - if ( is_callable( array( $this->instance, $method ) ) ) { |
|
187 | - $object = array_shift( $parameters ); |
|
188 | - $parameters = array_merge( array( &$object ), $parameters ); |
|
189 | - return call_user_func_array( array( $this->instance, $method ), $parameters ); |
|
185 | + public function __call($method, $parameters) { |
|
186 | + if (is_callable(array($this->instance, $method))) { |
|
187 | + $object = array_shift($parameters); |
|
188 | + $parameters = array_merge(array(&$object), $parameters); |
|
189 | + return call_user_func_array(array($this->instance, $method), $parameters); |
|
190 | 190 | } |
191 | 191 | } |
192 | 192 |
@@ -11,187 +11,187 @@ |
||
11 | 11 | */ |
12 | 12 | class GetPaid_Data_Store { |
13 | 13 | |
14 | - /** |
|
15 | - * Contains an instance of the data store class that we are working with. |
|
16 | - * |
|
17 | - * @var GetPaid_Data_Store |
|
18 | - */ |
|
19 | - private $instance = null; |
|
20 | - |
|
21 | - /** |
|
22 | - * Contains an array of default supported data stores. |
|
23 | - * Format of object name => class name. |
|
24 | - * Example: 'item' => 'GetPaid_Item_Data_Store' |
|
25 | - * You can also pass something like item-<type> for item stores and |
|
26 | - * that type will be used first when available, if a store is requested like |
|
27 | - * this and doesn't exist, then the store would fall back to 'item'. |
|
28 | - * Ran through `getpaid_data_stores`. |
|
29 | - * |
|
30 | - * @var array |
|
31 | - */ |
|
32 | - private $stores = array( |
|
33 | - 'item' => 'GetPaid_Item_Data_Store', |
|
34 | - 'payment_form' => 'GetPaid_Payment_Form_Data_Store', |
|
35 | - 'discount' => 'GetPaid_Discount_Data_Store', |
|
36 | - 'invoice' => 'GetPaid_Invoice_Data_Store', |
|
37 | - 'subscription' => 'GetPaid_Subscription_Data_Store', |
|
38 | - 'customer' => 'GetPaid_Customer_Data_Store', |
|
39 | - ); |
|
40 | - |
|
41 | - /** |
|
42 | - * Contains the name of the current data store's class name. |
|
43 | - * |
|
44 | - * @var string |
|
45 | - */ |
|
46 | - private $current_class_name = ''; |
|
47 | - |
|
48 | - /** |
|
49 | - * The object type this store works with. |
|
50 | - * |
|
51 | - * @var string |
|
52 | - */ |
|
53 | - private $object_type = ''; |
|
54 | - |
|
55 | - /** |
|
56 | - * Tells GetPaid_Data_Store which object |
|
57 | - * store we want to work with. |
|
58 | - * |
|
59 | - * @param string $object_type Name of object. |
|
60 | - */ |
|
61 | - public function __construct( $object_type ) { |
|
62 | - $this->object_type = $object_type; |
|
63 | - $this->stores = apply_filters( 'getpaid_data_stores', $this->stores ); |
|
64 | - |
|
65 | - // If this object type can't be found, check to see if we can load one |
|
66 | - // level up (so if item-type isn't found, we try item). |
|
67 | - if ( ! array_key_exists( $object_type, $this->stores ) ) { |
|
68 | - $pieces = explode( '-', $object_type ); |
|
69 | - $object_type = $pieces[0]; |
|
70 | - } |
|
71 | - |
|
72 | - if ( array_key_exists( $object_type, $this->stores ) ) { |
|
73 | - $store = apply_filters( 'getpaid_' . $object_type . '_data_store', $this->stores[ $object_type ] ); |
|
74 | - if ( is_object( $store ) ) { |
|
75 | - $this->current_class_name = get_class( $store ); |
|
76 | - $this->instance = $store; |
|
77 | - } else { |
|
78 | - if ( ! class_exists( $store ) ) { |
|
79 | - throw new Exception( __( 'Data store class does not exist.', 'invoicing' ) ); |
|
80 | - } |
|
81 | - $this->current_class_name = $store; |
|
82 | - $this->instance = new $store(); |
|
83 | - } |
|
84 | - } else { |
|
85 | - throw new Exception( __( 'Invalid data store.', 'invoicing' ) ); |
|
86 | - } |
|
87 | - } |
|
88 | - |
|
89 | - /** |
|
90 | - * Only store the object type to avoid serializing the data store instance. |
|
91 | - * |
|
92 | - * @return array |
|
93 | - */ |
|
94 | - public function __sleep() { |
|
95 | - return array( 'object_type' ); |
|
96 | - } |
|
97 | - |
|
98 | - /** |
|
99 | - * Re-run the constructor with the object type. |
|
100 | - * |
|
101 | - * @throws Exception When validation fails. |
|
102 | - */ |
|
103 | - public function __wakeup() { |
|
104 | - $this->__construct( $this->object_type ); |
|
105 | - } |
|
106 | - |
|
107 | - /** |
|
108 | - * Loads a data store. |
|
109 | - * |
|
110 | - * @param string $object_type Name of object. |
|
111 | - * |
|
112 | - * @since 1.0.19 |
|
113 | - * @throws Exception When validation fails. |
|
114 | - * @return GetPaid_Data_Store |
|
115 | - */ |
|
116 | - public static function load( $object_type ) { |
|
117 | - return new GetPaid_Data_Store( $object_type ); |
|
118 | - } |
|
119 | - |
|
120 | - /** |
|
121 | - * Returns the class name of the current data store. |
|
122 | - * |
|
123 | - * @since 1.0.19 |
|
124 | - * @return string |
|
125 | - */ |
|
126 | - public function get_current_class_name() { |
|
127 | - return $this->current_class_name; |
|
128 | - } |
|
129 | - |
|
130 | - /** |
|
131 | - * Returns the object type of the current data store. |
|
132 | - * |
|
133 | - * @since 1.0.19 |
|
134 | - * @return string |
|
135 | - */ |
|
136 | - public function get_object_type() { |
|
137 | - return $this->object_type; |
|
138 | - } |
|
139 | - |
|
140 | - /** |
|
141 | - * Reads an object from the data store. |
|
142 | - * |
|
143 | - * @since 1.0.19 |
|
144 | - * @param GetPaid_Data $data GetPaid data instance. |
|
145 | - */ |
|
146 | - public function read( &$data ) { |
|
147 | - $this->instance->read( $data ); |
|
148 | - } |
|
149 | - |
|
150 | - /** |
|
151 | - * Create an object in the data store. |
|
152 | - * |
|
153 | - * @since 1.0.19 |
|
154 | - * @param GetPaid_Data $data GetPaid data instance. |
|
155 | - */ |
|
156 | - public function create( &$data ) { |
|
157 | - $this->instance->create( $data ); |
|
158 | - } |
|
159 | - |
|
160 | - /** |
|
161 | - * Update an object in the data store. |
|
162 | - * |
|
163 | - * @since 1.0.19 |
|
164 | - * @param GetPaid_Data $data GetPaid data instance. |
|
165 | - */ |
|
166 | - public function update( &$data ) { |
|
167 | - $this->instance->update( $data ); |
|
168 | - } |
|
169 | - |
|
170 | - /** |
|
171 | - * Delete an object from the data store. |
|
172 | - * |
|
173 | - * @since 1.0.19 |
|
174 | - * @param GetPaid_Data $data GetPaid data instance. |
|
175 | - * @param array $args Array of args to pass to the delete method. |
|
176 | - */ |
|
177 | - public function delete( &$data, $args = array() ) { |
|
178 | - $this->instance->delete( $data, $args ); |
|
179 | - } |
|
180 | - |
|
181 | - /** |
|
182 | - * Data stores can define additional function. This passes |
|
183 | - * through to the instance if that function exists. |
|
184 | - * |
|
185 | - * @since 1.0.19 |
|
186 | - * @param string $method Method. |
|
187 | - * @return mixed |
|
188 | - */ |
|
189 | - public function __call( $method, $parameters ) { |
|
190 | - if ( is_callable( array( $this->instance, $method ) ) ) { |
|
191 | - $object = array_shift( $parameters ); |
|
192 | - $parameters = array_merge( array( &$object ), $parameters ); |
|
193 | - return call_user_func_array( array( $this->instance, $method ), $parameters ); |
|
194 | - } |
|
195 | - } |
|
14 | + /** |
|
15 | + * Contains an instance of the data store class that we are working with. |
|
16 | + * |
|
17 | + * @var GetPaid_Data_Store |
|
18 | + */ |
|
19 | + private $instance = null; |
|
20 | + |
|
21 | + /** |
|
22 | + * Contains an array of default supported data stores. |
|
23 | + * Format of object name => class name. |
|
24 | + * Example: 'item' => 'GetPaid_Item_Data_Store' |
|
25 | + * You can also pass something like item-<type> for item stores and |
|
26 | + * that type will be used first when available, if a store is requested like |
|
27 | + * this and doesn't exist, then the store would fall back to 'item'. |
|
28 | + * Ran through `getpaid_data_stores`. |
|
29 | + * |
|
30 | + * @var array |
|
31 | + */ |
|
32 | + private $stores = array( |
|
33 | + 'item' => 'GetPaid_Item_Data_Store', |
|
34 | + 'payment_form' => 'GetPaid_Payment_Form_Data_Store', |
|
35 | + 'discount' => 'GetPaid_Discount_Data_Store', |
|
36 | + 'invoice' => 'GetPaid_Invoice_Data_Store', |
|
37 | + 'subscription' => 'GetPaid_Subscription_Data_Store', |
|
38 | + 'customer' => 'GetPaid_Customer_Data_Store', |
|
39 | + ); |
|
40 | + |
|
41 | + /** |
|
42 | + * Contains the name of the current data store's class name. |
|
43 | + * |
|
44 | + * @var string |
|
45 | + */ |
|
46 | + private $current_class_name = ''; |
|
47 | + |
|
48 | + /** |
|
49 | + * The object type this store works with. |
|
50 | + * |
|
51 | + * @var string |
|
52 | + */ |
|
53 | + private $object_type = ''; |
|
54 | + |
|
55 | + /** |
|
56 | + * Tells GetPaid_Data_Store which object |
|
57 | + * store we want to work with. |
|
58 | + * |
|
59 | + * @param string $object_type Name of object. |
|
60 | + */ |
|
61 | + public function __construct( $object_type ) { |
|
62 | + $this->object_type = $object_type; |
|
63 | + $this->stores = apply_filters( 'getpaid_data_stores', $this->stores ); |
|
64 | + |
|
65 | + // If this object type can't be found, check to see if we can load one |
|
66 | + // level up (so if item-type isn't found, we try item). |
|
67 | + if ( ! array_key_exists( $object_type, $this->stores ) ) { |
|
68 | + $pieces = explode( '-', $object_type ); |
|
69 | + $object_type = $pieces[0]; |
|
70 | + } |
|
71 | + |
|
72 | + if ( array_key_exists( $object_type, $this->stores ) ) { |
|
73 | + $store = apply_filters( 'getpaid_' . $object_type . '_data_store', $this->stores[ $object_type ] ); |
|
74 | + if ( is_object( $store ) ) { |
|
75 | + $this->current_class_name = get_class( $store ); |
|
76 | + $this->instance = $store; |
|
77 | + } else { |
|
78 | + if ( ! class_exists( $store ) ) { |
|
79 | + throw new Exception( __( 'Data store class does not exist.', 'invoicing' ) ); |
|
80 | + } |
|
81 | + $this->current_class_name = $store; |
|
82 | + $this->instance = new $store(); |
|
83 | + } |
|
84 | + } else { |
|
85 | + throw new Exception( __( 'Invalid data store.', 'invoicing' ) ); |
|
86 | + } |
|
87 | + } |
|
88 | + |
|
89 | + /** |
|
90 | + * Only store the object type to avoid serializing the data store instance. |
|
91 | + * |
|
92 | + * @return array |
|
93 | + */ |
|
94 | + public function __sleep() { |
|
95 | + return array( 'object_type' ); |
|
96 | + } |
|
97 | + |
|
98 | + /** |
|
99 | + * Re-run the constructor with the object type. |
|
100 | + * |
|
101 | + * @throws Exception When validation fails. |
|
102 | + */ |
|
103 | + public function __wakeup() { |
|
104 | + $this->__construct( $this->object_type ); |
|
105 | + } |
|
106 | + |
|
107 | + /** |
|
108 | + * Loads a data store. |
|
109 | + * |
|
110 | + * @param string $object_type Name of object. |
|
111 | + * |
|
112 | + * @since 1.0.19 |
|
113 | + * @throws Exception When validation fails. |
|
114 | + * @return GetPaid_Data_Store |
|
115 | + */ |
|
116 | + public static function load( $object_type ) { |
|
117 | + return new GetPaid_Data_Store( $object_type ); |
|
118 | + } |
|
119 | + |
|
120 | + /** |
|
121 | + * Returns the class name of the current data store. |
|
122 | + * |
|
123 | + * @since 1.0.19 |
|
124 | + * @return string |
|
125 | + */ |
|
126 | + public function get_current_class_name() { |
|
127 | + return $this->current_class_name; |
|
128 | + } |
|
129 | + |
|
130 | + /** |
|
131 | + * Returns the object type of the current data store. |
|
132 | + * |
|
133 | + * @since 1.0.19 |
|
134 | + * @return string |
|
135 | + */ |
|
136 | + public function get_object_type() { |
|
137 | + return $this->object_type; |
|
138 | + } |
|
139 | + |
|
140 | + /** |
|
141 | + * Reads an object from the data store. |
|
142 | + * |
|
143 | + * @since 1.0.19 |
|
144 | + * @param GetPaid_Data $data GetPaid data instance. |
|
145 | + */ |
|
146 | + public function read( &$data ) { |
|
147 | + $this->instance->read( $data ); |
|
148 | + } |
|
149 | + |
|
150 | + /** |
|
151 | + * Create an object in the data store. |
|
152 | + * |
|
153 | + * @since 1.0.19 |
|
154 | + * @param GetPaid_Data $data GetPaid data instance. |
|
155 | + */ |
|
156 | + public function create( &$data ) { |
|
157 | + $this->instance->create( $data ); |
|
158 | + } |
|
159 | + |
|
160 | + /** |
|
161 | + * Update an object in the data store. |
|
162 | + * |
|
163 | + * @since 1.0.19 |
|
164 | + * @param GetPaid_Data $data GetPaid data instance. |
|
165 | + */ |
|
166 | + public function update( &$data ) { |
|
167 | + $this->instance->update( $data ); |
|
168 | + } |
|
169 | + |
|
170 | + /** |
|
171 | + * Delete an object from the data store. |
|
172 | + * |
|
173 | + * @since 1.0.19 |
|
174 | + * @param GetPaid_Data $data GetPaid data instance. |
|
175 | + * @param array $args Array of args to pass to the delete method. |
|
176 | + */ |
|
177 | + public function delete( &$data, $args = array() ) { |
|
178 | + $this->instance->delete( $data, $args ); |
|
179 | + } |
|
180 | + |
|
181 | + /** |
|
182 | + * Data stores can define additional function. This passes |
|
183 | + * through to the instance if that function exists. |
|
184 | + * |
|
185 | + * @since 1.0.19 |
|
186 | + * @param string $method Method. |
|
187 | + * @return mixed |
|
188 | + */ |
|
189 | + public function __call( $method, $parameters ) { |
|
190 | + if ( is_callable( array( $this->instance, $method ) ) ) { |
|
191 | + $object = array_shift( $parameters ); |
|
192 | + $parameters = array_merge( array( &$object ), $parameters ); |
|
193 | + return call_user_func_array( array( $this->instance, $method ), $parameters ); |
|
194 | + } |
|
195 | + } |
|
196 | 196 | |
197 | 197 | } |
@@ -8,7 +8,7 @@ discard block |
||
8 | 8 | */ |
9 | 9 | |
10 | 10 | if ( ! defined( 'ABSPATH' ) ) { |
11 | - exit; // Exit if accessed directly |
|
11 | + exit; // Exit if accessed directly |
|
12 | 12 | } |
13 | 13 | |
14 | 14 | /** |
@@ -17,10 +17,10 @@ discard block |
||
17 | 17 | class GetPaid_Meta_Box_Payment_Form_Info { |
18 | 18 | |
19 | 19 | /** |
20 | - * Output the metabox. |
|
21 | - * |
|
22 | - * @param WP_Post $post |
|
23 | - */ |
|
20 | + * Output the metabox. |
|
21 | + * |
|
22 | + * @param WP_Post $post |
|
23 | + */ |
|
24 | 24 | public static function output( $post ) { |
25 | 25 | |
26 | 26 | // Prepare the form. |
@@ -7,7 +7,7 @@ discard block |
||
7 | 7 | * |
8 | 8 | */ |
9 | 9 | |
10 | -if ( ! defined( 'ABSPATH' ) ) { |
|
10 | +if (!defined('ABSPATH')) { |
|
11 | 11 | exit; // Exit if accessed directly |
12 | 12 | } |
13 | 13 | |
@@ -21,54 +21,54 @@ discard block |
||
21 | 21 | * |
22 | 22 | * @param WP_Post $post |
23 | 23 | */ |
24 | - public static function output( $post ) { |
|
24 | + public static function output($post) { |
|
25 | 25 | |
26 | 26 | // Prepare the form. |
27 | - $form = new GetPaid_Payment_Form( $post ); |
|
27 | + $form = new GetPaid_Payment_Form($post); |
|
28 | 28 | |
29 | 29 | ?> |
30 | 30 | |
31 | 31 | <div class='bsui' style='padding-top: 10px;'> |
32 | - <?php do_action( 'wpinv_payment_form_before_info_metabox', $form ); ?> |
|
32 | + <?php do_action('wpinv_payment_form_before_info_metabox', $form); ?> |
|
33 | 33 | |
34 | 34 | <div class="wpinv_payment_form_shortcode form-group mb-3 row"> |
35 | 35 | <label for="wpinv_payment_form_shortcode" class="col-sm-12 col-form-label"> |
36 | - <?php esc_html_e( 'Payment Form Shortcode', 'invoicing' ); ?> |
|
37 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Displays a payment form', 'invoicing' ); ?>"></span> |
|
36 | + <?php esc_html_e('Payment Form Shortcode', 'invoicing'); ?> |
|
37 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('Displays a payment form', 'invoicing'); ?>"></span> |
|
38 | 38 | </label> |
39 | 39 | |
40 | 40 | <div class="col-sm-12"> |
41 | - <input onClick="this.select()" type="text" id="wpinv_payment_form_shortcode" value="[getpaid form=<?php echo esc_attr( $form->get_id() ); ?>]" style="width: 100%;" /> |
|
41 | + <input onClick="this.select()" type="text" id="wpinv_payment_form_shortcode" value="[getpaid form=<?php echo esc_attr($form->get_id()); ?>]" style="width: 100%;" /> |
|
42 | 42 | </div> |
43 | 43 | </div> |
44 | 44 | |
45 | 45 | <div class="wpinv_payment_form_buy_shortcode form-group mb-3 row"> |
46 | 46 | <label for="wpinv_payment_form_buy_shortcode" class="col-sm-12 col-form-label"> |
47 | - <?php esc_html_e( 'Payment Button Shortcode', 'invoicing' ); ?> |
|
48 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Displays a buy now button', 'invoicing' ); ?>"></span> |
|
47 | + <?php esc_html_e('Payment Button Shortcode', 'invoicing'); ?> |
|
48 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('Displays a buy now button', 'invoicing'); ?>"></span> |
|
49 | 49 | </label> |
50 | 50 | |
51 | 51 | <div class="col-sm-12"> |
52 | - <input onClick="this.select()" type="text" id="wpinv_payment_form_buy_shortcode" value="[getpaid form=<?php echo esc_attr( $form->get_id() ); ?> button='Buy Now']" style="width: 100%;" /> |
|
52 | + <input onClick="this.select()" type="text" id="wpinv_payment_form_buy_shortcode" value="[getpaid form=<?php echo esc_attr($form->get_id()); ?> button='Buy Now']" style="width: 100%;" /> |
|
53 | 53 | <small class="form-text text-muted"> |
54 | - <?php esc_html_e( 'Or use the following URL in a link:', 'invoicing' ); ?> |
|
55 | - <code>#getpaid-form-<?php echo intval( $form->get_id() ); ?></code> |
|
54 | + <?php esc_html_e('Or use the following URL in a link:', 'invoicing'); ?> |
|
55 | + <code>#getpaid-form-<?php echo intval($form->get_id()); ?></code> |
|
56 | 56 | </small> |
57 | 57 | </div> |
58 | 58 | </div> |
59 | 59 | |
60 | 60 | <div class="wpinv_item_buy_url form-group row mb-3"> |
61 | 61 | <label for="wpinv_item_buy_url" class="col-sm-12 col-form-label"> |
62 | - <?php esc_html_e( 'Direct Payment URL', 'invoicing' ); ?> |
|
63 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'You can use this in an iFrame to embed the payment form on another website', 'invoicing' ); ?>"></span> |
|
62 | + <?php esc_html_e('Direct Payment URL', 'invoicing'); ?> |
|
63 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('You can use this in an iFrame to embed the payment form on another website', 'invoicing'); ?>"></span> |
|
64 | 64 | </label> |
65 | 65 | |
66 | 66 | <div class="col-sm-12"> |
67 | - <input onClick="this.select()" type="text" id="wpinv_item_buy_url" value="<?php echo esc_url( getpaid_embed_url( $form->get_id(), false ) ); ?>" style="width: 100%;" readonly/> |
|
67 | + <input onClick="this.select()" type="text" id="wpinv_item_buy_url" value="<?php echo esc_url(getpaid_embed_url($form->get_id(), false)); ?>" style="width: 100%;" readonly/> |
|
68 | 68 | </div> |
69 | 69 | </div> |
70 | 70 | |
71 | - <?php do_action( 'wpinv_payment_form_info_metabox', $form ); ?> |
|
71 | + <?php do_action('wpinv_payment_form_info_metabox', $form); ?> |
|
72 | 72 | </div> |
73 | 73 | <?php |
74 | 74 |
@@ -8,7 +8,7 @@ discard block |
||
8 | 8 | */ |
9 | 9 | |
10 | 10 | if ( ! defined( 'ABSPATH' ) ) { |
11 | - exit; // Exit if accessed directly |
|
11 | + exit; // Exit if accessed directly |
|
12 | 12 | } |
13 | 13 | |
14 | 14 | /** |
@@ -17,10 +17,10 @@ discard block |
||
17 | 17 | class GetPaid_Meta_Box_Invoice_Details { |
18 | 18 | |
19 | 19 | /** |
20 | - * Output the metabox. |
|
21 | - * |
|
22 | - * @param WP_Post $post |
|
23 | - */ |
|
20 | + * Output the metabox. |
|
21 | + * |
|
22 | + * @param WP_Post $post |
|
23 | + */ |
|
24 | 24 | public static function output( $post ) { |
25 | 25 | |
26 | 26 | // Prepare the invoice. |
@@ -7,7 +7,7 @@ discard block |
||
7 | 7 | * |
8 | 8 | */ |
9 | 9 | |
10 | -if ( ! defined( 'ABSPATH' ) ) { |
|
10 | +if (!defined('ABSPATH')) { |
|
11 | 11 | exit; // Exit if accessed directly |
12 | 12 | } |
13 | 13 | |
@@ -21,13 +21,13 @@ discard block |
||
21 | 21 | * |
22 | 22 | * @param WP_Post $post |
23 | 23 | */ |
24 | - public static function output( $post ) { |
|
24 | + public static function output($post) { |
|
25 | 25 | |
26 | 26 | // Prepare the invoice. |
27 | - $invoice = new WPInv_Invoice( $post ); |
|
27 | + $invoice = new WPInv_Invoice($post); |
|
28 | 28 | |
29 | 29 | // Nonce field. |
30 | - wp_nonce_field( 'wpinv_details', 'wpinv_details_nonce' ); |
|
30 | + wp_nonce_field('wpinv_details', 'wpinv_details_nonce'); |
|
31 | 31 | |
32 | 32 | ?> |
33 | 33 | |
@@ -45,11 +45,11 @@ discard block |
||
45 | 45 | |
46 | 46 | <div class="bsui" style="margin-top: 1.5rem"> |
47 | 47 | |
48 | - <?php do_action( 'getpaid_invoice_edit_before_viewed_by_customer', $invoice ); ?> |
|
49 | - <?php if ( ! $invoice->is_draft() ) : ?> |
|
48 | + <?php do_action('getpaid_invoice_edit_before_viewed_by_customer', $invoice); ?> |
|
49 | + <?php if (!$invoice->is_draft()) : ?> |
|
50 | 50 | <div class="form-group mb-3"> |
51 | - <strong><?php esc_html_e( 'Viewed by Customer:', 'invoicing' ); ?></strong> |
|
52 | - <?php ( $invoice->get_is_viewed() ) ? esc_html_e( 'Yes', 'invoicing' ) : esc_html_e( 'No', 'invoicing' ); ?> |
|
51 | + <strong><?php esc_html_e('Viewed by Customer:', 'invoicing'); ?></strong> |
|
52 | + <?php ($invoice->get_is_viewed()) ? esc_html_e('Yes', 'invoicing') : esc_html_e('No', 'invoicing'); ?> |
|
53 | 53 | </div> |
54 | 54 | <?php endif; ?> |
55 | 55 | |
@@ -58,14 +58,14 @@ discard block |
||
58 | 58 | // Date created. |
59 | 59 | $label = sprintf( |
60 | 60 | // translators: %s is the invoice type. |
61 | - __( '%s Date:', 'invoicing' ), |
|
62 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
61 | + __('%s Date:', 'invoicing'), |
|
62 | + ucfirst($invoice->get_invoice_quote_type()) |
|
63 | 63 | ); |
64 | 64 | |
65 | - $info = sprintf( |
|
65 | + $info = sprintf( |
|
66 | 66 | // translators: %s is the invoice type. |
67 | - __( 'The date this %s was created.', 'invoicing' ), |
|
68 | - strtolower( $invoice->get_invoice_quote_type() ) |
|
67 | + __('The date this %s was created.', 'invoicing'), |
|
68 | + strtolower($invoice->get_invoice_quote_type()) |
|
69 | 69 | ); |
70 | 70 | |
71 | 71 | aui()->input( |
@@ -73,11 +73,11 @@ discard block |
||
73 | 73 | 'type' => 'datepicker', |
74 | 74 | 'id' => 'wpinv_date_created', |
75 | 75 | 'name' => 'date_created', |
76 | - 'label' => $label . getpaid_get_help_tip( $info ), |
|
76 | + 'label' => $label . getpaid_get_help_tip($info), |
|
77 | 77 | 'label_type' => 'vertical', |
78 | 78 | 'placeholder' => 'YYYY-MM-DD 00:00', |
79 | 79 | 'class' => 'form-control-sm', |
80 | - 'value' => $invoice->get_date_created( 'edit' ), |
|
80 | + 'value' => $invoice->get_date_created('edit'), |
|
81 | 81 | 'extra_attributes' => array( |
82 | 82 | 'data-enable-time' => 'true', |
83 | 83 | 'data-time_24hr' => 'true', |
@@ -94,11 +94,11 @@ discard block |
||
94 | 94 | 'type' => 'datepicker', |
95 | 95 | 'id' => 'wpinv_date_completed', |
96 | 96 | 'name' => 'wpinv_date_completed', |
97 | - 'label' => __( 'Date Completed:', 'invoicing' ), |
|
97 | + 'label' => __('Date Completed:', 'invoicing'), |
|
98 | 98 | 'label_type' => 'vertical', |
99 | 99 | 'placeholder' => 'YYYY-MM-DD 00:00', |
100 | 100 | 'class' => 'form-control-sm', |
101 | - 'value' => $invoice->get_date_completed( 'edit' ), |
|
101 | + 'value' => $invoice->get_date_completed('edit'), |
|
102 | 102 | 'extra_attributes' => array( |
103 | 103 | 'data-enable-time' => 'true', |
104 | 104 | 'data-time_24hr' => 'true', |
@@ -110,18 +110,18 @@ discard block |
||
110 | 110 | ); |
111 | 111 | |
112 | 112 | // Due date. |
113 | - if ( $invoice->is_type( 'invoice' ) && wpinv_get_option( 'overdue_active' ) && ( ! $invoice->is_paid() || $invoice->is_draft() ) ) { |
|
113 | + if ($invoice->is_type('invoice') && wpinv_get_option('overdue_active') && (!$invoice->is_paid() || $invoice->is_draft())) { |
|
114 | 114 | |
115 | 115 | aui()->input( |
116 | 116 | array( |
117 | 117 | 'type' => 'datepicker', |
118 | 118 | 'id' => 'wpinv_due_date', |
119 | 119 | 'name' => 'wpinv_due_date', |
120 | - 'label' => __( 'Due Date:', 'invoicing' ) . getpaid_get_help_tip( __( 'Leave blank to disable automated reminder emails for this invoice.', 'invoicing' ) ), |
|
120 | + 'label' => __('Due Date:', 'invoicing') . getpaid_get_help_tip(__('Leave blank to disable automated reminder emails for this invoice.', 'invoicing')), |
|
121 | 121 | 'label_type' => 'vertical', |
122 | - 'placeholder' => __( 'No due date', 'invoicing' ), |
|
122 | + 'placeholder' => __('No due date', 'invoicing'), |
|
123 | 123 | 'class' => 'form-control-sm', |
124 | - 'value' => $invoice->get_due_date( 'edit' ), |
|
124 | + 'value' => $invoice->get_due_date('edit'), |
|
125 | 125 | 'extra_attributes' => array( |
126 | 126 | 'data-enable-time' => 'true', |
127 | 127 | 'data-time_24hr' => 'true', |
@@ -134,28 +134,28 @@ discard block |
||
134 | 134 | |
135 | 135 | } |
136 | 136 | |
137 | - do_action( 'wpinv_meta_box_details_after_due_date', $invoice->get_id() ); |
|
138 | - do_action( 'getpaid_metabox_after_due_date', $invoice ); |
|
137 | + do_action('wpinv_meta_box_details_after_due_date', $invoice->get_id()); |
|
138 | + do_action('getpaid_metabox_after_due_date', $invoice); |
|
139 | 139 | |
140 | 140 | // Status. |
141 | 141 | $label = sprintf( |
142 | 142 | // translators: %s: Invoice type. |
143 | - __( '%s Status:', 'invoicing' ), |
|
144 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
143 | + __('%s Status:', 'invoicing'), |
|
144 | + ucfirst($invoice->get_invoice_quote_type()) |
|
145 | 145 | ); |
146 | 146 | |
147 | - $status = $invoice->get_status( 'edit' ); |
|
147 | + $status = $invoice->get_status('edit'); |
|
148 | 148 | aui()->select( |
149 | 149 | array( |
150 | 150 | 'id' => 'wpinv_status', |
151 | 151 | 'name' => 'wpinv_status', |
152 | 152 | 'label' => $label, |
153 | 153 | 'label_type' => 'vertical', |
154 | - 'placeholder' => __( 'Select Status', 'invoicing' ), |
|
155 | - 'value' => array_key_exists( $status, $invoice->get_all_statuses() ) ? $status : $invoice->get_default_status(), |
|
154 | + 'placeholder' => __('Select Status', 'invoicing'), |
|
155 | + 'value' => array_key_exists($status, $invoice->get_all_statuses()) ? $status : $invoice->get_default_status(), |
|
156 | 156 | 'select2' => true, |
157 | 157 | 'data-allow-clear' => 'false', |
158 | - 'options' => wpinv_get_invoice_statuses( true, false, $invoice ), |
|
158 | + 'options' => wpinv_get_invoice_statuses(true, false, $invoice), |
|
159 | 159 | ), |
160 | 160 | true |
161 | 161 | ); |
@@ -163,14 +163,14 @@ discard block |
||
163 | 163 | // Invoice number. |
164 | 164 | $label = sprintf( |
165 | 165 | // translators: %s: Invoice type. |
166 | - __( '%s Number:', 'invoicing' ), |
|
167 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
166 | + __('%s Number:', 'invoicing'), |
|
167 | + ucfirst($invoice->get_invoice_quote_type()) |
|
168 | 168 | ); |
169 | 169 | |
170 | - $info = sprintf( |
|
170 | + $info = sprintf( |
|
171 | 171 | // translators: %s: Invoice type. |
172 | - __( 'Each %s number must be unique.', 'invoicing' ), |
|
173 | - strtolower( $invoice->get_invoice_quote_type() ) |
|
172 | + __('Each %s number must be unique.', 'invoicing'), |
|
173 | + strtolower($invoice->get_invoice_quote_type()) |
|
174 | 174 | ); |
175 | 175 | |
176 | 176 | aui()->input( |
@@ -178,11 +178,11 @@ discard block |
||
178 | 178 | 'type' => 'text', |
179 | 179 | 'id' => 'wpinv_number', |
180 | 180 | 'name' => 'wpinv_number', |
181 | - 'label' => $label . getpaid_get_help_tip( $info ), |
|
181 | + 'label' => $label . getpaid_get_help_tip($info), |
|
182 | 182 | 'label_type' => 'vertical', |
183 | - 'placeholder' => __( 'Autogenerate', 'invoicing' ), |
|
183 | + 'placeholder' => __('Autogenerate', 'invoicing'), |
|
184 | 184 | 'class' => 'form-control-sm', |
185 | - 'value' => $invoice->get_number( 'edit' ), |
|
185 | + 'value' => $invoice->get_number('edit'), |
|
186 | 186 | ), |
187 | 187 | true |
188 | 188 | ); |
@@ -193,16 +193,16 @@ discard block |
||
193 | 193 | 'type' => 'text', |
194 | 194 | 'id' => 'wpinv_cc', |
195 | 195 | 'name' => 'wpinv_cc', |
196 | - 'label' => __( 'Email CC:', 'invoicing' ) . getpaid_get_help_tip( __( 'Enter a comma separated list of other emails that should be notified about the invoice.', 'invoicing' ) ), |
|
196 | + 'label' => __('Email CC:', 'invoicing') . getpaid_get_help_tip(__('Enter a comma separated list of other emails that should be notified about the invoice.', 'invoicing')), |
|
197 | 197 | 'label_type' => 'vertical', |
198 | - 'placeholder' => __( '[email protected], [email protected]', 'invoicing' ), |
|
198 | + 'placeholder' => __('[email protected], [email protected]', 'invoicing'), |
|
199 | 199 | 'class' => 'form-control-sm', |
200 | - 'value' => $invoice->get_email_cc( 'edit' ), |
|
200 | + 'value' => $invoice->get_email_cc('edit'), |
|
201 | 201 | ), |
202 | 202 | true |
203 | 203 | ); |
204 | 204 | |
205 | - if ( ! $invoice->is_paid() && ! $invoice->is_refunded() ) { |
|
205 | + if (!$invoice->is_paid() && !$invoice->is_refunded()) { |
|
206 | 206 | |
207 | 207 | // Apply a discount. |
208 | 208 | aui()->input( |
@@ -210,26 +210,26 @@ discard block |
||
210 | 210 | 'type' => 'text', |
211 | 211 | 'id' => 'wpinv_discount_code', |
212 | 212 | 'name' => 'wpinv_discount_code', |
213 | - 'label' => __( 'Discount Code:', 'invoicing' ), |
|
214 | - 'placeholder' => __( 'Apply Discount', 'invoicing' ), |
|
213 | + 'label' => __('Discount Code:', 'invoicing'), |
|
214 | + 'placeholder' => __('Apply Discount', 'invoicing'), |
|
215 | 215 | 'label_type' => 'vertical', |
216 | 216 | 'class' => 'form-control-sm getpaid-recalculate-prices-on-change', |
217 | - 'value' => $invoice->get_discount_code( 'edit' ), |
|
217 | + 'value' => $invoice->get_discount_code('edit'), |
|
218 | 218 | ), |
219 | 219 | true |
220 | 220 | ); |
221 | 221 | |
222 | - } elseif ( $invoice->get_discount_code( 'edit' ) ) { |
|
222 | + } elseif ($invoice->get_discount_code('edit')) { |
|
223 | 223 | |
224 | 224 | aui()->input( |
225 | 225 | array( |
226 | 226 | 'type' => 'text', |
227 | 227 | 'id' => 'wpinv_discount_code', |
228 | 228 | 'name' => 'wpinv_discount_code', |
229 | - 'label' => __( 'Discount Code:', 'invoicing' ), |
|
229 | + 'label' => __('Discount Code:', 'invoicing'), |
|
230 | 230 | 'label_type' => 'vertical', |
231 | 231 | 'class' => 'form-control-sm', |
232 | - 'value' => $invoice->get_discount_code( 'edit' ), |
|
232 | + 'value' => $invoice->get_discount_code('edit'), |
|
233 | 233 | 'extra_attributes' => array( |
234 | 234 | 'onclick' => 'this.select();', |
235 | 235 | 'readonly' => 'true', |
@@ -240,17 +240,17 @@ discard block |
||
240 | 240 | |
241 | 241 | } |
242 | 242 | |
243 | - do_action( 'wpinv_meta_box_details_inner', $invoice->get_id() ); |
|
243 | + do_action('wpinv_meta_box_details_inner', $invoice->get_id()); |
|
244 | 244 | |
245 | 245 | // Disable taxes. |
246 | - if ( wpinv_use_taxes() && ! ( $invoice->is_paid() || $invoice->is_refunded() ) ) { |
|
246 | + if (wpinv_use_taxes() && !($invoice->is_paid() || $invoice->is_refunded())) { |
|
247 | 247 | |
248 | 248 | aui()->input( |
249 | 249 | array( |
250 | 250 | 'id' => 'wpinv_taxable', |
251 | 251 | 'name' => 'disable_taxes', |
252 | 252 | 'type' => 'checkbox', |
253 | - 'label' => __( 'Disable taxes', 'invoicing' ), |
|
253 | + 'label' => __('Disable taxes', 'invoicing'), |
|
254 | 254 | 'value' => '1', |
255 | 255 | 'checked' => (bool) $invoice->get_disable_taxes(), |
256 | 256 | 'class' => 'getpaid-recalculate-prices-on-change', |
@@ -260,7 +260,7 @@ discard block |
||
260 | 260 | |
261 | 261 | } |
262 | 262 | |
263 | - if ( $invoice->is_type( 'invoice' ) ) { |
|
263 | + if ($invoice->is_type('invoice')) { |
|
264 | 264 | |
265 | 265 | // Send to customer. |
266 | 266 | aui()->input( |
@@ -268,16 +268,16 @@ discard block |
||
268 | 268 | 'id' => 'wpinv_send_to_customer', |
269 | 269 | 'name' => 'send_to_customer', |
270 | 270 | 'type' => 'checkbox', |
271 | - 'label' => __( 'Send invoice to customer after saving', 'invoicing' ), |
|
271 | + 'label' => __('Send invoice to customer after saving', 'invoicing'), |
|
272 | 272 | 'value' => '1', |
273 | - 'checked' => $invoice->is_draft() && (bool) wpinv_get_option( 'email_user_invoice_active', true ), |
|
273 | + 'checked' => $invoice->is_draft() && (bool) wpinv_get_option('email_user_invoice_active', true), |
|
274 | 274 | ), |
275 | 275 | true |
276 | 276 | ); |
277 | 277 | |
278 | 278 | } |
279 | 279 | |
280 | - do_action( 'getpaid_metabox_after_invoice_details', $invoice ); |
|
280 | + do_action('getpaid_metabox_after_invoice_details', $invoice); |
|
281 | 281 | |
282 | 282 | ?> |
283 | 283 |
@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | */ |
7 | 7 | |
8 | 8 | if ( ! defined( 'ABSPATH' ) ) { |
9 | - exit; // Exit if accessed directly |
|
9 | + exit; // Exit if accessed directly |
|
10 | 10 | } |
11 | 11 | |
12 | 12 | /** |
@@ -15,10 +15,10 @@ discard block |
||
15 | 15 | class GetPaid_Meta_Box_Resend_Invoice { |
16 | 16 | |
17 | 17 | /** |
18 | - * Output the metabox. |
|
19 | - * |
|
20 | - * @param WP_Post $post |
|
21 | - */ |
|
18 | + * Output the metabox. |
|
19 | + * |
|
20 | + * @param WP_Post $post |
|
21 | + */ |
|
22 | 22 | public static function output( $post ) { |
23 | 23 | |
24 | 24 | // Fetch the invoice. |
@@ -5,7 +5,7 @@ discard block |
||
5 | 5 | * |
6 | 6 | */ |
7 | 7 | |
8 | -if ( ! defined( 'ABSPATH' ) ) { |
|
8 | +if (!defined('ABSPATH')) { |
|
9 | 9 | exit; // Exit if accessed directly |
10 | 10 | } |
11 | 11 | |
@@ -19,12 +19,12 @@ discard block |
||
19 | 19 | * |
20 | 20 | * @param WP_Post $post |
21 | 21 | */ |
22 | - public static function output( $post ) { |
|
22 | + public static function output($post) { |
|
23 | 23 | |
24 | 24 | // Fetch the invoice. |
25 | - $invoice = new WPInv_Invoice( $post ); |
|
25 | + $invoice = new WPInv_Invoice($post); |
|
26 | 26 | |
27 | - do_action( 'wpinv_metabox_resend_invoice_before', $invoice ); |
|
27 | + do_action('wpinv_metabox_resend_invoice_before', $invoice); |
|
28 | 28 | |
29 | 29 | $invoice_actions = array( |
30 | 30 | 'resend-email' => array( |
@@ -38,11 +38,11 @@ discard block |
||
38 | 38 | 'getpaid-nonce', |
39 | 39 | 'getpaid-nonce' |
40 | 40 | ), |
41 | - 'label' => __( 'Resend Invoice', 'invoicing' ), |
|
41 | + 'label' => __('Resend Invoice', 'invoicing'), |
|
42 | 42 | ), |
43 | 43 | ); |
44 | 44 | |
45 | - if ( $invoice->needs_payment() ) { |
|
45 | + if ($invoice->needs_payment()) { |
|
46 | 46 | |
47 | 47 | $invoice_actions['send-reminder'] = array( |
48 | 48 | 'url' => wp_nonce_url( |
@@ -55,29 +55,29 @@ discard block |
||
55 | 55 | 'getpaid-nonce', |
56 | 56 | 'getpaid-nonce' |
57 | 57 | ), |
58 | - 'label' => __( 'Send Reminder', 'invoicing' ), |
|
58 | + 'label' => __('Send Reminder', 'invoicing'), |
|
59 | 59 | ); |
60 | 60 | |
61 | 61 | } |
62 | 62 | |
63 | - $invoice_actions = apply_filters( 'getpaid_edit_invoice_actions', $invoice_actions, $invoice ); |
|
63 | + $invoice_actions = apply_filters('getpaid_edit_invoice_actions', $invoice_actions, $invoice); |
|
64 | 64 | |
65 | - foreach ( $invoice_actions as $key => $action ) { |
|
65 | + foreach ($invoice_actions as $key => $action) { |
|
66 | 66 | |
67 | - if ( 'resend-email' === $key ) { |
|
68 | - echo wp_kses_post( wpautop( __( "This will send a copy of the invoice to the customer's email address.", 'invoicing' ) ) ); |
|
67 | + if ('resend-email' === $key) { |
|
68 | + echo wp_kses_post(wpautop(__("This will send a copy of the invoice to the customer's email address.", 'invoicing'))); |
|
69 | 69 | } |
70 | 70 | |
71 | 71 | printf( |
72 | 72 | '<p class="wpi-meta-row wpi-%s"><a href="%s" class="button button-secondary">%s</a>', |
73 | - esc_attr( $key ), |
|
74 | - esc_url( $action['url'] ), |
|
75 | - esc_html( $action['label'] ) |
|
73 | + esc_attr($key), |
|
74 | + esc_url($action['url']), |
|
75 | + esc_html($action['label']) |
|
76 | 76 | ); |
77 | 77 | |
78 | 78 | } |
79 | 79 | |
80 | - do_action( 'wpinv_metabox_resend_invoice_after', $invoice ); |
|
80 | + do_action('wpinv_metabox_resend_invoice_after', $invoice); |
|
81 | 81 | |
82 | 82 | } |
83 | 83 |
@@ -7,26 +7,26 @@ |
||
7 | 7 | * @version 1.0.19 |
8 | 8 | */ |
9 | 9 | |
10 | -defined( 'ABSPATH' ) || exit; |
|
10 | +defined('ABSPATH') || exit; |
|
11 | 11 | |
12 | 12 | ?> |
13 | 13 | |
14 | - <?php do_action( 'getpaid_before_invoice_details_main', $invoice ); ?> |
|
14 | + <?php do_action('getpaid_before_invoice_details_main', $invoice); ?> |
|
15 | 15 | |
16 | 16 | <div class="getpaid-invoice-details mt-3 mb-3"> |
17 | 17 | <div class="row"> |
18 | 18 | |
19 | 19 | <div class="col-12 col-sm-6"> |
20 | - <?php do_action( 'getpaid_invoice_details_left', $invoice ); ?> |
|
20 | + <?php do_action('getpaid_invoice_details_left', $invoice); ?> |
|
21 | 21 | </div> |
22 | 22 | |
23 | 23 | <div class="col-12 col-sm-6"> |
24 | - <?php do_action( 'getpaid_invoice_details_right', $invoice ); ?> |
|
24 | + <?php do_action('getpaid_invoice_details_right', $invoice); ?> |
|
25 | 25 | </div> |
26 | 26 | |
27 | 27 | </div> |
28 | 28 | </div> |
29 | 29 | |
30 | - <?php do_action( 'getpaid_after_invoice_details_main', $invoice ); ?> |
|
30 | + <?php do_action('getpaid_after_invoice_details_main', $invoice); ?> |
|
31 | 31 | |
32 | 32 | <?php |
@@ -1,4 +1,4 @@ discard block |
||
1 | -<?php |
|
1 | + <?php |
|
2 | 2 | /** |
3 | 3 | * Displays the invoice details. |
4 | 4 | * |
@@ -7,10 +7,10 @@ discard block |
||
7 | 7 | * @version 1.0.19 |
8 | 8 | */ |
9 | 9 | |
10 | -defined( 'ABSPATH' ) || exit; |
|
11 | - |
|
12 | -?> |
|
10 | + defined( 'ABSPATH' ) || exit; |
|
13 | 11 | |
12 | + ?> |
|
13 | + |
|
14 | 14 | <?php do_action( 'getpaid_before_invoice_details_main', $invoice ); ?> |
15 | 15 | |
16 | 16 | <div class="getpaid-invoice-details mt-3 mb-3"> |
@@ -28,5 +28,5 @@ discard block |
||
28 | 28 | </div> |
29 | 29 | |
30 | 30 | <?php do_action( 'getpaid_after_invoice_details_main', $invoice ); ?> |
31 | - |
|
32 | -<?php |
|
31 | + |
|
32 | + <?php |
@@ -45,17 +45,17 @@ |
||
45 | 45 | parent::__construct( $options ); |
46 | 46 | } |
47 | 47 | |
48 | - /** |
|
49 | - * The Super block output function. |
|
50 | - * |
|
51 | - * @param array $args |
|
52 | - * @param array $widget_args |
|
53 | - * @param string $content |
|
54 | - * |
|
55 | - * @return mixed|string|bool |
|
56 | - */ |
|
48 | + /** |
|
49 | + * The Super block output function. |
|
50 | + * |
|
51 | + * @param array $args |
|
52 | + * @param array $widget_args |
|
53 | + * @param string $content |
|
54 | + * |
|
55 | + * @return mixed|string|bool |
|
56 | + */ |
|
57 | 57 | public function output( $args = array(), $widget_args = array(), $content = '' ) { |
58 | - return wpinv_checkout_form(); |
|
58 | + return wpinv_checkout_form(); |
|
59 | 59 | } |
60 | 60 | |
61 | 61 | } |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
2 | +if (!defined('ABSPATH')) { |
|
3 | 3 | exit; |
4 | 4 | } |
5 | 5 | |
@@ -22,15 +22,15 @@ discard block |
||
22 | 22 | 'block-keywords' => "['invoicing','checkout']", |
23 | 23 | 'class_name' => __CLASS__, |
24 | 24 | 'base_id' => 'wpinv_checkout', |
25 | - 'name' => __( 'GetPaid > Checkout', 'invoicing' ), |
|
25 | + 'name' => __('GetPaid > Checkout', 'invoicing'), |
|
26 | 26 | 'widget_ops' => array( |
27 | 27 | 'classname' => 'getpaid-checkout bsui', |
28 | - 'description' => esc_html__( 'Displays a checkout form.', 'invoicing' ), |
|
28 | + 'description' => esc_html__('Displays a checkout form.', 'invoicing'), |
|
29 | 29 | ), |
30 | 30 | 'arguments' => array( |
31 | 31 | 'title' => array( |
32 | - 'title' => __( 'Widget title', 'invoicing' ), |
|
33 | - 'desc' => __( 'Enter widget title.', 'invoicing' ), |
|
32 | + 'title' => __('Widget title', 'invoicing'), |
|
33 | + 'desc' => __('Enter widget title.', 'invoicing'), |
|
34 | 34 | 'type' => 'text', |
35 | 35 | 'desc_tip' => true, |
36 | 36 | 'default' => '', |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | |
41 | 41 | ); |
42 | 42 | |
43 | - parent::__construct( $options ); |
|
43 | + parent::__construct($options); |
|
44 | 44 | } |
45 | 45 | |
46 | 46 | /** |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | * |
53 | 53 | * @return mixed|string|bool |
54 | 54 | */ |
55 | - public function output( $args = array(), $widget_args = array(), $content = '' ) { |
|
55 | + public function output($args = array(), $widget_args = array(), $content = '') { |
|
56 | 56 | return wpinv_checkout_form(); |
57 | 57 | } |
58 | 58 |