@@ -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,186 +11,186 @@ |
||
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 | - ); |
|
39 | - |
|
40 | - /** |
|
41 | - * Contains the name of the current data store's class name. |
|
42 | - * |
|
43 | - * @var string |
|
44 | - */ |
|
45 | - private $current_class_name = ''; |
|
46 | - |
|
47 | - /** |
|
48 | - * The object type this store works with. |
|
49 | - * |
|
50 | - * @var string |
|
51 | - */ |
|
52 | - private $object_type = ''; |
|
53 | - |
|
54 | - /** |
|
55 | - * Tells GetPaid_Data_Store which object |
|
56 | - * store we want to work with. |
|
57 | - * |
|
58 | - * @param string $object_type Name of object. |
|
59 | - */ |
|
60 | - public function __construct( $object_type ) { |
|
61 | - $this->object_type = $object_type; |
|
62 | - $this->stores = apply_filters( 'getpaid_data_stores', $this->stores ); |
|
63 | - |
|
64 | - // If this object type can't be found, check to see if we can load one |
|
65 | - // level up (so if item-type isn't found, we try item). |
|
66 | - if ( ! array_key_exists( $object_type, $this->stores ) ) { |
|
67 | - $pieces = explode( '-', $object_type ); |
|
68 | - $object_type = $pieces[0]; |
|
69 | - } |
|
70 | - |
|
71 | - if ( array_key_exists( $object_type, $this->stores ) ) { |
|
72 | - $store = apply_filters( 'getpaid_' . $object_type . '_data_store', $this->stores[ $object_type ] ); |
|
73 | - if ( is_object( $store ) ) { |
|
74 | - $this->current_class_name = get_class( $store ); |
|
75 | - $this->instance = $store; |
|
76 | - } else { |
|
77 | - if ( ! class_exists( $store ) ) { |
|
78 | - throw new Exception( __( 'Data store class does not exist.', 'invoicing' ) ); |
|
79 | - } |
|
80 | - $this->current_class_name = $store; |
|
81 | - $this->instance = new $store(); |
|
82 | - } |
|
83 | - } else { |
|
84 | - throw new Exception( __( 'Invalid data store.', 'invoicing' ) ); |
|
85 | - } |
|
86 | - } |
|
87 | - |
|
88 | - /** |
|
89 | - * Only store the object type to avoid serializing the data store instance. |
|
90 | - * |
|
91 | - * @return array |
|
92 | - */ |
|
93 | - public function __sleep() { |
|
94 | - return array( 'object_type' ); |
|
95 | - } |
|
96 | - |
|
97 | - /** |
|
98 | - * Re-run the constructor with the object type. |
|
99 | - * |
|
100 | - * @throws Exception When validation fails. |
|
101 | - */ |
|
102 | - public function __wakeup() { |
|
103 | - $this->__construct( $this->object_type ); |
|
104 | - } |
|
105 | - |
|
106 | - /** |
|
107 | - * Loads a data store. |
|
108 | - * |
|
109 | - * @param string $object_type Name of object. |
|
110 | - * |
|
111 | - * @since 1.0.19 |
|
112 | - * @throws Exception When validation fails. |
|
113 | - * @return GetPaid_Data_Store |
|
114 | - */ |
|
115 | - public static function load( $object_type ) { |
|
116 | - return new GetPaid_Data_Store( $object_type ); |
|
117 | - } |
|
118 | - |
|
119 | - /** |
|
120 | - * Returns the class name of the current data store. |
|
121 | - * |
|
122 | - * @since 1.0.19 |
|
123 | - * @return string |
|
124 | - */ |
|
125 | - public function get_current_class_name() { |
|
126 | - return $this->current_class_name; |
|
127 | - } |
|
128 | - |
|
129 | - /** |
|
130 | - * Returns the object type of the current data store. |
|
131 | - * |
|
132 | - * @since 1.0.19 |
|
133 | - * @return string |
|
134 | - */ |
|
135 | - public function get_object_type() { |
|
136 | - return $this->object_type; |
|
137 | - } |
|
138 | - |
|
139 | - /** |
|
140 | - * Reads an object from the data store. |
|
141 | - * |
|
142 | - * @since 1.0.19 |
|
143 | - * @param GetPaid_Data $data GetPaid data instance. |
|
144 | - */ |
|
145 | - public function read( &$data ) { |
|
146 | - $this->instance->read( $data ); |
|
147 | - } |
|
148 | - |
|
149 | - /** |
|
150 | - * Create an object in the data store. |
|
151 | - * |
|
152 | - * @since 1.0.19 |
|
153 | - * @param GetPaid_Data $data GetPaid data instance. |
|
154 | - */ |
|
155 | - public function create( &$data ) { |
|
156 | - $this->instance->create( $data ); |
|
157 | - } |
|
158 | - |
|
159 | - /** |
|
160 | - * Update an object in the data store. |
|
161 | - * |
|
162 | - * @since 1.0.19 |
|
163 | - * @param GetPaid_Data $data GetPaid data instance. |
|
164 | - */ |
|
165 | - public function update( &$data ) { |
|
166 | - $this->instance->update( $data ); |
|
167 | - } |
|
168 | - |
|
169 | - /** |
|
170 | - * Delete an object from the data store. |
|
171 | - * |
|
172 | - * @since 1.0.19 |
|
173 | - * @param GetPaid_Data $data GetPaid data instance. |
|
174 | - * @param array $args Array of args to pass to the delete method. |
|
175 | - */ |
|
176 | - public function delete( &$data, $args = array() ) { |
|
177 | - $this->instance->delete( $data, $args ); |
|
178 | - } |
|
179 | - |
|
180 | - /** |
|
181 | - * Data stores can define additional function. This passes |
|
182 | - * through to the instance if that function exists. |
|
183 | - * |
|
184 | - * @since 1.0.19 |
|
185 | - * @param string $method Method. |
|
186 | - * @return mixed |
|
187 | - */ |
|
188 | - public function __call( $method, $parameters ) { |
|
189 | - if ( is_callable( array( $this->instance, $method ) ) ) { |
|
190 | - $object = array_shift( $parameters ); |
|
191 | - $parameters = array_merge( array( &$object ), $parameters ); |
|
192 | - return call_user_func_array( array( $this->instance, $method ), $parameters ); |
|
193 | - } |
|
194 | - } |
|
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 | + ); |
|
39 | + |
|
40 | + /** |
|
41 | + * Contains the name of the current data store's class name. |
|
42 | + * |
|
43 | + * @var string |
|
44 | + */ |
|
45 | + private $current_class_name = ''; |
|
46 | + |
|
47 | + /** |
|
48 | + * The object type this store works with. |
|
49 | + * |
|
50 | + * @var string |
|
51 | + */ |
|
52 | + private $object_type = ''; |
|
53 | + |
|
54 | + /** |
|
55 | + * Tells GetPaid_Data_Store which object |
|
56 | + * store we want to work with. |
|
57 | + * |
|
58 | + * @param string $object_type Name of object. |
|
59 | + */ |
|
60 | + public function __construct( $object_type ) { |
|
61 | + $this->object_type = $object_type; |
|
62 | + $this->stores = apply_filters( 'getpaid_data_stores', $this->stores ); |
|
63 | + |
|
64 | + // If this object type can't be found, check to see if we can load one |
|
65 | + // level up (so if item-type isn't found, we try item). |
|
66 | + if ( ! array_key_exists( $object_type, $this->stores ) ) { |
|
67 | + $pieces = explode( '-', $object_type ); |
|
68 | + $object_type = $pieces[0]; |
|
69 | + } |
|
70 | + |
|
71 | + if ( array_key_exists( $object_type, $this->stores ) ) { |
|
72 | + $store = apply_filters( 'getpaid_' . $object_type . '_data_store', $this->stores[ $object_type ] ); |
|
73 | + if ( is_object( $store ) ) { |
|
74 | + $this->current_class_name = get_class( $store ); |
|
75 | + $this->instance = $store; |
|
76 | + } else { |
|
77 | + if ( ! class_exists( $store ) ) { |
|
78 | + throw new Exception( __( 'Data store class does not exist.', 'invoicing' ) ); |
|
79 | + } |
|
80 | + $this->current_class_name = $store; |
|
81 | + $this->instance = new $store(); |
|
82 | + } |
|
83 | + } else { |
|
84 | + throw new Exception( __( 'Invalid data store.', 'invoicing' ) ); |
|
85 | + } |
|
86 | + } |
|
87 | + |
|
88 | + /** |
|
89 | + * Only store the object type to avoid serializing the data store instance. |
|
90 | + * |
|
91 | + * @return array |
|
92 | + */ |
|
93 | + public function __sleep() { |
|
94 | + return array( 'object_type' ); |
|
95 | + } |
|
96 | + |
|
97 | + /** |
|
98 | + * Re-run the constructor with the object type. |
|
99 | + * |
|
100 | + * @throws Exception When validation fails. |
|
101 | + */ |
|
102 | + public function __wakeup() { |
|
103 | + $this->__construct( $this->object_type ); |
|
104 | + } |
|
105 | + |
|
106 | + /** |
|
107 | + * Loads a data store. |
|
108 | + * |
|
109 | + * @param string $object_type Name of object. |
|
110 | + * |
|
111 | + * @since 1.0.19 |
|
112 | + * @throws Exception When validation fails. |
|
113 | + * @return GetPaid_Data_Store |
|
114 | + */ |
|
115 | + public static function load( $object_type ) { |
|
116 | + return new GetPaid_Data_Store( $object_type ); |
|
117 | + } |
|
118 | + |
|
119 | + /** |
|
120 | + * Returns the class name of the current data store. |
|
121 | + * |
|
122 | + * @since 1.0.19 |
|
123 | + * @return string |
|
124 | + */ |
|
125 | + public function get_current_class_name() { |
|
126 | + return $this->current_class_name; |
|
127 | + } |
|
128 | + |
|
129 | + /** |
|
130 | + * Returns the object type of the current data store. |
|
131 | + * |
|
132 | + * @since 1.0.19 |
|
133 | + * @return string |
|
134 | + */ |
|
135 | + public function get_object_type() { |
|
136 | + return $this->object_type; |
|
137 | + } |
|
138 | + |
|
139 | + /** |
|
140 | + * Reads an object from the data store. |
|
141 | + * |
|
142 | + * @since 1.0.19 |
|
143 | + * @param GetPaid_Data $data GetPaid data instance. |
|
144 | + */ |
|
145 | + public function read( &$data ) { |
|
146 | + $this->instance->read( $data ); |
|
147 | + } |
|
148 | + |
|
149 | + /** |
|
150 | + * Create an object in the data store. |
|
151 | + * |
|
152 | + * @since 1.0.19 |
|
153 | + * @param GetPaid_Data $data GetPaid data instance. |
|
154 | + */ |
|
155 | + public function create( &$data ) { |
|
156 | + $this->instance->create( $data ); |
|
157 | + } |
|
158 | + |
|
159 | + /** |
|
160 | + * Update an object in the data store. |
|
161 | + * |
|
162 | + * @since 1.0.19 |
|
163 | + * @param GetPaid_Data $data GetPaid data instance. |
|
164 | + */ |
|
165 | + public function update( &$data ) { |
|
166 | + $this->instance->update( $data ); |
|
167 | + } |
|
168 | + |
|
169 | + /** |
|
170 | + * Delete an object from the data store. |
|
171 | + * |
|
172 | + * @since 1.0.19 |
|
173 | + * @param GetPaid_Data $data GetPaid data instance. |
|
174 | + * @param array $args Array of args to pass to the delete method. |
|
175 | + */ |
|
176 | + public function delete( &$data, $args = array() ) { |
|
177 | + $this->instance->delete( $data, $args ); |
|
178 | + } |
|
179 | + |
|
180 | + /** |
|
181 | + * Data stores can define additional function. This passes |
|
182 | + * through to the instance if that function exists. |
|
183 | + * |
|
184 | + * @since 1.0.19 |
|
185 | + * @param string $method Method. |
|
186 | + * @return mixed |
|
187 | + */ |
|
188 | + public function __call( $method, $parameters ) { |
|
189 | + if ( is_callable( array( $this->instance, $method ) ) ) { |
|
190 | + $object = array_shift( $parameters ); |
|
191 | + $parameters = array_merge( array( &$object ), $parameters ); |
|
192 | + return call_user_func_array( array( $this->instance, $method ), $parameters ); |
|
193 | + } |
|
194 | + } |
|
195 | 195 | |
196 | 196 | } |
@@ -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 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 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"> |
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 | ?> |
@@ -46,11 +46,11 @@ discard block |
||
46 | 46 | |
47 | 47 | <div class="bsui" style="margin-top: 1.5rem"> |
48 | 48 | |
49 | - <?php do_action( 'getpaid_invoice_edit_before_viewed_by_customer', $invoice ); ?> |
|
50 | - <?php if ( ! $invoice->is_draft() ) : ?> |
|
49 | + <?php do_action('getpaid_invoice_edit_before_viewed_by_customer', $invoice); ?> |
|
50 | + <?php if (!$invoice->is_draft()) : ?> |
|
51 | 51 | <div class="form-group"> |
52 | - <strong><?php esc_html_e( 'Viewed by Customer:', 'invoicing' );?></strong> |
|
53 | - <?php ( $invoice->get_is_viewed() ) ? esc_html_e( 'Yes', 'invoicing' ) : esc_html_e( 'No', 'invoicing' ); ?> |
|
52 | + <strong><?php esc_html_e('Viewed by Customer:', 'invoicing'); ?></strong> |
|
53 | + <?php ($invoice->get_is_viewed()) ? esc_html_e('Yes', 'invoicing') : esc_html_e('No', 'invoicing'); ?> |
|
54 | 54 | </div> |
55 | 55 | <?php endif; ?> |
56 | 56 | |
@@ -58,13 +58,13 @@ discard block |
||
58 | 58 | |
59 | 59 | // Date created. |
60 | 60 | $label = sprintf( |
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( |
|
66 | - __( 'The date this %s was created.', 'invoicing' ), |
|
67 | - strtolower( $invoice->get_invoice_quote_type() ) |
|
65 | + $info = sprintf( |
|
66 | + __('The date this %s was created.', 'invoicing'), |
|
67 | + strtolower($invoice->get_invoice_quote_type()) |
|
68 | 68 | ); |
69 | 69 | |
70 | 70 | aui()->input( |
@@ -72,11 +72,11 @@ discard block |
||
72 | 72 | 'type' => 'datepicker', |
73 | 73 | 'id' => 'wpinv_date_created', |
74 | 74 | 'name' => 'date_created', |
75 | - 'label' => $label . getpaid_get_help_tip( $info ), |
|
75 | + 'label' => $label . getpaid_get_help_tip($info), |
|
76 | 76 | 'label_type' => 'vertical', |
77 | 77 | 'placeholder' => 'YYYY-MM-DD 00:00', |
78 | 78 | 'class' => 'form-control-sm', |
79 | - 'value' => $invoice->get_date_created( 'edit' ), |
|
79 | + 'value' => $invoice->get_date_created('edit'), |
|
80 | 80 | 'extra_attributes' => array( |
81 | 81 | 'data-enable-time' => 'true', |
82 | 82 | 'data-time_24hr' => 'true', |
@@ -88,15 +88,15 @@ discard block |
||
88 | 88 | ); |
89 | 89 | |
90 | 90 | // Date paid. |
91 | - $date_paid = $invoice->get_date_completed( 'edit' ); |
|
92 | - if ( ! empty( $date_paid ) && $invoice->is_paid() ) { |
|
91 | + $date_paid = $invoice->get_date_completed('edit'); |
|
92 | + if (!empty($date_paid) && $invoice->is_paid()) { |
|
93 | 93 | |
94 | 94 | aui()->input( |
95 | 95 | array( |
96 | 96 | 'type' => 'text', |
97 | 97 | 'id' => 'wpinv_date_completed', |
98 | 98 | 'name' => 'wpinv_date_completed', |
99 | - 'label' => __( 'Date Completed:', 'invoicing' ), |
|
99 | + 'label' => __('Date Completed:', 'invoicing'), |
|
100 | 100 | 'label_type' => 'vertical', |
101 | 101 | 'class' => 'form-control-sm', |
102 | 102 | 'value' => $date_paid, |
@@ -107,18 +107,18 @@ discard block |
||
107 | 107 | } |
108 | 108 | |
109 | 109 | // Due date. |
110 | - if ( $invoice->is_type( 'invoice' ) && wpinv_get_option( 'overdue_active' ) && ( ! $invoice->is_paid() || $invoice->is_draft() ) ) { |
|
110 | + if ($invoice->is_type('invoice') && wpinv_get_option('overdue_active') && (!$invoice->is_paid() || $invoice->is_draft())) { |
|
111 | 111 | |
112 | 112 | aui()->input( |
113 | 113 | array( |
114 | 114 | 'type' => 'datepicker', |
115 | 115 | 'id' => 'wpinv_due_date', |
116 | 116 | 'name' => 'wpinv_due_date', |
117 | - 'label' => __( 'Due Date:', 'invoicing' ) . getpaid_get_help_tip( __( 'Leave blank to disable automated reminder emails for this invoice.', 'invoicing' ) ), |
|
117 | + 'label' => __('Due Date:', 'invoicing') . getpaid_get_help_tip(__('Leave blank to disable automated reminder emails for this invoice.', 'invoicing')), |
|
118 | 118 | 'label_type' => 'vertical', |
119 | - 'placeholder' => __( 'No due date', 'invoicing' ), |
|
119 | + 'placeholder' => __('No due date', 'invoicing'), |
|
120 | 120 | 'class' => 'form-control-sm', |
121 | - 'value' => $invoice->get_due_date( 'edit' ), |
|
121 | + 'value' => $invoice->get_due_date('edit'), |
|
122 | 122 | 'extra_attributes' => array( |
123 | 123 | 'data-enable-time' => 'true', |
124 | 124 | 'data-time_24hr' => 'true', |
@@ -131,40 +131,40 @@ discard block |
||
131 | 131 | |
132 | 132 | } |
133 | 133 | |
134 | - do_action( 'wpinv_meta_box_details_after_due_date', $invoice->get_id() ); |
|
135 | - do_action( 'getpaid_metabox_after_due_date', $invoice ); |
|
134 | + do_action('wpinv_meta_box_details_after_due_date', $invoice->get_id()); |
|
135 | + do_action('getpaid_metabox_after_due_date', $invoice); |
|
136 | 136 | |
137 | 137 | // Status. |
138 | 138 | $label = sprintf( |
139 | - __( '%s Status:', 'invoicing' ), |
|
140 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
139 | + __('%s Status:', 'invoicing'), |
|
140 | + ucfirst($invoice->get_invoice_quote_type()) |
|
141 | 141 | ); |
142 | 142 | |
143 | - $status = $invoice->get_status( 'edit' ); |
|
143 | + $status = $invoice->get_status('edit'); |
|
144 | 144 | aui()->select( |
145 | 145 | array( |
146 | 146 | 'id' => 'wpinv_status', |
147 | 147 | 'name' => 'wpinv_status', |
148 | 148 | 'label' => $label, |
149 | 149 | 'label_type' => 'vertical', |
150 | - 'placeholder' => __( 'Select Status', 'invoicing' ), |
|
151 | - 'value' => array_key_exists( $status, $invoice->get_all_statuses() ) ? $status : $invoice->get_default_status(), |
|
150 | + 'placeholder' => __('Select Status', 'invoicing'), |
|
151 | + 'value' => array_key_exists($status, $invoice->get_all_statuses()) ? $status : $invoice->get_default_status(), |
|
152 | 152 | 'select2' => true, |
153 | 153 | 'data-allow-clear' => 'false', |
154 | - 'options' => wpinv_get_invoice_statuses( true, false, $invoice ) |
|
154 | + 'options' => wpinv_get_invoice_statuses(true, false, $invoice) |
|
155 | 155 | ), |
156 | 156 | true |
157 | 157 | ); |
158 | 158 | |
159 | 159 | // Invoice number. |
160 | 160 | $label = sprintf( |
161 | - __( '%s Number:', 'invoicing' ), |
|
162 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
161 | + __('%s Number:', 'invoicing'), |
|
162 | + ucfirst($invoice->get_invoice_quote_type()) |
|
163 | 163 | ); |
164 | 164 | |
165 | - $info = sprintf( |
|
166 | - __( 'Each %s number must be unique.', 'invoicing' ), |
|
167 | - strtolower( $invoice->get_invoice_quote_type() ) |
|
165 | + $info = sprintf( |
|
166 | + __('Each %s number must be unique.', 'invoicing'), |
|
167 | + strtolower($invoice->get_invoice_quote_type()) |
|
168 | 168 | ); |
169 | 169 | |
170 | 170 | aui()->input( |
@@ -172,11 +172,11 @@ discard block |
||
172 | 172 | 'type' => 'text', |
173 | 173 | 'id' => 'wpinv_number', |
174 | 174 | 'name' => 'wpinv_number', |
175 | - 'label' => $label . getpaid_get_help_tip( $info ), |
|
175 | + 'label' => $label . getpaid_get_help_tip($info), |
|
176 | 176 | 'label_type' => 'vertical', |
177 | - 'placeholder' => __( 'Autogenerate', 'invoicing' ), |
|
177 | + 'placeholder' => __('Autogenerate', 'invoicing'), |
|
178 | 178 | 'class' => 'form-control-sm', |
179 | - 'value' => $invoice->get_number( 'edit' ), |
|
179 | + 'value' => $invoice->get_number('edit'), |
|
180 | 180 | ), |
181 | 181 | true |
182 | 182 | ); |
@@ -187,16 +187,16 @@ discard block |
||
187 | 187 | 'type' => 'text', |
188 | 188 | 'id' => 'wpinv_cc', |
189 | 189 | 'name' => 'wpinv_cc', |
190 | - 'label' => __( 'Email CC:', 'invoicing' ) . getpaid_get_help_tip( __( 'Enter a comma separated list of other emails that should be notified about the invoice.', 'invoicing' ) ), |
|
190 | + 'label' => __('Email CC:', 'invoicing') . getpaid_get_help_tip(__('Enter a comma separated list of other emails that should be notified about the invoice.', 'invoicing')), |
|
191 | 191 | 'label_type' => 'vertical', |
192 | - 'placeholder' => __( '[email protected], [email protected]', 'invoicing' ), |
|
192 | + 'placeholder' => __('[email protected], [email protected]', 'invoicing'), |
|
193 | 193 | 'class' => 'form-control-sm', |
194 | - 'value' => $invoice->get_email_cc( 'edit' ), |
|
194 | + 'value' => $invoice->get_email_cc('edit'), |
|
195 | 195 | ), |
196 | 196 | true |
197 | 197 | ); |
198 | 198 | |
199 | - if ( ! $invoice->is_paid() && ! $invoice->is_refunded() ) { |
|
199 | + if (!$invoice->is_paid() && !$invoice->is_refunded()) { |
|
200 | 200 | |
201 | 201 | // Apply a discount. |
202 | 202 | aui()->input( |
@@ -204,26 +204,26 @@ discard block |
||
204 | 204 | 'type' => 'text', |
205 | 205 | 'id' => 'wpinv_discount_code', |
206 | 206 | 'name' => 'wpinv_discount_code', |
207 | - 'label' => __( 'Discount Code:', 'invoicing' ), |
|
208 | - 'placeholder' => __( 'Apply Discount', 'invoicing' ), |
|
207 | + 'label' => __('Discount Code:', 'invoicing'), |
|
208 | + 'placeholder' => __('Apply Discount', 'invoicing'), |
|
209 | 209 | 'label_type' => 'vertical', |
210 | 210 | 'class' => 'form-control-sm getpaid-recalculate-prices-on-change', |
211 | - 'value' => $invoice->get_discount_code( 'edit' ), |
|
211 | + 'value' => $invoice->get_discount_code('edit'), |
|
212 | 212 | ), |
213 | 213 | true |
214 | 214 | ); |
215 | 215 | |
216 | - } else if ( $invoice->get_discount_code( 'edit' ) ) { |
|
216 | + } else if ($invoice->get_discount_code('edit')) { |
|
217 | 217 | |
218 | 218 | aui()->input( |
219 | 219 | array( |
220 | 220 | 'type' => 'text', |
221 | 221 | 'id' => 'wpinv_discount_code', |
222 | 222 | 'name' => 'wpinv_discount_code', |
223 | - 'label' => __( 'Discount Code:', 'invoicing' ), |
|
223 | + 'label' => __('Discount Code:', 'invoicing'), |
|
224 | 224 | 'label_type' => 'vertical', |
225 | 225 | 'class' => 'form-control-sm', |
226 | - 'value' => $invoice->get_discount_code( 'edit' ), |
|
226 | + 'value' => $invoice->get_discount_code('edit'), |
|
227 | 227 | 'extra_attributes' => array( |
228 | 228 | 'onclick' => 'this.select();', |
229 | 229 | 'readonly' => 'true', |
@@ -234,17 +234,17 @@ discard block |
||
234 | 234 | |
235 | 235 | } |
236 | 236 | |
237 | - do_action( 'wpinv_meta_box_details_inner', $invoice->get_id() ); |
|
237 | + do_action('wpinv_meta_box_details_inner', $invoice->get_id()); |
|
238 | 238 | |
239 | 239 | // Disable taxes. |
240 | - if ( wpinv_use_taxes() && ! ( $invoice->is_paid() || $invoice->is_refunded() ) ) { |
|
240 | + if (wpinv_use_taxes() && !($invoice->is_paid() || $invoice->is_refunded())) { |
|
241 | 241 | |
242 | 242 | aui()->input( |
243 | 243 | array( |
244 | 244 | 'id' => 'wpinv_taxable', |
245 | 245 | 'name' => 'disable_taxes', |
246 | 246 | 'type' => 'checkbox', |
247 | - 'label' => __( 'Disable taxes', 'invoicing' ), |
|
247 | + 'label' => __('Disable taxes', 'invoicing'), |
|
248 | 248 | 'value' => '1', |
249 | 249 | 'checked' => (bool) $invoice->get_disable_taxes(), |
250 | 250 | 'class' => 'getpaid-recalculate-prices-on-change', |
@@ -254,7 +254,7 @@ discard block |
||
254 | 254 | |
255 | 255 | } |
256 | 256 | |
257 | - if ( $invoice->is_type( 'invoice' ) ) { |
|
257 | + if ($invoice->is_type('invoice')) { |
|
258 | 258 | |
259 | 259 | // Send to customer. |
260 | 260 | aui()->input( |
@@ -262,16 +262,16 @@ discard block |
||
262 | 262 | 'id' => 'wpinv_send_to_customer', |
263 | 263 | 'name' => 'send_to_customer', |
264 | 264 | 'type' => 'checkbox', |
265 | - 'label' => __( 'Send invoice to customer after saving', 'invoicing' ), |
|
265 | + 'label' => __('Send invoice to customer after saving', 'invoicing'), |
|
266 | 266 | 'value' => '1', |
267 | - 'checked' => $invoice->is_draft() && (bool) wpinv_get_option( 'email_user_invoice_active', true ), |
|
267 | + 'checked' => $invoice->is_draft() && (bool) wpinv_get_option('email_user_invoice_active', true), |
|
268 | 268 | ), |
269 | 269 | true |
270 | 270 | ); |
271 | 271 | |
272 | 272 | } |
273 | 273 | |
274 | - do_action( 'getpaid_metabox_after_invoice_details', $invoice ); |
|
274 | + do_action('getpaid_metabox_after_invoice_details', $invoice); |
|
275 | 275 | |
276 | 276 | ?> |
277 | 277 |
@@ -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 |
@@ -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 |
@@ -44,15 +44,15 @@ |
||
44 | 44 | parent::__construct( $options ); |
45 | 45 | } |
46 | 46 | |
47 | - /** |
|
48 | - * The Super block output function. |
|
49 | - * |
|
50 | - * @param array $args |
|
51 | - * @param array $widget_args |
|
52 | - * @param string $content |
|
53 | - * |
|
54 | - * @return mixed|string|bool |
|
55 | - */ |
|
47 | + /** |
|
48 | + * The Super block output function. |
|
49 | + * |
|
50 | + * @param array $args |
|
51 | + * @param array $widget_args |
|
52 | + * @param string $content |
|
53 | + * |
|
54 | + * @return mixed|string|bool |
|
55 | + */ |
|
56 | 56 | public function output( $args = array(), $widget_args = array(), $content = '' ) { |
57 | 57 | return getpaid_invoice_history(); |
58 | 58 | } |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
2 | +if (!defined('ABSPATH')) { |
|
3 | 3 | exit; |
4 | 4 | } |
5 | 5 | |
@@ -21,15 +21,15 @@ discard block |
||
21 | 21 | 'block-keywords' => "['invoicing','history']", |
22 | 22 | 'class_name' => __CLASS__, |
23 | 23 | 'base_id' => 'wpinv_history', |
24 | - 'name' => __( 'GetPaid > Invoice History', 'invoicing' ), |
|
24 | + 'name' => __('GetPaid > Invoice History', 'invoicing'), |
|
25 | 25 | 'widget_ops' => array( |
26 | 26 | 'classname' => 'wpinv-history-class bsui', |
27 | - 'description' => esc_html__( 'Displays invoice history.', 'invoicing' ), |
|
27 | + 'description' => esc_html__('Displays invoice history.', 'invoicing'), |
|
28 | 28 | ), |
29 | 29 | 'arguments' => array( |
30 | 30 | 'title' => array( |
31 | - 'title' => __( 'Widget title', 'invoicing' ), |
|
32 | - 'desc' => __( 'Enter widget title.', 'invoicing' ), |
|
31 | + 'title' => __('Widget title', 'invoicing'), |
|
32 | + 'desc' => __('Enter widget title.', 'invoicing'), |
|
33 | 33 | 'type' => 'text', |
34 | 34 | 'desc_tip' => true, |
35 | 35 | 'default' => '', |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | |
40 | 40 | ); |
41 | 41 | |
42 | - parent::__construct( $options ); |
|
42 | + parent::__construct($options); |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | /** |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | * |
52 | 52 | * @return mixed|string|bool |
53 | 53 | */ |
54 | - public function output( $args = array(), $widget_args = array(), $content = '' ) { |
|
54 | + public function output($args = array(), $widget_args = array(), $content = '') { |
|
55 | 55 | return getpaid_invoice_history(); |
56 | 56 | } |
57 | 57 |
@@ -44,15 +44,15 @@ |
||
44 | 44 | parent::__construct( $options ); |
45 | 45 | } |
46 | 46 | |
47 | - /** |
|
48 | - * The Super block output function. |
|
49 | - * |
|
50 | - * @param array $args |
|
51 | - * @param array $widget_args |
|
52 | - * @param string $content |
|
53 | - * |
|
54 | - * @return mixed|string|bool |
|
55 | - */ |
|
47 | + /** |
|
48 | + * The Super block output function. |
|
49 | + * |
|
50 | + * @param array $args |
|
51 | + * @param array $widget_args |
|
52 | + * @param string $content |
|
53 | + * |
|
54 | + * @return mixed|string|bool |
|
55 | + */ |
|
56 | 56 | public function output( $args = array(), $widget_args = array(), $content = '' ) { |
57 | 57 | return wpinv_payment_receipt(); |
58 | 58 | } |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
2 | +if (!defined('ABSPATH')) { |
|
3 | 3 | exit; |
4 | 4 | } |
5 | 5 | |
@@ -21,15 +21,15 @@ discard block |
||
21 | 21 | 'block-keywords' => "['invoicing','receipt']", |
22 | 22 | 'class_name' => __CLASS__, |
23 | 23 | 'base_id' => 'wpinv_receipt', |
24 | - 'name' => __( 'GetPaid > Invoice Receipt', 'invoicing' ), |
|
24 | + 'name' => __('GetPaid > Invoice Receipt', 'invoicing'), |
|
25 | 25 | 'widget_ops' => array( |
26 | 26 | 'classname' => 'wpinv-receipt-class bsui', |
27 | - 'description' => esc_html__( 'Displays invoice receipt after checkout.', 'invoicing' ), |
|
27 | + 'description' => esc_html__('Displays invoice receipt after checkout.', 'invoicing'), |
|
28 | 28 | ), |
29 | 29 | 'arguments' => array( |
30 | 30 | 'title' => array( |
31 | - 'title' => __( 'Widget title', 'invoicing' ), |
|
32 | - 'desc' => __( 'Enter widget title.', 'invoicing' ), |
|
31 | + 'title' => __('Widget title', 'invoicing'), |
|
32 | + 'desc' => __('Enter widget title.', 'invoicing'), |
|
33 | 33 | 'type' => 'text', |
34 | 34 | 'desc_tip' => true, |
35 | 35 | 'default' => '', |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | |
40 | 40 | ); |
41 | 41 | |
42 | - parent::__construct( $options ); |
|
42 | + parent::__construct($options); |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | /** |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | * |
52 | 52 | * @return mixed|string|bool |
53 | 53 | */ |
54 | - public function output( $args = array(), $widget_args = array(), $content = '' ) { |
|
54 | + public function output($args = array(), $widget_args = array(), $content = '') { |
|
55 | 55 | return wpinv_payment_receipt(); |
56 | 56 | } |
57 | 57 |
@@ -11,166 +11,166 @@ |
||
11 | 11 | defined( 'ABSPATH' ) || exit; |
12 | 12 | |
13 | 13 | return array( |
14 | - 'AED' => 'د.إ', |
|
15 | - 'AFN' => '؋', |
|
16 | - 'ALL' => 'L', |
|
17 | - 'AMD' => 'AMD', |
|
18 | - 'ANG' => 'ƒ', |
|
19 | - 'AOA' => 'Kz', |
|
20 | - 'ARS' => '$', |
|
21 | - 'AUD' => '$', |
|
22 | - 'AWG' => 'ƒ', |
|
23 | - 'AZN' => 'AZN', |
|
24 | - 'BAM' => 'KM', |
|
25 | - 'BBD' => '$', |
|
26 | - 'BDT' => '৳', |
|
27 | - 'BGN' => 'лв.', |
|
28 | - 'BHD' => '.د.ب', |
|
29 | - 'BIF' => 'Fr', |
|
30 | - 'BMD' => '$', |
|
31 | - 'BND' => '$', |
|
32 | - 'BOB' => 'Bs.', |
|
33 | - 'BRL' => 'R$', |
|
34 | - 'BSD' => '$', |
|
35 | - 'BTC' => '฿', |
|
36 | - 'BTN' => 'Nu.', |
|
37 | - 'BWP' => 'P', |
|
38 | - 'BYN' => 'Br', |
|
39 | - 'BZD' => '$', |
|
40 | - 'CAD' => '$', |
|
41 | - 'CDF' => 'Fr', |
|
42 | - 'CHF' => 'CHF', |
|
43 | - 'CLP' => '$', |
|
44 | - 'CNY' => '¥', |
|
45 | - 'COP' => '$', |
|
46 | - 'CRC' => '₡', |
|
47 | - 'CUC' => '$', |
|
48 | - 'CUP' => '$', |
|
49 | - 'CVE' => '$', |
|
50 | - 'CZK' => 'Kč', |
|
51 | - 'DJF' => 'Fr', |
|
52 | - 'DKK' => 'DKK', |
|
53 | - 'DOP' => 'RD$', |
|
54 | - 'DZD' => 'د.ج', |
|
55 | - 'EGP' => 'EGP', |
|
56 | - 'ERN' => 'Nfk', |
|
57 | - 'ETB' => 'Br', |
|
58 | - 'EUR' => '€', |
|
59 | - 'FJD' => '$', |
|
60 | - 'FKP' => '£', |
|
61 | - 'GBP' => '£', |
|
62 | - 'GEL' => 'ლ', |
|
63 | - 'GGP' => '£', |
|
64 | - 'GHS' => '₵', |
|
65 | - 'GIP' => '£', |
|
66 | - 'GMD' => 'D', |
|
67 | - 'GNF' => 'Fr', |
|
68 | - 'GTQ' => 'Q', |
|
69 | - 'GYD' => '$', |
|
70 | - 'HKD' => '$', |
|
71 | - 'HNL' => 'L', |
|
72 | - 'HRK' => 'Kn', |
|
73 | - 'HTG' => 'G', |
|
74 | - 'HUF' => 'Ft', |
|
75 | - 'IDR' => 'Rp', |
|
76 | - 'ILS' => '₪', |
|
77 | - 'IMP' => '£', |
|
78 | - 'INR' => '₹', |
|
79 | - 'IQD' => 'ع.د', |
|
80 | - 'IRR' => '﷼', |
|
81 | - 'IRT' => 'تومان', |
|
82 | - 'ISK' => 'kr.', |
|
83 | - 'JEP' => '£', |
|
84 | - 'JMD' => '$', |
|
85 | - 'JOD' => 'د.ا', |
|
86 | - 'JPY' => '¥', |
|
87 | - 'KES' => 'KSh', |
|
88 | - 'KGS' => 'сом', |
|
89 | - 'KHR' => '៛', |
|
90 | - 'KMF' => 'Fr', |
|
91 | - 'KPW' => '₩', |
|
92 | - 'KRW' => '₩', |
|
93 | - 'KWD' => 'د.ك', |
|
94 | - 'KYD' => '$', |
|
95 | - 'KZT' => 'KZT', |
|
96 | - 'LAK' => '₭', |
|
97 | - 'LBP' => 'ل.ل', |
|
98 | - 'LKR' => 'රු', |
|
99 | - 'LRD' => '$', |
|
100 | - 'LSL' => 'L', |
|
101 | - 'LYD' => 'ل.د', |
|
102 | - 'MAD' => 'د.م.', |
|
103 | - 'MDL' => 'MDL', |
|
104 | - 'MGA' => 'Ar', |
|
105 | - 'MKD' => 'ден', |
|
106 | - 'MMK' => 'Ks', |
|
107 | - 'MNT' => '₮', |
|
108 | - 'MOP' => 'P', |
|
109 | - 'MRO' => 'UM', |
|
110 | - 'MUR' => '₨', |
|
111 | - 'MVR' => '.ރ', |
|
112 | - 'MWK' => 'MK', |
|
113 | - 'MXN' => '$', |
|
114 | - 'MYR' => 'RM', |
|
115 | - 'MZN' => 'MT', |
|
116 | - 'NAD' => '$', |
|
117 | - 'NGN' => '₦', |
|
118 | - 'NIO' => 'C$', |
|
119 | - 'NOK' => 'kr', |
|
120 | - 'NPR' => '₨', |
|
121 | - 'NZD' => '$', |
|
122 | - 'OMR' => 'ر.ع.', |
|
123 | - 'PAB' => 'B/.', |
|
124 | - 'PEN' => 'S/.', |
|
125 | - 'PGK' => 'K', |
|
126 | - 'PHP' => '₱', |
|
127 | - 'PKR' => '₨', |
|
128 | - 'PLN' => 'zł', |
|
129 | - 'PRB' => 'р.', |
|
130 | - 'PYG' => '₲', |
|
131 | - 'QAR' => 'ر.ق', |
|
132 | - 'RMB' => '¥', |
|
133 | - 'RON' => 'lei', |
|
134 | - 'RSD' => 'дин.', |
|
135 | - 'RUB' => '₽', |
|
136 | - 'RWF' => 'Fr', |
|
137 | - 'SAR' => 'ر.س', |
|
138 | - 'SBD' => '$', |
|
139 | - 'SCR' => '₨', |
|
140 | - 'SDG' => 'ج.س.', |
|
141 | - 'SEK' => 'kr', |
|
142 | - 'SGD' => '$', |
|
143 | - 'SHP' => '£', |
|
144 | - 'SLL' => 'Le', |
|
145 | - 'SOS' => 'Sh', |
|
146 | - 'SRD' => '$', |
|
147 | - 'SSP' => '£', |
|
148 | - 'STD' => 'Db', |
|
149 | - 'SYP' => 'ل.س', |
|
150 | - 'SZL' => 'L', |
|
151 | - 'THB' => '฿', |
|
152 | - 'TJS' => 'ЅМ', |
|
153 | - 'TMT' => 'm', |
|
154 | - 'TND' => 'د.ت', |
|
155 | - 'TOP' => 'T$', |
|
156 | - 'TRY' => '₺', |
|
157 | - 'TTD' => '$', |
|
158 | - 'TWD' => 'NT$', |
|
159 | - 'TZS' => 'Sh', |
|
160 | - 'UAH' => '₴', |
|
161 | - 'UGX' => 'UGX', |
|
162 | - 'USD' => '$', |
|
163 | - 'UYU' => '$', |
|
164 | - 'UZS' => 'UZS', |
|
165 | - 'VEF' => 'Bs.', |
|
166 | - 'VND' => '₫', |
|
167 | - 'VUV' => 'Vt', |
|
168 | - 'WST' => 'T', |
|
169 | - 'XAF' => 'Fr', |
|
170 | - 'XCD' => '$', |
|
171 | - 'XOF' => 'Fr', |
|
172 | - 'XPF' => 'Fr', |
|
173 | - 'YER' => '﷼', |
|
174 | - 'ZAR' => 'R', |
|
175 | - 'ZMW' => 'ZK', |
|
14 | + 'AED' => 'د.إ', |
|
15 | + 'AFN' => '؋', |
|
16 | + 'ALL' => 'L', |
|
17 | + 'AMD' => 'AMD', |
|
18 | + 'ANG' => 'ƒ', |
|
19 | + 'AOA' => 'Kz', |
|
20 | + 'ARS' => '$', |
|
21 | + 'AUD' => '$', |
|
22 | + 'AWG' => 'ƒ', |
|
23 | + 'AZN' => 'AZN', |
|
24 | + 'BAM' => 'KM', |
|
25 | + 'BBD' => '$', |
|
26 | + 'BDT' => '৳', |
|
27 | + 'BGN' => 'лв.', |
|
28 | + 'BHD' => '.د.ب', |
|
29 | + 'BIF' => 'Fr', |
|
30 | + 'BMD' => '$', |
|
31 | + 'BND' => '$', |
|
32 | + 'BOB' => 'Bs.', |
|
33 | + 'BRL' => 'R$', |
|
34 | + 'BSD' => '$', |
|
35 | + 'BTC' => '฿', |
|
36 | + 'BTN' => 'Nu.', |
|
37 | + 'BWP' => 'P', |
|
38 | + 'BYN' => 'Br', |
|
39 | + 'BZD' => '$', |
|
40 | + 'CAD' => '$', |
|
41 | + 'CDF' => 'Fr', |
|
42 | + 'CHF' => 'CHF', |
|
43 | + 'CLP' => '$', |
|
44 | + 'CNY' => '¥', |
|
45 | + 'COP' => '$', |
|
46 | + 'CRC' => '₡', |
|
47 | + 'CUC' => '$', |
|
48 | + 'CUP' => '$', |
|
49 | + 'CVE' => '$', |
|
50 | + 'CZK' => 'Kč', |
|
51 | + 'DJF' => 'Fr', |
|
52 | + 'DKK' => 'DKK', |
|
53 | + 'DOP' => 'RD$', |
|
54 | + 'DZD' => 'د.ج', |
|
55 | + 'EGP' => 'EGP', |
|
56 | + 'ERN' => 'Nfk', |
|
57 | + 'ETB' => 'Br', |
|
58 | + 'EUR' => '€', |
|
59 | + 'FJD' => '$', |
|
60 | + 'FKP' => '£', |
|
61 | + 'GBP' => '£', |
|
62 | + 'GEL' => 'ლ', |
|
63 | + 'GGP' => '£', |
|
64 | + 'GHS' => '₵', |
|
65 | + 'GIP' => '£', |
|
66 | + 'GMD' => 'D', |
|
67 | + 'GNF' => 'Fr', |
|
68 | + 'GTQ' => 'Q', |
|
69 | + 'GYD' => '$', |
|
70 | + 'HKD' => '$', |
|
71 | + 'HNL' => 'L', |
|
72 | + 'HRK' => 'Kn', |
|
73 | + 'HTG' => 'G', |
|
74 | + 'HUF' => 'Ft', |
|
75 | + 'IDR' => 'Rp', |
|
76 | + 'ILS' => '₪', |
|
77 | + 'IMP' => '£', |
|
78 | + 'INR' => '₹', |
|
79 | + 'IQD' => 'ع.د', |
|
80 | + 'IRR' => '﷼', |
|
81 | + 'IRT' => 'تومان', |
|
82 | + 'ISK' => 'kr.', |
|
83 | + 'JEP' => '£', |
|
84 | + 'JMD' => '$', |
|
85 | + 'JOD' => 'د.ا', |
|
86 | + 'JPY' => '¥', |
|
87 | + 'KES' => 'KSh', |
|
88 | + 'KGS' => 'сом', |
|
89 | + 'KHR' => '៛', |
|
90 | + 'KMF' => 'Fr', |
|
91 | + 'KPW' => '₩', |
|
92 | + 'KRW' => '₩', |
|
93 | + 'KWD' => 'د.ك', |
|
94 | + 'KYD' => '$', |
|
95 | + 'KZT' => 'KZT', |
|
96 | + 'LAK' => '₭', |
|
97 | + 'LBP' => 'ل.ل', |
|
98 | + 'LKR' => 'රු', |
|
99 | + 'LRD' => '$', |
|
100 | + 'LSL' => 'L', |
|
101 | + 'LYD' => 'ل.د', |
|
102 | + 'MAD' => 'د.م.', |
|
103 | + 'MDL' => 'MDL', |
|
104 | + 'MGA' => 'Ar', |
|
105 | + 'MKD' => 'ден', |
|
106 | + 'MMK' => 'Ks', |
|
107 | + 'MNT' => '₮', |
|
108 | + 'MOP' => 'P', |
|
109 | + 'MRO' => 'UM', |
|
110 | + 'MUR' => '₨', |
|
111 | + 'MVR' => '.ރ', |
|
112 | + 'MWK' => 'MK', |
|
113 | + 'MXN' => '$', |
|
114 | + 'MYR' => 'RM', |
|
115 | + 'MZN' => 'MT', |
|
116 | + 'NAD' => '$', |
|
117 | + 'NGN' => '₦', |
|
118 | + 'NIO' => 'C$', |
|
119 | + 'NOK' => 'kr', |
|
120 | + 'NPR' => '₨', |
|
121 | + 'NZD' => '$', |
|
122 | + 'OMR' => 'ر.ع.', |
|
123 | + 'PAB' => 'B/.', |
|
124 | + 'PEN' => 'S/.', |
|
125 | + 'PGK' => 'K', |
|
126 | + 'PHP' => '₱', |
|
127 | + 'PKR' => '₨', |
|
128 | + 'PLN' => 'zł', |
|
129 | + 'PRB' => 'р.', |
|
130 | + 'PYG' => '₲', |
|
131 | + 'QAR' => 'ر.ق', |
|
132 | + 'RMB' => '¥', |
|
133 | + 'RON' => 'lei', |
|
134 | + 'RSD' => 'дин.', |
|
135 | + 'RUB' => '₽', |
|
136 | + 'RWF' => 'Fr', |
|
137 | + 'SAR' => 'ر.س', |
|
138 | + 'SBD' => '$', |
|
139 | + 'SCR' => '₨', |
|
140 | + 'SDG' => 'ج.س.', |
|
141 | + 'SEK' => 'kr', |
|
142 | + 'SGD' => '$', |
|
143 | + 'SHP' => '£', |
|
144 | + 'SLL' => 'Le', |
|
145 | + 'SOS' => 'Sh', |
|
146 | + 'SRD' => '$', |
|
147 | + 'SSP' => '£', |
|
148 | + 'STD' => 'Db', |
|
149 | + 'SYP' => 'ل.س', |
|
150 | + 'SZL' => 'L', |
|
151 | + 'THB' => '฿', |
|
152 | + 'TJS' => 'ЅМ', |
|
153 | + 'TMT' => 'm', |
|
154 | + 'TND' => 'د.ت', |
|
155 | + 'TOP' => 'T$', |
|
156 | + 'TRY' => '₺', |
|
157 | + 'TTD' => '$', |
|
158 | + 'TWD' => 'NT$', |
|
159 | + 'TZS' => 'Sh', |
|
160 | + 'UAH' => '₴', |
|
161 | + 'UGX' => 'UGX', |
|
162 | + 'USD' => '$', |
|
163 | + 'UYU' => '$', |
|
164 | + 'UZS' => 'UZS', |
|
165 | + 'VEF' => 'Bs.', |
|
166 | + 'VND' => '₫', |
|
167 | + 'VUV' => 'Vt', |
|
168 | + 'WST' => 'T', |
|
169 | + 'XAF' => 'Fr', |
|
170 | + 'XCD' => '$', |
|
171 | + 'XOF' => 'Fr', |
|
172 | + 'XPF' => 'Fr', |
|
173 | + 'YER' => '﷼', |
|
174 | + 'ZAR' => 'R', |
|
175 | + 'ZMW' => 'ZK', |
|
176 | 176 | ); |
@@ -8,7 +8,7 @@ |
||
8 | 8 | * @version 1.0.19 |
9 | 9 | */ |
10 | 10 | |
11 | -defined( 'ABSPATH' ) || exit; |
|
11 | +defined('ABSPATH') || exit; |
|
12 | 12 | |
13 | 13 | return array( |
14 | 14 | 'AED' => 'د.إ', |