Passed
Push — master ( 59160c...9fabf9 )
by Kiran
10:03 queued 05:25
created
includes/data-stores/class-getpaid-subscription-data-store.php 1 patch
Indentation   +182 added lines, -182 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
  *
6 6
  */
7 7
 if ( ! defined( 'ABSPATH' ) ) {
8
-	exit;
8
+    exit;
9 9
 }
10 10
 
11 11
 /**
@@ -15,198 +15,198 @@  discard block
 block discarded – undo
15 15
  */
16 16
 class GetPaid_Subscription_Data_Store {
17 17
 
18
-	/**
19
-	 * A map of database fields to data types.
20
-	 *
21
-	 * @since 1.0.19
22
-	 * @var array
23
-	 */
24
-	protected $database_fields_to_data_type = array(
25
-		'id'                => '%d',
26
-		'customer_id'       => '%d',
27
-		'frequency'         => '%d',
28
-		'period'            => '%s',
29
-		'initial_amount'    => '%s',
30
-		'recurring_amount'  => '%s',
31
-		'bill_times'        => '%d',
32
-		'transaction_id'    => '%s',
33
-		'parent_payment_id' => '%d',
34
-		'product_id'        => '%d',
35
-		'created'           => '%s',
36
-		'expiration'        => '%s',
37
-		'trial_period'      => '%s',
38
-		'status'            => '%s',
39
-		'profile_id'        => '%s',
40
-	);
41
-
42
-	/*
18
+    /**
19
+     * A map of database fields to data types.
20
+     *
21
+     * @since 1.0.19
22
+     * @var array
23
+     */
24
+    protected $database_fields_to_data_type = array(
25
+        'id'                => '%d',
26
+        'customer_id'       => '%d',
27
+        'frequency'         => '%d',
28
+        'period'            => '%s',
29
+        'initial_amount'    => '%s',
30
+        'recurring_amount'  => '%s',
31
+        'bill_times'        => '%d',
32
+        'transaction_id'    => '%s',
33
+        'parent_payment_id' => '%d',
34
+        'product_id'        => '%d',
35
+        'created'           => '%s',
36
+        'expiration'        => '%s',
37
+        'trial_period'      => '%s',
38
+        'status'            => '%s',
39
+        'profile_id'        => '%s',
40
+    );
41
+
42
+    /*
43 43
 	|--------------------------------------------------------------------------
44 44
 	| CRUD Methods
45 45
 	|--------------------------------------------------------------------------
46 46
 	*/
47 47
 
48
-	/**
49
-	 * Method to create a new subscription in the database.
50
-	 *
51
-	 * @param WPInv_Subscription $subscription Subscription object.
52
-	 */
53
-	public function create( &$subscription ) {
54
-		global $wpdb;
55
-
56
-		$values  = array();
57
-		$formats = array();
58
-
59
-		$fields = $this->database_fields_to_data_type;
60
-		unset( $fields['id'] );
61
-
62
-		foreach ( $fields as $key => $format ) {
63
-			$method       = "get_$key";
64
-			$values[ $key ] = $subscription->$method( 'edit' );
65
-			$formats[]    = $format;
66
-		}
67
-
68
-		$result = $wpdb->insert( $wpdb->prefix . 'wpinv_subscriptions', $values, $formats );
69
-
70
-		if ( $result ) {
71
-			$subscription->set_id( $wpdb->insert_id );
72
-			$subscription->apply_changes();
73
-			$subscription->clear_cache();
74
-			update_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscription_id', $subscription->get_id() );
75
-			do_action( 'getpaid_new_subscription', $subscription );
76
-			return true;
77
-		}
78
-
79
-		return false;
80
-	}
81
-
82
-	/**
83
-	 * Method to read a subscription from the database.
84
-	 *
85
-	 * @param WPInv_Subscription $subscription Subscription object.
86
-	 *
87
-	 */
88
-	public function read( &$subscription ) {
89
-		global $wpdb;
90
-
91
-		$subscription->set_defaults();
92
-
93
-		if ( ! $subscription->get_id() ) {
94
-			$subscription->last_error = __( 'Invalid subscription ID.', 'invoicing' );
95
-			$subscription->set_id( 0 );
96
-			return false;
97
-		}
98
-
99
-		// Maybe retrieve from the cache.
100
-		$raw_subscription = wp_cache_get( $subscription->get_id(), 'getpaid_subscriptions' );
101
-
102
-		// If not found, retrieve from the db.
103
-		if ( false === $raw_subscription ) {
104
-
105
-			$raw_subscription = $wpdb->get_row(
106
-				$wpdb->prepare(
107
-					"SELECT * FROM {$wpdb->prefix}wpinv_subscriptions WHERE id = %d",
108
-					$subscription->get_id()
109
-				)
110
-			);
111
-
112
-			// Update the cache with our data
113
-			wp_cache_set( $subscription->get_id(), $raw_subscription, 'getpaid_subscriptions' );
114
-
115
-		}
116
-
117
-		if ( ! $raw_subscription ) {
118
-			$subscription->set_id( 0 );
119
-			$subscription->last_error = __( 'Invalid subscription ID.', 'invoicing' );
120
-			return false;
121
-		}
122
-
123
-		foreach ( array_keys( $this->database_fields_to_data_type ) as $key ) {
124
-			$method     = "set_$key";
125
-			$subscription->$method( $raw_subscription->$key );
126
-		}
127
-
128
-		$subscription->set_object_read( true );
129
-		do_action( 'getpaid_read_subscription', $subscription );
130
-
131
-	}
132
-
133
-	/**
134
-	 * Method to update a subscription in the database.
135
-	 *
136
-	 * @param WPInv_Subscription $subscription Subscription object.
137
-	 */
138
-	public function update( &$subscription ) {
139
-		global $wpdb;
140
-
141
-		$changes = $subscription->get_changes();
142
-		$values  = array();
143
-		$formats = array();
144
-
145
-		foreach ( $this->database_fields_to_data_type as $key => $format ) {
146
-			if ( array_key_exists( $key, $changes ) ) {
147
-				$method       = "get_$key";
148
-				$values[ $key ] = $subscription->$method( 'edit' );
149
-				$formats[]    = $format;
150
-			}
151
-		}
152
-
153
-		if ( empty( $values ) ) {
154
-			return;
155
-		}
156
-
157
-		$wpdb->update(
158
-			$wpdb->prefix . 'wpinv_subscriptions',
159
-			$values,
160
-			array(
161
-				'id' => $subscription->get_id(),
162
-			),
163
-			$formats,
164
-			'%d'
165
-		);
166
-
167
-		// Apply the changes.
168
-		$subscription->apply_changes();
169
-
170
-		// Delete cache.
171
-		$subscription->clear_cache();
172
-
173
-		update_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscr_profile_id', $subscription->get_profile_id() );
174
-		update_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscription_id', $subscription->get_id() );
175
-
176
-		// Fire a hook.
177
-		do_action( 'getpaid_update_subscription', $subscription );
178
-
179
-	}
180
-
181
-	/**
182
-	 * Method to delete a subscription from the database.
183
-	 *
184
-	 * @param WPInv_Subscription $subscription
185
-	 */
186
-	public function delete( &$subscription ) {
187
-		global $wpdb;
188
-
189
-		$wpdb->query(
190
-			$wpdb->prepare(
191
-				"DELETE FROM {$wpdb->prefix}wpinv_subscriptions
48
+    /**
49
+     * Method to create a new subscription in the database.
50
+     *
51
+     * @param WPInv_Subscription $subscription Subscription object.
52
+     */
53
+    public function create( &$subscription ) {
54
+        global $wpdb;
55
+
56
+        $values  = array();
57
+        $formats = array();
58
+
59
+        $fields = $this->database_fields_to_data_type;
60
+        unset( $fields['id'] );
61
+
62
+        foreach ( $fields as $key => $format ) {
63
+            $method       = "get_$key";
64
+            $values[ $key ] = $subscription->$method( 'edit' );
65
+            $formats[]    = $format;
66
+        }
67
+
68
+        $result = $wpdb->insert( $wpdb->prefix . 'wpinv_subscriptions', $values, $formats );
69
+
70
+        if ( $result ) {
71
+            $subscription->set_id( $wpdb->insert_id );
72
+            $subscription->apply_changes();
73
+            $subscription->clear_cache();
74
+            update_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscription_id', $subscription->get_id() );
75
+            do_action( 'getpaid_new_subscription', $subscription );
76
+            return true;
77
+        }
78
+
79
+        return false;
80
+    }
81
+
82
+    /**
83
+     * Method to read a subscription from the database.
84
+     *
85
+     * @param WPInv_Subscription $subscription Subscription object.
86
+     *
87
+     */
88
+    public function read( &$subscription ) {
89
+        global $wpdb;
90
+
91
+        $subscription->set_defaults();
92
+
93
+        if ( ! $subscription->get_id() ) {
94
+            $subscription->last_error = __( 'Invalid subscription ID.', 'invoicing' );
95
+            $subscription->set_id( 0 );
96
+            return false;
97
+        }
98
+
99
+        // Maybe retrieve from the cache.
100
+        $raw_subscription = wp_cache_get( $subscription->get_id(), 'getpaid_subscriptions' );
101
+
102
+        // If not found, retrieve from the db.
103
+        if ( false === $raw_subscription ) {
104
+
105
+            $raw_subscription = $wpdb->get_row(
106
+                $wpdb->prepare(
107
+                    "SELECT * FROM {$wpdb->prefix}wpinv_subscriptions WHERE id = %d",
108
+                    $subscription->get_id()
109
+                )
110
+            );
111
+
112
+            // Update the cache with our data
113
+            wp_cache_set( $subscription->get_id(), $raw_subscription, 'getpaid_subscriptions' );
114
+
115
+        }
116
+
117
+        if ( ! $raw_subscription ) {
118
+            $subscription->set_id( 0 );
119
+            $subscription->last_error = __( 'Invalid subscription ID.', 'invoicing' );
120
+            return false;
121
+        }
122
+
123
+        foreach ( array_keys( $this->database_fields_to_data_type ) as $key ) {
124
+            $method     = "set_$key";
125
+            $subscription->$method( $raw_subscription->$key );
126
+        }
127
+
128
+        $subscription->set_object_read( true );
129
+        do_action( 'getpaid_read_subscription', $subscription );
130
+
131
+    }
132
+
133
+    /**
134
+     * Method to update a subscription in the database.
135
+     *
136
+     * @param WPInv_Subscription $subscription Subscription object.
137
+     */
138
+    public function update( &$subscription ) {
139
+        global $wpdb;
140
+
141
+        $changes = $subscription->get_changes();
142
+        $values  = array();
143
+        $formats = array();
144
+
145
+        foreach ( $this->database_fields_to_data_type as $key => $format ) {
146
+            if ( array_key_exists( $key, $changes ) ) {
147
+                $method       = "get_$key";
148
+                $values[ $key ] = $subscription->$method( 'edit' );
149
+                $formats[]    = $format;
150
+            }
151
+        }
152
+
153
+        if ( empty( $values ) ) {
154
+            return;
155
+        }
156
+
157
+        $wpdb->update(
158
+            $wpdb->prefix . 'wpinv_subscriptions',
159
+            $values,
160
+            array(
161
+                'id' => $subscription->get_id(),
162
+            ),
163
+            $formats,
164
+            '%d'
165
+        );
166
+
167
+        // Apply the changes.
168
+        $subscription->apply_changes();
169
+
170
+        // Delete cache.
171
+        $subscription->clear_cache();
172
+
173
+        update_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscr_profile_id', $subscription->get_profile_id() );
174
+        update_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscription_id', $subscription->get_id() );
175
+
176
+        // Fire a hook.
177
+        do_action( 'getpaid_update_subscription', $subscription );
178
+
179
+    }
180
+
181
+    /**
182
+     * Method to delete a subscription from the database.
183
+     *
184
+     * @param WPInv_Subscription $subscription
185
+     */
186
+    public function delete( &$subscription ) {
187
+        global $wpdb;
188
+
189
+        $wpdb->query(
190
+            $wpdb->prepare(
191
+                "DELETE FROM {$wpdb->prefix}wpinv_subscriptions
192 192
 				WHERE id = %d",
193
-				$subscription->get_id()
194
-			)
195
-		);
193
+                $subscription->get_id()
194
+            )
195
+        );
196 196
 
197
-		delete_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscr_profile_id' );
198
-		delete_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscription_id' );
197
+        delete_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscr_profile_id' );
198
+        delete_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscription_id' );
199 199
 
200
-		// Delete cache.
201
-		$subscription->clear_cache();
200
+        // Delete cache.
201
+        $subscription->clear_cache();
202 202
 
203
-		// Fire a hook.
204
-		do_action( 'getpaid_delete_subscription', $subscription );
203
+        // Fire a hook.
204
+        do_action( 'getpaid_delete_subscription', $subscription );
205 205
 
206
-		$subscription->set_id( 0 );
207
-	}
206
+        $subscription->set_id( 0 );
207
+    }
208 208
 
209
-	/*
209
+    /*
210 210
 	|--------------------------------------------------------------------------
211 211
 	| Additional Methods
212 212
 	|--------------------------------------------------------------------------
Please login to merge, or discard this patch.
includes/data-stores/class-getpaid-discount-data-store.php 1 patch
Indentation   +188 added lines, -188 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
  *
6 6
  */
7 7
 if ( ! defined( 'ABSPATH' ) ) {
8
-	exit;
8
+    exit;
9 9
 }
10 10
 
11 11
 /**
@@ -15,198 +15,198 @@  discard block
 block discarded – undo
15 15
  */
16 16
 class GetPaid_Discount_Data_Store extends GetPaid_Data_Store_WP {
17 17
 
18
-	/**
19
-	 * Data stored in meta keys, but not considered "meta" for a discount.
20
-	 *
21
-	 * @since 1.0.19
22
-	 * @var array
23
-	 */
24
-	protected $internal_meta_keys = array(
25
-		'_wpi_discount_code',
26
-		'_wpi_discount_amount',
27
-		'_wpi_discount_start',
28
-		'_wpi_discount_expiration',
29
-		'_wpi_discount_type',
30
-		'_wpi_discount_uses',
31
-		'_wpi_discount_is_single_use',
32
-		'_wpi_discount_items',
33
-		'_wpi_discount_excluded_items',
34
-		'_wpi_discount_required_items',
35
-		'_wpi_discount_max_uses',
36
-		'_wpi_discount_is_recurring',
37
-		'_wpi_discount_min_total',
38
-		'_wpi_discount_max_total',
39
-	);
40
-
41
-	/**
42
-	 * A map of meta keys to data props.
43
-	 *
44
-	 * @since 1.0.19
45
-	 *
46
-	 * @var array
47
-	 */
48
-	protected $meta_key_to_props = array(
49
-		'_wpi_discount_code'           => 'code',
50
-		'_wpi_discount_amount'         => 'amount',
51
-		'_wpi_discount_start'          => 'start',
52
-		'_wpi_discount_expiration'     => 'expiration',
53
-		'_wpi_discount_type'           => 'type',
54
-		'_wpi_discount_uses'           => 'uses',
55
-		'_wpi_discount_is_single_use'  => 'is_single_use',
56
-		'_wpi_discount_items'          => 'items',
57
-		'_wpi_discount_excluded_items' => 'excluded_items',
58
-		'_wpi_discount_required_items' => 'required_items',
59
-		'_wpi_discount_max_uses'       => 'max_uses',
60
-		'_wpi_discount_is_recurring'   => 'is_recurring',
61
-		'_wpi_discount_min_total'      => 'min_total',
62
-		'_wpi_discount_max_total'      => 'max_total',
63
-	);
64
-
65
-	/*
18
+    /**
19
+     * Data stored in meta keys, but not considered "meta" for a discount.
20
+     *
21
+     * @since 1.0.19
22
+     * @var array
23
+     */
24
+    protected $internal_meta_keys = array(
25
+        '_wpi_discount_code',
26
+        '_wpi_discount_amount',
27
+        '_wpi_discount_start',
28
+        '_wpi_discount_expiration',
29
+        '_wpi_discount_type',
30
+        '_wpi_discount_uses',
31
+        '_wpi_discount_is_single_use',
32
+        '_wpi_discount_items',
33
+        '_wpi_discount_excluded_items',
34
+        '_wpi_discount_required_items',
35
+        '_wpi_discount_max_uses',
36
+        '_wpi_discount_is_recurring',
37
+        '_wpi_discount_min_total',
38
+        '_wpi_discount_max_total',
39
+    );
40
+
41
+    /**
42
+     * A map of meta keys to data props.
43
+     *
44
+     * @since 1.0.19
45
+     *
46
+     * @var array
47
+     */
48
+    protected $meta_key_to_props = array(
49
+        '_wpi_discount_code'           => 'code',
50
+        '_wpi_discount_amount'         => 'amount',
51
+        '_wpi_discount_start'          => 'start',
52
+        '_wpi_discount_expiration'     => 'expiration',
53
+        '_wpi_discount_type'           => 'type',
54
+        '_wpi_discount_uses'           => 'uses',
55
+        '_wpi_discount_is_single_use'  => 'is_single_use',
56
+        '_wpi_discount_items'          => 'items',
57
+        '_wpi_discount_excluded_items' => 'excluded_items',
58
+        '_wpi_discount_required_items' => 'required_items',
59
+        '_wpi_discount_max_uses'       => 'max_uses',
60
+        '_wpi_discount_is_recurring'   => 'is_recurring',
61
+        '_wpi_discount_min_total'      => 'min_total',
62
+        '_wpi_discount_max_total'      => 'max_total',
63
+    );
64
+
65
+    /*
66 66
 	|--------------------------------------------------------------------------
67 67
 	| CRUD Methods
68 68
 	|--------------------------------------------------------------------------
69 69
 	*/
70 70
 
71
-	/**
72
-	 * Method to create a new discount in the database.
73
-	 *
74
-	 * @param WPInv_Discount $discount Discount object.
75
-	 */
76
-	public function create( &$discount ) {
77
-		$discount->set_version( WPINV_VERSION );
78
-		$discount->set_date_created( current_time( 'mysql' ) );
79
-
80
-		// Create a new post.
81
-		$id = wp_insert_post(
82
-			apply_filters(
83
-				'getpaid_new_discount_data',
84
-				array(
85
-					'post_date'    => $discount->get_date_created( 'edit' ),
86
-					'post_type'    => 'wpi_discount',
87
-					'post_status'  => $this->get_post_status( $discount ),
88
-					'ping_status'  => 'closed',
89
-					'post_author'  => $discount->get_author( 'edit' ),
90
-					'post_title'   => $discount->get_name( 'edit' ),
91
-					'post_excerpt' => $discount->get_description( 'edit' ),
92
-				)
93
-			),
94
-			true
95
-		);
96
-
97
-		if ( $id && ! is_wp_error( $id ) ) {
98
-			$discount->set_id( $id );
99
-			$this->update_post_meta( $discount );
100
-			$discount->save_meta_data();
101
-			$discount->apply_changes();
102
-			$this->clear_caches( $discount );
103
-			do_action( 'getpaid_new_discount', $discount );
104
-			return true;
105
-		}
106
-
107
-		if ( is_wp_error( $id ) ) {
108
-			$discount->last_error = $id->get_error_message();
109
-		}
110
-
111
-		return false;
112
-	}
113
-
114
-	/**
115
-	 * Method to read a discount from the database.
116
-	 *
117
-	 * @param WPInv_Discount $discount Discount object.
118
-	 *
119
-	 */
120
-	public function read( &$discount ) {
121
-
122
-		$discount->set_defaults();
123
-		$discount_object = get_post( $discount->get_id() );
124
-
125
-		if ( ! $discount->get_id() || ! $discount_object || $discount_object->post_type != 'wpi_discount' ) {
126
-			$discount->last_error = __( 'Invalid discount.', 'invoicing' );
127
-			$discount->set_id( 0 );
128
-			return false;
129
-		}
130
-
131
-		$discount->set_props(
132
-			array(
133
-				'date_created'  => 0 < $discount_object->post_date ? $discount_object->post_date : null,
134
-				'date_modified' => 0 < $discount_object->post_modified ? $discount_object->post_modified : null,
135
-				'status'        => $discount_object->post_status,
136
-				'name'          => $discount_object->post_title,
137
-				'author'        => $discount_object->post_author,
138
-				'description'   => $discount_object->post_excerpt,
139
-			)
140
-		);
141
-
142
-		$this->read_object_data( $discount, $discount_object );
143
-		$discount->read_meta_data();
144
-		$discount->set_object_read( true );
145
-		do_action( 'getpaid_read_discount', $discount );
146
-
147
-	}
148
-
149
-	/**
150
-	 * Method to update a discount in the database.
151
-	 *
152
-	 * @param WPInv_Discount $discount Discount object.
153
-	 */
154
-	public function update( &$discount ) {
155
-		$discount->save_meta_data();
156
-		$discount->set_version( WPINV_VERSION );
157
-
158
-		if ( null === $discount->get_date_created( 'edit' ) ) {
159
-			$discount->set_date_created( current_time( 'mysql' ) );
160
-		}
161
-
162
-		// Grab the current status so we can compare.
163
-		$previous_status = get_post_status( $discount->get_id() );
164
-
165
-		$changes = $discount->get_changes();
166
-
167
-		// Only update the post when the post data changes.
168
-		if ( array_intersect( array( 'date_created', 'date_modified', 'status', 'name', 'author', 'post_excerpt' ), array_keys( $changes ) ) ) {
169
-			$post_data = array(
170
-				'post_date'     => $discount->get_date_created( 'edit' ),
171
-				'post_status'   => $discount->get_status( 'edit' ),
172
-				'post_title'    => $discount->get_name( 'edit' ),
173
-				'post_author'   => $discount->get_author( 'edit' ),
174
-				'post_modified' => $discount->get_date_modified( 'edit' ),
175
-				'post_excerpt'  => $discount->get_description( 'edit' ),
176
-			);
177
-
178
-			/**
179
-			 * When updating this object, to prevent infinite loops, use $wpdb
180
-			 * to update data, since wp_update_post spawns more calls to the
181
-			 * save_post action.
182
-			 *
183
-			 * This ensures hooks are fired by either WP itself (admin screen save),
184
-			 * or an update purely from CRUD.
185
-			 */
186
-			if ( doing_action( 'save_post' ) ) {
187
-				$GLOBALS['wpdb']->update( $GLOBALS['wpdb']->posts, $post_data, array( 'ID' => $discount->get_id() ) );
188
-				clean_post_cache( $discount->get_id() );
189
-			} else {
190
-				wp_update_post( array_merge( array( 'ID' => $discount->get_id() ), $post_data ) );
191
-			}
192
-			$discount->read_meta_data( true ); // Refresh internal meta data, in case things were hooked into `save_post` or another WP hook.
193
-		}
194
-		$this->update_post_meta( $discount );
195
-		$discount->apply_changes();
196
-		$this->clear_caches( $discount );
197
-
198
-		// Fire a hook depending on the status - this should be considered a creation if it was previously draft status.
199
-		$new_status = $discount->get_status( 'edit' );
200
-
201
-		if ( $new_status !== $previous_status && in_array( $previous_status, array( 'new', 'auto-draft', 'draft' ), true ) ) {
202
-			do_action( 'getpaid_new_discount', $discount );
203
-		} else {
204
-			do_action( 'getpaid_update_discount', $discount );
205
-		}
206
-
207
-	}
208
-
209
-	/*
71
+    /**
72
+     * Method to create a new discount in the database.
73
+     *
74
+     * @param WPInv_Discount $discount Discount object.
75
+     */
76
+    public function create( &$discount ) {
77
+        $discount->set_version( WPINV_VERSION );
78
+        $discount->set_date_created( current_time( 'mysql' ) );
79
+
80
+        // Create a new post.
81
+        $id = wp_insert_post(
82
+            apply_filters(
83
+                'getpaid_new_discount_data',
84
+                array(
85
+                    'post_date'    => $discount->get_date_created( 'edit' ),
86
+                    'post_type'    => 'wpi_discount',
87
+                    'post_status'  => $this->get_post_status( $discount ),
88
+                    'ping_status'  => 'closed',
89
+                    'post_author'  => $discount->get_author( 'edit' ),
90
+                    'post_title'   => $discount->get_name( 'edit' ),
91
+                    'post_excerpt' => $discount->get_description( 'edit' ),
92
+                )
93
+            ),
94
+            true
95
+        );
96
+
97
+        if ( $id && ! is_wp_error( $id ) ) {
98
+            $discount->set_id( $id );
99
+            $this->update_post_meta( $discount );
100
+            $discount->save_meta_data();
101
+            $discount->apply_changes();
102
+            $this->clear_caches( $discount );
103
+            do_action( 'getpaid_new_discount', $discount );
104
+            return true;
105
+        }
106
+
107
+        if ( is_wp_error( $id ) ) {
108
+            $discount->last_error = $id->get_error_message();
109
+        }
110
+
111
+        return false;
112
+    }
113
+
114
+    /**
115
+     * Method to read a discount from the database.
116
+     *
117
+     * @param WPInv_Discount $discount Discount object.
118
+     *
119
+     */
120
+    public function read( &$discount ) {
121
+
122
+        $discount->set_defaults();
123
+        $discount_object = get_post( $discount->get_id() );
124
+
125
+        if ( ! $discount->get_id() || ! $discount_object || $discount_object->post_type != 'wpi_discount' ) {
126
+            $discount->last_error = __( 'Invalid discount.', 'invoicing' );
127
+            $discount->set_id( 0 );
128
+            return false;
129
+        }
130
+
131
+        $discount->set_props(
132
+            array(
133
+                'date_created'  => 0 < $discount_object->post_date ? $discount_object->post_date : null,
134
+                'date_modified' => 0 < $discount_object->post_modified ? $discount_object->post_modified : null,
135
+                'status'        => $discount_object->post_status,
136
+                'name'          => $discount_object->post_title,
137
+                'author'        => $discount_object->post_author,
138
+                'description'   => $discount_object->post_excerpt,
139
+            )
140
+        );
141
+
142
+        $this->read_object_data( $discount, $discount_object );
143
+        $discount->read_meta_data();
144
+        $discount->set_object_read( true );
145
+        do_action( 'getpaid_read_discount', $discount );
146
+
147
+    }
148
+
149
+    /**
150
+     * Method to update a discount in the database.
151
+     *
152
+     * @param WPInv_Discount $discount Discount object.
153
+     */
154
+    public function update( &$discount ) {
155
+        $discount->save_meta_data();
156
+        $discount->set_version( WPINV_VERSION );
157
+
158
+        if ( null === $discount->get_date_created( 'edit' ) ) {
159
+            $discount->set_date_created( current_time( 'mysql' ) );
160
+        }
161
+
162
+        // Grab the current status so we can compare.
163
+        $previous_status = get_post_status( $discount->get_id() );
164
+
165
+        $changes = $discount->get_changes();
166
+
167
+        // Only update the post when the post data changes.
168
+        if ( array_intersect( array( 'date_created', 'date_modified', 'status', 'name', 'author', 'post_excerpt' ), array_keys( $changes ) ) ) {
169
+            $post_data = array(
170
+                'post_date'     => $discount->get_date_created( 'edit' ),
171
+                'post_status'   => $discount->get_status( 'edit' ),
172
+                'post_title'    => $discount->get_name( 'edit' ),
173
+                'post_author'   => $discount->get_author( 'edit' ),
174
+                'post_modified' => $discount->get_date_modified( 'edit' ),
175
+                'post_excerpt'  => $discount->get_description( 'edit' ),
176
+            );
177
+
178
+            /**
179
+             * When updating this object, to prevent infinite loops, use $wpdb
180
+             * to update data, since wp_update_post spawns more calls to the
181
+             * save_post action.
182
+             *
183
+             * This ensures hooks are fired by either WP itself (admin screen save),
184
+             * or an update purely from CRUD.
185
+             */
186
+            if ( doing_action( 'save_post' ) ) {
187
+                $GLOBALS['wpdb']->update( $GLOBALS['wpdb']->posts, $post_data, array( 'ID' => $discount->get_id() ) );
188
+                clean_post_cache( $discount->get_id() );
189
+            } else {
190
+                wp_update_post( array_merge( array( 'ID' => $discount->get_id() ), $post_data ) );
191
+            }
192
+            $discount->read_meta_data( true ); // Refresh internal meta data, in case things were hooked into `save_post` or another WP hook.
193
+        }
194
+        $this->update_post_meta( $discount );
195
+        $discount->apply_changes();
196
+        $this->clear_caches( $discount );
197
+
198
+        // Fire a hook depending on the status - this should be considered a creation if it was previously draft status.
199
+        $new_status = $discount->get_status( 'edit' );
200
+
201
+        if ( $new_status !== $previous_status && in_array( $previous_status, array( 'new', 'auto-draft', 'draft' ), true ) ) {
202
+            do_action( 'getpaid_new_discount', $discount );
203
+        } else {
204
+            do_action( 'getpaid_update_discount', $discount );
205
+        }
206
+
207
+    }
208
+
209
+    /*
210 210
 	|--------------------------------------------------------------------------
211 211
 	| Additional Methods
212 212
 	|--------------------------------------------------------------------------
Please login to merge, or discard this patch.
includes/class-wpinv-subscriptions.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,8 +12,8 @@  discard block
 block discarded – undo
12 12
 class WPInv_Subscriptions {
13 13
 
14 14
     /**
15
-	 * Class constructor.
16
-	 */
15
+     * Class constructor.
16
+     */
17 17
     public function __construct() {
18 18
 
19 19
         // Fire gateway specific hooks when a subscription changes.
@@ -89,12 +89,12 @@  discard block
 block discarded – undo
89 89
     }
90 90
 
91 91
     /**
92
-	 * Processes subscription status changes.
92
+     * Processes subscription status changes.
93 93
      *
94 94
      * @param WPInv_Subscription $subscription
95 95
      * @param string $from
96 96
      * @param string $to
97
-	 */
97
+     */
98 98
     public function process_subscription_status_change( $subscription, $from, $to ) {
99 99
 
100 100
         $gateway = $subscription->get_gateway();
Please login to merge, or discard this patch.
includes/wpinv-gateway-functions.php 1 patch
Indentation   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -271,26 +271,26 @@  discard block
 block discarded – undo
271 271
 }
272 272
 
273 273
 function wpinv_get_chosen_gateway( $invoice_id = 0 ) {
274
-	$gateways = array_keys( wpinv_get_enabled_payment_gateways() );
274
+    $gateways = array_keys( wpinv_get_enabled_payment_gateways() );
275 275
 
276 276
     $chosen = false;
277 277
     if ( $invoice_id > 0 && $invoice = wpinv_get_invoice( $invoice_id ) ) {
278 278
         $chosen = $invoice->get_gateway();
279 279
     }
280 280
 
281
-	$chosen   = isset( $_REQUEST['payment-mode'] ) ? sanitize_text_field( $_REQUEST['payment-mode'] ) : $chosen;
281
+    $chosen   = isset( $_REQUEST['payment-mode'] ) ? sanitize_text_field( $_REQUEST['payment-mode'] ) : $chosen;
282 282
 
283
-	if ( false !== $chosen ) {
284
-		$chosen = preg_replace( '/[^a-zA-Z0-9-_]+/', '', $chosen );
285
-	}
283
+    if ( false !== $chosen ) {
284
+        $chosen = preg_replace( '/[^a-zA-Z0-9-_]+/', '', $chosen );
285
+    }
286 286
 
287
-	if ( ! empty( $chosen ) ) {
288
-		$enabled_gateway = urldecode( $chosen );
289
-	} elseif ( ! empty( $invoice ) && (float)$invoice->get_subtotal() <= 0 ) {
290
-		$enabled_gateway = 'manual';
291
-	} else {
292
-		$enabled_gateway = wpinv_get_default_gateway();
293
-	}
287
+    if ( ! empty( $chosen ) ) {
288
+        $enabled_gateway = urldecode( $chosen );
289
+    } elseif ( ! empty( $invoice ) && (float)$invoice->get_subtotal() <= 0 ) {
290
+        $enabled_gateway = 'manual';
291
+    } else {
292
+        $enabled_gateway = wpinv_get_default_gateway();
293
+    }
294 294
 
295 295
     if ( ! wpinv_is_gateway_active( $enabled_gateway ) && ! empty( $gateways ) ) {
296 296
         if ( wpinv_is_gateway_active( wpinv_get_default_gateway() ) ) {
@@ -300,7 +300,7 @@  discard block
 block discarded – undo
300 300
         }
301 301
 }
302 302
 
303
-	return apply_filters( 'wpinv_chosen_gateway', $enabled_gateway );
303
+    return apply_filters( 'wpinv_chosen_gateway', $enabled_gateway );
304 304
 }
305 305
 
306 306
 function wpinv_record_gateway_error( $title = '', $message = '' ) {
@@ -308,22 +308,22 @@  discard block
 block discarded – undo
308 308
 }
309 309
 
310 310
 function wpinv_count_sales_by_gateway( $gateway_id = 'paypal', $status = 'publish' ) {
311
-	$ret  = 0;
312
-	$args = array(
313
-		'meta_key'    => '_wpinv_gateway',
314
-		'meta_value'  => $gateway_id,
315
-		'nopaging'    => true,
316
-		'post_type'   => 'wpi_invoice',
317
-		'post_status' => $status,
318
-		'fields'      => 'ids',
319
-	);
320
-
321
-	$payments = new WP_Query( $args );
322
-
323
-	if ( $payments ) {
324
-		$ret = $payments->post_count;
311
+    $ret  = 0;
312
+    $args = array(
313
+        'meta_key'    => '_wpinv_gateway',
314
+        'meta_value'  => $gateway_id,
315
+        'nopaging'    => true,
316
+        'post_type'   => 'wpi_invoice',
317
+        'post_status' => $status,
318
+        'fields'      => 'ids',
319
+    );
320
+
321
+    $payments = new WP_Query( $args );
322
+
323
+    if ( $payments ) {
324
+        $ret = $payments->post_count;
325 325
     }
326
-	return $ret;
326
+    return $ret;
327 327
 }
328 328
 
329 329
 /**
Please login to merge, or discard this patch.
includes/data/countries.php 1 patch
Indentation   +252 added lines, -252 removed lines patch added patch discarded remove patch
@@ -12,256 +12,256 @@
 block discarded – undo
12 12
 defined( 'ABSPATH' ) || exit;
13 13
 
14 14
 return array(
15
-	'US' => __( 'United States', 'invoicing' ),
16
-	'CA' => __( 'Canada', 'invoicing' ),
17
-	'GB' => __( 'United Kingdom', 'invoicing' ),
18
-	'AF' => __( 'Afghanistan', 'invoicing' ),
19
-	'AX' => __( 'Aland Islands', 'invoicing' ),
20
-	'AL' => __( 'Albania', 'invoicing' ),
21
-	'DZ' => __( 'Algeria', 'invoicing' ),
22
-	'AS' => __( 'American Samoa', 'invoicing' ),
23
-	'AD' => __( 'Andorra', 'invoicing' ),
24
-	'AO' => __( 'Angola', 'invoicing' ),
25
-	'AI' => __( 'Anguilla', 'invoicing' ),
26
-	'AQ' => __( 'Antarctica', 'invoicing' ),
27
-	'AG' => __( 'Antigua and Barbuda', 'invoicing' ),
28
-	'AR' => __( 'Argentina', 'invoicing' ),
29
-	'AM' => __( 'Armenia', 'invoicing' ),
30
-	'AW' => __( 'Aruba', 'invoicing' ),
31
-	'AU' => __( 'Australia', 'invoicing' ),
32
-	'AT' => __( 'Austria', 'invoicing' ),
33
-	'AZ' => __( 'Azerbaijan', 'invoicing' ),
34
-	'BS' => __( 'Bahamas', 'invoicing' ),
35
-	'BH' => __( 'Bahrain', 'invoicing' ),
36
-	'BD' => __( 'Bangladesh', 'invoicing' ),
37
-	'BB' => __( 'Barbados', 'invoicing' ),
38
-	'BY' => __( 'Belarus', 'invoicing' ),
39
-	'BE' => __( 'Belgium', 'invoicing' ),
40
-	'BZ' => __( 'Belize', 'invoicing' ),
41
-	'BJ' => __( 'Benin', 'invoicing' ),
42
-	'BM' => __( 'Bermuda', 'invoicing' ),
43
-	'BT' => __( 'Bhutan', 'invoicing' ),
44
-	'BO' => __( 'Bolivia', 'invoicing' ),
45
-	'BQ' => __( 'Bonaire, Saint Eustatius and Saba', 'invoicing' ),
46
-	'BA' => __( 'Bosnia and Herzegovina', 'invoicing' ),
47
-	'BW' => __( 'Botswana', 'invoicing' ),
48
-	'BV' => __( 'Bouvet Island', 'invoicing' ),
49
-	'BR' => __( 'Brazil', 'invoicing' ),
50
-	'IO' => __( 'British Indian Ocean Territory', 'invoicing' ),
51
-	'BN' => __( 'Brunei Darrussalam', 'invoicing' ),
52
-	'BG' => __( 'Bulgaria', 'invoicing' ),
53
-	'BF' => __( 'Burkina Faso', 'invoicing' ),
54
-	'BI' => __( 'Burundi', 'invoicing' ),
55
-	'KH' => __( 'Cambodia', 'invoicing' ),
56
-	'CM' => __( 'Cameroon', 'invoicing' ),
57
-	'CV' => __( 'Cape Verde', 'invoicing' ),
58
-	'KY' => __( 'Cayman Islands', 'invoicing' ),
59
-	'CF' => __( 'Central African Republic', 'invoicing' ),
60
-	'TD' => __( 'Chad', 'invoicing' ),
61
-	'CL' => __( 'Chile', 'invoicing' ),
62
-	'CN' => __( 'China', 'invoicing' ),
63
-	'CX' => __( 'Christmas Island', 'invoicing' ),
64
-	'CC' => __( 'Cocos Islands', 'invoicing' ),
65
-	'CO' => __( 'Colombia', 'invoicing' ),
66
-	'KM' => __( 'Comoros', 'invoicing' ),
67
-	'CD' => __( 'Congo, Democratic People\'s Republic', 'invoicing' ),
68
-	'CG' => __( 'Congo, Republic of', 'invoicing' ),
69
-	'CK' => __( 'Cook Islands', 'invoicing' ),
70
-	'CR' => __( 'Costa Rica', 'invoicing' ),
71
-	'CI' => __( 'Cote d\'Ivoire', 'invoicing' ),
72
-	'HR' => __( 'Croatia/Hrvatska', 'invoicing' ),
73
-	'CU' => __( 'Cuba', 'invoicing' ),
74
-	'CW' => __( 'Cura&Ccedil;ao', 'invoicing' ),
75
-	'CY' => __( 'Cyprus', 'invoicing' ),
76
-	'CZ' => __( 'Czech Republic', 'invoicing' ),
77
-	'DK' => __( 'Denmark', 'invoicing' ),
78
-	'DJ' => __( 'Djibouti', 'invoicing' ),
79
-	'DM' => __( 'Dominica', 'invoicing' ),
80
-	'DO' => __( 'Dominican Republic', 'invoicing' ),
81
-	'TP' => __( 'East Timor', 'invoicing' ),
82
-	'EC' => __( 'Ecuador', 'invoicing' ),
83
-	'EG' => __( 'Egypt', 'invoicing' ),
84
-	'GQ' => __( 'Equatorial Guinea', 'invoicing' ),
85
-	'SV' => __( 'El Salvador', 'invoicing' ),
86
-	'ER' => __( 'Eritrea', 'invoicing' ),
87
-	'EE' => __( 'Estonia', 'invoicing' ),
88
-	'ET' => __( 'Ethiopia', 'invoicing' ),
89
-	'FK' => __( 'Falkland Islands', 'invoicing' ),
90
-	'FO' => __( 'Faroe Islands', 'invoicing' ),
91
-	'FJ' => __( 'Fiji', 'invoicing' ),
92
-	'FI' => __( 'Finland', 'invoicing' ),
93
-	'FR' => __( 'France', 'invoicing' ),
94
-	'GF' => __( 'French Guiana', 'invoicing' ),
95
-	'PF' => __( 'French Polynesia', 'invoicing' ),
96
-	'TF' => __( 'French Southern Territories', 'invoicing' ),
97
-	'GA' => __( 'Gabon', 'invoicing' ),
98
-	'GM' => __( 'Gambia', 'invoicing' ),
99
-	'GE' => __( 'Georgia', 'invoicing' ),
100
-	'DE' => __( 'Germany', 'invoicing' ),
101
-	'GR' => __( 'Greece', 'invoicing' ),
102
-	'GH' => __( 'Ghana', 'invoicing' ),
103
-	'GI' => __( 'Gibraltar', 'invoicing' ),
104
-	'GL' => __( 'Greenland', 'invoicing' ),
105
-	'GD' => __( 'Grenada', 'invoicing' ),
106
-	'GP' => __( 'Guadeloupe', 'invoicing' ),
107
-	'GU' => __( 'Guam', 'invoicing' ),
108
-	'GT' => __( 'Guatemala', 'invoicing' ),
109
-	'GG' => __( 'Guernsey', 'invoicing' ),
110
-	'GN' => __( 'Guinea', 'invoicing' ),
111
-	'GW' => __( 'Guinea-Bissau', 'invoicing' ),
112
-	'GY' => __( 'Guyana', 'invoicing' ),
113
-	'HT' => __( 'Haiti', 'invoicing' ),
114
-	'HM' => __( 'Heard and McDonald Islands', 'invoicing' ),
115
-	'VA' => __( 'Holy See (City Vatican State)', 'invoicing' ),
116
-	'HN' => __( 'Honduras', 'invoicing' ),
117
-	'HK' => __( 'Hong Kong', 'invoicing' ),
118
-	'HU' => __( 'Hungary', 'invoicing' ),
119
-	'IS' => __( 'Iceland', 'invoicing' ),
120
-	'IN' => __( 'India', 'invoicing' ),
121
-	'ID' => __( 'Indonesia', 'invoicing' ),
122
-	'IR' => __( 'Iran', 'invoicing' ),
123
-	'IQ' => __( 'Iraq', 'invoicing' ),
124
-	'IE' => __( 'Ireland', 'invoicing' ),
125
-	'IM' => __( 'Isle of Man', 'invoicing' ),
126
-	'IL' => __( 'Israel', 'invoicing' ),
127
-	'IT' => __( 'Italy', 'invoicing' ),
128
-	'JM' => __( 'Jamaica', 'invoicing' ),
129
-	'JP' => __( 'Japan', 'invoicing' ),
130
-	'JE' => __( 'Jersey', 'invoicing' ),
131
-	'JO' => __( 'Jordan', 'invoicing' ),
132
-	'KZ' => __( 'Kazakhstan', 'invoicing' ),
133
-	'KE' => __( 'Kenya', 'invoicing' ),
134
-	'KI' => __( 'Kiribati', 'invoicing' ),
135
-	'KW' => __( 'Kuwait', 'invoicing' ),
136
-	'KG' => __( 'Kyrgyzstan', 'invoicing' ),
137
-	'LA' => __( 'Lao People\'s Democratic Republic', 'invoicing' ),
138
-	'LV' => __( 'Latvia', 'invoicing' ),
139
-	'LB' => __( 'Lebanon', 'invoicing' ),
140
-	'LS' => __( 'Lesotho', 'invoicing' ),
141
-	'LR' => __( 'Liberia', 'invoicing' ),
142
-	'LY' => __( 'Libyan Arab Jamahiriya', 'invoicing' ),
143
-	'LI' => __( 'Liechtenstein', 'invoicing' ),
144
-	'LT' => __( 'Lithuania', 'invoicing' ),
145
-	'LU' => __( 'Luxembourg', 'invoicing' ),
146
-	'MO' => __( 'Macau', 'invoicing' ),
147
-	'MK' => __( 'Macedonia', 'invoicing' ),
148
-	'MG' => __( 'Madagascar', 'invoicing' ),
149
-	'MW' => __( 'Malawi', 'invoicing' ),
150
-	'MY' => __( 'Malaysia', 'invoicing' ),
151
-	'MV' => __( 'Maldives', 'invoicing' ),
152
-	'ML' => __( 'Mali', 'invoicing' ),
153
-	'MT' => __( 'Malta', 'invoicing' ),
154
-	'MH' => __( 'Marshall Islands', 'invoicing' ),
155
-	'MQ' => __( 'Martinique', 'invoicing' ),
156
-	'MR' => __( 'Mauritania', 'invoicing' ),
157
-	'MU' => __( 'Mauritius', 'invoicing' ),
158
-	'YT' => __( 'Mayotte', 'invoicing' ),
159
-	'MX' => __( 'Mexico', 'invoicing' ),
160
-	'FM' => __( 'Micronesia', 'invoicing' ),
161
-	'MD' => __( 'Moldova, Republic of', 'invoicing' ),
162
-	'MC' => __( 'Monaco', 'invoicing' ),
163
-	'MN' => __( 'Mongolia', 'invoicing' ),
164
-	'ME' => __( 'Montenegro', 'invoicing' ),
165
-	'MS' => __( 'Montserrat', 'invoicing' ),
166
-	'MA' => __( 'Morocco', 'invoicing' ),
167
-	'MZ' => __( 'Mozambique', 'invoicing' ),
168
-	'MM' => __( 'Myanmar', 'invoicing' ),
169
-	'NA' => __( 'Namibia', 'invoicing' ),
170
-	'NR' => __( 'Nauru', 'invoicing' ),
171
-	'NP' => __( 'Nepal', 'invoicing' ),
172
-	'NL' => __( 'Netherlands', 'invoicing' ),
173
-	'AN' => __( 'Netherlands Antilles', 'invoicing' ),
174
-	'NC' => __( 'New Caledonia', 'invoicing' ),
175
-	'NZ' => __( 'New Zealand', 'invoicing' ),
176
-	'NI' => __( 'Nicaragua', 'invoicing' ),
177
-	'NE' => __( 'Niger', 'invoicing' ),
178
-	'NG' => __( 'Nigeria', 'invoicing' ),
179
-	'NU' => __( 'Niue', 'invoicing' ),
180
-	'NF' => __( 'Norfolk Island', 'invoicing' ),
181
-	'KP' => __( 'North Korea', 'invoicing' ),
182
-	'MP' => __( 'Northern Mariana Islands', 'invoicing' ),
183
-	'NO' => __( 'Norway', 'invoicing' ),
184
-	'OM' => __( 'Oman', 'invoicing' ),
185
-	'PK' => __( 'Pakistan', 'invoicing' ),
186
-	'PW' => __( 'Palau', 'invoicing' ),
187
-	'PS' => __( 'Palestinian Territories', 'invoicing' ),
188
-	'PA' => __( 'Panama', 'invoicing' ),
189
-	'PG' => __( 'Papua New Guinea', 'invoicing' ),
190
-	'PY' => __( 'Paraguay', 'invoicing' ),
191
-	'PE' => __( 'Peru', 'invoicing' ),
192
-	'PH' => __( 'Philippines', 'invoicing' ),
193
-	'PN' => __( 'Pitcairn Island', 'invoicing' ),
194
-	'PL' => __( 'Poland', 'invoicing' ),
195
-	'PT' => __( 'Portugal', 'invoicing' ),
196
-	'PR' => __( 'Puerto Rico', 'invoicing' ),
197
-	'QA' => __( 'Qatar', 'invoicing' ),
198
-	'XK' => __( 'Republic of Kosovo', 'invoicing' ),
199
-	'RE' => __( 'Reunion Island', 'invoicing' ),
200
-	'RO' => __( 'Romania', 'invoicing' ),
201
-	'RU' => __( 'Russian Federation', 'invoicing' ),
202
-	'RW' => __( 'Rwanda', 'invoicing' ),
203
-	'BL' => __( 'Saint Barth&eacute;lemy', 'invoicing' ),
204
-	'SH' => __( 'Saint Helena', 'invoicing' ),
205
-	'KN' => __( 'Saint Kitts and Nevis', 'invoicing' ),
206
-	'LC' => __( 'Saint Lucia', 'invoicing' ),
207
-	'MF' => __( 'Saint Martin (French)', 'invoicing' ),
208
-	'SX' => __( 'Saint Martin (Dutch)', 'invoicing' ),
209
-	'PM' => __( 'Saint Pierre and Miquelon', 'invoicing' ),
210
-	'VC' => __( 'Saint Vincent and the Grenadines', 'invoicing' ),
211
-	'SM' => __( 'San Marino', 'invoicing' ),
212
-	'ST' => __( 'S&atilde;o Tom&eacute; and Pr&iacute;ncipe', 'invoicing' ),
213
-	'SA' => __( 'Saudi Arabia', 'invoicing' ),
214
-	'SN' => __( 'Senegal', 'invoicing' ),
215
-	'RS' => __( 'Serbia', 'invoicing' ),
216
-	'SC' => __( 'Seychelles', 'invoicing' ),
217
-	'SL' => __( 'Sierra Leone', 'invoicing' ),
218
-	'SG' => __( 'Singapore', 'invoicing' ),
219
-	'SK' => __( 'Slovak Republic', 'invoicing' ),
220
-	'SI' => __( 'Slovenia', 'invoicing' ),
221
-	'SB' => __( 'Solomon Islands', 'invoicing' ),
222
-	'SO' => __( 'Somalia', 'invoicing' ),
223
-	'ZA' => __( 'South Africa', 'invoicing' ),
224
-	'GS' => __( 'South Georgia', 'invoicing' ),
225
-	'KR' => __( 'South Korea', 'invoicing' ),
226
-	'SS' => __( 'South Sudan', 'invoicing' ),
227
-	'ES' => __( 'Spain', 'invoicing' ),
228
-	'LK' => __( 'Sri Lanka', 'invoicing' ),
229
-	'SD' => __( 'Sudan', 'invoicing' ),
230
-	'SR' => __( 'Suriname', 'invoicing' ),
231
-	'SJ' => __( 'Svalbard and Jan Mayen Islands', 'invoicing' ),
232
-	'SZ' => __( 'Swaziland', 'invoicing' ),
233
-	'SE' => __( 'Sweden', 'invoicing' ),
234
-	'CH' => __( 'Switzerland', 'invoicing' ),
235
-	'SY' => __( 'Syrian Arab Republic', 'invoicing' ),
236
-	'TW' => __( 'Taiwan', 'invoicing' ),
237
-	'TJ' => __( 'Tajikistan', 'invoicing' ),
238
-	'TZ' => __( 'Tanzania', 'invoicing' ),
239
-	'TH' => __( 'Thailand', 'invoicing' ),
240
-	'TL' => __( 'Timor-Leste', 'invoicing' ),
241
-	'TG' => __( 'Togo', 'invoicing' ),
242
-	'TK' => __( 'Tokelau', 'invoicing' ),
243
-	'TO' => __( 'Tonga', 'invoicing' ),
244
-	'TT' => __( 'Trinidad and Tobago', 'invoicing' ),
245
-	'TN' => __( 'Tunisia', 'invoicing' ),
246
-	'TR' => __( 'Turkey', 'invoicing' ),
247
-	'TM' => __( 'Turkmenistan', 'invoicing' ),
248
-	'TC' => __( 'Turks and Caicos Islands', 'invoicing' ),
249
-	'TV' => __( 'Tuvalu', 'invoicing' ),
250
-	'UG' => __( 'Uganda', 'invoicing' ),
251
-	'UA' => __( 'Ukraine', 'invoicing' ),
252
-	'AE' => __( 'United Arab Emirates', 'invoicing' ),
253
-	'UY' => __( 'Uruguay', 'invoicing' ),
254
-	'UM' => __( 'US Minor Outlying Islands', 'invoicing' ),
255
-	'UZ' => __( 'Uzbekistan', 'invoicing' ),
256
-	'VU' => __( 'Vanuatu', 'invoicing' ),
257
-	'VE' => __( 'Venezuela', 'invoicing' ),
258
-	'VN' => __( 'Vietnam', 'invoicing' ),
259
-	'VG' => __( 'Virgin Islands (British)', 'invoicing' ),
260
-	'VI' => __( 'Virgin Islands (USA)', 'invoicing' ),
261
-	'WF' => __( 'Wallis and Futuna Islands', 'invoicing' ),
262
-	'EH' => __( 'Western Sahara', 'invoicing' ),
263
-	'WS' => __( 'Western Samoa', 'invoicing' ),
264
-	'YE' => __( 'Yemen', 'invoicing' ),
265
-	'ZM' => __( 'Zambia', 'invoicing' ),
266
-	'ZW' => __( 'Zimbabwe', 'invoicing' ),
15
+    'US' => __( 'United States', 'invoicing' ),
16
+    'CA' => __( 'Canada', 'invoicing' ),
17
+    'GB' => __( 'United Kingdom', 'invoicing' ),
18
+    'AF' => __( 'Afghanistan', 'invoicing' ),
19
+    'AX' => __( 'Aland Islands', 'invoicing' ),
20
+    'AL' => __( 'Albania', 'invoicing' ),
21
+    'DZ' => __( 'Algeria', 'invoicing' ),
22
+    'AS' => __( 'American Samoa', 'invoicing' ),
23
+    'AD' => __( 'Andorra', 'invoicing' ),
24
+    'AO' => __( 'Angola', 'invoicing' ),
25
+    'AI' => __( 'Anguilla', 'invoicing' ),
26
+    'AQ' => __( 'Antarctica', 'invoicing' ),
27
+    'AG' => __( 'Antigua and Barbuda', 'invoicing' ),
28
+    'AR' => __( 'Argentina', 'invoicing' ),
29
+    'AM' => __( 'Armenia', 'invoicing' ),
30
+    'AW' => __( 'Aruba', 'invoicing' ),
31
+    'AU' => __( 'Australia', 'invoicing' ),
32
+    'AT' => __( 'Austria', 'invoicing' ),
33
+    'AZ' => __( 'Azerbaijan', 'invoicing' ),
34
+    'BS' => __( 'Bahamas', 'invoicing' ),
35
+    'BH' => __( 'Bahrain', 'invoicing' ),
36
+    'BD' => __( 'Bangladesh', 'invoicing' ),
37
+    'BB' => __( 'Barbados', 'invoicing' ),
38
+    'BY' => __( 'Belarus', 'invoicing' ),
39
+    'BE' => __( 'Belgium', 'invoicing' ),
40
+    'BZ' => __( 'Belize', 'invoicing' ),
41
+    'BJ' => __( 'Benin', 'invoicing' ),
42
+    'BM' => __( 'Bermuda', 'invoicing' ),
43
+    'BT' => __( 'Bhutan', 'invoicing' ),
44
+    'BO' => __( 'Bolivia', 'invoicing' ),
45
+    'BQ' => __( 'Bonaire, Saint Eustatius and Saba', 'invoicing' ),
46
+    'BA' => __( 'Bosnia and Herzegovina', 'invoicing' ),
47
+    'BW' => __( 'Botswana', 'invoicing' ),
48
+    'BV' => __( 'Bouvet Island', 'invoicing' ),
49
+    'BR' => __( 'Brazil', 'invoicing' ),
50
+    'IO' => __( 'British Indian Ocean Territory', 'invoicing' ),
51
+    'BN' => __( 'Brunei Darrussalam', 'invoicing' ),
52
+    'BG' => __( 'Bulgaria', 'invoicing' ),
53
+    'BF' => __( 'Burkina Faso', 'invoicing' ),
54
+    'BI' => __( 'Burundi', 'invoicing' ),
55
+    'KH' => __( 'Cambodia', 'invoicing' ),
56
+    'CM' => __( 'Cameroon', 'invoicing' ),
57
+    'CV' => __( 'Cape Verde', 'invoicing' ),
58
+    'KY' => __( 'Cayman Islands', 'invoicing' ),
59
+    'CF' => __( 'Central African Republic', 'invoicing' ),
60
+    'TD' => __( 'Chad', 'invoicing' ),
61
+    'CL' => __( 'Chile', 'invoicing' ),
62
+    'CN' => __( 'China', 'invoicing' ),
63
+    'CX' => __( 'Christmas Island', 'invoicing' ),
64
+    'CC' => __( 'Cocos Islands', 'invoicing' ),
65
+    'CO' => __( 'Colombia', 'invoicing' ),
66
+    'KM' => __( 'Comoros', 'invoicing' ),
67
+    'CD' => __( 'Congo, Democratic People\'s Republic', 'invoicing' ),
68
+    'CG' => __( 'Congo, Republic of', 'invoicing' ),
69
+    'CK' => __( 'Cook Islands', 'invoicing' ),
70
+    'CR' => __( 'Costa Rica', 'invoicing' ),
71
+    'CI' => __( 'Cote d\'Ivoire', 'invoicing' ),
72
+    'HR' => __( 'Croatia/Hrvatska', 'invoicing' ),
73
+    'CU' => __( 'Cuba', 'invoicing' ),
74
+    'CW' => __( 'Cura&Ccedil;ao', 'invoicing' ),
75
+    'CY' => __( 'Cyprus', 'invoicing' ),
76
+    'CZ' => __( 'Czech Republic', 'invoicing' ),
77
+    'DK' => __( 'Denmark', 'invoicing' ),
78
+    'DJ' => __( 'Djibouti', 'invoicing' ),
79
+    'DM' => __( 'Dominica', 'invoicing' ),
80
+    'DO' => __( 'Dominican Republic', 'invoicing' ),
81
+    'TP' => __( 'East Timor', 'invoicing' ),
82
+    'EC' => __( 'Ecuador', 'invoicing' ),
83
+    'EG' => __( 'Egypt', 'invoicing' ),
84
+    'GQ' => __( 'Equatorial Guinea', 'invoicing' ),
85
+    'SV' => __( 'El Salvador', 'invoicing' ),
86
+    'ER' => __( 'Eritrea', 'invoicing' ),
87
+    'EE' => __( 'Estonia', 'invoicing' ),
88
+    'ET' => __( 'Ethiopia', 'invoicing' ),
89
+    'FK' => __( 'Falkland Islands', 'invoicing' ),
90
+    'FO' => __( 'Faroe Islands', 'invoicing' ),
91
+    'FJ' => __( 'Fiji', 'invoicing' ),
92
+    'FI' => __( 'Finland', 'invoicing' ),
93
+    'FR' => __( 'France', 'invoicing' ),
94
+    'GF' => __( 'French Guiana', 'invoicing' ),
95
+    'PF' => __( 'French Polynesia', 'invoicing' ),
96
+    'TF' => __( 'French Southern Territories', 'invoicing' ),
97
+    'GA' => __( 'Gabon', 'invoicing' ),
98
+    'GM' => __( 'Gambia', 'invoicing' ),
99
+    'GE' => __( 'Georgia', 'invoicing' ),
100
+    'DE' => __( 'Germany', 'invoicing' ),
101
+    'GR' => __( 'Greece', 'invoicing' ),
102
+    'GH' => __( 'Ghana', 'invoicing' ),
103
+    'GI' => __( 'Gibraltar', 'invoicing' ),
104
+    'GL' => __( 'Greenland', 'invoicing' ),
105
+    'GD' => __( 'Grenada', 'invoicing' ),
106
+    'GP' => __( 'Guadeloupe', 'invoicing' ),
107
+    'GU' => __( 'Guam', 'invoicing' ),
108
+    'GT' => __( 'Guatemala', 'invoicing' ),
109
+    'GG' => __( 'Guernsey', 'invoicing' ),
110
+    'GN' => __( 'Guinea', 'invoicing' ),
111
+    'GW' => __( 'Guinea-Bissau', 'invoicing' ),
112
+    'GY' => __( 'Guyana', 'invoicing' ),
113
+    'HT' => __( 'Haiti', 'invoicing' ),
114
+    'HM' => __( 'Heard and McDonald Islands', 'invoicing' ),
115
+    'VA' => __( 'Holy See (City Vatican State)', 'invoicing' ),
116
+    'HN' => __( 'Honduras', 'invoicing' ),
117
+    'HK' => __( 'Hong Kong', 'invoicing' ),
118
+    'HU' => __( 'Hungary', 'invoicing' ),
119
+    'IS' => __( 'Iceland', 'invoicing' ),
120
+    'IN' => __( 'India', 'invoicing' ),
121
+    'ID' => __( 'Indonesia', 'invoicing' ),
122
+    'IR' => __( 'Iran', 'invoicing' ),
123
+    'IQ' => __( 'Iraq', 'invoicing' ),
124
+    'IE' => __( 'Ireland', 'invoicing' ),
125
+    'IM' => __( 'Isle of Man', 'invoicing' ),
126
+    'IL' => __( 'Israel', 'invoicing' ),
127
+    'IT' => __( 'Italy', 'invoicing' ),
128
+    'JM' => __( 'Jamaica', 'invoicing' ),
129
+    'JP' => __( 'Japan', 'invoicing' ),
130
+    'JE' => __( 'Jersey', 'invoicing' ),
131
+    'JO' => __( 'Jordan', 'invoicing' ),
132
+    'KZ' => __( 'Kazakhstan', 'invoicing' ),
133
+    'KE' => __( 'Kenya', 'invoicing' ),
134
+    'KI' => __( 'Kiribati', 'invoicing' ),
135
+    'KW' => __( 'Kuwait', 'invoicing' ),
136
+    'KG' => __( 'Kyrgyzstan', 'invoicing' ),
137
+    'LA' => __( 'Lao People\'s Democratic Republic', 'invoicing' ),
138
+    'LV' => __( 'Latvia', 'invoicing' ),
139
+    'LB' => __( 'Lebanon', 'invoicing' ),
140
+    'LS' => __( 'Lesotho', 'invoicing' ),
141
+    'LR' => __( 'Liberia', 'invoicing' ),
142
+    'LY' => __( 'Libyan Arab Jamahiriya', 'invoicing' ),
143
+    'LI' => __( 'Liechtenstein', 'invoicing' ),
144
+    'LT' => __( 'Lithuania', 'invoicing' ),
145
+    'LU' => __( 'Luxembourg', 'invoicing' ),
146
+    'MO' => __( 'Macau', 'invoicing' ),
147
+    'MK' => __( 'Macedonia', 'invoicing' ),
148
+    'MG' => __( 'Madagascar', 'invoicing' ),
149
+    'MW' => __( 'Malawi', 'invoicing' ),
150
+    'MY' => __( 'Malaysia', 'invoicing' ),
151
+    'MV' => __( 'Maldives', 'invoicing' ),
152
+    'ML' => __( 'Mali', 'invoicing' ),
153
+    'MT' => __( 'Malta', 'invoicing' ),
154
+    'MH' => __( 'Marshall Islands', 'invoicing' ),
155
+    'MQ' => __( 'Martinique', 'invoicing' ),
156
+    'MR' => __( 'Mauritania', 'invoicing' ),
157
+    'MU' => __( 'Mauritius', 'invoicing' ),
158
+    'YT' => __( 'Mayotte', 'invoicing' ),
159
+    'MX' => __( 'Mexico', 'invoicing' ),
160
+    'FM' => __( 'Micronesia', 'invoicing' ),
161
+    'MD' => __( 'Moldova, Republic of', 'invoicing' ),
162
+    'MC' => __( 'Monaco', 'invoicing' ),
163
+    'MN' => __( 'Mongolia', 'invoicing' ),
164
+    'ME' => __( 'Montenegro', 'invoicing' ),
165
+    'MS' => __( 'Montserrat', 'invoicing' ),
166
+    'MA' => __( 'Morocco', 'invoicing' ),
167
+    'MZ' => __( 'Mozambique', 'invoicing' ),
168
+    'MM' => __( 'Myanmar', 'invoicing' ),
169
+    'NA' => __( 'Namibia', 'invoicing' ),
170
+    'NR' => __( 'Nauru', 'invoicing' ),
171
+    'NP' => __( 'Nepal', 'invoicing' ),
172
+    'NL' => __( 'Netherlands', 'invoicing' ),
173
+    'AN' => __( 'Netherlands Antilles', 'invoicing' ),
174
+    'NC' => __( 'New Caledonia', 'invoicing' ),
175
+    'NZ' => __( 'New Zealand', 'invoicing' ),
176
+    'NI' => __( 'Nicaragua', 'invoicing' ),
177
+    'NE' => __( 'Niger', 'invoicing' ),
178
+    'NG' => __( 'Nigeria', 'invoicing' ),
179
+    'NU' => __( 'Niue', 'invoicing' ),
180
+    'NF' => __( 'Norfolk Island', 'invoicing' ),
181
+    'KP' => __( 'North Korea', 'invoicing' ),
182
+    'MP' => __( 'Northern Mariana Islands', 'invoicing' ),
183
+    'NO' => __( 'Norway', 'invoicing' ),
184
+    'OM' => __( 'Oman', 'invoicing' ),
185
+    'PK' => __( 'Pakistan', 'invoicing' ),
186
+    'PW' => __( 'Palau', 'invoicing' ),
187
+    'PS' => __( 'Palestinian Territories', 'invoicing' ),
188
+    'PA' => __( 'Panama', 'invoicing' ),
189
+    'PG' => __( 'Papua New Guinea', 'invoicing' ),
190
+    'PY' => __( 'Paraguay', 'invoicing' ),
191
+    'PE' => __( 'Peru', 'invoicing' ),
192
+    'PH' => __( 'Philippines', 'invoicing' ),
193
+    'PN' => __( 'Pitcairn Island', 'invoicing' ),
194
+    'PL' => __( 'Poland', 'invoicing' ),
195
+    'PT' => __( 'Portugal', 'invoicing' ),
196
+    'PR' => __( 'Puerto Rico', 'invoicing' ),
197
+    'QA' => __( 'Qatar', 'invoicing' ),
198
+    'XK' => __( 'Republic of Kosovo', 'invoicing' ),
199
+    'RE' => __( 'Reunion Island', 'invoicing' ),
200
+    'RO' => __( 'Romania', 'invoicing' ),
201
+    'RU' => __( 'Russian Federation', 'invoicing' ),
202
+    'RW' => __( 'Rwanda', 'invoicing' ),
203
+    'BL' => __( 'Saint Barth&eacute;lemy', 'invoicing' ),
204
+    'SH' => __( 'Saint Helena', 'invoicing' ),
205
+    'KN' => __( 'Saint Kitts and Nevis', 'invoicing' ),
206
+    'LC' => __( 'Saint Lucia', 'invoicing' ),
207
+    'MF' => __( 'Saint Martin (French)', 'invoicing' ),
208
+    'SX' => __( 'Saint Martin (Dutch)', 'invoicing' ),
209
+    'PM' => __( 'Saint Pierre and Miquelon', 'invoicing' ),
210
+    'VC' => __( 'Saint Vincent and the Grenadines', 'invoicing' ),
211
+    'SM' => __( 'San Marino', 'invoicing' ),
212
+    'ST' => __( 'S&atilde;o Tom&eacute; and Pr&iacute;ncipe', 'invoicing' ),
213
+    'SA' => __( 'Saudi Arabia', 'invoicing' ),
214
+    'SN' => __( 'Senegal', 'invoicing' ),
215
+    'RS' => __( 'Serbia', 'invoicing' ),
216
+    'SC' => __( 'Seychelles', 'invoicing' ),
217
+    'SL' => __( 'Sierra Leone', 'invoicing' ),
218
+    'SG' => __( 'Singapore', 'invoicing' ),
219
+    'SK' => __( 'Slovak Republic', 'invoicing' ),
220
+    'SI' => __( 'Slovenia', 'invoicing' ),
221
+    'SB' => __( 'Solomon Islands', 'invoicing' ),
222
+    'SO' => __( 'Somalia', 'invoicing' ),
223
+    'ZA' => __( 'South Africa', 'invoicing' ),
224
+    'GS' => __( 'South Georgia', 'invoicing' ),
225
+    'KR' => __( 'South Korea', 'invoicing' ),
226
+    'SS' => __( 'South Sudan', 'invoicing' ),
227
+    'ES' => __( 'Spain', 'invoicing' ),
228
+    'LK' => __( 'Sri Lanka', 'invoicing' ),
229
+    'SD' => __( 'Sudan', 'invoicing' ),
230
+    'SR' => __( 'Suriname', 'invoicing' ),
231
+    'SJ' => __( 'Svalbard and Jan Mayen Islands', 'invoicing' ),
232
+    'SZ' => __( 'Swaziland', 'invoicing' ),
233
+    'SE' => __( 'Sweden', 'invoicing' ),
234
+    'CH' => __( 'Switzerland', 'invoicing' ),
235
+    'SY' => __( 'Syrian Arab Republic', 'invoicing' ),
236
+    'TW' => __( 'Taiwan', 'invoicing' ),
237
+    'TJ' => __( 'Tajikistan', 'invoicing' ),
238
+    'TZ' => __( 'Tanzania', 'invoicing' ),
239
+    'TH' => __( 'Thailand', 'invoicing' ),
240
+    'TL' => __( 'Timor-Leste', 'invoicing' ),
241
+    'TG' => __( 'Togo', 'invoicing' ),
242
+    'TK' => __( 'Tokelau', 'invoicing' ),
243
+    'TO' => __( 'Tonga', 'invoicing' ),
244
+    'TT' => __( 'Trinidad and Tobago', 'invoicing' ),
245
+    'TN' => __( 'Tunisia', 'invoicing' ),
246
+    'TR' => __( 'Turkey', 'invoicing' ),
247
+    'TM' => __( 'Turkmenistan', 'invoicing' ),
248
+    'TC' => __( 'Turks and Caicos Islands', 'invoicing' ),
249
+    'TV' => __( 'Tuvalu', 'invoicing' ),
250
+    'UG' => __( 'Uganda', 'invoicing' ),
251
+    'UA' => __( 'Ukraine', 'invoicing' ),
252
+    'AE' => __( 'United Arab Emirates', 'invoicing' ),
253
+    'UY' => __( 'Uruguay', 'invoicing' ),
254
+    'UM' => __( 'US Minor Outlying Islands', 'invoicing' ),
255
+    'UZ' => __( 'Uzbekistan', 'invoicing' ),
256
+    'VU' => __( 'Vanuatu', 'invoicing' ),
257
+    'VE' => __( 'Venezuela', 'invoicing' ),
258
+    'VN' => __( 'Vietnam', 'invoicing' ),
259
+    'VG' => __( 'Virgin Islands (British)', 'invoicing' ),
260
+    'VI' => __( 'Virgin Islands (USA)', 'invoicing' ),
261
+    'WF' => __( 'Wallis and Futuna Islands', 'invoicing' ),
262
+    'EH' => __( 'Western Sahara', 'invoicing' ),
263
+    'WS' => __( 'Western Samoa', 'invoicing' ),
264
+    'YE' => __( 'Yemen', 'invoicing' ),
265
+    'ZM' => __( 'Zambia', 'invoicing' ),
266
+    'ZW' => __( 'Zimbabwe', 'invoicing' ),
267 267
 );
Please login to merge, or discard this patch.
includes/data/admin-settings.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,8 +38,8 @@
 block discarded – undo
38 38
     $nonce = wp_create_nonce( 'reset_invoice_count' );
39 39
     $reset_number = '<a href="' . add_query_arg(
40 40
         array(
41
-			'reset_invoice_count' => 1,
42
-			'_nonce'              => $nonce,
41
+            'reset_invoice_count' => 1,
42
+            '_nonce'              => $nonce,
43 43
         )
44 44
     ) . '" class="btn button">' . __( 'Force Reset Sequence', 'invoicing' ) . '</a>';
45 45
 }
Please login to merge, or discard this patch.
includes/data/discount-schema.php 1 patch
Indentation   +172 added lines, -172 removed lines patch added patch discarded remove patch
@@ -13,177 +13,177 @@
 block discarded – undo
13 13
 
14 14
 return array(
15 15
 
16
-	'id'                => array(
17
-		'description' => __( 'Unique identifier for the discount.', 'invoicing' ),
18
-		'type'        => 'integer',
19
-		'context'     => array( 'view', 'edit', 'embed' ),
20
-		'readonly'    => true,
21
-	),
22
-
23
-	'status'            => array(
24
-		'description' => __( 'A named status for the discount.', 'invoicing' ),
25
-		'type'        => 'string',
26
-		'enum'        => array( 'publish', 'pending', 'draft', 'expired' ),
27
-		'default'     => 'draft',
28
-		'context'     => array( 'view', 'edit', 'embed' ),
29
-	),
30
-
31
-	'version'           => array(
32
-		'description' => __( 'Plugin version when the discount was created.', 'invoicing' ),
33
-		'type'        => 'string',
34
-		'context'     => array( 'view', 'edit', 'embed' ),
35
-		'readonly'    => true,
36
-	),
37
-
38
-	'date_created'      => array(
39
-		'description' => __( "The date the discount was created, in the site's timezone.", 'invoicing' ),
40
-		'type'        => 'string',
41
-		'context'     => array( 'view', 'edit', 'embed' ),
42
-	),
43
-
44
-	'date_created_gmt'  => array(
45
-		'description' => __( 'The GMT date the discount was created.', 'invoicing' ),
46
-		'type'        => 'string',
47
-		'context'     => array( 'view', 'edit', 'embed' ),
48
-		'readonly'    => true,
49
-	),
50
-
51
-	'date_modified'     => array(
52
-		'description' => __( "The date the discount was last modified, in the site's timezone.", 'invoicing' ),
53
-		'type'        => 'string',
54
-		'context'     => array( 'view', 'edit', 'embed' ),
55
-		'readonly'    => true,
56
-	),
57
-
58
-	'date_modified_gmt' => array(
59
-		'description' => __( 'The GMT date the discount was last modified.', 'invoicing' ),
60
-		'type'        => 'string',
61
-		'context'     => array( 'view', 'edit', 'embed' ),
62
-		'readonly'    => true,
63
-	),
64
-
65
-	'name'              => array(
66
-		'description' => __( 'The discount name.', 'invoicing' ),
67
-		'type'        => 'string',
68
-		'context'     => array( 'view', 'edit', 'embed' ),
69
-	),
70
-
71
-	'description'       => array(
72
-		'description' => __( 'A description of what the discount is all about.', 'invoicing' ),
73
-		'type'        => 'string',
74
-		'context'     => array( 'view', 'edit', 'embed' ),
75
-	),
76
-
77
-	'code'              => array(
78
-		'description' => __( 'The discount code.', 'invoicing' ),
79
-		'type'        => 'string',
80
-		'context'     => array( 'view', 'edit', 'embed' ),
81
-		'required'    => true,
82
-	),
83
-
84
-	'type'              => array(
85
-		'description' => __( 'The type of discount.', 'invoicing' ),
86
-		'type'        => 'string',
87
-		'enum'        => array_keys( wpinv_get_discount_types() ),
88
-		'context'     => array( 'view', 'edit', 'embed' ),
89
-		'default'     => 'percent',
90
-	),
91
-
92
-	'amount'            => array(
93
-		'description' => __( 'The discount value.', 'invoicing' ),
94
-		'type'        => 'number',
95
-		'context'     => array( 'view', 'edit', 'embed' ),
96
-		'required'    => true,
97
-	),
98
-
99
-	'formatted_amount'  => array(
100
-		'description' => __( 'The formatted discount value.', 'invoicing' ),
101
-		'type'        => 'string',
102
-		'context'     => array( 'view', 'edit', 'embed' ),
103
-		'readonly'    => true,
104
-	),
105
-
106
-	'uses'              => array(
107
-		'description' => __( 'The number of times the discount has been used.', 'invoicing' ),
108
-		'type'        => 'integer',
109
-		'context'     => array( 'view', 'embed' ),
110
-		'readonly'    => true,
111
-	),
112
-
113
-	'max_uses'          => array(
114
-		'description' => __( 'The maximum number of times the discount can be used.', 'invoicing' ),
115
-		'type'        => 'integer',
116
-		'context'     => array( 'view', 'edit' ),
117
-	),
118
-
119
-	'usage'             => array(
120
-		'description' => __( "The discount's usage, i.e uses / max uses.", 'invoicing' ),
121
-		'type'        => 'string',
122
-		'context'     => array( 'view', 'embed' ),
123
-		'readonly'    => true,
124
-	),
125
-
126
-	'is_single_use'     => array(
127
-		'description' => __( 'Whether or not the discount can only be used once per user.', 'invoicing' ),
128
-		'type'        => 'boolean',
129
-		'context'     => array( 'view', 'edit' ),
130
-	),
131
-
132
-	'is_recurring'      => array(
133
-		'description' => __( 'Whether or not the discount applies to the initial payment only or all recurring payments.', 'invoicing' ),
134
-		'type'        => 'boolean',
135
-		'context'     => array( 'view', 'edit' ),
136
-	),
137
-
138
-	'start_date'        => array(
139
-		'description' => __( 'The start date for the discount in the format of yyyy-mm-dd hh:mm:ss. If provided, the discount can only be used after or on this date.', 'invoicing' ),
140
-		'type'        => 'string',
141
-		'context'     => array( 'view', 'edit' ),
142
-	),
143
-
144
-	'end_date'          => array(
145
-		'description' => __( 'The expiration date for the discount.', 'invoicing' ),
146
-		'type'        => 'string',
147
-		'context'     => array( 'view', 'edit' ),
148
-	),
149
-
150
-	'allowed_items'     => array(
151
-		'description' => __( 'Items which are allowed to use this discount. Leave blank to enable for all items.', 'invoicing' ),
152
-		'type'        => 'array',
153
-		'context'     => array( 'view', 'edit' ),
154
-		'items'       => array(
155
-			'type' => 'integer',
156
-		),
157
-	),
158
-
159
-	'excluded_items'    => array(
160
-		'description' => __( 'Items which are NOT allowed to use this discount.', 'invoicing' ),
161
-		'type'        => 'array',
162
-		'context'     => array( 'view', 'edit' ),
163
-		'items'       => array(
164
-			'type' => 'integer',
165
-		),
166
-	),
167
-
168
-	'required_items'    => array(
169
-		'description' => __( 'Items which are required to be in the cart before using this discount.', 'invoicing' ),
170
-		'type'        => 'array',
171
-		'context'     => array( 'view', 'edit' ),
172
-		'items'       => array(
173
-			'type' => 'integer',
174
-		),
175
-	),
176
-
177
-	'minimum_total'     => array(
178
-		'description' => __( 'The minimum total needed to use this invoice.', 'invoicing' ),
179
-		'type'        => 'number',
180
-		'context'     => array( 'view', 'edit' ),
181
-	),
182
-
183
-	'maximum_total'     => array(
184
-		'description' => __( 'The maximum total needed to use this invoice.', 'invoicing' ),
185
-		'type'        => 'number',
186
-		'context'     => array( 'view', 'edit' ),
187
-	),
16
+    'id'                => array(
17
+        'description' => __( 'Unique identifier for the discount.', 'invoicing' ),
18
+        'type'        => 'integer',
19
+        'context'     => array( 'view', 'edit', 'embed' ),
20
+        'readonly'    => true,
21
+    ),
22
+
23
+    'status'            => array(
24
+        'description' => __( 'A named status for the discount.', 'invoicing' ),
25
+        'type'        => 'string',
26
+        'enum'        => array( 'publish', 'pending', 'draft', 'expired' ),
27
+        'default'     => 'draft',
28
+        'context'     => array( 'view', 'edit', 'embed' ),
29
+    ),
30
+
31
+    'version'           => array(
32
+        'description' => __( 'Plugin version when the discount was created.', 'invoicing' ),
33
+        'type'        => 'string',
34
+        'context'     => array( 'view', 'edit', 'embed' ),
35
+        'readonly'    => true,
36
+    ),
37
+
38
+    'date_created'      => array(
39
+        'description' => __( "The date the discount was created, in the site's timezone.", 'invoicing' ),
40
+        'type'        => 'string',
41
+        'context'     => array( 'view', 'edit', 'embed' ),
42
+    ),
43
+
44
+    'date_created_gmt'  => array(
45
+        'description' => __( 'The GMT date the discount was created.', 'invoicing' ),
46
+        'type'        => 'string',
47
+        'context'     => array( 'view', 'edit', 'embed' ),
48
+        'readonly'    => true,
49
+    ),
50
+
51
+    'date_modified'     => array(
52
+        'description' => __( "The date the discount was last modified, in the site's timezone.", 'invoicing' ),
53
+        'type'        => 'string',
54
+        'context'     => array( 'view', 'edit', 'embed' ),
55
+        'readonly'    => true,
56
+    ),
57
+
58
+    'date_modified_gmt' => array(
59
+        'description' => __( 'The GMT date the discount was last modified.', 'invoicing' ),
60
+        'type'        => 'string',
61
+        'context'     => array( 'view', 'edit', 'embed' ),
62
+        'readonly'    => true,
63
+    ),
64
+
65
+    'name'              => array(
66
+        'description' => __( 'The discount name.', 'invoicing' ),
67
+        'type'        => 'string',
68
+        'context'     => array( 'view', 'edit', 'embed' ),
69
+    ),
70
+
71
+    'description'       => array(
72
+        'description' => __( 'A description of what the discount is all about.', 'invoicing' ),
73
+        'type'        => 'string',
74
+        'context'     => array( 'view', 'edit', 'embed' ),
75
+    ),
76
+
77
+    'code'              => array(
78
+        'description' => __( 'The discount code.', 'invoicing' ),
79
+        'type'        => 'string',
80
+        'context'     => array( 'view', 'edit', 'embed' ),
81
+        'required'    => true,
82
+    ),
83
+
84
+    'type'              => array(
85
+        'description' => __( 'The type of discount.', 'invoicing' ),
86
+        'type'        => 'string',
87
+        'enum'        => array_keys( wpinv_get_discount_types() ),
88
+        'context'     => array( 'view', 'edit', 'embed' ),
89
+        'default'     => 'percent',
90
+    ),
91
+
92
+    'amount'            => array(
93
+        'description' => __( 'The discount value.', 'invoicing' ),
94
+        'type'        => 'number',
95
+        'context'     => array( 'view', 'edit', 'embed' ),
96
+        'required'    => true,
97
+    ),
98
+
99
+    'formatted_amount'  => array(
100
+        'description' => __( 'The formatted discount value.', 'invoicing' ),
101
+        'type'        => 'string',
102
+        'context'     => array( 'view', 'edit', 'embed' ),
103
+        'readonly'    => true,
104
+    ),
105
+
106
+    'uses'              => array(
107
+        'description' => __( 'The number of times the discount has been used.', 'invoicing' ),
108
+        'type'        => 'integer',
109
+        'context'     => array( 'view', 'embed' ),
110
+        'readonly'    => true,
111
+    ),
112
+
113
+    'max_uses'          => array(
114
+        'description' => __( 'The maximum number of times the discount can be used.', 'invoicing' ),
115
+        'type'        => 'integer',
116
+        'context'     => array( 'view', 'edit' ),
117
+    ),
118
+
119
+    'usage'             => array(
120
+        'description' => __( "The discount's usage, i.e uses / max uses.", 'invoicing' ),
121
+        'type'        => 'string',
122
+        'context'     => array( 'view', 'embed' ),
123
+        'readonly'    => true,
124
+    ),
125
+
126
+    'is_single_use'     => array(
127
+        'description' => __( 'Whether or not the discount can only be used once per user.', 'invoicing' ),
128
+        'type'        => 'boolean',
129
+        'context'     => array( 'view', 'edit' ),
130
+    ),
131
+
132
+    'is_recurring'      => array(
133
+        'description' => __( 'Whether or not the discount applies to the initial payment only or all recurring payments.', 'invoicing' ),
134
+        'type'        => 'boolean',
135
+        'context'     => array( 'view', 'edit' ),
136
+    ),
137
+
138
+    'start_date'        => array(
139
+        'description' => __( 'The start date for the discount in the format of yyyy-mm-dd hh:mm:ss. If provided, the discount can only be used after or on this date.', 'invoicing' ),
140
+        'type'        => 'string',
141
+        'context'     => array( 'view', 'edit' ),
142
+    ),
143
+
144
+    'end_date'          => array(
145
+        'description' => __( 'The expiration date for the discount.', 'invoicing' ),
146
+        'type'        => 'string',
147
+        'context'     => array( 'view', 'edit' ),
148
+    ),
149
+
150
+    'allowed_items'     => array(
151
+        'description' => __( 'Items which are allowed to use this discount. Leave blank to enable for all items.', 'invoicing' ),
152
+        'type'        => 'array',
153
+        'context'     => array( 'view', 'edit' ),
154
+        'items'       => array(
155
+            'type' => 'integer',
156
+        ),
157
+    ),
158
+
159
+    'excluded_items'    => array(
160
+        'description' => __( 'Items which are NOT allowed to use this discount.', 'invoicing' ),
161
+        'type'        => 'array',
162
+        'context'     => array( 'view', 'edit' ),
163
+        'items'       => array(
164
+            'type' => 'integer',
165
+        ),
166
+    ),
167
+
168
+    'required_items'    => array(
169
+        'description' => __( 'Items which are required to be in the cart before using this discount.', 'invoicing' ),
170
+        'type'        => 'array',
171
+        'context'     => array( 'view', 'edit' ),
172
+        'items'       => array(
173
+            'type' => 'integer',
174
+        ),
175
+    ),
176
+
177
+    'minimum_total'     => array(
178
+        'description' => __( 'The minimum total needed to use this invoice.', 'invoicing' ),
179
+        'type'        => 'number',
180
+        'context'     => array( 'view', 'edit' ),
181
+    ),
182
+
183
+    'maximum_total'     => array(
184
+        'description' => __( 'The maximum total needed to use this invoice.', 'invoicing' ),
185
+        'type'        => 'number',
186
+        'context'     => array( 'view', 'edit' ),
187
+    ),
188 188
 
189 189
 );
Please login to merge, or discard this patch.
includes/data/item-schema.php 1 patch
Indentation   +229 added lines, -229 removed lines patch added patch discarded remove patch
@@ -13,233 +13,233 @@
 block discarded – undo
13 13
 
14 14
 return array(
15 15
 
16
-	'id'                   => array(
17
-		'description' => __( 'Unique identifier for the item.', 'invoicing' ),
18
-		'type'        => 'integer',
19
-		'context'     => array( 'view', 'edit', 'embed' ),
20
-		'readonly'    => true,
21
-	),
22
-
23
-	'parent_id'            => array(
24
-		'description' => __( 'Parent item ID.', 'invoicing' ),
25
-		'type'        => 'integer',
26
-		'context'     => array( 'view', 'edit', 'embed' ),
27
-		'default'     => 0,
28
-	),
29
-
30
-	'status'               => array(
31
-		'description' => __( 'A named status for the item.', 'invoicing' ),
32
-		'type'        => 'string',
33
-		'enum'        => array( 'draft', 'pending', 'publish' ),
34
-		'context'     => array( 'view', 'edit', 'embed' ),
35
-		'default'     => 'draft',
36
-	),
37
-
38
-	'version'              => array(
39
-		'description' => __( 'Plugin version when the item was created.', 'invoicing' ),
40
-		'type'        => 'string',
41
-		'context'     => array( 'view', 'edit' ),
42
-		'readonly'    => true,
43
-	),
44
-
45
-	'date_created'         => array(
46
-		'description' => __( "The date the item was created, in the site's timezone.", 'invoicing' ),
47
-		'type'        => 'string',
48
-		'context'     => array( 'view', 'edit', 'embed' ),
49
-	),
50
-
51
-	'date_created_gmt'     => array(
52
-		'description' => __( 'The GMT date the item was created.', 'invoicing' ),
53
-		'type'        => 'string',
54
-		'context'     => array( 'view', 'edit', 'embed' ),
55
-		'readonly'    => true,
56
-	),
57
-
58
-	'date_modified'        => array(
59
-		'description' => __( "The date the item was last modified, in the site's timezone.", 'invoicing' ),
60
-		'type'        => 'string',
61
-		'context'     => array( 'view', 'edit', 'embed' ),
62
-		'readonly'    => true,
63
-	),
64
-
65
-	'date_modified_gmt'    => array(
66
-		'description' => __( 'The GMT date the item was last modified.', 'invoicing' ),
67
-		'type'        => 'string',
68
-		'context'     => array( 'view', 'edit', 'embed' ),
69
-		'readonly'    => true,
70
-	),
71
-
72
-	'name'                 => array(
73
-		'description' => __( "The item's name.", 'invoicing' ),
74
-		'type'        => 'string',
75
-		'context'     => array( 'view', 'edit', 'embed' ),
76
-		'required'    => true,
77
-	),
78
-
79
-	'description'          => array(
80
-		'description' => __( "The item's description.", 'invoicing' ),
81
-		'type'        => 'string',
82
-		'context'     => array( 'view', 'edit', 'embed' ),
83
-	),
84
-
85
-	'owner'                => array(
86
-		'description' => __( 'The owner of the item (user id).', 'invoicing' ),
87
-		'type'        => 'integer',
88
-		'context'     => array( 'view', 'edit', 'embed' ),
89
-	),
90
-
91
-	'price'                => array(
92
-		'description' => __( 'The price of the item.', 'invoicing' ),
93
-		'type'        => 'number',
94
-		'context'     => array( 'view', 'edit', 'embed' ),
95
-		'required'    => true,
96
-	),
97
-
98
-	'the_price'            => array(
99
-		'description' => __( 'The formatted price of the item.', 'invoicing' ),
100
-		'type'        => 'string',
101
-		'context'     => array( 'view', 'edit', 'embed' ),
102
-		'readonly'    => true,
103
-	),
104
-
105
-	'type'                 => array(
106
-		'description' => __( 'The item type.', 'invoicing' ),
107
-		'type'        => 'string',
108
-		'enum'        => wpinv_item_types(),
109
-		'default'     => 'custom',
110
-		'context'     => array( 'view', 'edit', 'embed' ),
111
-	),
112
-
113
-	'vat_rule'             => array(
114
-		'description' => __( 'VAT rule applied to the item.', 'invoicing' ),
115
-		'type'        => 'string',
116
-		'enum'        => array_keys( getpaid_get_tax_rules() ),
117
-		'context'     => array( 'view', 'edit', 'embed' ),
118
-	),
119
-
120
-	'vat_class'            => array(
121
-		'description' => __( 'VAT class for the item.', 'invoicing' ),
122
-		'type'        => 'string',
123
-		'context'     => array( 'view', 'edit', 'embed' ),
124
-		'enum'        => array_keys( getpaid_get_tax_classes() ),
125
-	),
126
-
127
-	'custom_id'            => array(
128
-		'description' => __( 'Custom id for the item.', 'invoicing' ),
129
-		'type'        => 'string',
130
-		'context'     => array( 'view', 'edit', 'embed' ),
131
-	),
132
-
133
-	'custom_name'          => array(
134
-		'description' => __( 'Custom name for the item.', 'invoicing' ),
135
-		'type'        => 'string',
136
-		'context'     => array( 'view', 'edit', 'embed' ),
137
-	),
138
-
139
-	'custom_singular_name' => array(
140
-		'description' => __( 'Custom singular name for the item.', 'invoicing' ),
141
-		'type'        => 'string',
142
-		'context'     => array( 'view', 'edit', 'embed' ),
143
-	),
144
-
145
-	'is_dynamic_pricing'   => array(
146
-		'description' => __( 'Whether or not customers can enter their own prices when checking out.', 'invoicing' ),
147
-		'type'        => 'integer',
148
-		'enum'        => array( 0, 1 ),
149
-		'context'     => array( 'view', 'edit', 'embed' ),
150
-	),
151
-
152
-	'minimum_price'        => array(
153
-		'description' => __( 'For dynamic prices, this is the minimum price that a user can set.', 'invoicing' ),
154
-		'type'        => 'number',
155
-		'context'     => array( 'view', 'edit', 'embed' ),
156
-	),
157
-
158
-	'is_recurring'         => array(
159
-		'description' => __( 'Whether or not this is a subscription item.', 'invoicing' ),
160
-		'type'        => 'integer',
161
-		'enum'        => array( 0, 1 ),
162
-		'context'     => array( 'view', 'edit', 'embed' ),
163
-	),
164
-
165
-	'initial_price'        => array(
166
-		'description' => __( 'The initial price of the item.', 'invoicing' ),
167
-		'type'        => 'number',
168
-		'context'     => array( 'view', 'edit', 'embed' ),
169
-		'readonly'    => true,
170
-	),
171
-
172
-	'the_initial_price'    => array(
173
-		'description' => __( 'The formatted initial price of the item.', 'invoicing' ),
174
-		'type'        => 'string',
175
-		'context'     => array( 'view', 'edit', 'embed' ),
176
-		'readonly'    => true,
177
-	),
178
-
179
-	'recurring_price'      => array(
180
-		'description' => __( 'The recurring price of the item.', 'invoicing' ),
181
-		'type'        => 'number',
182
-		'context'     => array( 'view', 'edit', 'embed' ),
183
-		'readonly'    => true,
184
-	),
185
-
186
-	'the_recurring_price'  => array(
187
-		'description' => __( 'The formatted recurring price of the item.', 'invoicing' ),
188
-		'type'        => 'string',
189
-		'context'     => array( 'view', 'edit', 'embed' ),
190
-		'readonly'    => true,
191
-	),
192
-
193
-	'recurring_period'     => array(
194
-		'description' => __( 'The recurring period for a recurring item.', 'invoicing' ),
195
-		'type'        => 'string',
196
-		'context'     => array( 'view', 'edit', 'embed' ),
197
-		'enum'        => array( 'D', 'W', 'M', 'Y' ),
198
-	),
199
-
200
-	'recurring_interval'   => array(
201
-		'description' => __( 'The recurring interval for a subscription item.', 'invoicing' ),
202
-		'type'        => 'integer',
203
-		'context'     => array( 'view', 'edit', 'embed' ),
204
-	),
205
-
206
-	'recurring_limit'      => array(
207
-		'description' => __( 'The maximum number of renewals for a subscription item.', 'invoicing' ),
208
-		'type'        => 'integer',
209
-		'context'     => array( 'view', 'edit', 'embed' ),
210
-	),
211
-
212
-	'is_free_trial'        => array(
213
-		'description' => __( 'Whether the item has a free trial period.', 'invoicing' ),
214
-		'type'        => 'integer',
215
-		'enum'        => array( 0, 1 ),
216
-		'context'     => array( 'view', 'edit', 'embed' ),
217
-	),
218
-
219
-	'trial_period'         => array(
220
-		'description' => __( 'The trial period.', 'invoicing' ),
221
-		'type'        => 'string',
222
-		'context'     => array( 'view', 'edit', 'embed' ),
223
-		'enum'        => array( 'D', 'W', 'M', 'Y' ),
224
-	),
225
-
226
-	'trial_interval'       => array(
227
-		'description' => __( 'The trial interval.', 'invoicing' ),
228
-		'type'        => 'integer',
229
-		'context'     => array( 'view', 'edit', 'embed' ),
230
-	),
231
-
232
-	'first_renewal_date'   => array(
233
-		'description' => __( 'The first renewal date in case the item was to be bought today.', 'invoicing' ),
234
-		'type'        => 'string',
235
-		'context'     => array( 'view', 'edit', 'embed' ),
236
-		'readonly'    => true,
237
-	),
238
-
239
-	'edit_url'             => array(
240
-		'description' => __( 'The URL to edit an item.', 'invoicing' ),
241
-		'type'        => 'string',
242
-		'context'     => array( 'view', 'edit', 'embed' ),
243
-		'readonly'    => true,
244
-	),
16
+    'id'                   => array(
17
+        'description' => __( 'Unique identifier for the item.', 'invoicing' ),
18
+        'type'        => 'integer',
19
+        'context'     => array( 'view', 'edit', 'embed' ),
20
+        'readonly'    => true,
21
+    ),
22
+
23
+    'parent_id'            => array(
24
+        'description' => __( 'Parent item ID.', 'invoicing' ),
25
+        'type'        => 'integer',
26
+        'context'     => array( 'view', 'edit', 'embed' ),
27
+        'default'     => 0,
28
+    ),
29
+
30
+    'status'               => array(
31
+        'description' => __( 'A named status for the item.', 'invoicing' ),
32
+        'type'        => 'string',
33
+        'enum'        => array( 'draft', 'pending', 'publish' ),
34
+        'context'     => array( 'view', 'edit', 'embed' ),
35
+        'default'     => 'draft',
36
+    ),
37
+
38
+    'version'              => array(
39
+        'description' => __( 'Plugin version when the item was created.', 'invoicing' ),
40
+        'type'        => 'string',
41
+        'context'     => array( 'view', 'edit' ),
42
+        'readonly'    => true,
43
+    ),
44
+
45
+    'date_created'         => array(
46
+        'description' => __( "The date the item was created, in the site's timezone.", 'invoicing' ),
47
+        'type'        => 'string',
48
+        'context'     => array( 'view', 'edit', 'embed' ),
49
+    ),
50
+
51
+    'date_created_gmt'     => array(
52
+        'description' => __( 'The GMT date the item was created.', 'invoicing' ),
53
+        'type'        => 'string',
54
+        'context'     => array( 'view', 'edit', 'embed' ),
55
+        'readonly'    => true,
56
+    ),
57
+
58
+    'date_modified'        => array(
59
+        'description' => __( "The date the item was last modified, in the site's timezone.", 'invoicing' ),
60
+        'type'        => 'string',
61
+        'context'     => array( 'view', 'edit', 'embed' ),
62
+        'readonly'    => true,
63
+    ),
64
+
65
+    'date_modified_gmt'    => array(
66
+        'description' => __( 'The GMT date the item was last modified.', 'invoicing' ),
67
+        'type'        => 'string',
68
+        'context'     => array( 'view', 'edit', 'embed' ),
69
+        'readonly'    => true,
70
+    ),
71
+
72
+    'name'                 => array(
73
+        'description' => __( "The item's name.", 'invoicing' ),
74
+        'type'        => 'string',
75
+        'context'     => array( 'view', 'edit', 'embed' ),
76
+        'required'    => true,
77
+    ),
78
+
79
+    'description'          => array(
80
+        'description' => __( "The item's description.", 'invoicing' ),
81
+        'type'        => 'string',
82
+        'context'     => array( 'view', 'edit', 'embed' ),
83
+    ),
84
+
85
+    'owner'                => array(
86
+        'description' => __( 'The owner of the item (user id).', 'invoicing' ),
87
+        'type'        => 'integer',
88
+        'context'     => array( 'view', 'edit', 'embed' ),
89
+    ),
90
+
91
+    'price'                => array(
92
+        'description' => __( 'The price of the item.', 'invoicing' ),
93
+        'type'        => 'number',
94
+        'context'     => array( 'view', 'edit', 'embed' ),
95
+        'required'    => true,
96
+    ),
97
+
98
+    'the_price'            => array(
99
+        'description' => __( 'The formatted price of the item.', 'invoicing' ),
100
+        'type'        => 'string',
101
+        'context'     => array( 'view', 'edit', 'embed' ),
102
+        'readonly'    => true,
103
+    ),
104
+
105
+    'type'                 => array(
106
+        'description' => __( 'The item type.', 'invoicing' ),
107
+        'type'        => 'string',
108
+        'enum'        => wpinv_item_types(),
109
+        'default'     => 'custom',
110
+        'context'     => array( 'view', 'edit', 'embed' ),
111
+    ),
112
+
113
+    'vat_rule'             => array(
114
+        'description' => __( 'VAT rule applied to the item.', 'invoicing' ),
115
+        'type'        => 'string',
116
+        'enum'        => array_keys( getpaid_get_tax_rules() ),
117
+        'context'     => array( 'view', 'edit', 'embed' ),
118
+    ),
119
+
120
+    'vat_class'            => array(
121
+        'description' => __( 'VAT class for the item.', 'invoicing' ),
122
+        'type'        => 'string',
123
+        'context'     => array( 'view', 'edit', 'embed' ),
124
+        'enum'        => array_keys( getpaid_get_tax_classes() ),
125
+    ),
126
+
127
+    'custom_id'            => array(
128
+        'description' => __( 'Custom id for the item.', 'invoicing' ),
129
+        'type'        => 'string',
130
+        'context'     => array( 'view', 'edit', 'embed' ),
131
+    ),
132
+
133
+    'custom_name'          => array(
134
+        'description' => __( 'Custom name for the item.', 'invoicing' ),
135
+        'type'        => 'string',
136
+        'context'     => array( 'view', 'edit', 'embed' ),
137
+    ),
138
+
139
+    'custom_singular_name' => array(
140
+        'description' => __( 'Custom singular name for the item.', 'invoicing' ),
141
+        'type'        => 'string',
142
+        'context'     => array( 'view', 'edit', 'embed' ),
143
+    ),
144
+
145
+    'is_dynamic_pricing'   => array(
146
+        'description' => __( 'Whether or not customers can enter their own prices when checking out.', 'invoicing' ),
147
+        'type'        => 'integer',
148
+        'enum'        => array( 0, 1 ),
149
+        'context'     => array( 'view', 'edit', 'embed' ),
150
+    ),
151
+
152
+    'minimum_price'        => array(
153
+        'description' => __( 'For dynamic prices, this is the minimum price that a user can set.', 'invoicing' ),
154
+        'type'        => 'number',
155
+        'context'     => array( 'view', 'edit', 'embed' ),
156
+    ),
157
+
158
+    'is_recurring'         => array(
159
+        'description' => __( 'Whether or not this is a subscription item.', 'invoicing' ),
160
+        'type'        => 'integer',
161
+        'enum'        => array( 0, 1 ),
162
+        'context'     => array( 'view', 'edit', 'embed' ),
163
+    ),
164
+
165
+    'initial_price'        => array(
166
+        'description' => __( 'The initial price of the item.', 'invoicing' ),
167
+        'type'        => 'number',
168
+        'context'     => array( 'view', 'edit', 'embed' ),
169
+        'readonly'    => true,
170
+    ),
171
+
172
+    'the_initial_price'    => array(
173
+        'description' => __( 'The formatted initial price of the item.', 'invoicing' ),
174
+        'type'        => 'string',
175
+        'context'     => array( 'view', 'edit', 'embed' ),
176
+        'readonly'    => true,
177
+    ),
178
+
179
+    'recurring_price'      => array(
180
+        'description' => __( 'The recurring price of the item.', 'invoicing' ),
181
+        'type'        => 'number',
182
+        'context'     => array( 'view', 'edit', 'embed' ),
183
+        'readonly'    => true,
184
+    ),
185
+
186
+    'the_recurring_price'  => array(
187
+        'description' => __( 'The formatted recurring price of the item.', 'invoicing' ),
188
+        'type'        => 'string',
189
+        'context'     => array( 'view', 'edit', 'embed' ),
190
+        'readonly'    => true,
191
+    ),
192
+
193
+    'recurring_period'     => array(
194
+        'description' => __( 'The recurring period for a recurring item.', 'invoicing' ),
195
+        'type'        => 'string',
196
+        'context'     => array( 'view', 'edit', 'embed' ),
197
+        'enum'        => array( 'D', 'W', 'M', 'Y' ),
198
+    ),
199
+
200
+    'recurring_interval'   => array(
201
+        'description' => __( 'The recurring interval for a subscription item.', 'invoicing' ),
202
+        'type'        => 'integer',
203
+        'context'     => array( 'view', 'edit', 'embed' ),
204
+    ),
205
+
206
+    'recurring_limit'      => array(
207
+        'description' => __( 'The maximum number of renewals for a subscription item.', 'invoicing' ),
208
+        'type'        => 'integer',
209
+        'context'     => array( 'view', 'edit', 'embed' ),
210
+    ),
211
+
212
+    'is_free_trial'        => array(
213
+        'description' => __( 'Whether the item has a free trial period.', 'invoicing' ),
214
+        'type'        => 'integer',
215
+        'enum'        => array( 0, 1 ),
216
+        'context'     => array( 'view', 'edit', 'embed' ),
217
+    ),
218
+
219
+    'trial_period'         => array(
220
+        'description' => __( 'The trial period.', 'invoicing' ),
221
+        'type'        => 'string',
222
+        'context'     => array( 'view', 'edit', 'embed' ),
223
+        'enum'        => array( 'D', 'W', 'M', 'Y' ),
224
+    ),
225
+
226
+    'trial_interval'       => array(
227
+        'description' => __( 'The trial interval.', 'invoicing' ),
228
+        'type'        => 'integer',
229
+        'context'     => array( 'view', 'edit', 'embed' ),
230
+    ),
231
+
232
+    'first_renewal_date'   => array(
233
+        'description' => __( 'The first renewal date in case the item was to be bought today.', 'invoicing' ),
234
+        'type'        => 'string',
235
+        'context'     => array( 'view', 'edit', 'embed' ),
236
+        'readonly'    => true,
237
+    ),
238
+
239
+    'edit_url'             => array(
240
+        'description' => __( 'The URL to edit an item.', 'invoicing' ),
241
+        'type'        => 'string',
242
+        'context'     => array( 'view', 'edit', 'embed' ),
243
+        'readonly'    => true,
244
+    ),
245 245
 );
Please login to merge, or discard this patch.
includes/data/eu-states.php 1 patch
Indentation   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -9,31 +9,31 @@
 block discarded – undo
9 9
 defined( 'ABSPATH' ) || exit;
10 10
 
11 11
 return array(
12
-	'AT',
13
-	'BE',
14
-	'BG',
15
-	'HR',
16
-	'CY',
17
-	'CZ',
18
-	'DK',
19
-	'EE',
20
-	'FI',
21
-	'FR',
22
-	'DE',
23
-	'GR',
24
-	'HU',
25
-	'IE',
26
-	'IT',
27
-	'LV',
28
-	'LT',
29
-	'LU',
30
-	'MT',
31
-	'NL',
32
-	'PL',
33
-	'PT',
34
-	'RO',
35
-	'SK',
36
-	'SI',
37
-	'ES',
38
-	'SE',
12
+    'AT',
13
+    'BE',
14
+    'BG',
15
+    'HR',
16
+    'CY',
17
+    'CZ',
18
+    'DK',
19
+    'EE',
20
+    'FI',
21
+    'FR',
22
+    'DE',
23
+    'GR',
24
+    'HU',
25
+    'IE',
26
+    'IT',
27
+    'LV',
28
+    'LT',
29
+    'LU',
30
+    'MT',
31
+    'NL',
32
+    'PL',
33
+    'PT',
34
+    'RO',
35
+    'SK',
36
+    'SI',
37
+    'ES',
38
+    'SE',
39 39
 );
Please login to merge, or discard this patch.