@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | * @since 1.0.19 |
7 | 7 | */ |
8 | 8 | |
9 | -defined( 'ABSPATH' ) || exit; |
|
9 | +defined('ABSPATH') || exit; |
|
10 | 10 | |
11 | 11 | /** |
12 | 12 | * The main API class |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | $this->invoice_counts = new GetPaid_REST_Report_Invoice_Counts_Controller(); |
97 | 97 | |
98 | 98 | // Fires after loading the rest api. |
99 | - do_action( 'getpaid_rest_api_loaded', $this ); |
|
99 | + do_action('getpaid_rest_api_loaded', $this); |
|
100 | 100 | } |
101 | 101 | |
102 | 102 | } |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | * @since 2.0.0 |
10 | 10 | */ |
11 | 11 | |
12 | -defined( 'ABSPATH' ) || exit; |
|
12 | +defined('ABSPATH') || exit; |
|
13 | 13 | |
14 | 14 | /** |
15 | 15 | * GetPaid REST invoice counts controller class. |
@@ -32,25 +32,25 @@ discard block |
||
32 | 32 | * @param WP_REST_Request $request Request object. |
33 | 33 | * @return WP_REST_Response $response Response data. |
34 | 34 | */ |
35 | - public function prepare_item_for_response( $report, $request ) { |
|
35 | + public function prepare_item_for_response($report, $request) { |
|
36 | 36 | |
37 | 37 | $data = (array) $report; |
38 | - $context = ! empty( $request['context'] ) ? $request['context'] : 'view'; |
|
39 | - $data = $this->add_additional_fields_to_object( $data, $request ); |
|
40 | - $data = $this->filter_response_by_context( $data, $context ); |
|
38 | + $context = !empty($request['context']) ? $request['context'] : 'view'; |
|
39 | + $data = $this->add_additional_fields_to_object($data, $request); |
|
40 | + $data = $this->filter_response_by_context($data, $context); |
|
41 | 41 | |
42 | 42 | // Wrap the data in a response object. |
43 | - $response = rest_ensure_response( $data ); |
|
43 | + $response = rest_ensure_response($data); |
|
44 | 44 | |
45 | 45 | $response->add_links( |
46 | 46 | array( |
47 | 47 | 'about' => array( |
48 | - 'href' => rest_url( sprintf( '%s/reports', $this->namespace ) ), |
|
48 | + 'href' => rest_url(sprintf('%s/reports', $this->namespace)), |
|
49 | 49 | ), |
50 | 50 | ) |
51 | 51 | ); |
52 | 52 | |
53 | - return apply_filters( 'getpaid_rest_prepare_report_invoices_count', $response, $report, $request ); |
|
53 | + return apply_filters('getpaid_rest_prepare_report_invoices_count', $response, $report, $request); |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | /** |
@@ -61,12 +61,12 @@ discard block |
||
61 | 61 | */ |
62 | 62 | protected function get_reports() { |
63 | 63 | |
64 | - $counts = wp_count_posts( 'wpi_invoice' ); |
|
64 | + $counts = wp_count_posts('wpi_invoice'); |
|
65 | 65 | $data = array(); |
66 | 66 | |
67 | - foreach ( wpinv_get_invoice_statuses() as $slug => $name ) { |
|
67 | + foreach (wpinv_get_invoice_statuses() as $slug => $name) { |
|
68 | 68 | |
69 | - if ( ! isset( $counts->$slug ) ) { |
|
69 | + if (!isset($counts->$slug)) { |
|
70 | 70 | continue; |
71 | 71 | } |
72 | 72 | |
@@ -94,26 +94,26 @@ discard block |
||
94 | 94 | 'type' => 'object', |
95 | 95 | 'properties' => array( |
96 | 96 | 'slug' => array( |
97 | - 'description' => __( 'An alphanumeric identifier for the resource.', 'invoicing' ), |
|
97 | + 'description' => __('An alphanumeric identifier for the resource.', 'invoicing'), |
|
98 | 98 | 'type' => 'string', |
99 | - 'context' => array( 'view' ), |
|
99 | + 'context' => array('view'), |
|
100 | 100 | 'readonly' => true, |
101 | 101 | ), |
102 | 102 | 'name' => array( |
103 | - 'description' => __( 'Invoice status name.', 'invoicing' ), |
|
103 | + 'description' => __('Invoice status name.', 'invoicing'), |
|
104 | 104 | 'type' => 'string', |
105 | - 'context' => array( 'view' ), |
|
105 | + 'context' => array('view'), |
|
106 | 106 | 'readonly' => true, |
107 | 107 | ), |
108 | 108 | 'count' => array( |
109 | - 'description' => __( 'Number of invoices.', 'invoicing' ), |
|
109 | + 'description' => __('Number of invoices.', 'invoicing'), |
|
110 | 110 | 'type' => 'string', |
111 | - 'context' => array( 'view' ), |
|
111 | + 'context' => array('view'), |
|
112 | 112 | 'readonly' => true, |
113 | 113 | ), |
114 | 114 | ), |
115 | 115 | ); |
116 | 116 | |
117 | - return $this->add_additional_fields_schema( $schema ); |
|
117 | + return $this->add_additional_fields_schema($schema); |
|
118 | 118 | } |
119 | 119 | } |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | * @since 2.0.0 |
10 | 10 | */ |
11 | 11 | |
12 | -defined( 'ABSPATH' ) || exit; |
|
12 | +defined('ABSPATH') || exit; |
|
13 | 13 | |
14 | 14 | /** |
15 | 15 | * GetPaid REST reports controller class. |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | * |
33 | 33 | * @see register_rest_route() |
34 | 34 | */ |
35 | - public function register_namespace_routes( $namespace ) { |
|
35 | + public function register_namespace_routes($namespace) { |
|
36 | 36 | |
37 | 37 | // List all available reports. |
38 | 38 | register_rest_route( |
@@ -41,11 +41,11 @@ discard block |
||
41 | 41 | array( |
42 | 42 | array( |
43 | 43 | 'methods' => WP_REST_Server::READABLE, |
44 | - 'callback' => array( $this, 'get_items' ), |
|
45 | - 'permission_callback' => array( $this, 'get_items_permissions_check' ), |
|
44 | + 'callback' => array($this, 'get_items'), |
|
45 | + 'permission_callback' => array($this, 'get_items_permissions_check'), |
|
46 | 46 | 'args' => $this->get_collection_params(), |
47 | 47 | ), |
48 | - 'schema' => array( $this, 'get_public_item_schema' ), |
|
48 | + 'schema' => array($this, 'get_public_item_schema'), |
|
49 | 49 | ) |
50 | 50 | ); |
51 | 51 | |
@@ -58,10 +58,10 @@ discard block |
||
58 | 58 | * @param WP_REST_Request $request Full data about the request. |
59 | 59 | * @return WP_Error|boolean |
60 | 60 | */ |
61 | - public function get_items_permissions_check( $request ) { |
|
61 | + public function get_items_permissions_check($request) { |
|
62 | 62 | |
63 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
64 | - return new WP_Error( 'rest_cannot_view', __( 'Sorry, you cannot list resources.', 'invoicing' ), array( 'status' => rest_authorization_required_code() ) ); |
|
63 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
64 | + return new WP_Error('rest_cannot_view', __('Sorry, you cannot list resources.', 'invoicing'), array('status' => rest_authorization_required_code())); |
|
65 | 65 | } |
66 | 66 | |
67 | 67 | return true; |
@@ -78,35 +78,35 @@ discard block |
||
78 | 78 | $reports = array( |
79 | 79 | array( |
80 | 80 | 'slug' => 'sales', |
81 | - 'description' => __( 'List of sales reports.', 'invoicing' ), |
|
81 | + 'description' => __('List of sales reports.', 'invoicing'), |
|
82 | 82 | ), |
83 | 83 | array( |
84 | 84 | 'slug' => 'top_sellers', |
85 | - 'description' => __( 'List of top selling items.', 'invoicing' ), |
|
85 | + 'description' => __('List of top selling items.', 'invoicing'), |
|
86 | 86 | ), |
87 | 87 | array( |
88 | 88 | 'slug' => 'top_earners', |
89 | - 'description' => __( 'List of top earning items.', 'invoicing' ), |
|
89 | + 'description' => __('List of top earning items.', 'invoicing'), |
|
90 | 90 | ), |
91 | 91 | array( |
92 | 92 | 'slug' => 'invoices/counts', |
93 | - 'description' => __( 'Invoice counts.', 'invoicing' ), |
|
93 | + 'description' => __('Invoice counts.', 'invoicing'), |
|
94 | 94 | ), |
95 | 95 | array( |
96 | 96 | 'slug' => 'items/totals', |
97 | - 'description' => __( 'Item totals.', 'invoicing' ), |
|
97 | + 'description' => __('Item totals.', 'invoicing'), |
|
98 | 98 | ), |
99 | 99 | array( |
100 | 100 | 'slug' => 'customers/totals', |
101 | - 'description' => __( 'Customer totals.', 'invoicing' ), |
|
101 | + 'description' => __('Customer totals.', 'invoicing'), |
|
102 | 102 | ), |
103 | 103 | array( |
104 | 104 | 'slug' => 'discounts/totals', |
105 | - 'description' => __( 'Discount totals.', 'invoicing' ), |
|
105 | + 'description' => __('Discount totals.', 'invoicing'), |
|
106 | 106 | ) |
107 | 107 | ); |
108 | 108 | |
109 | - return apply_filters( 'getpaid_available_api_reports', $reports ); |
|
109 | + return apply_filters('getpaid_available_api_reports', $reports); |
|
110 | 110 | |
111 | 111 | } |
112 | 112 | |
@@ -117,16 +117,16 @@ discard block |
||
117 | 117 | * @param WP_REST_Request $request |
118 | 118 | * @return array|WP_Error |
119 | 119 | */ |
120 | - public function get_items( $request ) { |
|
120 | + public function get_items($request) { |
|
121 | 121 | $data = array(); |
122 | 122 | $reports = $this->get_reports(); |
123 | 123 | |
124 | - foreach ( $reports as $report ) { |
|
125 | - $item = $this->prepare_item_for_response( (object) $report, $request ); |
|
126 | - $data[] = $this->prepare_response_for_collection( $item ); |
|
124 | + foreach ($reports as $report) { |
|
125 | + $item = $this->prepare_item_for_response((object) $report, $request); |
|
126 | + $data[] = $this->prepare_response_for_collection($item); |
|
127 | 127 | } |
128 | 128 | |
129 | - return rest_ensure_response( $data ); |
|
129 | + return rest_ensure_response($data); |
|
130 | 130 | } |
131 | 131 | |
132 | 132 | /** |
@@ -137,28 +137,28 @@ discard block |
||
137 | 137 | * @param WP_REST_Request $request Request object. |
138 | 138 | * @return WP_REST_Response $response Response data. |
139 | 139 | */ |
140 | - public function prepare_item_for_response( $report, $request ) { |
|
140 | + public function prepare_item_for_response($report, $request) { |
|
141 | 141 | $data = array( |
142 | 142 | 'slug' => $report->slug, |
143 | 143 | 'description' => $report->description, |
144 | 144 | ); |
145 | 145 | |
146 | - $context = ! empty( $request['context'] ) ? $request['context'] : 'view'; |
|
147 | - $data = $this->add_additional_fields_to_object( $data, $request ); |
|
148 | - $data = $this->filter_response_by_context( $data, $context ); |
|
146 | + $context = !empty($request['context']) ? $request['context'] : 'view'; |
|
147 | + $data = $this->add_additional_fields_to_object($data, $request); |
|
148 | + $data = $this->filter_response_by_context($data, $context); |
|
149 | 149 | |
150 | 150 | // Wrap the data in a response object. |
151 | - $response = rest_ensure_response( $data ); |
|
152 | - $response->add_links( array( |
|
151 | + $response = rest_ensure_response($data); |
|
152 | + $response->add_links(array( |
|
153 | 153 | 'self' => array( |
154 | - 'href' => rest_url( sprintf( '/%s/%s/%s', $this->namespace, $this->rest_base, $report->slug ) ), |
|
154 | + 'href' => rest_url(sprintf('/%s/%s/%s', $this->namespace, $this->rest_base, $report->slug)), |
|
155 | 155 | ), |
156 | 156 | 'collection' => array( |
157 | - 'href' => rest_url( sprintf( '%s/%s', $this->namespace, $this->rest_base ) ), |
|
157 | + 'href' => rest_url(sprintf('%s/%s', $this->namespace, $this->rest_base)), |
|
158 | 158 | ), |
159 | - ) ); |
|
159 | + )); |
|
160 | 160 | |
161 | - return apply_filters( 'getpaid_rest_prepare_report', $response, $report, $request ); |
|
161 | + return apply_filters('getpaid_rest_prepare_report', $response, $report, $request); |
|
162 | 162 | } |
163 | 163 | |
164 | 164 | /** |
@@ -174,21 +174,21 @@ discard block |
||
174 | 174 | 'type' => 'object', |
175 | 175 | 'properties' => array( |
176 | 176 | 'slug' => array( |
177 | - 'description' => __( 'An alphanumeric identifier for the resource.', 'invoicing' ), |
|
177 | + 'description' => __('An alphanumeric identifier for the resource.', 'invoicing'), |
|
178 | 178 | 'type' => 'string', |
179 | - 'context' => array( 'view' ), |
|
179 | + 'context' => array('view'), |
|
180 | 180 | 'readonly' => true, |
181 | 181 | ), |
182 | 182 | 'description' => array( |
183 | - 'description' => __( 'A human-readable description of the resource.', 'invoicing' ), |
|
183 | + 'description' => __('A human-readable description of the resource.', 'invoicing'), |
|
184 | 184 | 'type' => 'string', |
185 | - 'context' => array( 'view' ), |
|
185 | + 'context' => array('view'), |
|
186 | 186 | 'readonly' => true, |
187 | 187 | ), |
188 | 188 | ), |
189 | 189 | ); |
190 | 190 | |
191 | - return $this->add_additional_fields_schema( $schema ); |
|
191 | + return $this->add_additional_fields_schema($schema); |
|
192 | 192 | } |
193 | 193 | |
194 | 194 | /** |
@@ -199,7 +199,7 @@ discard block |
||
199 | 199 | */ |
200 | 200 | public function get_collection_params() { |
201 | 201 | return array( |
202 | - 'context' => $this->get_context_param( array( 'default' => 'view' ) ), |
|
202 | + 'context' => $this->get_context_param(array('default' => 'view')), |
|
203 | 203 | ); |
204 | 204 | } |
205 | 205 | } |