@@ -16,496 +16,496 @@ |
||
| 16 | 16 | */ |
| 17 | 17 | class GetPaid_REST_Date_Based_Controller extends GetPaid_REST_Controller { |
| 18 | 18 | |
| 19 | - /** |
|
| 20 | - * Group response items by day or month. |
|
| 21 | - * |
|
| 22 | - * @var string |
|
| 23 | - */ |
|
| 24 | - public $groupby = 'day'; |
|
| 25 | - |
|
| 26 | - /** |
|
| 27 | - * Returns an array with arguments to request the previous report. |
|
| 28 | - * |
|
| 29 | - * @var array |
|
| 30 | - */ |
|
| 31 | - public $previous_range = array(); |
|
| 32 | - |
|
| 33 | - /** |
|
| 34 | - * The period interval. |
|
| 35 | - * |
|
| 36 | - * @var int |
|
| 37 | - */ |
|
| 38 | - public $interval; |
|
| 39 | - |
|
| 40 | - /** |
|
| 41 | - * Retrieves the before and after dates. |
|
| 42 | - * |
|
| 43 | - * @param WP_REST_Request $request Request object. |
|
| 44 | - * @return array The appropriate date range. |
|
| 45 | - */ |
|
| 46 | - public function get_date_range( $request ) { |
|
| 47 | - |
|
| 48 | - // Check if the period is x_days. |
|
| 49 | - if ( preg_match( '/^(\d+)_days$/', $request['period'], $matches ) ) { |
|
| 50 | - $date_range = $this->get_x_days_date_range( absint( $matches[1] ) ); |
|
| 51 | - } elseif ( is_callable( array( $this, 'get_' . $request['period'] . '_date_range' ) ) ) { |
|
| 52 | - $date_range = call_user_func( array( $this, 'get_' . $request['period'] . '_date_range' ), $request ); |
|
| 53 | - } else { |
|
| 54 | - $request['period'] = '7_days'; |
|
| 55 | - $date_range = $this->get_x_days_date_range(); |
|
| 56 | - } |
|
| 57 | - |
|
| 58 | - // 3 months max for day view. |
|
| 59 | - $before = strtotime( $date_range['before'] ); |
|
| 60 | - $after = strtotime( $date_range['after'] ); |
|
| 61 | - if ( floor( ( $before - $after ) / MONTH_IN_SECONDS ) > 2 ) { |
|
| 62 | - $this->groupby = 'month'; |
|
| 63 | - } |
|
| 64 | - |
|
| 65 | - $this->prepare_interval( $date_range ); |
|
| 66 | - |
|
| 67 | - return $date_range; |
|
| 68 | - |
|
| 69 | - } |
|
| 70 | - |
|
| 71 | - /** |
|
| 72 | - * Groups by month or days. |
|
| 73 | - * |
|
| 74 | - * @param array $range Date range. |
|
| 75 | - * @return array The appropriate date range. |
|
| 76 | - */ |
|
| 77 | - public function prepare_interval( $range ) { |
|
| 78 | - |
|
| 79 | - $before = strtotime( $range['before'] ); |
|
| 80 | - $after = strtotime( $range['after'] ); |
|
| 81 | - if ( 'day' === $this->groupby ) { |
|
| 82 | - $difference = max( DAY_IN_SECONDS, ( DAY_IN_SECONDS + $before - $after ) ); // Prevent division by 0; |
|
| 83 | - $this->interval = absint( ceil( max( 1, $difference / DAY_IN_SECONDS ) ) ); |
|
| 84 | - return; |
|
| 85 | - } |
|
| 86 | - |
|
| 87 | - $this->interval = 0; |
|
| 88 | - $min_date = strtotime( gmdate( 'Y-m-01', $after ) ); |
|
| 89 | - |
|
| 90 | - while ( $min_date <= $before ) { |
|
| 91 | - $this->interval ++; |
|
| 92 | - $min_date = strtotime( '+1 MONTH', $min_date ); |
|
| 93 | - } |
|
| 94 | - |
|
| 95 | - $this->interval = max( 1, $this->interval ); |
|
| 96 | - |
|
| 97 | - } |
|
| 98 | - |
|
| 99 | - /** |
|
| 100 | - * Retrieves a custom date range. |
|
| 101 | - * |
|
| 102 | - * @param WP_REST_Request $request Request object. |
|
| 103 | - * @return array The appropriate date range. |
|
| 104 | - */ |
|
| 105 | - public function get_custom_date_range( $request ) { |
|
| 106 | - |
|
| 107 | - $after = max( strtotime( '-20 years' ), strtotime( sanitize_text_field( $request['after'] ) ) ); |
|
| 108 | - $before = gmdate( 'Y-m-d' ); |
|
| 109 | - |
|
| 110 | - if ( ! empty( $request['before'] ) ) { |
|
| 111 | - $before = min( $before, strtotime( sanitize_text_field( $request['before'] ) ) ); |
|
| 112 | - } |
|
| 113 | - |
|
| 114 | - // Set the previous date range. |
|
| 115 | - $difference = $before - $after; |
|
| 116 | - $this->previous_range = array( |
|
| 117 | - 'period' => 'custom', |
|
| 118 | - 'before' => gmdate( 'Y-m-d', $before - $difference - DAY_IN_SECONDS ), |
|
| 119 | - 'after' => gmdate( 'Y-m-d', $after - $difference - DAY_IN_SECONDS ), |
|
| 120 | - ); |
|
| 121 | - |
|
| 122 | - // Generate the report. |
|
| 123 | - return array( |
|
| 124 | - 'before' => gmdate( 'Y-m-d', $before ), |
|
| 125 | - 'after' => gmdate( 'Y-m-d', $after ), |
|
| 126 | - ); |
|
| 127 | - |
|
| 128 | - } |
|
| 129 | - |
|
| 130 | - /** |
|
| 131 | - * Retrieves todays date range. |
|
| 132 | - * |
|
| 133 | - * @return array The appropriate date range. |
|
| 134 | - */ |
|
| 135 | - public function get_today_date_range() { |
|
| 136 | - |
|
| 137 | - // Set the previous date range. |
|
| 138 | - $this->previous_range = array( |
|
| 139 | - 'period' => 'yesterday', |
|
| 140 | - ); |
|
| 141 | - |
|
| 142 | - // Generate the report. |
|
| 143 | - return array( |
|
| 144 | - 'before' => gmdate( 'Y-m-d' ), |
|
| 145 | - 'after' => gmdate( 'Y-m-d' ), |
|
| 146 | - ); |
|
| 147 | - |
|
| 148 | - } |
|
| 149 | - |
|
| 150 | - /** |
|
| 151 | - * Retrieves yesterdays date range. |
|
| 152 | - * |
|
| 153 | - * @return array The appropriate date range. |
|
| 154 | - */ |
|
| 155 | - public function get_yesterday_date_range() { |
|
| 156 | - |
|
| 157 | - // Set the previous date range. |
|
| 158 | - $this->previous_range = array( |
|
| 159 | - 'period' => 'custom', |
|
| 160 | - 'before' => gmdate( 'Y-m-d', strtotime( '-2 days' ) ), |
|
| 161 | - 'after' => gmdate( 'Y-m-d', strtotime( '-2 days' ) ), |
|
| 162 | - ); |
|
| 163 | - |
|
| 164 | - // Generate the report. |
|
| 165 | - return array( |
|
| 166 | - 'before' => gmdate( 'Y-m-d', strtotime( '-1 day' ) ), |
|
| 167 | - 'after' => gmdate( 'Y-m-d', strtotime( '-1 day' ) ), |
|
| 168 | - ); |
|
| 169 | - |
|
| 170 | - } |
|
| 171 | - |
|
| 172 | - /** |
|
| 173 | - * Retrieves this week's date range. |
|
| 174 | - * |
|
| 175 | - * @return array The appropriate date range. |
|
| 176 | - */ |
|
| 177 | - public function get_week_date_range() { |
|
| 178 | - |
|
| 179 | - // Set the previous date range. |
|
| 180 | - $this->previous_range = array( |
|
| 181 | - 'period' => 'last_week', |
|
| 182 | - ); |
|
| 183 | - |
|
| 184 | - // Generate the report. |
|
| 185 | - $week_starts = absint( get_option( 'start_of_week' ) ); |
|
| 186 | - return array( |
|
| 187 | - 'before' => gmdate( 'Y-m-d' ), |
|
| 188 | - 'after' => gmdate( 'Y-m-d', strtotime( 'next Sunday -' . ( 7 - $week_starts ) . ' days' ) ), |
|
| 189 | - ); |
|
| 190 | - } |
|
| 191 | - |
|
| 192 | - /** |
|
| 193 | - * Retrieves last week's date range. |
|
| 194 | - * |
|
| 195 | - * @return array The appropriate date range. |
|
| 196 | - */ |
|
| 197 | - public function get_last_week_date_range() { |
|
| 198 | - |
|
| 199 | - $week_starts = absint( get_option( 'start_of_week' ) ); |
|
| 200 | - $week_starts = strtotime( 'last Sunday -' . ( 7 - $week_starts ) . ' days' ); |
|
| 201 | - $date_range = array( |
|
| 202 | - 'before' => gmdate( 'Y-m-d', $week_starts + 6 * DAY_IN_SECONDS ), |
|
| 203 | - 'after' => gmdate( 'Y-m-d', $week_starts ), |
|
| 204 | - ); |
|
| 205 | - |
|
| 206 | - // Set the previous date range. |
|
| 207 | - $week_starts = $week_starts - 7 * DAY_IN_SECONDS; |
|
| 208 | - $this->previous_range = array( |
|
| 209 | - 'period' => 'custom', |
|
| 210 | - 'before' => gmdate( 'Y-m-d', $week_starts + 6 * DAY_IN_SECONDS ), |
|
| 211 | - 'after' => gmdate( 'Y-m-d', $week_starts ), |
|
| 212 | - ); |
|
| 213 | - |
|
| 214 | - // Generate the report. |
|
| 215 | - return $date_range; |
|
| 216 | - } |
|
| 217 | - |
|
| 218 | - /** |
|
| 219 | - * Retrieves last x days date range. |
|
| 220 | - * |
|
| 221 | - * @return array The appropriate date range. |
|
| 222 | - */ |
|
| 223 | - public function get_x_days_date_range( $days = 7 ) { |
|
| 224 | - |
|
| 225 | - $days--; |
|
| 226 | - |
|
| 227 | - $date_range = array( |
|
| 228 | - 'before' => gmdate( 'Y-m-d' ), |
|
| 229 | - 'after' => gmdate( 'Y-m-d', strtotime( "-$days days" ) ), |
|
| 230 | - ); |
|
| 231 | - |
|
| 232 | - $days++; |
|
| 233 | - |
|
| 234 | - // Set the previous date range. |
|
| 235 | - $this->previous_range = array( |
|
| 236 | - 'period' => 'custom', |
|
| 237 | - 'before' => gmdate( 'Y-m-d', strtotime( $date_range['before'] ) - $days * DAY_IN_SECONDS ), |
|
| 238 | - 'after' => gmdate( 'Y-m-d', strtotime( $date_range['after'] ) - $days * DAY_IN_SECONDS ), |
|
| 239 | - ); |
|
| 240 | - |
|
| 241 | - // Generate the report. |
|
| 242 | - return $date_range; |
|
| 243 | - } |
|
| 244 | - |
|
| 245 | - /** |
|
| 246 | - * Retrieves this month date range. |
|
| 247 | - * |
|
| 248 | - * @return array The appropriate date range. |
|
| 249 | - */ |
|
| 250 | - public function get_month_date_range() { |
|
| 251 | - |
|
| 252 | - // Set the previous date range. |
|
| 253 | - $this->previous_range = array( |
|
| 254 | - 'period' => 'last_month', |
|
| 255 | - ); |
|
| 256 | - |
|
| 257 | - // Generate the report. |
|
| 258 | - return array( |
|
| 259 | - 'after' => gmdate( 'Y-m-01' ), |
|
| 260 | - 'before' => gmdate( 'Y-m-t' ), |
|
| 261 | - ); |
|
| 262 | - |
|
| 263 | - } |
|
| 264 | - |
|
| 265 | - /** |
|
| 266 | - * Retrieves last month's date range. |
|
| 267 | - * |
|
| 268 | - * @return array The appropriate date range. |
|
| 269 | - */ |
|
| 270 | - public function get_last_month_date_range() { |
|
| 271 | - |
|
| 272 | - // Set the previous date range. |
|
| 273 | - $this->previous_range = array( |
|
| 274 | - 'period' => 'custom', |
|
| 275 | - 'after' => gmdate( 'Y-m-01', strtotime( '-2 months' ) ), |
|
| 276 | - 'before' => gmdate( 'Y-m-t', strtotime( '-2 months' ) ), |
|
| 277 | - ); |
|
| 278 | - |
|
| 279 | - // Generate the report. |
|
| 280 | - return array( |
|
| 281 | - 'after' => gmdate( 'Y-m-01', strtotime( 'last month' ) ), |
|
| 282 | - 'before' => gmdate( 'Y-m-t', strtotime( 'last month' ) ), |
|
| 283 | - ); |
|
| 284 | - |
|
| 285 | - } |
|
| 286 | - |
|
| 287 | - /** |
|
| 288 | - * Retrieves this quarter date range. |
|
| 289 | - * |
|
| 290 | - * @return array The available quarters. |
|
| 291 | - */ |
|
| 292 | - public function get_quarters() { |
|
| 293 | - |
|
| 294 | - $year = (int) gmdate( 'Y' ); |
|
| 295 | - $last_year = (int) $year - 1; |
|
| 296 | - return array( |
|
| 297 | - |
|
| 298 | - // Third quarter of previous year: July 1st to September 30th |
|
| 299 | - array( |
|
| 300 | - 'before' => "{$last_year}-09-30", |
|
| 301 | - 'after' => "{$last_year}-07-01", |
|
| 302 | - ), |
|
| 303 | - |
|
| 304 | - // Last quarter of previous year: October 1st to December 31st |
|
| 305 | - array( |
|
| 306 | - 'before' => "{$last_year}-12-31", |
|
| 307 | - 'after' => "{$last_year}-10-01", |
|
| 308 | - ), |
|
| 309 | - |
|
| 310 | - // First quarter: January 1st to March 31st |
|
| 311 | - array( |
|
| 312 | - 'before' => "{$year}-03-31", |
|
| 313 | - 'after' => "{$year}-01-01", |
|
| 314 | - ), |
|
| 315 | - |
|
| 316 | - // Second quarter: April 1st to June 30th |
|
| 317 | - array( |
|
| 318 | - 'before' => "{$year}-06-30", |
|
| 319 | - 'after' => "{$year}-04-01", |
|
| 320 | - ), |
|
| 321 | - |
|
| 322 | - // Third quarter: July 1st to September 30th |
|
| 323 | - array( |
|
| 324 | - 'before' => "{$year}-09-30", |
|
| 325 | - 'after' => "{$year}-07-01", |
|
| 326 | - ), |
|
| 327 | - |
|
| 328 | - // Fourth quarter: October 1st to December 31st |
|
| 329 | - array( |
|
| 330 | - 'before' => "{$year}-12-31", |
|
| 331 | - 'after' => "{$year}-10-01", |
|
| 332 | - ), |
|
| 333 | - ); |
|
| 334 | - } |
|
| 335 | - |
|
| 336 | - /** |
|
| 337 | - * Retrieves the current quater. |
|
| 338 | - * |
|
| 339 | - * @return int The current quarter. |
|
| 340 | - */ |
|
| 341 | - public function get_quarter() { |
|
| 342 | - |
|
| 343 | - $month = (int) gmdate( 'n' ); |
|
| 344 | - $quarters = array( 1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4 ); |
|
| 345 | - return $quarters[ $month - 1 ]; |
|
| 346 | - |
|
| 347 | - } |
|
| 348 | - |
|
| 349 | - /** |
|
| 350 | - * Retrieves this quarter date range. |
|
| 351 | - * |
|
| 352 | - * @return array The appropriate date range. |
|
| 353 | - */ |
|
| 354 | - public function get_quarter_date_range() { |
|
| 355 | - |
|
| 356 | - // Set the previous date range. |
|
| 357 | - $this->previous_range = array( |
|
| 358 | - 'period' => 'last_quarter', |
|
| 359 | - ); |
|
| 360 | - |
|
| 361 | - // Generate the report. |
|
| 362 | - $quarter = $this->get_quarter(); |
|
| 363 | - $quarters = $this->get_quarters(); |
|
| 364 | - return $quarters[ $quarter + 1 ]; |
|
| 365 | - |
|
| 366 | - } |
|
| 367 | - |
|
| 368 | - /** |
|
| 369 | - * Retrieves last quarter's date range. |
|
| 370 | - * |
|
| 371 | - * @return array The appropriate date range. |
|
| 372 | - */ |
|
| 373 | - public function get_last_quarter_date_range() { |
|
| 374 | - |
|
| 375 | - $quarters = $this->get_quarters(); |
|
| 376 | - $quarter = $this->get_quarter(); |
|
| 377 | - |
|
| 378 | - // Set the previous date range. |
|
| 379 | - $this->previous_range = array_merge( |
|
| 380 | - $quarters[ $quarter - 1 ], |
|
| 381 | - array( 'period' => 'custom' ) |
|
| 382 | - ); |
|
| 383 | - |
|
| 384 | - // Generate the report. |
|
| 385 | - return $quarters[ $quarter ]; |
|
| 386 | - |
|
| 387 | - } |
|
| 388 | - |
|
| 389 | - /** |
|
| 390 | - * Retrieves this year date range. |
|
| 391 | - * |
|
| 392 | - * @return array The appropriate date range. |
|
| 393 | - */ |
|
| 394 | - public function get_year_date_range() { |
|
| 395 | - |
|
| 396 | - // Set the previous date range. |
|
| 397 | - $this->previous_range = array( |
|
| 398 | - 'period' => 'last_year', |
|
| 399 | - ); |
|
| 400 | - |
|
| 401 | - // Generate the report. |
|
| 402 | - return array( |
|
| 403 | - 'after' => gmdate( 'Y-01-01' ), |
|
| 404 | - 'before' => gmdate( 'Y-12-31' ), |
|
| 405 | - ); |
|
| 406 | - |
|
| 407 | - } |
|
| 408 | - |
|
| 409 | - /** |
|
| 410 | - * Retrieves last year date range. |
|
| 411 | - * |
|
| 412 | - * @return array The appropriate date range. |
|
| 413 | - */ |
|
| 414 | - public function get_last_year_date_range() { |
|
| 415 | - |
|
| 416 | - // Set the previous date range. |
|
| 417 | - $this->previous_range = array( |
|
| 418 | - 'period' => 'custom', |
|
| 419 | - 'after' => gmdate( 'Y-01-01', strtotime( '-2 years' ) ), |
|
| 420 | - 'before' => gmdate( 'Y-12-31', strtotime( '-2 years' ) ), |
|
| 421 | - ); |
|
| 422 | - |
|
| 423 | - // Generate the report. |
|
| 424 | - return array( |
|
| 425 | - 'after' => gmdate( 'Y-01-01', strtotime( 'last year' ) ), |
|
| 426 | - 'before' => gmdate( 'Y-12-31', strtotime( 'last year' ) ), |
|
| 427 | - ); |
|
| 428 | - |
|
| 429 | - } |
|
| 430 | - |
|
| 431 | - /** |
|
| 432 | - * Prepare a the request date for SQL usage. |
|
| 433 | - * |
|
| 434 | - * @param WP_REST_Request $request Request object. |
|
| 435 | - * @param string $date_field The date field. |
|
| 436 | - * @return string The appropriate SQL. |
|
| 437 | - */ |
|
| 438 | - public function get_date_range_sql( $request, $date_field ) { |
|
| 439 | - global $wpdb; |
|
| 440 | - |
|
| 441 | - $sql = '1=1'; |
|
| 442 | - $range = $this->get_date_range( $request ); |
|
| 443 | - |
|
| 444 | - if ( ! empty( $range['after'] ) ) { |
|
| 445 | - $sql .= ' AND ' . $wpdb->prepare( |
|
| 446 | - "$date_field >= %s", |
|
| 447 | - $range['after'] |
|
| 448 | - ); |
|
| 449 | - } |
|
| 450 | - |
|
| 451 | - if ( ! empty( $range['before'] ) ) { |
|
| 452 | - $sql .= ' AND ' . $wpdb->prepare( |
|
| 453 | - "$date_field <= %s", |
|
| 454 | - $range['before'] |
|
| 455 | - ); |
|
| 456 | - } |
|
| 457 | - |
|
| 458 | - return $sql; |
|
| 459 | - |
|
| 460 | - } |
|
| 461 | - |
|
| 462 | - /** |
|
| 463 | - * Prepares a group by query. |
|
| 464 | - * |
|
| 465 | - * @param string $date_field The date field. |
|
| 466 | - * @return string The appropriate SQL. |
|
| 467 | - */ |
|
| 468 | - public function get_group_by_sql( $date_field ) { |
|
| 469 | - |
|
| 470 | - if ( 'day' === $this->groupby ) { |
|
| 471 | - return "YEAR($date_field), MONTH($date_field), DAY($date_field)"; |
|
| 472 | - } |
|
| 473 | - |
|
| 474 | - return "YEAR($date_field), MONTH($date_field)"; |
|
| 475 | - } |
|
| 476 | - |
|
| 477 | - /** |
|
| 478 | - * Get the query params for collections. |
|
| 479 | - * |
|
| 480 | - * @return array |
|
| 481 | - */ |
|
| 482 | - public function get_collection_params() { |
|
| 483 | - return array( |
|
| 484 | - 'context' => $this->get_context_param( array( 'default' => 'view' ) ), |
|
| 485 | - 'period' => array( |
|
| 486 | - 'description' => __( 'Limit to results of a specific period.', 'invoicing' ), |
|
| 487 | - 'type' => 'string', |
|
| 488 | - 'enum' => array( 'custom', 'today', 'yesterday', 'week', 'last_week', '7_days', '30_days', '60_days', '90_days', '180_days', 'month', 'last_month', 'quarter', 'last_quarter', 'year', 'last_year', 'quarter', 'last_quarter' ), |
|
| 489 | - 'validate_callback' => 'rest_validate_request_arg', |
|
| 490 | - 'sanitize_callback' => 'sanitize_text_field', |
|
| 491 | - 'default' => '7_days', |
|
| 492 | - ), |
|
| 493 | - 'after' => array( |
|
| 494 | - /* translators: %s: date format */ |
|
| 495 | - 'description' => sprintf( __( 'Limit to results after a specific date, the date needs to be in the %s format.', 'invoicing' ), 'YYYY-MM-DD' ), |
|
| 496 | - 'type' => 'string', |
|
| 497 | - 'validate_callback' => 'rest_validate_request_arg', |
|
| 498 | - 'sanitize_callback' => 'sanitize_text_field', |
|
| 499 | - 'default' => gmdate( 'Y-m-d', strtotime( '-7 days' ) ), |
|
| 500 | - ), |
|
| 501 | - 'before' => array( |
|
| 502 | - /* translators: %s: date format */ |
|
| 503 | - 'description' => sprintf( __( 'Limit to results before a specific date, the date needs to be in the %s format.', 'invoicing' ), 'YYYY-MM-DD' ), |
|
| 504 | - 'type' => 'string', |
|
| 505 | - 'validate_callback' => 'rest_validate_request_arg', |
|
| 506 | - 'sanitize_callback' => 'sanitize_text_field', |
|
| 507 | - 'default' => gmdate( 'Y-m-d' ), |
|
| 508 | - ), |
|
| 509 | - ); |
|
| 510 | - } |
|
| 19 | + /** |
|
| 20 | + * Group response items by day or month. |
|
| 21 | + * |
|
| 22 | + * @var string |
|
| 23 | + */ |
|
| 24 | + public $groupby = 'day'; |
|
| 25 | + |
|
| 26 | + /** |
|
| 27 | + * Returns an array with arguments to request the previous report. |
|
| 28 | + * |
|
| 29 | + * @var array |
|
| 30 | + */ |
|
| 31 | + public $previous_range = array(); |
|
| 32 | + |
|
| 33 | + /** |
|
| 34 | + * The period interval. |
|
| 35 | + * |
|
| 36 | + * @var int |
|
| 37 | + */ |
|
| 38 | + public $interval; |
|
| 39 | + |
|
| 40 | + /** |
|
| 41 | + * Retrieves the before and after dates. |
|
| 42 | + * |
|
| 43 | + * @param WP_REST_Request $request Request object. |
|
| 44 | + * @return array The appropriate date range. |
|
| 45 | + */ |
|
| 46 | + public function get_date_range( $request ) { |
|
| 47 | + |
|
| 48 | + // Check if the period is x_days. |
|
| 49 | + if ( preg_match( '/^(\d+)_days$/', $request['period'], $matches ) ) { |
|
| 50 | + $date_range = $this->get_x_days_date_range( absint( $matches[1] ) ); |
|
| 51 | + } elseif ( is_callable( array( $this, 'get_' . $request['period'] . '_date_range' ) ) ) { |
|
| 52 | + $date_range = call_user_func( array( $this, 'get_' . $request['period'] . '_date_range' ), $request ); |
|
| 53 | + } else { |
|
| 54 | + $request['period'] = '7_days'; |
|
| 55 | + $date_range = $this->get_x_days_date_range(); |
|
| 56 | + } |
|
| 57 | + |
|
| 58 | + // 3 months max for day view. |
|
| 59 | + $before = strtotime( $date_range['before'] ); |
|
| 60 | + $after = strtotime( $date_range['after'] ); |
|
| 61 | + if ( floor( ( $before - $after ) / MONTH_IN_SECONDS ) > 2 ) { |
|
| 62 | + $this->groupby = 'month'; |
|
| 63 | + } |
|
| 64 | + |
|
| 65 | + $this->prepare_interval( $date_range ); |
|
| 66 | + |
|
| 67 | + return $date_range; |
|
| 68 | + |
|
| 69 | + } |
|
| 70 | + |
|
| 71 | + /** |
|
| 72 | + * Groups by month or days. |
|
| 73 | + * |
|
| 74 | + * @param array $range Date range. |
|
| 75 | + * @return array The appropriate date range. |
|
| 76 | + */ |
|
| 77 | + public function prepare_interval( $range ) { |
|
| 78 | + |
|
| 79 | + $before = strtotime( $range['before'] ); |
|
| 80 | + $after = strtotime( $range['after'] ); |
|
| 81 | + if ( 'day' === $this->groupby ) { |
|
| 82 | + $difference = max( DAY_IN_SECONDS, ( DAY_IN_SECONDS + $before - $after ) ); // Prevent division by 0; |
|
| 83 | + $this->interval = absint( ceil( max( 1, $difference / DAY_IN_SECONDS ) ) ); |
|
| 84 | + return; |
|
| 85 | + } |
|
| 86 | + |
|
| 87 | + $this->interval = 0; |
|
| 88 | + $min_date = strtotime( gmdate( 'Y-m-01', $after ) ); |
|
| 89 | + |
|
| 90 | + while ( $min_date <= $before ) { |
|
| 91 | + $this->interval ++; |
|
| 92 | + $min_date = strtotime( '+1 MONTH', $min_date ); |
|
| 93 | + } |
|
| 94 | + |
|
| 95 | + $this->interval = max( 1, $this->interval ); |
|
| 96 | + |
|
| 97 | + } |
|
| 98 | + |
|
| 99 | + /** |
|
| 100 | + * Retrieves a custom date range. |
|
| 101 | + * |
|
| 102 | + * @param WP_REST_Request $request Request object. |
|
| 103 | + * @return array The appropriate date range. |
|
| 104 | + */ |
|
| 105 | + public function get_custom_date_range( $request ) { |
|
| 106 | + |
|
| 107 | + $after = max( strtotime( '-20 years' ), strtotime( sanitize_text_field( $request['after'] ) ) ); |
|
| 108 | + $before = gmdate( 'Y-m-d' ); |
|
| 109 | + |
|
| 110 | + if ( ! empty( $request['before'] ) ) { |
|
| 111 | + $before = min( $before, strtotime( sanitize_text_field( $request['before'] ) ) ); |
|
| 112 | + } |
|
| 113 | + |
|
| 114 | + // Set the previous date range. |
|
| 115 | + $difference = $before - $after; |
|
| 116 | + $this->previous_range = array( |
|
| 117 | + 'period' => 'custom', |
|
| 118 | + 'before' => gmdate( 'Y-m-d', $before - $difference - DAY_IN_SECONDS ), |
|
| 119 | + 'after' => gmdate( 'Y-m-d', $after - $difference - DAY_IN_SECONDS ), |
|
| 120 | + ); |
|
| 121 | + |
|
| 122 | + // Generate the report. |
|
| 123 | + return array( |
|
| 124 | + 'before' => gmdate( 'Y-m-d', $before ), |
|
| 125 | + 'after' => gmdate( 'Y-m-d', $after ), |
|
| 126 | + ); |
|
| 127 | + |
|
| 128 | + } |
|
| 129 | + |
|
| 130 | + /** |
|
| 131 | + * Retrieves todays date range. |
|
| 132 | + * |
|
| 133 | + * @return array The appropriate date range. |
|
| 134 | + */ |
|
| 135 | + public function get_today_date_range() { |
|
| 136 | + |
|
| 137 | + // Set the previous date range. |
|
| 138 | + $this->previous_range = array( |
|
| 139 | + 'period' => 'yesterday', |
|
| 140 | + ); |
|
| 141 | + |
|
| 142 | + // Generate the report. |
|
| 143 | + return array( |
|
| 144 | + 'before' => gmdate( 'Y-m-d' ), |
|
| 145 | + 'after' => gmdate( 'Y-m-d' ), |
|
| 146 | + ); |
|
| 147 | + |
|
| 148 | + } |
|
| 149 | + |
|
| 150 | + /** |
|
| 151 | + * Retrieves yesterdays date range. |
|
| 152 | + * |
|
| 153 | + * @return array The appropriate date range. |
|
| 154 | + */ |
|
| 155 | + public function get_yesterday_date_range() { |
|
| 156 | + |
|
| 157 | + // Set the previous date range. |
|
| 158 | + $this->previous_range = array( |
|
| 159 | + 'period' => 'custom', |
|
| 160 | + 'before' => gmdate( 'Y-m-d', strtotime( '-2 days' ) ), |
|
| 161 | + 'after' => gmdate( 'Y-m-d', strtotime( '-2 days' ) ), |
|
| 162 | + ); |
|
| 163 | + |
|
| 164 | + // Generate the report. |
|
| 165 | + return array( |
|
| 166 | + 'before' => gmdate( 'Y-m-d', strtotime( '-1 day' ) ), |
|
| 167 | + 'after' => gmdate( 'Y-m-d', strtotime( '-1 day' ) ), |
|
| 168 | + ); |
|
| 169 | + |
|
| 170 | + } |
|
| 171 | + |
|
| 172 | + /** |
|
| 173 | + * Retrieves this week's date range. |
|
| 174 | + * |
|
| 175 | + * @return array The appropriate date range. |
|
| 176 | + */ |
|
| 177 | + public function get_week_date_range() { |
|
| 178 | + |
|
| 179 | + // Set the previous date range. |
|
| 180 | + $this->previous_range = array( |
|
| 181 | + 'period' => 'last_week', |
|
| 182 | + ); |
|
| 183 | + |
|
| 184 | + // Generate the report. |
|
| 185 | + $week_starts = absint( get_option( 'start_of_week' ) ); |
|
| 186 | + return array( |
|
| 187 | + 'before' => gmdate( 'Y-m-d' ), |
|
| 188 | + 'after' => gmdate( 'Y-m-d', strtotime( 'next Sunday -' . ( 7 - $week_starts ) . ' days' ) ), |
|
| 189 | + ); |
|
| 190 | + } |
|
| 191 | + |
|
| 192 | + /** |
|
| 193 | + * Retrieves last week's date range. |
|
| 194 | + * |
|
| 195 | + * @return array The appropriate date range. |
|
| 196 | + */ |
|
| 197 | + public function get_last_week_date_range() { |
|
| 198 | + |
|
| 199 | + $week_starts = absint( get_option( 'start_of_week' ) ); |
|
| 200 | + $week_starts = strtotime( 'last Sunday -' . ( 7 - $week_starts ) . ' days' ); |
|
| 201 | + $date_range = array( |
|
| 202 | + 'before' => gmdate( 'Y-m-d', $week_starts + 6 * DAY_IN_SECONDS ), |
|
| 203 | + 'after' => gmdate( 'Y-m-d', $week_starts ), |
|
| 204 | + ); |
|
| 205 | + |
|
| 206 | + // Set the previous date range. |
|
| 207 | + $week_starts = $week_starts - 7 * DAY_IN_SECONDS; |
|
| 208 | + $this->previous_range = array( |
|
| 209 | + 'period' => 'custom', |
|
| 210 | + 'before' => gmdate( 'Y-m-d', $week_starts + 6 * DAY_IN_SECONDS ), |
|
| 211 | + 'after' => gmdate( 'Y-m-d', $week_starts ), |
|
| 212 | + ); |
|
| 213 | + |
|
| 214 | + // Generate the report. |
|
| 215 | + return $date_range; |
|
| 216 | + } |
|
| 217 | + |
|
| 218 | + /** |
|
| 219 | + * Retrieves last x days date range. |
|
| 220 | + * |
|
| 221 | + * @return array The appropriate date range. |
|
| 222 | + */ |
|
| 223 | + public function get_x_days_date_range( $days = 7 ) { |
|
| 224 | + |
|
| 225 | + $days--; |
|
| 226 | + |
|
| 227 | + $date_range = array( |
|
| 228 | + 'before' => gmdate( 'Y-m-d' ), |
|
| 229 | + 'after' => gmdate( 'Y-m-d', strtotime( "-$days days" ) ), |
|
| 230 | + ); |
|
| 231 | + |
|
| 232 | + $days++; |
|
| 233 | + |
|
| 234 | + // Set the previous date range. |
|
| 235 | + $this->previous_range = array( |
|
| 236 | + 'period' => 'custom', |
|
| 237 | + 'before' => gmdate( 'Y-m-d', strtotime( $date_range['before'] ) - $days * DAY_IN_SECONDS ), |
|
| 238 | + 'after' => gmdate( 'Y-m-d', strtotime( $date_range['after'] ) - $days * DAY_IN_SECONDS ), |
|
| 239 | + ); |
|
| 240 | + |
|
| 241 | + // Generate the report. |
|
| 242 | + return $date_range; |
|
| 243 | + } |
|
| 244 | + |
|
| 245 | + /** |
|
| 246 | + * Retrieves this month date range. |
|
| 247 | + * |
|
| 248 | + * @return array The appropriate date range. |
|
| 249 | + */ |
|
| 250 | + public function get_month_date_range() { |
|
| 251 | + |
|
| 252 | + // Set the previous date range. |
|
| 253 | + $this->previous_range = array( |
|
| 254 | + 'period' => 'last_month', |
|
| 255 | + ); |
|
| 256 | + |
|
| 257 | + // Generate the report. |
|
| 258 | + return array( |
|
| 259 | + 'after' => gmdate( 'Y-m-01' ), |
|
| 260 | + 'before' => gmdate( 'Y-m-t' ), |
|
| 261 | + ); |
|
| 262 | + |
|
| 263 | + } |
|
| 264 | + |
|
| 265 | + /** |
|
| 266 | + * Retrieves last month's date range. |
|
| 267 | + * |
|
| 268 | + * @return array The appropriate date range. |
|
| 269 | + */ |
|
| 270 | + public function get_last_month_date_range() { |
|
| 271 | + |
|
| 272 | + // Set the previous date range. |
|
| 273 | + $this->previous_range = array( |
|
| 274 | + 'period' => 'custom', |
|
| 275 | + 'after' => gmdate( 'Y-m-01', strtotime( '-2 months' ) ), |
|
| 276 | + 'before' => gmdate( 'Y-m-t', strtotime( '-2 months' ) ), |
|
| 277 | + ); |
|
| 278 | + |
|
| 279 | + // Generate the report. |
|
| 280 | + return array( |
|
| 281 | + 'after' => gmdate( 'Y-m-01', strtotime( 'last month' ) ), |
|
| 282 | + 'before' => gmdate( 'Y-m-t', strtotime( 'last month' ) ), |
|
| 283 | + ); |
|
| 284 | + |
|
| 285 | + } |
|
| 286 | + |
|
| 287 | + /** |
|
| 288 | + * Retrieves this quarter date range. |
|
| 289 | + * |
|
| 290 | + * @return array The available quarters. |
|
| 291 | + */ |
|
| 292 | + public function get_quarters() { |
|
| 293 | + |
|
| 294 | + $year = (int) gmdate( 'Y' ); |
|
| 295 | + $last_year = (int) $year - 1; |
|
| 296 | + return array( |
|
| 297 | + |
|
| 298 | + // Third quarter of previous year: July 1st to September 30th |
|
| 299 | + array( |
|
| 300 | + 'before' => "{$last_year}-09-30", |
|
| 301 | + 'after' => "{$last_year}-07-01", |
|
| 302 | + ), |
|
| 303 | + |
|
| 304 | + // Last quarter of previous year: October 1st to December 31st |
|
| 305 | + array( |
|
| 306 | + 'before' => "{$last_year}-12-31", |
|
| 307 | + 'after' => "{$last_year}-10-01", |
|
| 308 | + ), |
|
| 309 | + |
|
| 310 | + // First quarter: January 1st to March 31st |
|
| 311 | + array( |
|
| 312 | + 'before' => "{$year}-03-31", |
|
| 313 | + 'after' => "{$year}-01-01", |
|
| 314 | + ), |
|
| 315 | + |
|
| 316 | + // Second quarter: April 1st to June 30th |
|
| 317 | + array( |
|
| 318 | + 'before' => "{$year}-06-30", |
|
| 319 | + 'after' => "{$year}-04-01", |
|
| 320 | + ), |
|
| 321 | + |
|
| 322 | + // Third quarter: July 1st to September 30th |
|
| 323 | + array( |
|
| 324 | + 'before' => "{$year}-09-30", |
|
| 325 | + 'after' => "{$year}-07-01", |
|
| 326 | + ), |
|
| 327 | + |
|
| 328 | + // Fourth quarter: October 1st to December 31st |
|
| 329 | + array( |
|
| 330 | + 'before' => "{$year}-12-31", |
|
| 331 | + 'after' => "{$year}-10-01", |
|
| 332 | + ), |
|
| 333 | + ); |
|
| 334 | + } |
|
| 335 | + |
|
| 336 | + /** |
|
| 337 | + * Retrieves the current quater. |
|
| 338 | + * |
|
| 339 | + * @return int The current quarter. |
|
| 340 | + */ |
|
| 341 | + public function get_quarter() { |
|
| 342 | + |
|
| 343 | + $month = (int) gmdate( 'n' ); |
|
| 344 | + $quarters = array( 1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4 ); |
|
| 345 | + return $quarters[ $month - 1 ]; |
|
| 346 | + |
|
| 347 | + } |
|
| 348 | + |
|
| 349 | + /** |
|
| 350 | + * Retrieves this quarter date range. |
|
| 351 | + * |
|
| 352 | + * @return array The appropriate date range. |
|
| 353 | + */ |
|
| 354 | + public function get_quarter_date_range() { |
|
| 355 | + |
|
| 356 | + // Set the previous date range. |
|
| 357 | + $this->previous_range = array( |
|
| 358 | + 'period' => 'last_quarter', |
|
| 359 | + ); |
|
| 360 | + |
|
| 361 | + // Generate the report. |
|
| 362 | + $quarter = $this->get_quarter(); |
|
| 363 | + $quarters = $this->get_quarters(); |
|
| 364 | + return $quarters[ $quarter + 1 ]; |
|
| 365 | + |
|
| 366 | + } |
|
| 367 | + |
|
| 368 | + /** |
|
| 369 | + * Retrieves last quarter's date range. |
|
| 370 | + * |
|
| 371 | + * @return array The appropriate date range. |
|
| 372 | + */ |
|
| 373 | + public function get_last_quarter_date_range() { |
|
| 374 | + |
|
| 375 | + $quarters = $this->get_quarters(); |
|
| 376 | + $quarter = $this->get_quarter(); |
|
| 377 | + |
|
| 378 | + // Set the previous date range. |
|
| 379 | + $this->previous_range = array_merge( |
|
| 380 | + $quarters[ $quarter - 1 ], |
|
| 381 | + array( 'period' => 'custom' ) |
|
| 382 | + ); |
|
| 383 | + |
|
| 384 | + // Generate the report. |
|
| 385 | + return $quarters[ $quarter ]; |
|
| 386 | + |
|
| 387 | + } |
|
| 388 | + |
|
| 389 | + /** |
|
| 390 | + * Retrieves this year date range. |
|
| 391 | + * |
|
| 392 | + * @return array The appropriate date range. |
|
| 393 | + */ |
|
| 394 | + public function get_year_date_range() { |
|
| 395 | + |
|
| 396 | + // Set the previous date range. |
|
| 397 | + $this->previous_range = array( |
|
| 398 | + 'period' => 'last_year', |
|
| 399 | + ); |
|
| 400 | + |
|
| 401 | + // Generate the report. |
|
| 402 | + return array( |
|
| 403 | + 'after' => gmdate( 'Y-01-01' ), |
|
| 404 | + 'before' => gmdate( 'Y-12-31' ), |
|
| 405 | + ); |
|
| 406 | + |
|
| 407 | + } |
|
| 408 | + |
|
| 409 | + /** |
|
| 410 | + * Retrieves last year date range. |
|
| 411 | + * |
|
| 412 | + * @return array The appropriate date range. |
|
| 413 | + */ |
|
| 414 | + public function get_last_year_date_range() { |
|
| 415 | + |
|
| 416 | + // Set the previous date range. |
|
| 417 | + $this->previous_range = array( |
|
| 418 | + 'period' => 'custom', |
|
| 419 | + 'after' => gmdate( 'Y-01-01', strtotime( '-2 years' ) ), |
|
| 420 | + 'before' => gmdate( 'Y-12-31', strtotime( '-2 years' ) ), |
|
| 421 | + ); |
|
| 422 | + |
|
| 423 | + // Generate the report. |
|
| 424 | + return array( |
|
| 425 | + 'after' => gmdate( 'Y-01-01', strtotime( 'last year' ) ), |
|
| 426 | + 'before' => gmdate( 'Y-12-31', strtotime( 'last year' ) ), |
|
| 427 | + ); |
|
| 428 | + |
|
| 429 | + } |
|
| 430 | + |
|
| 431 | + /** |
|
| 432 | + * Prepare a the request date for SQL usage. |
|
| 433 | + * |
|
| 434 | + * @param WP_REST_Request $request Request object. |
|
| 435 | + * @param string $date_field The date field. |
|
| 436 | + * @return string The appropriate SQL. |
|
| 437 | + */ |
|
| 438 | + public function get_date_range_sql( $request, $date_field ) { |
|
| 439 | + global $wpdb; |
|
| 440 | + |
|
| 441 | + $sql = '1=1'; |
|
| 442 | + $range = $this->get_date_range( $request ); |
|
| 443 | + |
|
| 444 | + if ( ! empty( $range['after'] ) ) { |
|
| 445 | + $sql .= ' AND ' . $wpdb->prepare( |
|
| 446 | + "$date_field >= %s", |
|
| 447 | + $range['after'] |
|
| 448 | + ); |
|
| 449 | + } |
|
| 450 | + |
|
| 451 | + if ( ! empty( $range['before'] ) ) { |
|
| 452 | + $sql .= ' AND ' . $wpdb->prepare( |
|
| 453 | + "$date_field <= %s", |
|
| 454 | + $range['before'] |
|
| 455 | + ); |
|
| 456 | + } |
|
| 457 | + |
|
| 458 | + return $sql; |
|
| 459 | + |
|
| 460 | + } |
|
| 461 | + |
|
| 462 | + /** |
|
| 463 | + * Prepares a group by query. |
|
| 464 | + * |
|
| 465 | + * @param string $date_field The date field. |
|
| 466 | + * @return string The appropriate SQL. |
|
| 467 | + */ |
|
| 468 | + public function get_group_by_sql( $date_field ) { |
|
| 469 | + |
|
| 470 | + if ( 'day' === $this->groupby ) { |
|
| 471 | + return "YEAR($date_field), MONTH($date_field), DAY($date_field)"; |
|
| 472 | + } |
|
| 473 | + |
|
| 474 | + return "YEAR($date_field), MONTH($date_field)"; |
|
| 475 | + } |
|
| 476 | + |
|
| 477 | + /** |
|
| 478 | + * Get the query params for collections. |
|
| 479 | + * |
|
| 480 | + * @return array |
|
| 481 | + */ |
|
| 482 | + public function get_collection_params() { |
|
| 483 | + return array( |
|
| 484 | + 'context' => $this->get_context_param( array( 'default' => 'view' ) ), |
|
| 485 | + 'period' => array( |
|
| 486 | + 'description' => __( 'Limit to results of a specific period.', 'invoicing' ), |
|
| 487 | + 'type' => 'string', |
|
| 488 | + 'enum' => array( 'custom', 'today', 'yesterday', 'week', 'last_week', '7_days', '30_days', '60_days', '90_days', '180_days', 'month', 'last_month', 'quarter', 'last_quarter', 'year', 'last_year', 'quarter', 'last_quarter' ), |
|
| 489 | + 'validate_callback' => 'rest_validate_request_arg', |
|
| 490 | + 'sanitize_callback' => 'sanitize_text_field', |
|
| 491 | + 'default' => '7_days', |
|
| 492 | + ), |
|
| 493 | + 'after' => array( |
|
| 494 | + /* translators: %s: date format */ |
|
| 495 | + 'description' => sprintf( __( 'Limit to results after a specific date, the date needs to be in the %s format.', 'invoicing' ), 'YYYY-MM-DD' ), |
|
| 496 | + 'type' => 'string', |
|
| 497 | + 'validate_callback' => 'rest_validate_request_arg', |
|
| 498 | + 'sanitize_callback' => 'sanitize_text_field', |
|
| 499 | + 'default' => gmdate( 'Y-m-d', strtotime( '-7 days' ) ), |
|
| 500 | + ), |
|
| 501 | + 'before' => array( |
|
| 502 | + /* translators: %s: date format */ |
|
| 503 | + 'description' => sprintf( __( 'Limit to results before a specific date, the date needs to be in the %s format.', 'invoicing' ), 'YYYY-MM-DD' ), |
|
| 504 | + 'type' => 'string', |
|
| 505 | + 'validate_callback' => 'rest_validate_request_arg', |
|
| 506 | + 'sanitize_callback' => 'sanitize_text_field', |
|
| 507 | + 'default' => gmdate( 'Y-m-d' ), |
|
| 508 | + ), |
|
| 509 | + ); |
|
| 510 | + } |
|
| 511 | 511 | } |
@@ -12,294 +12,294 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | class GetPaid_Reports_Helper { |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * Get report totals such as invoice totals and discount amounts. |
|
| 17 | - * |
|
| 18 | - * Data example: |
|
| 19 | - * |
|
| 20 | - * 'subtotal' => array( |
|
| 21 | - * 'type' => 'invoice_data', |
|
| 22 | - * 'function' => 'SUM', |
|
| 23 | - * 'name' => 'subtotal' |
|
| 24 | - * ) |
|
| 25 | - * |
|
| 26 | - * @param array $args |
|
| 27 | - * @return mixed depending on query_type |
|
| 28 | - */ |
|
| 29 | - public static function get_invoice_report_data( $args = array() ) { |
|
| 30 | - global $wpdb; |
|
| 31 | - |
|
| 32 | - $default_args = array( |
|
| 33 | - 'data' => array(), // The data to retrieve. |
|
| 34 | - 'where' => array(), // An array of where queries. |
|
| 35 | - 'query_type' => 'get_row', // wpdb query to run. |
|
| 36 | - 'group_by' => '', // What to group results by. |
|
| 37 | - 'order_by' => '', // What to order by. |
|
| 38 | - 'limit' => '', // Results limit. |
|
| 39 | - 'filter_range' => array(), // An array of before and after dates to limit results by. |
|
| 40 | - 'invoice_types' => array( 'wpi_invoice' ), // An array of post types to retrieve. |
|
| 41 | - 'invoice_status' => array( 'publish', 'wpi-processing', 'wpi-onhold' ), |
|
| 42 | - 'parent_invoice_status' => false, // Optionally filter by parent invoice status. |
|
| 43 | - ); |
|
| 44 | - |
|
| 45 | - $args = apply_filters( 'getpaid_reports_get_invoice_report_data_args', $args ); |
|
| 46 | - $args = wp_parse_args( $args, $default_args ); |
|
| 47 | - |
|
| 48 | - extract( $args ); |
|
| 49 | - |
|
| 50 | - if ( empty( $data ) ) { |
|
| 51 | - return ''; |
|
| 52 | - } |
|
| 53 | - |
|
| 54 | - $query = array(); |
|
| 55 | - $query['select'] = 'SELECT ' . implode( ',', self::prepare_invoice_data( $data ) ); |
|
| 56 | - $query['from'] = "FROM {$wpdb->posts} AS posts"; |
|
| 57 | - $query['join'] = implode( ' ', self::prepare_invoice_joins( $data + $where, ! empty( $parent_invoice_status ) ) ); |
|
| 58 | - |
|
| 59 | - $query['where'] = " |
|
| 15 | + /** |
|
| 16 | + * Get report totals such as invoice totals and discount amounts. |
|
| 17 | + * |
|
| 18 | + * Data example: |
|
| 19 | + * |
|
| 20 | + * 'subtotal' => array( |
|
| 21 | + * 'type' => 'invoice_data', |
|
| 22 | + * 'function' => 'SUM', |
|
| 23 | + * 'name' => 'subtotal' |
|
| 24 | + * ) |
|
| 25 | + * |
|
| 26 | + * @param array $args |
|
| 27 | + * @return mixed depending on query_type |
|
| 28 | + */ |
|
| 29 | + public static function get_invoice_report_data( $args = array() ) { |
|
| 30 | + global $wpdb; |
|
| 31 | + |
|
| 32 | + $default_args = array( |
|
| 33 | + 'data' => array(), // The data to retrieve. |
|
| 34 | + 'where' => array(), // An array of where queries. |
|
| 35 | + 'query_type' => 'get_row', // wpdb query to run. |
|
| 36 | + 'group_by' => '', // What to group results by. |
|
| 37 | + 'order_by' => '', // What to order by. |
|
| 38 | + 'limit' => '', // Results limit. |
|
| 39 | + 'filter_range' => array(), // An array of before and after dates to limit results by. |
|
| 40 | + 'invoice_types' => array( 'wpi_invoice' ), // An array of post types to retrieve. |
|
| 41 | + 'invoice_status' => array( 'publish', 'wpi-processing', 'wpi-onhold' ), |
|
| 42 | + 'parent_invoice_status' => false, // Optionally filter by parent invoice status. |
|
| 43 | + ); |
|
| 44 | + |
|
| 45 | + $args = apply_filters( 'getpaid_reports_get_invoice_report_data_args', $args ); |
|
| 46 | + $args = wp_parse_args( $args, $default_args ); |
|
| 47 | + |
|
| 48 | + extract( $args ); |
|
| 49 | + |
|
| 50 | + if ( empty( $data ) ) { |
|
| 51 | + return ''; |
|
| 52 | + } |
|
| 53 | + |
|
| 54 | + $query = array(); |
|
| 55 | + $query['select'] = 'SELECT ' . implode( ',', self::prepare_invoice_data( $data ) ); |
|
| 56 | + $query['from'] = "FROM {$wpdb->posts} AS posts"; |
|
| 57 | + $query['join'] = implode( ' ', self::prepare_invoice_joins( $data + $where, ! empty( $parent_invoice_status ) ) ); |
|
| 58 | + |
|
| 59 | + $query['where'] = " |
|
| 60 | 60 | WHERE posts.post_type IN ( '" . implode( "','", $invoice_types ) . "' ) |
| 61 | 61 | "; |
| 62 | 62 | |
| 63 | - if ( ! empty( $invoice_status ) ) { |
|
| 64 | - $query['where'] .= " |
|
| 63 | + if ( ! empty( $invoice_status ) ) { |
|
| 64 | + $query['where'] .= " |
|
| 65 | 65 | AND posts.post_status IN ( '" . implode( "','", $invoice_status ) . "' ) |
| 66 | 66 | "; |
| 67 | - } |
|
| 68 | - |
|
| 69 | - if ( ! empty( $parent_invoice_status ) ) { |
|
| 70 | - if ( ! empty( $invoice_status ) ) { |
|
| 71 | - $query['where'] .= " AND ( parent.post_status IN ( '" . implode( "','", $parent_invoice_status ) . "' ) OR parent.ID IS NULL ) "; |
|
| 72 | - } else { |
|
| 73 | - $query['where'] .= " AND parent.post_status IN ( '" . implode( "','", $parent_invoice_status ) . "' ) "; |
|
| 74 | - } |
|
| 75 | - } |
|
| 76 | - |
|
| 77 | - if ( ! empty( $filter_range['before'] ) ) { |
|
| 78 | - $query['where'] .= " |
|
| 67 | + } |
|
| 68 | + |
|
| 69 | + if ( ! empty( $parent_invoice_status ) ) { |
|
| 70 | + if ( ! empty( $invoice_status ) ) { |
|
| 71 | + $query['where'] .= " AND ( parent.post_status IN ( '" . implode( "','", $parent_invoice_status ) . "' ) OR parent.ID IS NULL ) "; |
|
| 72 | + } else { |
|
| 73 | + $query['where'] .= " AND parent.post_status IN ( '" . implode( "','", $parent_invoice_status ) . "' ) "; |
|
| 74 | + } |
|
| 75 | + } |
|
| 76 | + |
|
| 77 | + if ( ! empty( $filter_range['before'] ) ) { |
|
| 78 | + $query['where'] .= " |
|
| 79 | 79 | AND posts.post_date <= '" . gmdate( 'Y-m-d 23:59:59', strtotime( $filter_range['before'] ) ) . "' |
| 80 | 80 | "; |
| 81 | - } |
|
| 81 | + } |
|
| 82 | 82 | |
| 83 | - if ( ! empty( $filter_range['after'] ) ) { |
|
| 84 | - $query['where'] .= " |
|
| 83 | + if ( ! empty( $filter_range['after'] ) ) { |
|
| 84 | + $query['where'] .= " |
|
| 85 | 85 | AND posts.post_date >= '" . gmdate( 'Y-m-d 00:00:00', strtotime( $filter_range['after'] ) ) . "' |
| 86 | 86 | "; |
| 87 | - } |
|
| 87 | + } |
|
| 88 | 88 | |
| 89 | - if ( ! empty( $where ) ) { |
|
| 89 | + if ( ! empty( $where ) ) { |
|
| 90 | 90 | |
| 91 | - foreach ( $where as $value ) { |
|
| 91 | + foreach ( $where as $value ) { |
|
| 92 | 92 | |
| 93 | - if ( strtolower( $value['operator'] ) === 'in' || strtolower( $value['operator'] ) === 'not in' ) { |
|
| 94 | - |
|
| 95 | - if ( is_array( $value['value'] ) ) { |
|
| 96 | - $value['value'] = implode( "','", $value['value'] ); |
|
| 97 | - } |
|
| 98 | - |
|
| 99 | - if ( ! empty( $value['value'] ) ) { |
|
| 100 | - $where_value = "{$value['operator']} ('{$value['value']}')"; |
|
| 101 | - } |
|
| 102 | - } else { |
|
| 103 | - $where_value = "{$value['operator']} '{$value['value']}'"; |
|
| 104 | - } |
|
| 105 | - |
|
| 106 | - if ( ! empty( $where_value ) ) { |
|
| 107 | - $query['where'] .= " AND {$value['key']} {$where_value}"; |
|
| 108 | - } |
|
| 109 | - } |
|
| 110 | - } |
|
| 111 | - |
|
| 112 | - if ( $group_by ) { |
|
| 113 | - $query['group_by'] = "GROUP BY {$group_by}"; |
|
| 114 | - } |
|
| 115 | - |
|
| 116 | - if ( $order_by ) { |
|
| 117 | - $query['order_by'] = "ORDER BY {$order_by}"; |
|
| 118 | - } |
|
| 119 | - |
|
| 120 | - if ( $limit ) { |
|
| 121 | - $query['limit'] = "LIMIT {$limit}"; |
|
| 122 | - } |
|
| 123 | - |
|
| 124 | - $query = apply_filters( 'getpaid_reports_get_invoice_report_query', $query, $data ); |
|
| 125 | - $query = implode( ' ', $query ); |
|
| 126 | - |
|
| 127 | - return self::execute( $query_type, $query ); |
|
| 128 | - |
|
| 129 | - } |
|
| 130 | - |
|
| 131 | - /** |
|
| 132 | - * Prepares the data to select. |
|
| 133 | - * |
|
| 134 | - * |
|
| 135 | - * @param array $data |
|
| 136 | - * @return array |
|
| 137 | - */ |
|
| 138 | - public static function prepare_invoice_data( $data ) { |
|
| 139 | - |
|
| 140 | - $prepared = array(); |
|
| 141 | - |
|
| 142 | - foreach ( $data as $raw_key => $value ) { |
|
| 143 | - $key = sanitize_key( $raw_key ); |
|
| 144 | - $distinct = ''; |
|
| 145 | - |
|
| 146 | - if ( isset( $value['distinct'] ) ) { |
|
| 147 | - $distinct = 'DISTINCT'; |
|
| 148 | - } |
|
| 149 | - |
|
| 150 | - $get_key = self::get_invoice_table_key( $key, $value['type'] ); |
|
| 151 | - |
|
| 152 | - if ( false === $get_key ) { |
|
| 153 | - // Skip to the next foreach iteration else the query will be invalid. |
|
| 154 | - continue; |
|
| 155 | - } |
|
| 156 | - |
|
| 157 | - if ( ! empty( $value['function'] ) ) { |
|
| 158 | - $get = "{$value['function']}({$distinct} {$get_key})"; |
|
| 159 | - } else { |
|
| 160 | - $get = "{$distinct} {$get_key}"; |
|
| 161 | - } |
|
| 162 | - |
|
| 163 | - $prepared[] = "{$get} as {$value['name']}"; |
|
| 164 | - } |
|
| 165 | - |
|
| 166 | - return $prepared; |
|
| 167 | - |
|
| 168 | - } |
|
| 169 | - |
|
| 170 | - /** |
|
| 171 | - * Prepares the joins to use. |
|
| 172 | - * |
|
| 173 | - * |
|
| 174 | - * @param array $data |
|
| 175 | - * @param bool $with_parent |
|
| 176 | - * @return array |
|
| 177 | - */ |
|
| 178 | - public static function prepare_invoice_joins( $data, $with_parent ) { |
|
| 179 | - global $wpdb; |
|
| 180 | - |
|
| 181 | - $prepared = array(); |
|
| 182 | - |
|
| 183 | - foreach ( $data as $raw_key => $value ) { |
|
| 184 | - $join_type = isset( $value['join_type'] ) ? $value['join_type'] : 'INNER'; |
|
| 185 | - $type = isset( $value['type'] ) ? $value['type'] : false; |
|
| 186 | - $key = sanitize_key( $raw_key ); |
|
| 187 | - |
|
| 188 | - switch ( $type ) { |
|
| 189 | - case 'meta': |
|
| 190 | - $prepared[ "meta_{$key}" ] = "{$join_type} JOIN {$wpdb->postmeta} AS meta_{$key} ON ( posts.ID = meta_{$key}.post_id AND meta_{$key}.meta_key = '{$raw_key}' )"; |
|
| 191 | - break; |
|
| 192 | - case 'parent_meta': |
|
| 193 | - $prepared[ "parent_meta_{$key}" ] = "{$join_type} JOIN {$wpdb->postmeta} AS parent_meta_{$key} ON (posts.post_parent = parent_meta_{$key}.post_id) AND (parent_meta_{$key}.meta_key = '{$raw_key}')"; |
|
| 194 | - break; |
|
| 195 | - case 'invoice_data': |
|
| 196 | - $prepared['invoices'] = "{$join_type} JOIN {$wpdb->prefix}getpaid_invoices AS invoices ON posts.ID = invoices.post_id"; |
|
| 197 | - break; |
|
| 198 | - case 'invoice_item': |
|
| 199 | - $prepared['invoice_items'] = "{$join_type} JOIN {$wpdb->prefix}getpaid_invoice_items AS invoice_items ON posts.ID = invoice_items.post_id"; |
|
| 200 | - break; |
|
| 201 | - } |
|
| 202 | - } |
|
| 203 | - |
|
| 204 | - if ( $with_parent ) { |
|
| 205 | - $prepared['parent'] = "LEFT JOIN {$wpdb->posts} AS parent ON posts.post_parent = parent.ID"; |
|
| 206 | - } |
|
| 207 | - |
|
| 208 | - return $prepared; |
|
| 209 | - |
|
| 210 | - } |
|
| 211 | - |
|
| 212 | - /** |
|
| 213 | - * Retrieves the appropriate table key to use. |
|
| 214 | - * |
|
| 215 | - * |
|
| 216 | - * @param string $key |
|
| 217 | - * @param string $table |
|
| 218 | - * @return string|false |
|
| 219 | - */ |
|
| 220 | - public static function get_invoice_table_key( $key, $table ) { |
|
| 221 | - |
|
| 222 | - $keys = array( |
|
| 223 | - 'meta' => "meta_{$key}.meta_value", |
|
| 224 | - 'parent_meta' => "parent_meta_{$key}.meta_value", |
|
| 225 | - 'post_data' => "posts.{$key}", |
|
| 226 | - 'invoice_data' => "invoices.{$key}", |
|
| 227 | - 'invoice_item' => "invoice_items.{$key}", |
|
| 228 | - ); |
|
| 229 | - |
|
| 230 | - return isset( $keys[ $table ] ) ? $keys[ $table ] : false; |
|
| 231 | - |
|
| 232 | - } |
|
| 233 | - |
|
| 234 | - /** |
|
| 235 | - * Executes a query and caches the result for a minute. |
|
| 236 | - * |
|
| 237 | - * |
|
| 238 | - * @param string $query_type |
|
| 239 | - * @param string $query |
|
| 240 | - * @return mixed depending on query_type |
|
| 241 | - */ |
|
| 242 | - public static function execute( $query_type, $query ) { |
|
| 243 | - global $wpdb; |
|
| 244 | - |
|
| 245 | - $query_hash = md5( $query_type . $query ); |
|
| 246 | - $result = self::get_cached_query( $query_hash ); |
|
| 247 | - if ( $result === false ) { |
|
| 248 | - self::enable_big_selects(); |
|
| 249 | - |
|
| 250 | - $result = $wpdb->$query_type( $query ); |
|
| 251 | - self::set_cached_query( $query_hash, $result ); |
|
| 252 | - } |
|
| 253 | - |
|
| 254 | - return $result; |
|
| 255 | - |
|
| 256 | - } |
|
| 257 | - |
|
| 258 | - /** |
|
| 259 | - * Enables big mysql selects for reports, just once for this session. |
|
| 260 | - */ |
|
| 261 | - protected static function enable_big_selects() { |
|
| 262 | - static $big_selects = false; |
|
| 263 | - |
|
| 264 | - global $wpdb; |
|
| 265 | - |
|
| 266 | - if ( ! $big_selects ) { |
|
| 267 | - $wpdb->query( 'SET SESSION SQL_BIG_SELECTS=1' ); |
|
| 268 | - $big_selects = true; |
|
| 269 | - } |
|
| 270 | - } |
|
| 271 | - |
|
| 272 | - /** |
|
| 273 | - * Get the cached query result or null if it's not in the cache. |
|
| 274 | - * |
|
| 275 | - * @param string $query_hash The query hash. |
|
| 276 | - * |
|
| 277 | - * @return mixed|false The cache contents on success, false on failure to retrieve contents. |
|
| 278 | - */ |
|
| 279 | - protected static function get_cached_query( $query_hash ) { |
|
| 280 | - |
|
| 281 | - return wp_cache_get( |
|
| 282 | - $query_hash, |
|
| 283 | - strtolower( __CLASS__ ) |
|
| 284 | - ); |
|
| 285 | - |
|
| 286 | - } |
|
| 287 | - |
|
| 288 | - /** |
|
| 289 | - * Set the cached query result. |
|
| 290 | - * |
|
| 291 | - * @param string $query_hash The query hash. |
|
| 292 | - * @param mixed $data The data to cache. |
|
| 293 | - */ |
|
| 294 | - protected static function set_cached_query( $query_hash, $data ) { |
|
| 295 | - |
|
| 296 | - wp_cache_set( |
|
| 297 | - $query_hash, |
|
| 298 | - $data, |
|
| 299 | - strtolower( __CLASS__ ), |
|
| 300 | - MINUTE_IN_SECONDS |
|
| 301 | - ); |
|
| 302 | - |
|
| 303 | - } |
|
| 93 | + if ( strtolower( $value['operator'] ) === 'in' || strtolower( $value['operator'] ) === 'not in' ) { |
|
| 94 | + |
|
| 95 | + if ( is_array( $value['value'] ) ) { |
|
| 96 | + $value['value'] = implode( "','", $value['value'] ); |
|
| 97 | + } |
|
| 98 | + |
|
| 99 | + if ( ! empty( $value['value'] ) ) { |
|
| 100 | + $where_value = "{$value['operator']} ('{$value['value']}')"; |
|
| 101 | + } |
|
| 102 | + } else { |
|
| 103 | + $where_value = "{$value['operator']} '{$value['value']}'"; |
|
| 104 | + } |
|
| 105 | + |
|
| 106 | + if ( ! empty( $where_value ) ) { |
|
| 107 | + $query['where'] .= " AND {$value['key']} {$where_value}"; |
|
| 108 | + } |
|
| 109 | + } |
|
| 110 | + } |
|
| 111 | + |
|
| 112 | + if ( $group_by ) { |
|
| 113 | + $query['group_by'] = "GROUP BY {$group_by}"; |
|
| 114 | + } |
|
| 115 | + |
|
| 116 | + if ( $order_by ) { |
|
| 117 | + $query['order_by'] = "ORDER BY {$order_by}"; |
|
| 118 | + } |
|
| 119 | + |
|
| 120 | + if ( $limit ) { |
|
| 121 | + $query['limit'] = "LIMIT {$limit}"; |
|
| 122 | + } |
|
| 123 | + |
|
| 124 | + $query = apply_filters( 'getpaid_reports_get_invoice_report_query', $query, $data ); |
|
| 125 | + $query = implode( ' ', $query ); |
|
| 126 | + |
|
| 127 | + return self::execute( $query_type, $query ); |
|
| 128 | + |
|
| 129 | + } |
|
| 130 | + |
|
| 131 | + /** |
|
| 132 | + * Prepares the data to select. |
|
| 133 | + * |
|
| 134 | + * |
|
| 135 | + * @param array $data |
|
| 136 | + * @return array |
|
| 137 | + */ |
|
| 138 | + public static function prepare_invoice_data( $data ) { |
|
| 139 | + |
|
| 140 | + $prepared = array(); |
|
| 141 | + |
|
| 142 | + foreach ( $data as $raw_key => $value ) { |
|
| 143 | + $key = sanitize_key( $raw_key ); |
|
| 144 | + $distinct = ''; |
|
| 145 | + |
|
| 146 | + if ( isset( $value['distinct'] ) ) { |
|
| 147 | + $distinct = 'DISTINCT'; |
|
| 148 | + } |
|
| 149 | + |
|
| 150 | + $get_key = self::get_invoice_table_key( $key, $value['type'] ); |
|
| 151 | + |
|
| 152 | + if ( false === $get_key ) { |
|
| 153 | + // Skip to the next foreach iteration else the query will be invalid. |
|
| 154 | + continue; |
|
| 155 | + } |
|
| 156 | + |
|
| 157 | + if ( ! empty( $value['function'] ) ) { |
|
| 158 | + $get = "{$value['function']}({$distinct} {$get_key})"; |
|
| 159 | + } else { |
|
| 160 | + $get = "{$distinct} {$get_key}"; |
|
| 161 | + } |
|
| 162 | + |
|
| 163 | + $prepared[] = "{$get} as {$value['name']}"; |
|
| 164 | + } |
|
| 165 | + |
|
| 166 | + return $prepared; |
|
| 167 | + |
|
| 168 | + } |
|
| 169 | + |
|
| 170 | + /** |
|
| 171 | + * Prepares the joins to use. |
|
| 172 | + * |
|
| 173 | + * |
|
| 174 | + * @param array $data |
|
| 175 | + * @param bool $with_parent |
|
| 176 | + * @return array |
|
| 177 | + */ |
|
| 178 | + public static function prepare_invoice_joins( $data, $with_parent ) { |
|
| 179 | + global $wpdb; |
|
| 180 | + |
|
| 181 | + $prepared = array(); |
|
| 182 | + |
|
| 183 | + foreach ( $data as $raw_key => $value ) { |
|
| 184 | + $join_type = isset( $value['join_type'] ) ? $value['join_type'] : 'INNER'; |
|
| 185 | + $type = isset( $value['type'] ) ? $value['type'] : false; |
|
| 186 | + $key = sanitize_key( $raw_key ); |
|
| 187 | + |
|
| 188 | + switch ( $type ) { |
|
| 189 | + case 'meta': |
|
| 190 | + $prepared[ "meta_{$key}" ] = "{$join_type} JOIN {$wpdb->postmeta} AS meta_{$key} ON ( posts.ID = meta_{$key}.post_id AND meta_{$key}.meta_key = '{$raw_key}' )"; |
|
| 191 | + break; |
|
| 192 | + case 'parent_meta': |
|
| 193 | + $prepared[ "parent_meta_{$key}" ] = "{$join_type} JOIN {$wpdb->postmeta} AS parent_meta_{$key} ON (posts.post_parent = parent_meta_{$key}.post_id) AND (parent_meta_{$key}.meta_key = '{$raw_key}')"; |
|
| 194 | + break; |
|
| 195 | + case 'invoice_data': |
|
| 196 | + $prepared['invoices'] = "{$join_type} JOIN {$wpdb->prefix}getpaid_invoices AS invoices ON posts.ID = invoices.post_id"; |
|
| 197 | + break; |
|
| 198 | + case 'invoice_item': |
|
| 199 | + $prepared['invoice_items'] = "{$join_type} JOIN {$wpdb->prefix}getpaid_invoice_items AS invoice_items ON posts.ID = invoice_items.post_id"; |
|
| 200 | + break; |
|
| 201 | + } |
|
| 202 | + } |
|
| 203 | + |
|
| 204 | + if ( $with_parent ) { |
|
| 205 | + $prepared['parent'] = "LEFT JOIN {$wpdb->posts} AS parent ON posts.post_parent = parent.ID"; |
|
| 206 | + } |
|
| 207 | + |
|
| 208 | + return $prepared; |
|
| 209 | + |
|
| 210 | + } |
|
| 211 | + |
|
| 212 | + /** |
|
| 213 | + * Retrieves the appropriate table key to use. |
|
| 214 | + * |
|
| 215 | + * |
|
| 216 | + * @param string $key |
|
| 217 | + * @param string $table |
|
| 218 | + * @return string|false |
|
| 219 | + */ |
|
| 220 | + public static function get_invoice_table_key( $key, $table ) { |
|
| 221 | + |
|
| 222 | + $keys = array( |
|
| 223 | + 'meta' => "meta_{$key}.meta_value", |
|
| 224 | + 'parent_meta' => "parent_meta_{$key}.meta_value", |
|
| 225 | + 'post_data' => "posts.{$key}", |
|
| 226 | + 'invoice_data' => "invoices.{$key}", |
|
| 227 | + 'invoice_item' => "invoice_items.{$key}", |
|
| 228 | + ); |
|
| 229 | + |
|
| 230 | + return isset( $keys[ $table ] ) ? $keys[ $table ] : false; |
|
| 231 | + |
|
| 232 | + } |
|
| 233 | + |
|
| 234 | + /** |
|
| 235 | + * Executes a query and caches the result for a minute. |
|
| 236 | + * |
|
| 237 | + * |
|
| 238 | + * @param string $query_type |
|
| 239 | + * @param string $query |
|
| 240 | + * @return mixed depending on query_type |
|
| 241 | + */ |
|
| 242 | + public static function execute( $query_type, $query ) { |
|
| 243 | + global $wpdb; |
|
| 244 | + |
|
| 245 | + $query_hash = md5( $query_type . $query ); |
|
| 246 | + $result = self::get_cached_query( $query_hash ); |
|
| 247 | + if ( $result === false ) { |
|
| 248 | + self::enable_big_selects(); |
|
| 249 | + |
|
| 250 | + $result = $wpdb->$query_type( $query ); |
|
| 251 | + self::set_cached_query( $query_hash, $result ); |
|
| 252 | + } |
|
| 253 | + |
|
| 254 | + return $result; |
|
| 255 | + |
|
| 256 | + } |
|
| 257 | + |
|
| 258 | + /** |
|
| 259 | + * Enables big mysql selects for reports, just once for this session. |
|
| 260 | + */ |
|
| 261 | + protected static function enable_big_selects() { |
|
| 262 | + static $big_selects = false; |
|
| 263 | + |
|
| 264 | + global $wpdb; |
|
| 265 | + |
|
| 266 | + if ( ! $big_selects ) { |
|
| 267 | + $wpdb->query( 'SET SESSION SQL_BIG_SELECTS=1' ); |
|
| 268 | + $big_selects = true; |
|
| 269 | + } |
|
| 270 | + } |
|
| 271 | + |
|
| 272 | + /** |
|
| 273 | + * Get the cached query result or null if it's not in the cache. |
|
| 274 | + * |
|
| 275 | + * @param string $query_hash The query hash. |
|
| 276 | + * |
|
| 277 | + * @return mixed|false The cache contents on success, false on failure to retrieve contents. |
|
| 278 | + */ |
|
| 279 | + protected static function get_cached_query( $query_hash ) { |
|
| 280 | + |
|
| 281 | + return wp_cache_get( |
|
| 282 | + $query_hash, |
|
| 283 | + strtolower( __CLASS__ ) |
|
| 284 | + ); |
|
| 285 | + |
|
| 286 | + } |
|
| 287 | + |
|
| 288 | + /** |
|
| 289 | + * Set the cached query result. |
|
| 290 | + * |
|
| 291 | + * @param string $query_hash The query hash. |
|
| 292 | + * @param mixed $data The data to cache. |
|
| 293 | + */ |
|
| 294 | + protected static function set_cached_query( $query_hash, $data ) { |
|
| 295 | + |
|
| 296 | + wp_cache_set( |
|
| 297 | + $query_hash, |
|
| 298 | + $data, |
|
| 299 | + strtolower( __CLASS__ ), |
|
| 300 | + MINUTE_IN_SECONDS |
|
| 301 | + ); |
|
| 302 | + |
|
| 303 | + } |
|
| 304 | 304 | |
| 305 | 305 | } |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | */ |
| 51 | 51 | function getpaid_get_invoice_subscription_group( $invoice_id, $subscription_id ) { |
| 52 | 52 | $subscription_groups = getpaid_get_invoice_subscription_groups( $invoice_id ); |
| 53 | - $matching_group = wp_list_filter( $subscription_groups, compact( 'subscription_id' ) ); |
|
| 53 | + $matching_group = wp_list_filter( $subscription_groups, compact( 'subscription_id' ) ); |
|
| 54 | 54 | return reset( $matching_group ); |
| 55 | 55 | } |
| 56 | 56 | |
@@ -63,11 +63,11 @@ discard block |
||
| 63 | 63 | */ |
| 64 | 64 | function getpaid_get_subscription( $subscription ) { |
| 65 | 65 | |
| 66 | - if ( ! is_a( $subscription, 'WPInv_Subscription' ) ) { |
|
| 67 | - $subscription = new WPInv_Subscription( $subscription ); |
|
| 68 | - } |
|
| 66 | + if ( ! is_a( $subscription, 'WPInv_Subscription' ) ) { |
|
| 67 | + $subscription = new WPInv_Subscription( $subscription ); |
|
| 68 | + } |
|
| 69 | 69 | |
| 70 | - return $subscription->exists() ? $subscription : false; |
|
| 70 | + return $subscription->exists() ? $subscription : false; |
|
| 71 | 71 | } |
| 72 | 72 | |
| 73 | 73 | /** |
@@ -81,28 +81,28 @@ discard block |
||
| 81 | 81 | */ |
| 82 | 82 | function getpaid_get_subscriptions( $args = array(), $return = 'results' ) { |
| 83 | 83 | |
| 84 | - // Do not retrieve all fields if we just want the count. |
|
| 85 | - if ( 'count' == $return ) { |
|
| 86 | - $args['fields'] = 'id'; |
|
| 87 | - $args['number'] = 1; |
|
| 88 | - } |
|
| 84 | + // Do not retrieve all fields if we just want the count. |
|
| 85 | + if ( 'count' == $return ) { |
|
| 86 | + $args['fields'] = 'id'; |
|
| 87 | + $args['number'] = 1; |
|
| 88 | + } |
|
| 89 | 89 | |
| 90 | - // Do not count all matches if we just want the results. |
|
| 91 | - if ( 'results' == $return ) { |
|
| 92 | - $args['count_total'] = false; |
|
| 93 | - } |
|
| 90 | + // Do not count all matches if we just want the results. |
|
| 91 | + if ( 'results' == $return ) { |
|
| 92 | + $args['count_total'] = false; |
|
| 93 | + } |
|
| 94 | 94 | |
| 95 | - $query = new GetPaid_Subscriptions_Query( $args ); |
|
| 95 | + $query = new GetPaid_Subscriptions_Query( $args ); |
|
| 96 | 96 | |
| 97 | - if ( 'results' == $return ) { |
|
| 98 | - return $query->get_results(); |
|
| 99 | - } |
|
| 97 | + if ( 'results' == $return ) { |
|
| 98 | + return $query->get_results(); |
|
| 99 | + } |
|
| 100 | 100 | |
| 101 | - if ( 'count' == $return ) { |
|
| 102 | - return $query->get_total(); |
|
| 103 | - } |
|
| 101 | + if ( 'count' == $return ) { |
|
| 102 | + return $query->get_total(); |
|
| 103 | + } |
|
| 104 | 104 | |
| 105 | - return $query; |
|
| 105 | + return $query; |
|
| 106 | 106 | } |
| 107 | 107 | |
| 108 | 108 | /** |
@@ -112,18 +112,18 @@ discard block |
||
| 112 | 112 | */ |
| 113 | 113 | function getpaid_get_subscription_statuses() { |
| 114 | 114 | |
| 115 | - return apply_filters( |
|
| 116 | - 'getpaid_get_subscription_statuses', |
|
| 117 | - array( |
|
| 118 | - 'pending' => __( 'Pending', 'invoicing' ), |
|
| 119 | - 'trialling' => __( 'Trialing', 'invoicing' ), |
|
| 120 | - 'active' => __( 'Active', 'invoicing' ), |
|
| 121 | - 'failing' => __( 'Failing', 'invoicing' ), |
|
| 122 | - 'expired' => __( 'Expired', 'invoicing' ), |
|
| 123 | - 'completed' => __( 'Complete', 'invoicing' ), |
|
| 124 | - 'cancelled' => __( 'Cancelled', 'invoicing' ), |
|
| 125 | - ) |
|
| 126 | - ); |
|
| 115 | + return apply_filters( |
|
| 116 | + 'getpaid_get_subscription_statuses', |
|
| 117 | + array( |
|
| 118 | + 'pending' => __( 'Pending', 'invoicing' ), |
|
| 119 | + 'trialling' => __( 'Trialing', 'invoicing' ), |
|
| 120 | + 'active' => __( 'Active', 'invoicing' ), |
|
| 121 | + 'failing' => __( 'Failing', 'invoicing' ), |
|
| 122 | + 'expired' => __( 'Expired', 'invoicing' ), |
|
| 123 | + 'completed' => __( 'Complete', 'invoicing' ), |
|
| 124 | + 'cancelled' => __( 'Cancelled', 'invoicing' ), |
|
| 125 | + ) |
|
| 126 | + ); |
|
| 127 | 127 | |
| 128 | 128 | } |
| 129 | 129 | |
@@ -133,8 +133,8 @@ discard block |
||
| 133 | 133 | * @return string |
| 134 | 134 | */ |
| 135 | 135 | function getpaid_get_subscription_status_label( $status ) { |
| 136 | - $statuses = getpaid_get_subscription_statuses(); |
|
| 137 | - return isset( $statuses[ $status ] ) ? $statuses[ $status ] : ucfirst( sanitize_text_field( $status ) ); |
|
| 136 | + $statuses = getpaid_get_subscription_statuses(); |
|
| 137 | + return isset( $statuses[ $status ] ) ? $statuses[ $status ] : ucfirst( sanitize_text_field( $status ) ); |
|
| 138 | 138 | } |
| 139 | 139 | |
| 140 | 140 | /** |
@@ -144,18 +144,18 @@ discard block |
||
| 144 | 144 | */ |
| 145 | 145 | function getpaid_get_subscription_status_classes() { |
| 146 | 146 | |
| 147 | - return apply_filters( |
|
| 148 | - 'getpaid_get_subscription_status_classes', |
|
| 149 | - array( |
|
| 150 | - 'pending' => 'bg-dark', |
|
| 151 | - 'trialling' => 'bg-info', |
|
| 152 | - 'active' => 'bg-success', |
|
| 153 | - 'failing' => 'bg-warning text-dark', |
|
| 154 | - 'expired' => 'bg-danger', |
|
| 155 | - 'completed' => 'bg-primary', |
|
| 156 | - 'cancelled' => 'bg-secondary', |
|
| 157 | - ) |
|
| 158 | - ); |
|
| 147 | + return apply_filters( |
|
| 148 | + 'getpaid_get_subscription_status_classes', |
|
| 149 | + array( |
|
| 150 | + 'pending' => 'bg-dark', |
|
| 151 | + 'trialling' => 'bg-info', |
|
| 152 | + 'active' => 'bg-success', |
|
| 153 | + 'failing' => 'bg-warning text-dark', |
|
| 154 | + 'expired' => 'bg-danger', |
|
| 155 | + 'completed' => 'bg-primary', |
|
| 156 | + 'cancelled' => 'bg-secondary', |
|
| 157 | + ) |
|
| 158 | + ); |
|
| 159 | 159 | |
| 160 | 160 | } |
| 161 | 161 | |
@@ -166,15 +166,15 @@ discard block |
||
| 166 | 166 | */ |
| 167 | 167 | function getpaid_get_subscription_status_counts( $args = array() ) { |
| 168 | 168 | |
| 169 | - $statuses = array_keys( getpaid_get_subscription_statuses() ); |
|
| 170 | - $counts = array(); |
|
| 169 | + $statuses = array_keys( getpaid_get_subscription_statuses() ); |
|
| 170 | + $counts = array(); |
|
| 171 | 171 | |
| 172 | - foreach ( $statuses as $status ) { |
|
| 173 | - $_args = wp_parse_args( "status=$status", $args ); |
|
| 174 | - $counts[ $status ] = getpaid_get_subscriptions( $_args, 'count' ); |
|
| 175 | - } |
|
| 172 | + foreach ( $statuses as $status ) { |
|
| 173 | + $_args = wp_parse_args( "status=$status", $args ); |
|
| 174 | + $counts[ $status ] = getpaid_get_subscriptions( $_args, 'count' ); |
|
| 175 | + } |
|
| 176 | 176 | |
| 177 | - return $counts; |
|
| 177 | + return $counts; |
|
| 178 | 178 | |
| 179 | 179 | } |
| 180 | 180 | |
@@ -185,32 +185,32 @@ discard block |
||
| 185 | 185 | */ |
| 186 | 186 | function getpaid_get_subscription_periods() { |
| 187 | 187 | |
| 188 | - return apply_filters( |
|
| 189 | - 'getpaid_get_subscription_periods', |
|
| 190 | - array( |
|
| 188 | + return apply_filters( |
|
| 189 | + 'getpaid_get_subscription_periods', |
|
| 190 | + array( |
|
| 191 | 191 | |
| 192 | - 'day' => array( |
|
| 193 | - 'singular' => __( '%s day', 'invoicing' ), |
|
| 194 | - 'plural' => __( '%d days', 'invoicing' ), |
|
| 195 | - ), |
|
| 192 | + 'day' => array( |
|
| 193 | + 'singular' => __( '%s day', 'invoicing' ), |
|
| 194 | + 'plural' => __( '%d days', 'invoicing' ), |
|
| 195 | + ), |
|
| 196 | 196 | |
| 197 | - 'week' => array( |
|
| 198 | - 'singular' => __( '%s week', 'invoicing' ), |
|
| 199 | - 'plural' => __( '%d weeks', 'invoicing' ), |
|
| 200 | - ), |
|
| 197 | + 'week' => array( |
|
| 198 | + 'singular' => __( '%s week', 'invoicing' ), |
|
| 199 | + 'plural' => __( '%d weeks', 'invoicing' ), |
|
| 200 | + ), |
|
| 201 | 201 | |
| 202 | - 'month' => array( |
|
| 203 | - 'singular' => __( '%s month', 'invoicing' ), |
|
| 204 | - 'plural' => __( '%d months', 'invoicing' ), |
|
| 205 | - ), |
|
| 202 | + 'month' => array( |
|
| 203 | + 'singular' => __( '%s month', 'invoicing' ), |
|
| 204 | + 'plural' => __( '%d months', 'invoicing' ), |
|
| 205 | + ), |
|
| 206 | 206 | |
| 207 | - 'year' => array( |
|
| 208 | - 'singular' => __( '%s year', 'invoicing' ), |
|
| 209 | - 'plural' => __( '%d years', 'invoicing' ), |
|
| 210 | - ), |
|
| 207 | + 'year' => array( |
|
| 208 | + 'singular' => __( '%s year', 'invoicing' ), |
|
| 209 | + 'plural' => __( '%d years', 'invoicing' ), |
|
| 210 | + ), |
|
| 211 | 211 | |
| 212 | - ) |
|
| 213 | - ); |
|
| 212 | + ) |
|
| 213 | + ); |
|
| 214 | 214 | |
| 215 | 215 | } |
| 216 | 216 | |
@@ -221,7 +221,7 @@ discard block |
||
| 221 | 221 | * @return int |
| 222 | 222 | */ |
| 223 | 223 | function getpaid_get_subscription_trial_period_interval( $trial_period ) { |
| 224 | - return (int) preg_replace( '/[^0-9]/', '', $trial_period ); |
|
| 224 | + return (int) preg_replace( '/[^0-9]/', '', $trial_period ); |
|
| 225 | 225 | } |
| 226 | 226 | |
| 227 | 227 | /** |
@@ -231,7 +231,7 @@ discard block |
||
| 231 | 231 | * @return string |
| 232 | 232 | */ |
| 233 | 233 | function getpaid_get_subscription_trial_period_period( $trial_period ) { |
| 234 | - return preg_replace( '/[^a-z]/', '', strtolower( $trial_period ) ); |
|
| 234 | + return preg_replace( '/[^a-z]/', '', strtolower( $trial_period ) ); |
|
| 235 | 235 | } |
| 236 | 236 | |
| 237 | 237 | /** |
@@ -242,8 +242,8 @@ discard block |
||
| 242 | 242 | * @return string |
| 243 | 243 | */ |
| 244 | 244 | function getpaid_get_subscription_period_label( $period, $interval = 1, $singular_prefix = '1' ) { |
| 245 | - $label = (int) $interval > 1 ? getpaid_get_plural_subscription_period_label( $period, $interval ) : getpaid_get_singular_subscription_period_label( $period, $singular_prefix ); |
|
| 246 | - return strtolower( sanitize_text_field( $label ) ); |
|
| 245 | + $label = (int) $interval > 1 ? getpaid_get_plural_subscription_period_label( $period, $interval ) : getpaid_get_singular_subscription_period_label( $period, $singular_prefix ); |
|
| 246 | + return strtolower( sanitize_text_field( $label ) ); |
|
| 247 | 247 | } |
| 248 | 248 | |
| 249 | 249 | /** |
@@ -254,22 +254,22 @@ discard block |
||
| 254 | 254 | */ |
| 255 | 255 | function getpaid_get_singular_subscription_period_label( $period, $singular_prefix = '1' ) { |
| 256 | 256 | |
| 257 | - $periods = getpaid_get_subscription_periods(); |
|
| 258 | - $period = strtolower( $period ); |
|
| 257 | + $periods = getpaid_get_subscription_periods(); |
|
| 258 | + $period = strtolower( $period ); |
|
| 259 | 259 | |
| 260 | - if ( isset( $periods[ $period ] ) ) { |
|
| 261 | - return sprintf( $periods[ $period ]['singular'], $singular_prefix ); |
|
| 262 | - } |
|
| 260 | + if ( isset( $periods[ $period ] ) ) { |
|
| 261 | + return sprintf( $periods[ $period ]['singular'], $singular_prefix ); |
|
| 262 | + } |
|
| 263 | 263 | |
| 264 | - // Backwards compatibility. |
|
| 265 | - foreach ( $periods as $key => $data ) { |
|
| 266 | - if ( strpos( $key, $period ) === 0 ) { |
|
| 267 | - return sprintf( $data['singular'], $singular_prefix ); |
|
| 268 | - } |
|
| 269 | - } |
|
| 264 | + // Backwards compatibility. |
|
| 265 | + foreach ( $periods as $key => $data ) { |
|
| 266 | + if ( strpos( $key, $period ) === 0 ) { |
|
| 267 | + return sprintf( $data['singular'], $singular_prefix ); |
|
| 268 | + } |
|
| 269 | + } |
|
| 270 | 270 | |
| 271 | - // Invalid string. |
|
| 272 | - return ''; |
|
| 271 | + // Invalid string. |
|
| 272 | + return ''; |
|
| 273 | 273 | } |
| 274 | 274 | |
| 275 | 275 | /** |
@@ -281,22 +281,22 @@ discard block |
||
| 281 | 281 | */ |
| 282 | 282 | function getpaid_get_plural_subscription_period_label( $period, $interval ) { |
| 283 | 283 | |
| 284 | - $periods = getpaid_get_subscription_periods(); |
|
| 285 | - $period = strtolower( $period ); |
|
| 284 | + $periods = getpaid_get_subscription_periods(); |
|
| 285 | + $period = strtolower( $period ); |
|
| 286 | 286 | |
| 287 | - if ( isset( $periods[ $period ] ) ) { |
|
| 288 | - return sprintf( $periods[ $period ]['plural'], $interval ); |
|
| 289 | - } |
|
| 287 | + if ( isset( $periods[ $period ] ) ) { |
|
| 288 | + return sprintf( $periods[ $period ]['plural'], $interval ); |
|
| 289 | + } |
|
| 290 | 290 | |
| 291 | - // Backwards compatibility. |
|
| 292 | - foreach ( $periods as $key => $data ) { |
|
| 293 | - if ( strpos( $key, $period ) === 0 ) { |
|
| 294 | - return sprintf( $data['plural'], $interval ); |
|
| 295 | - } |
|
| 296 | - } |
|
| 291 | + // Backwards compatibility. |
|
| 292 | + foreach ( $periods as $key => $data ) { |
|
| 293 | + if ( strpos( $key, $period ) === 0 ) { |
|
| 294 | + return sprintf( $data['plural'], $interval ); |
|
| 295 | + } |
|
| 296 | + } |
|
| 297 | 297 | |
| 298 | - // Invalid string. |
|
| 299 | - return ''; |
|
| 298 | + // Invalid string. |
|
| 299 | + return ''; |
|
| 300 | 300 | } |
| 301 | 301 | |
| 302 | 302 | /** |
@@ -307,92 +307,92 @@ discard block |
||
| 307 | 307 | */ |
| 308 | 308 | function getpaid_get_formatted_subscription_amount( $subscription ) { |
| 309 | 309 | |
| 310 | - $initial = wpinv_price( $subscription->get_initial_amount(), $subscription->get_parent_payment()->get_currency() ); |
|
| 311 | - $recurring = wpinv_price( $subscription->get_recurring_amount(), $subscription->get_parent_payment()->get_currency() ); |
|
| 312 | - $period = getpaid_get_subscription_period_label( $subscription->get_period(), $subscription->get_frequency(), '' ); |
|
| 313 | - $bill_times = $subscription->get_bill_times(); |
|
| 314 | - $bill_times_less = $bill_times - 1; |
|
| 315 | - |
|
| 316 | - if ( ! empty( $bill_times ) ) { |
|
| 317 | - $bill_times = $subscription->get_frequency() * $bill_times; |
|
| 318 | - $bill_times_less = getpaid_get_subscription_period_label( $subscription->get_frequency(), $bill_times - $subscription->get_frequency() ); |
|
| 319 | - $bill_times = getpaid_get_subscription_period_label( $subscription->get_period(), $bill_times ); |
|
| 320 | - } |
|
| 321 | - |
|
| 322 | - // Trial periods. |
|
| 323 | - if ( $subscription->has_trial_period() ) { |
|
| 324 | - |
|
| 325 | - $trial_period = getpaid_get_subscription_trial_period_period( $subscription->get_trial_period() ); |
|
| 326 | - $trial_interval = getpaid_get_subscription_trial_period_interval( $subscription->get_trial_period() ); |
|
| 327 | - |
|
| 328 | - if ( empty( $bill_times ) ) { |
|
| 329 | - |
|
| 330 | - return sprintf( |
|
| 331 | - // translators: $1: is the initial amount, $2: is the trial period, $3: is the recurring amount, $4: is the recurring period |
|
| 332 | - _x( '%1$s trial for %2$s then %3$s / %4$s', 'Subscription amount. (e.g.: $10 trial for 1 month then $120 / year)', 'invoicing' ), |
|
| 333 | - $initial, |
|
| 334 | - getpaid_get_subscription_period_label( $trial_period, $trial_interval ), |
|
| 335 | - $recurring, |
|
| 336 | - $period |
|
| 337 | - ); |
|
| 338 | - |
|
| 339 | - } |
|
| 340 | - |
|
| 341 | - return sprintf( |
|
| 342 | - // translators: $1: is the initial amount, $2: is the trial period, $3: is the recurring amount, $4: is the recurring period, $5: is the bill times |
|
| 343 | - _x( '%1$s trial for %2$s then %3$s / %4$s for %5$s', 'Subscription amount. (e.g.: $10 trial for 1 month then $120 / year for 4 years)', 'invoicing' ), |
|
| 344 | - $initial, |
|
| 345 | - getpaid_get_subscription_period_label( $trial_period, $trial_interval ), |
|
| 346 | - $recurring, |
|
| 347 | - $period, |
|
| 348 | - $bill_times |
|
| 349 | - ); |
|
| 350 | - |
|
| 351 | - } |
|
| 352 | - |
|
| 353 | - if ( $initial != $recurring ) { |
|
| 354 | - |
|
| 355 | - if ( empty( $bill_times ) ) { |
|
| 356 | - |
|
| 357 | - return sprintf( |
|
| 358 | - // translators: $1: is the initial amount, $2: is the recurring amount, $3: is the recurring period |
|
| 359 | - _x( 'Initial payment of %1$s which renews at %2$s / %3$s', 'Subscription amount. (e.g.:Initial payment of $100 which renews at $120 / year)', 'invoicing' ), |
|
| 360 | - $initial, |
|
| 361 | - $recurring, |
|
| 362 | - $period |
|
| 363 | - ); |
|
| 364 | - |
|
| 365 | - } |
|
| 366 | - |
|
| 367 | - return sprintf( |
|
| 368 | - // translators: $1: is the initial amount, $2: is the recurring amount, $3: is the recurring period, $4: is the bill times |
|
| 369 | - _x( 'Initial payment of %1$s which renews at %2$s / %3$s for %4$s', 'Subscription amount. (e.g.:Initial payment of $100 which renews at $120 / year for 5 years)', 'invoicing' ), |
|
| 370 | - $initial, |
|
| 371 | - $recurring, |
|
| 372 | - $period, |
|
| 373 | - $bill_times_less |
|
| 374 | - ); |
|
| 375 | - |
|
| 376 | - } |
|
| 377 | - |
|
| 378 | - if ( empty( $bill_times ) ) { |
|
| 379 | - |
|
| 380 | - return sprintf( |
|
| 381 | - // translators: $1: is the recurring amount, $2: is the recurring period |
|
| 382 | - _x( '%1$s / %2$s', 'Subscription amount. (e.g.: $120 / year)', 'invoicing' ), |
|
| 383 | - $initial, |
|
| 384 | - $period |
|
| 385 | - ); |
|
| 386 | - |
|
| 387 | - } |
|
| 388 | - |
|
| 389 | - return sprintf( |
|
| 390 | - // translators: $1: is the bill times, $2: is the recurring amount, $3: is the recurring period |
|
| 391 | - _x( '%2$s / %3$s for %1$s', 'Subscription amount. (e.g.: $120 / year for 5 years)', 'invoicing' ), |
|
| 392 | - $bill_times, |
|
| 393 | - $initial, |
|
| 394 | - $period |
|
| 395 | - ); |
|
| 310 | + $initial = wpinv_price( $subscription->get_initial_amount(), $subscription->get_parent_payment()->get_currency() ); |
|
| 311 | + $recurring = wpinv_price( $subscription->get_recurring_amount(), $subscription->get_parent_payment()->get_currency() ); |
|
| 312 | + $period = getpaid_get_subscription_period_label( $subscription->get_period(), $subscription->get_frequency(), '' ); |
|
| 313 | + $bill_times = $subscription->get_bill_times(); |
|
| 314 | + $bill_times_less = $bill_times - 1; |
|
| 315 | + |
|
| 316 | + if ( ! empty( $bill_times ) ) { |
|
| 317 | + $bill_times = $subscription->get_frequency() * $bill_times; |
|
| 318 | + $bill_times_less = getpaid_get_subscription_period_label( $subscription->get_frequency(), $bill_times - $subscription->get_frequency() ); |
|
| 319 | + $bill_times = getpaid_get_subscription_period_label( $subscription->get_period(), $bill_times ); |
|
| 320 | + } |
|
| 321 | + |
|
| 322 | + // Trial periods. |
|
| 323 | + if ( $subscription->has_trial_period() ) { |
|
| 324 | + |
|
| 325 | + $trial_period = getpaid_get_subscription_trial_period_period( $subscription->get_trial_period() ); |
|
| 326 | + $trial_interval = getpaid_get_subscription_trial_period_interval( $subscription->get_trial_period() ); |
|
| 327 | + |
|
| 328 | + if ( empty( $bill_times ) ) { |
|
| 329 | + |
|
| 330 | + return sprintf( |
|
| 331 | + // translators: $1: is the initial amount, $2: is the trial period, $3: is the recurring amount, $4: is the recurring period |
|
| 332 | + _x( '%1$s trial for %2$s then %3$s / %4$s', 'Subscription amount. (e.g.: $10 trial for 1 month then $120 / year)', 'invoicing' ), |
|
| 333 | + $initial, |
|
| 334 | + getpaid_get_subscription_period_label( $trial_period, $trial_interval ), |
|
| 335 | + $recurring, |
|
| 336 | + $period |
|
| 337 | + ); |
|
| 338 | + |
|
| 339 | + } |
|
| 340 | + |
|
| 341 | + return sprintf( |
|
| 342 | + // translators: $1: is the initial amount, $2: is the trial period, $3: is the recurring amount, $4: is the recurring period, $5: is the bill times |
|
| 343 | + _x( '%1$s trial for %2$s then %3$s / %4$s for %5$s', 'Subscription amount. (e.g.: $10 trial for 1 month then $120 / year for 4 years)', 'invoicing' ), |
|
| 344 | + $initial, |
|
| 345 | + getpaid_get_subscription_period_label( $trial_period, $trial_interval ), |
|
| 346 | + $recurring, |
|
| 347 | + $period, |
|
| 348 | + $bill_times |
|
| 349 | + ); |
|
| 350 | + |
|
| 351 | + } |
|
| 352 | + |
|
| 353 | + if ( $initial != $recurring ) { |
|
| 354 | + |
|
| 355 | + if ( empty( $bill_times ) ) { |
|
| 356 | + |
|
| 357 | + return sprintf( |
|
| 358 | + // translators: $1: is the initial amount, $2: is the recurring amount, $3: is the recurring period |
|
| 359 | + _x( 'Initial payment of %1$s which renews at %2$s / %3$s', 'Subscription amount. (e.g.:Initial payment of $100 which renews at $120 / year)', 'invoicing' ), |
|
| 360 | + $initial, |
|
| 361 | + $recurring, |
|
| 362 | + $period |
|
| 363 | + ); |
|
| 364 | + |
|
| 365 | + } |
|
| 366 | + |
|
| 367 | + return sprintf( |
|
| 368 | + // translators: $1: is the initial amount, $2: is the recurring amount, $3: is the recurring period, $4: is the bill times |
|
| 369 | + _x( 'Initial payment of %1$s which renews at %2$s / %3$s for %4$s', 'Subscription amount. (e.g.:Initial payment of $100 which renews at $120 / year for 5 years)', 'invoicing' ), |
|
| 370 | + $initial, |
|
| 371 | + $recurring, |
|
| 372 | + $period, |
|
| 373 | + $bill_times_less |
|
| 374 | + ); |
|
| 375 | + |
|
| 376 | + } |
|
| 377 | + |
|
| 378 | + if ( empty( $bill_times ) ) { |
|
| 379 | + |
|
| 380 | + return sprintf( |
|
| 381 | + // translators: $1: is the recurring amount, $2: is the recurring period |
|
| 382 | + _x( '%1$s / %2$s', 'Subscription amount. (e.g.: $120 / year)', 'invoicing' ), |
|
| 383 | + $initial, |
|
| 384 | + $period |
|
| 385 | + ); |
|
| 386 | + |
|
| 387 | + } |
|
| 388 | + |
|
| 389 | + return sprintf( |
|
| 390 | + // translators: $1: is the bill times, $2: is the recurring amount, $3: is the recurring period |
|
| 391 | + _x( '%2$s / %3$s for %1$s', 'Subscription amount. (e.g.: $120 / year for 5 years)', 'invoicing' ), |
|
| 392 | + $bill_times, |
|
| 393 | + $initial, |
|
| 394 | + $period |
|
| 395 | + ); |
|
| 396 | 396 | |
| 397 | 397 | } |
| 398 | 398 | |
@@ -403,7 +403,7 @@ discard block |
||
| 403 | 403 | * @return WPInv_Subscription|false |
| 404 | 404 | */ |
| 405 | 405 | function getpaid_get_invoice_subscription( $invoice ) { |
| 406 | - return getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 406 | + return getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 407 | 407 | } |
| 408 | 408 | |
| 409 | 409 | /** |
@@ -412,10 +412,10 @@ discard block |
||
| 412 | 412 | * @param WPInv_Invoice $invoice |
| 413 | 413 | */ |
| 414 | 414 | function getpaid_activate_invoice_subscription( $invoice ) { |
| 415 | - $subscription = getpaid_get_invoice_subscription( $invoice ); |
|
| 416 | - if ( is_a( $subscription, 'WPInv_Subscription' ) ) { |
|
| 417 | - $subscription->activate(); |
|
| 418 | - } |
|
| 415 | + $subscription = getpaid_get_invoice_subscription( $invoice ); |
|
| 416 | + if ( is_a( $subscription, 'WPInv_Subscription' ) ) { |
|
| 417 | + $subscription->activate(); |
|
| 418 | + } |
|
| 419 | 419 | } |
| 420 | 420 | |
| 421 | 421 | /** |
@@ -424,7 +424,7 @@ discard block |
||
| 424 | 424 | * @return WPInv_Subscriptions |
| 425 | 425 | */ |
| 426 | 426 | function getpaid_subscriptions() { |
| 427 | - return getpaid()->get( 'subscriptions' ); |
|
| 427 | + return getpaid()->get( 'subscriptions' ); |
|
| 428 | 428 | } |
| 429 | 429 | |
| 430 | 430 | /** |
@@ -443,15 +443,15 @@ discard block |
||
| 443 | 443 | return false; |
| 444 | 444 | } |
| 445 | 445 | |
| 446 | - // Fetch the invoice subscription. |
|
| 447 | - $subscription = getpaid_get_subscriptions( |
|
| 448 | - array( |
|
| 449 | - 'invoice_in' => $invoice->is_renewal() ? $invoice->get_parent_id() : $invoice->get_id(), |
|
| 450 | - 'number' => 1, |
|
| 451 | - ) |
|
| 452 | - ); |
|
| 446 | + // Fetch the invoice subscription. |
|
| 447 | + $subscription = getpaid_get_subscriptions( |
|
| 448 | + array( |
|
| 449 | + 'invoice_in' => $invoice->is_renewal() ? $invoice->get_parent_id() : $invoice->get_id(), |
|
| 450 | + 'number' => 1, |
|
| 451 | + ) |
|
| 452 | + ); |
|
| 453 | 453 | |
| 454 | - return empty( $subscription ) ? false : $subscription[0]; |
|
| 454 | + return empty( $subscription ) ? false : $subscription[0]; |
|
| 455 | 455 | |
| 456 | 456 | } |
| 457 | 457 | |
@@ -468,48 +468,48 @@ discard block |
||
| 468 | 468 | */ |
| 469 | 469 | function getpaid_get_recurring_item_key( $cart_item ) { |
| 470 | 470 | |
| 471 | - $cart_key = 'renews_'; |
|
| 472 | - $interval = $cart_item->get_recurring_interval(); |
|
| 473 | - $period = $cart_item->get_recurring_period( true ); |
|
| 474 | - $length = $cart_item->get_recurring_limit() * $interval; |
|
| 475 | - $trial_period = $cart_item->get_trial_period( true ); |
|
| 476 | - $trial_length = $cart_item->get_trial_interval(); |
|
| 477 | - |
|
| 478 | - // First start with the billing interval and period |
|
| 479 | - switch ( $interval ) { |
|
| 480 | - case 1: |
|
| 481 | - if ( 'day' == $period ) { |
|
| 482 | - $cart_key .= 'daily'; |
|
| 483 | - } else { |
|
| 484 | - $cart_key .= sprintf( '%sly', $period ); |
|
| 485 | - } |
|
| 486 | - break; |
|
| 487 | - case 2: |
|
| 488 | - $cart_key .= sprintf( 'every_2nd_%s', $period ); |
|
| 489 | - break; |
|
| 490 | - case 3: |
|
| 491 | - $cart_key .= sprintf( 'every_3rd_%s', $period ); |
|
| 492 | - break; |
|
| 493 | - default: |
|
| 494 | - $cart_key .= sprintf( 'every_%dth_%s', $interval, $period ); |
|
| 495 | - break; |
|
| 496 | - } |
|
| 497 | - |
|
| 498 | - // Maybe add the optional maximum billing periods... |
|
| 499 | - if ( $length > 0 ) { |
|
| 500 | - $cart_key .= '_for_'; |
|
| 501 | - $cart_key .= sprintf( '%d_%s', $length, $period ); |
|
| 502 | - if ( $length > 1 ) { |
|
| 503 | - $cart_key .= 's'; |
|
| 504 | - } |
|
| 505 | - } |
|
| 506 | - |
|
| 507 | - // And an optional free trial. |
|
| 508 | - if ( $cart_item->has_free_trial() ) { |
|
| 509 | - $cart_key .= sprintf( '_after_a_%d_%s_trial', $trial_length, $trial_period ); |
|
| 510 | - } |
|
| 511 | - |
|
| 512 | - return apply_filters( 'getpaid_get_recurring_item_key', $cart_key, $cart_item ); |
|
| 471 | + $cart_key = 'renews_'; |
|
| 472 | + $interval = $cart_item->get_recurring_interval(); |
|
| 473 | + $period = $cart_item->get_recurring_period( true ); |
|
| 474 | + $length = $cart_item->get_recurring_limit() * $interval; |
|
| 475 | + $trial_period = $cart_item->get_trial_period( true ); |
|
| 476 | + $trial_length = $cart_item->get_trial_interval(); |
|
| 477 | + |
|
| 478 | + // First start with the billing interval and period |
|
| 479 | + switch ( $interval ) { |
|
| 480 | + case 1: |
|
| 481 | + if ( 'day' == $period ) { |
|
| 482 | + $cart_key .= 'daily'; |
|
| 483 | + } else { |
|
| 484 | + $cart_key .= sprintf( '%sly', $period ); |
|
| 485 | + } |
|
| 486 | + break; |
|
| 487 | + case 2: |
|
| 488 | + $cart_key .= sprintf( 'every_2nd_%s', $period ); |
|
| 489 | + break; |
|
| 490 | + case 3: |
|
| 491 | + $cart_key .= sprintf( 'every_3rd_%s', $period ); |
|
| 492 | + break; |
|
| 493 | + default: |
|
| 494 | + $cart_key .= sprintf( 'every_%dth_%s', $interval, $period ); |
|
| 495 | + break; |
|
| 496 | + } |
|
| 497 | + |
|
| 498 | + // Maybe add the optional maximum billing periods... |
|
| 499 | + if ( $length > 0 ) { |
|
| 500 | + $cart_key .= '_for_'; |
|
| 501 | + $cart_key .= sprintf( '%d_%s', $length, $period ); |
|
| 502 | + if ( $length > 1 ) { |
|
| 503 | + $cart_key .= 's'; |
|
| 504 | + } |
|
| 505 | + } |
|
| 506 | + |
|
| 507 | + // And an optional free trial. |
|
| 508 | + if ( $cart_item->has_free_trial() ) { |
|
| 509 | + $cart_key .= sprintf( '_after_a_%d_%s_trial', $trial_length, $trial_period ); |
|
| 510 | + } |
|
| 511 | + |
|
| 512 | + return apply_filters( 'getpaid_get_recurring_item_key', $cart_key, $cart_item ); |
|
| 513 | 513 | } |
| 514 | 514 | |
| 515 | 515 | /** |
@@ -520,16 +520,16 @@ discard block |
||
| 520 | 520 | */ |
| 521 | 521 | function getpaid_get_subscription_groups( $invoice ) { |
| 522 | 522 | |
| 523 | - // Generate subscription groups. |
|
| 524 | - $subscription_groups = array(); |
|
| 525 | - foreach ( $invoice->get_items() as $item ) { |
|
| 523 | + // Generate subscription groups. |
|
| 524 | + $subscription_groups = array(); |
|
| 525 | + foreach ( $invoice->get_items() as $item ) { |
|
| 526 | 526 | |
| 527 | - if ( $item->is_recurring() ) { |
|
| 528 | - $subscription_groups[ getpaid_get_recurring_item_key( $item ) ][] = $item; |
|
| 529 | - } |
|
| 527 | + if ( $item->is_recurring() ) { |
|
| 528 | + $subscription_groups[ getpaid_get_recurring_item_key( $item ) ][] = $item; |
|
| 529 | + } |
|
| 530 | 530 | } |
| 531 | 531 | |
| 532 | - return $subscription_groups; |
|
| 532 | + return $subscription_groups; |
|
| 533 | 533 | } |
| 534 | 534 | |
| 535 | 535 | /** |
@@ -543,56 +543,56 @@ discard block |
||
| 543 | 543 | */ |
| 544 | 544 | function getpaid_calculate_subscription_totals( $invoice ) { |
| 545 | 545 | |
| 546 | - // Generate subscription groups. |
|
| 547 | - $subscription_groups = getpaid_get_subscription_groups( $invoice ); |
|
| 546 | + // Generate subscription groups. |
|
| 547 | + $subscription_groups = getpaid_get_subscription_groups( $invoice ); |
|
| 548 | 548 | |
| 549 | - // Now let's calculate the totals for each group of subscriptions |
|
| 550 | - $subscription_totals = array(); |
|
| 549 | + // Now let's calculate the totals for each group of subscriptions |
|
| 550 | + $subscription_totals = array(); |
|
| 551 | 551 | |
| 552 | - foreach ( $subscription_groups as $subscription_key => $items ) { |
|
| 552 | + foreach ( $subscription_groups as $subscription_key => $items ) { |
|
| 553 | 553 | |
| 554 | - if ( empty( $subscription_totals[ $subscription_key ] ) ) { |
|
| 554 | + if ( empty( $subscription_totals[ $subscription_key ] ) ) { |
|
| 555 | 555 | |
| 556 | - $subscription_totals[ $subscription_key ] = array( |
|
| 557 | - 'initial_total' => 0, |
|
| 558 | - 'recurring_total' => 0, |
|
| 559 | - 'items' => array(), |
|
| 560 | - 'trialling' => false, |
|
| 561 | - ); |
|
| 556 | + $subscription_totals[ $subscription_key ] = array( |
|
| 557 | + 'initial_total' => 0, |
|
| 558 | + 'recurring_total' => 0, |
|
| 559 | + 'items' => array(), |
|
| 560 | + 'trialling' => false, |
|
| 561 | + ); |
|
| 562 | 562 | |
| 563 | - } |
|
| 563 | + } |
|
| 564 | 564 | |
| 565 | - /** |
|
| 566 | - * Get the totals of the group. |
|
| 567 | - * @var GetPaid_Form_Item $item |
|
| 568 | - */ |
|
| 569 | - foreach ( $items as $item ) { |
|
| 565 | + /** |
|
| 566 | + * Get the totals of the group. |
|
| 567 | + * @var GetPaid_Form_Item $item |
|
| 568 | + */ |
|
| 569 | + foreach ( $items as $item ) { |
|
| 570 | 570 | |
| 571 | - $subscription_totals[ $subscription_key ]['items'][ $item->get_id() ] = $item->prepare_data_for_saving(); |
|
| 572 | - $subscription_totals[ $subscription_key ]['item_id'] = $item->get_id(); |
|
| 573 | - $subscription_totals[ $subscription_key ]['period'] = $item->get_recurring_period( true ); |
|
| 574 | - $subscription_totals[ $subscription_key ]['interval'] = $item->get_recurring_interval(); |
|
| 575 | - $subscription_totals[ $subscription_key ]['initial_total'] += $item->get_sub_total() + $item->item_tax - $item->item_discount; |
|
| 576 | - $subscription_totals[ $subscription_key ]['recurring_total'] += $item->get_recurring_sub_total() + $item->item_tax - $item->recurring_item_discount; |
|
| 577 | - $subscription_totals[ $subscription_key ]['recurring_limit'] = $item->get_recurring_limit(); |
|
| 571 | + $subscription_totals[ $subscription_key ]['items'][ $item->get_id() ] = $item->prepare_data_for_saving(); |
|
| 572 | + $subscription_totals[ $subscription_key ]['item_id'] = $item->get_id(); |
|
| 573 | + $subscription_totals[ $subscription_key ]['period'] = $item->get_recurring_period( true ); |
|
| 574 | + $subscription_totals[ $subscription_key ]['interval'] = $item->get_recurring_interval(); |
|
| 575 | + $subscription_totals[ $subscription_key ]['initial_total'] += $item->get_sub_total() + $item->item_tax - $item->item_discount; |
|
| 576 | + $subscription_totals[ $subscription_key ]['recurring_total'] += $item->get_recurring_sub_total() + $item->item_tax - $item->recurring_item_discount; |
|
| 577 | + $subscription_totals[ $subscription_key ]['recurring_limit'] = $item->get_recurring_limit(); |
|
| 578 | 578 | |
| 579 | - // Calculate the next renewal date. |
|
| 580 | - $period = $item->get_recurring_period( true ); |
|
| 581 | - $interval = $item->get_recurring_interval(); |
|
| 579 | + // Calculate the next renewal date. |
|
| 580 | + $period = $item->get_recurring_period( true ); |
|
| 581 | + $interval = $item->get_recurring_interval(); |
|
| 582 | 582 | |
| 583 | - // If the subscription item has a trial period... |
|
| 584 | - if ( $item->has_free_trial() ) { |
|
| 585 | - $period = $item->get_trial_period( true ); |
|
| 586 | - $interval = $item->get_trial_interval(); |
|
| 587 | - $subscription_totals[ $subscription_key ]['trialling'] = $interval . ' ' . $period; |
|
| 588 | - } |
|
| 583 | + // If the subscription item has a trial period... |
|
| 584 | + if ( $item->has_free_trial() ) { |
|
| 585 | + $period = $item->get_trial_period( true ); |
|
| 586 | + $interval = $item->get_trial_interval(); |
|
| 587 | + $subscription_totals[ $subscription_key ]['trialling'] = $interval . ' ' . $period; |
|
| 588 | + } |
|
| 589 | 589 | |
| 590 | - $subscription_totals[ $subscription_key ]['renews_on'] = date( 'Y-m-d H:i:s', strtotime( "+$interval $period", current_time( 'timestamp' ) ) ); |
|
| 590 | + $subscription_totals[ $subscription_key ]['renews_on'] = date( 'Y-m-d H:i:s', strtotime( "+$interval $period", current_time( 'timestamp' ) ) ); |
|
| 591 | 591 | |
| 592 | - } |
|
| 592 | + } |
|
| 593 | 593 | } |
| 594 | 594 | |
| 595 | - return apply_filters( 'getpaid_calculate_subscription_totals', $subscription_totals, $invoice ); |
|
| 595 | + return apply_filters( 'getpaid_calculate_subscription_totals', $subscription_totals, $invoice ); |
|
| 596 | 596 | } |
| 597 | 597 | |
| 598 | 598 | /** |
@@ -603,16 +603,16 @@ discard block |
||
| 603 | 603 | */ |
| 604 | 604 | function getpaid_should_group_subscriptions( $invoice ) { |
| 605 | 605 | |
| 606 | - $recurring_items = 0; |
|
| 606 | + $recurring_items = 0; |
|
| 607 | 607 | |
| 608 | - foreach ( $invoice->get_items() as $item ) { |
|
| 608 | + foreach ( $invoice->get_items() as $item ) { |
|
| 609 | 609 | |
| 610 | - if ( $item->is_recurring() ) { |
|
| 611 | - $recurring_items ++; |
|
| 612 | - } |
|
| 610 | + if ( $item->is_recurring() ) { |
|
| 611 | + $recurring_items ++; |
|
| 612 | + } |
|
| 613 | 613 | } |
| 614 | 614 | |
| 615 | - return apply_filters( 'getpaid_should_group_subscriptions', $recurring_items > 1, $invoice ); |
|
| 615 | + return apply_filters( 'getpaid_should_group_subscriptions', $recurring_items > 1, $invoice ); |
|
| 616 | 616 | } |
| 617 | 617 | |
| 618 | 618 | /** |
@@ -623,39 +623,39 @@ discard block |
||
| 623 | 623 | * @return int |
| 624 | 624 | */ |
| 625 | 625 | function getpaid_count_subscription_invoices( $parent_invoice_id, $subscription_id = false ) { |
| 626 | - global $wpdb; |
|
| 626 | + global $wpdb; |
|
| 627 | 627 | |
| 628 | - $parent_invoice_id = (int) $parent_invoice_id; |
|
| 628 | + $parent_invoice_id = (int) $parent_invoice_id; |
|
| 629 | 629 | |
| 630 | - if ( false === $subscription_id || ! (bool) get_post_meta( $parent_invoice_id, '_wpinv_subscription_id', true ) ) { |
|
| 630 | + if ( false === $subscription_id || ! (bool) get_post_meta( $parent_invoice_id, '_wpinv_subscription_id', true ) ) { |
|
| 631 | 631 | |
| 632 | - return (int) $wpdb->get_var( |
|
| 633 | - $wpdb->prepare( |
|
| 634 | - "SELECT COUNT(ID) FROM $wpdb->posts WHERE ( post_parent=%d OR ID=%d ) AND post_status IN ( 'publish', 'wpi-processing', 'wpi-renewal' )", |
|
| 635 | - $parent_invoice_id, |
|
| 636 | - $parent_invoice_id |
|
| 637 | - ) |
|
| 638 | - ); |
|
| 632 | + return (int) $wpdb->get_var( |
|
| 633 | + $wpdb->prepare( |
|
| 634 | + "SELECT COUNT(ID) FROM $wpdb->posts WHERE ( post_parent=%d OR ID=%d ) AND post_status IN ( 'publish', 'wpi-processing', 'wpi-renewal' )", |
|
| 635 | + $parent_invoice_id, |
|
| 636 | + $parent_invoice_id |
|
| 637 | + ) |
|
| 638 | + ); |
|
| 639 | 639 | |
| 640 | - } |
|
| 640 | + } |
|
| 641 | 641 | |
| 642 | - $invoice_ids = $wpdb->get_col( |
|
| 643 | - $wpdb->prepare( |
|
| 644 | - "SELECT ID FROM $wpdb->posts WHERE ( post_parent=%d OR ID=%d ) AND post_status IN ( 'publish', 'wpi-processing', 'wpi-renewal' )", |
|
| 645 | - $parent_invoice_id, |
|
| 646 | - $parent_invoice_id |
|
| 647 | - ) |
|
| 648 | - ); |
|
| 642 | + $invoice_ids = $wpdb->get_col( |
|
| 643 | + $wpdb->prepare( |
|
| 644 | + "SELECT ID FROM $wpdb->posts WHERE ( post_parent=%d OR ID=%d ) AND post_status IN ( 'publish', 'wpi-processing', 'wpi-renewal' )", |
|
| 645 | + $parent_invoice_id, |
|
| 646 | + $parent_invoice_id |
|
| 647 | + ) |
|
| 648 | + ); |
|
| 649 | 649 | |
| 650 | - $count = 0; |
|
| 650 | + $count = 0; |
|
| 651 | 651 | |
| 652 | - foreach ( wp_parse_id_list( $invoice_ids ) as $invoice_id ) { |
|
| 652 | + foreach ( wp_parse_id_list( $invoice_ids ) as $invoice_id ) { |
|
| 653 | 653 | |
| 654 | - if ( $invoice_id == $parent_invoice_id || $subscription_id == (int) get_post_meta( $invoice_id, '_wpinv_subscription_id', true ) ) { |
|
| 655 | - $count ++; |
|
| 656 | - continue; |
|
| 657 | - } |
|
| 654 | + if ( $invoice_id == $parent_invoice_id || $subscription_id == (int) get_post_meta( $invoice_id, '_wpinv_subscription_id', true ) ) { |
|
| 655 | + $count ++; |
|
| 656 | + continue; |
|
| 657 | + } |
|
| 658 | 658 | } |
| 659 | 659 | |
| 660 | - return $count; |
|
| 660 | + return $count; |
|
| 661 | 661 | } |
@@ -67,7 +67,7 @@ discard block |
||
| 67 | 67 | * Checks if the current user cna view an invoice receipt. |
| 68 | 68 | */ |
| 69 | 69 | function wpinv_can_view_receipt( $invoice ) { |
| 70 | - return (bool) apply_filters( 'wpinv_can_view_receipt', wpinv_user_can_view_invoice( $invoice ), $invoice ); |
|
| 70 | + return (bool) apply_filters( 'wpinv_can_view_receipt', wpinv_user_can_view_invoice( $invoice ), $invoice ); |
|
| 71 | 71 | } |
| 72 | 72 | |
| 73 | 73 | /** |
@@ -556,37 +556,37 @@ discard block |
||
| 556 | 556 | $label = empty( $label ) ? __( 'Invoice', 'invoicing' ) : sanitize_text_field( $label ); |
| 557 | 557 | $columns = array( |
| 558 | 558 | |
| 559 | - 'invoice-number' => array( |
|
| 560 | - 'title' => $label, |
|
| 561 | - 'class' => 'text-left', |
|
| 562 | - ), |
|
| 559 | + 'invoice-number' => array( |
|
| 560 | + 'title' => $label, |
|
| 561 | + 'class' => 'text-left', |
|
| 562 | + ), |
|
| 563 | 563 | |
| 564 | - 'created-date' => array( |
|
| 565 | - 'title' => __( 'Created Date', 'invoicing' ), |
|
| 566 | - 'class' => 'text-left', |
|
| 567 | - ), |
|
| 564 | + 'created-date' => array( |
|
| 565 | + 'title' => __( 'Created Date', 'invoicing' ), |
|
| 566 | + 'class' => 'text-left', |
|
| 567 | + ), |
|
| 568 | 568 | |
| 569 | - 'payment-date' => array( |
|
| 570 | - 'title' => __( 'Payment Date', 'invoicing' ), |
|
| 571 | - 'class' => 'text-left', |
|
| 572 | - ), |
|
| 569 | + 'payment-date' => array( |
|
| 570 | + 'title' => __( 'Payment Date', 'invoicing' ), |
|
| 571 | + 'class' => 'text-left', |
|
| 572 | + ), |
|
| 573 | 573 | |
| 574 | - 'invoice-status' => array( |
|
| 575 | - 'title' => __( 'Status', 'invoicing' ), |
|
| 576 | - 'class' => 'text-center', |
|
| 577 | - ), |
|
| 574 | + 'invoice-status' => array( |
|
| 575 | + 'title' => __( 'Status', 'invoicing' ), |
|
| 576 | + 'class' => 'text-center', |
|
| 577 | + ), |
|
| 578 | 578 | |
| 579 | - 'invoice-total' => array( |
|
| 580 | - 'title' => __( 'Total', 'invoicing' ), |
|
| 581 | - 'class' => 'text-right', |
|
| 582 | - ), |
|
| 579 | + 'invoice-total' => array( |
|
| 580 | + 'title' => __( 'Total', 'invoicing' ), |
|
| 581 | + 'class' => 'text-right', |
|
| 582 | + ), |
|
| 583 | 583 | |
| 584 | - 'invoice-actions' => array( |
|
| 585 | - 'title' => ' ', |
|
| 586 | - 'class' => 'text-center', |
|
| 587 | - ), |
|
| 584 | + 'invoice-actions' => array( |
|
| 585 | + 'title' => ' ', |
|
| 586 | + 'class' => 'text-center', |
|
| 587 | + ), |
|
| 588 | 588 | |
| 589 | - ); |
|
| 589 | + ); |
|
| 590 | 590 | |
| 591 | 591 | return apply_filters( 'wpinv_user_invoices_columns', $columns, $post_type ); |
| 592 | 592 | } |
@@ -1274,22 +1274,22 @@ discard block |
||
| 1274 | 1274 | */ |
| 1275 | 1275 | function getpaid_get_invoice_status_classes() { |
| 1276 | 1276 | |
| 1277 | - return apply_filters( |
|
| 1278 | - 'getpaid_get_invoice_status_classes', |
|
| 1279 | - array( |
|
| 1277 | + return apply_filters( |
|
| 1278 | + 'getpaid_get_invoice_status_classes', |
|
| 1279 | + array( |
|
| 1280 | 1280 | 'wpi-quote-declined' => 'bg-danger', |
| 1281 | 1281 | 'wpi-failed' => 'bg-danger', |
| 1282 | - 'wpi-processing' => 'bg-info', |
|
| 1283 | - 'wpi-onhold' => 'bg-warning text-dark', |
|
| 1284 | - 'wpi-quote-accepted' => 'bg-success', |
|
| 1285 | - 'publish' => 'bg-success', |
|
| 1286 | - 'wpi-renewal' => 'bg-primary', |
|
| 1282 | + 'wpi-processing' => 'bg-info', |
|
| 1283 | + 'wpi-onhold' => 'bg-warning text-dark', |
|
| 1284 | + 'wpi-quote-accepted' => 'bg-success', |
|
| 1285 | + 'publish' => 'bg-success', |
|
| 1286 | + 'wpi-renewal' => 'bg-primary', |
|
| 1287 | 1287 | 'wpi-cancelled' => 'bg-secondary', |
| 1288 | 1288 | 'wpi-pending' => 'bg-dark', |
| 1289 | 1289 | 'wpi-quote-pending' => 'bg-dark', |
| 1290 | 1290 | 'wpi-refunded' => 'bg-secondary', |
| 1291 | - ) |
|
| 1292 | - ); |
|
| 1291 | + ) |
|
| 1292 | + ); |
|
| 1293 | 1293 | |
| 1294 | 1294 | } |
| 1295 | 1295 | |
@@ -1303,7 +1303,7 @@ discard block |
||
| 1303 | 1303 | function getpaid_get_invoice_tax_rate( $invoice, $item ) { |
| 1304 | 1304 | |
| 1305 | 1305 | $rates = getpaid_get_item_tax_rates( $item, $invoice->get_country(), $invoice->get_state() ); |
| 1306 | - $rates = getpaid_filter_item_tax_rates( $item, $rates ); |
|
| 1306 | + $rates = getpaid_filter_item_tax_rates( $item, $rates ); |
|
| 1307 | 1307 | $rates = wp_list_pluck( $rates, 'rate' ); |
| 1308 | 1308 | |
| 1309 | 1309 | return array_sum( $rates ); |
@@ -12,144 +12,144 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | class GetPaid_Daily_Maintenance { |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * Class constructor. |
|
| 17 | - */ |
|
| 18 | - public function __construct() { |
|
| 19 | - |
|
| 20 | - // Clear deprecated events. |
|
| 21 | - add_action( 'wp', array( $this, 'maybe_clear_deprecated_events' ) ); |
|
| 22 | - |
|
| 23 | - // (Maybe) schedule a cron that runs daily. |
|
| 24 | - add_action( 'wp', array( $this, 'maybe_create_scheduled_event' ) ); |
|
| 25 | - |
|
| 26 | - // Fired everyday at 7 a.m (this might vary for sites with few visitors) |
|
| 27 | - add_action( 'getpaid_daily_maintenance', array( $this, 'log_cron_run' ) ); |
|
| 28 | - add_action( 'getpaid_daily_maintenance', array( $this, 'backwards_compat' ) ); |
|
| 29 | - add_action( 'getpaid_daily_maintenance', array( $this, 'maybe_expire_subscriptions' ) ); |
|
| 30 | - add_action( 'getpaid_daily_maintenance', array( $this, 'check_renewing_subscriptions' ) ); |
|
| 31 | - add_action( 'getpaid_daily_maintenance', array( $this, 'maybe_update_geoip_databases' ) ); |
|
| 32 | - |
|
| 33 | - } |
|
| 34 | - |
|
| 35 | - /** |
|
| 36 | - * Schedules a cron to run every day at 7 a.m |
|
| 37 | - * |
|
| 38 | - */ |
|
| 39 | - public function maybe_create_scheduled_event() { |
|
| 40 | - |
|
| 41 | - if ( ! wp_next_scheduled( 'getpaid_daily_maintenance' ) ) { |
|
| 42 | - $timestamp = strtotime( 'tomorrow 07:00:00', current_time( 'timestamp' ) ); |
|
| 43 | - wp_schedule_event( $timestamp, 'daily', 'getpaid_daily_maintenance' ); |
|
| 44 | - } |
|
| 45 | - |
|
| 46 | - } |
|
| 47 | - |
|
| 48 | - /** |
|
| 49 | - * Clears deprecated events. |
|
| 50 | - * |
|
| 51 | - */ |
|
| 52 | - public function maybe_clear_deprecated_events() { |
|
| 53 | - |
|
| 54 | - if ( ! get_option( 'wpinv_cleared_old_events' ) ) { |
|
| 55 | - wp_clear_scheduled_hook( 'wpinv_register_schedule_event_twicedaily' ); |
|
| 56 | - wp_clear_scheduled_hook( 'wpinv_register_schedule_event_daily' ); |
|
| 57 | - update_option( 'wpinv_cleared_old_events', 1 ); |
|
| 58 | - } |
|
| 59 | - |
|
| 60 | - } |
|
| 61 | - |
|
| 62 | - /** |
|
| 63 | - * Fires the old hook for backwards compatibility. |
|
| 64 | - * |
|
| 65 | - */ |
|
| 66 | - public function backwards_compat() { |
|
| 67 | - do_action( 'wpinv_register_schedule_event_daily' ); |
|
| 68 | - } |
|
| 69 | - |
|
| 70 | - /** |
|
| 71 | - * Checks for subscriptions that are scheduled to renew. |
|
| 72 | - * |
|
| 73 | - */ |
|
| 74 | - public function check_renewing_subscriptions() { |
|
| 75 | - |
|
| 76 | - // Fetch subscriptions that expire today. |
|
| 77 | - $args = array( |
|
| 78 | - 'number' => -1, |
|
| 79 | - 'count_total' => false, |
|
| 80 | - 'status' => 'trialling active', |
|
| 81 | - 'date_expires_query' => array( |
|
| 82 | - array( |
|
| 83 | - 'year' => gmdate( 'Y' ), |
|
| 84 | - 'month' => gmdate( 'n' ), |
|
| 85 | - 'day' => gmdate( 'j' ), |
|
| 86 | - 'compare' => '=', |
|
| 87 | - ), |
|
| 88 | - ), |
|
| 89 | - ); |
|
| 90 | - |
|
| 91 | - $subscriptions = new GetPaid_Subscriptions_Query( $args ); |
|
| 92 | - |
|
| 93 | - foreach ( $subscriptions->get_results() as $subscription ) { |
|
| 94 | - |
|
| 95 | - /** @var WPInv_Subscription $subscription */ |
|
| 96 | - if ( $subscription->is_last_renewal() ) { |
|
| 97 | - $subscription->complete(); |
|
| 98 | - } else { |
|
| 99 | - do_action( 'getpaid_should_renew_subscription', $subscription ); |
|
| 100 | - } |
|
| 101 | - } |
|
| 102 | - |
|
| 103 | - } |
|
| 104 | - |
|
| 105 | - /** |
|
| 106 | - * Expires expired subscriptions. |
|
| 107 | - * |
|
| 108 | - */ |
|
| 109 | - public function maybe_expire_subscriptions() { |
|
| 110 | - |
|
| 111 | - // Fetch expired subscriptions (skips those that expire today). |
|
| 112 | - $args = array( |
|
| 113 | - 'number' => -1, |
|
| 114 | - 'count_total' => false, |
|
| 115 | - 'status' => 'trialling active failing cancelled', |
|
| 116 | - 'date_expires_query' => array( |
|
| 117 | - 'before' => 'yesterday', |
|
| 118 | - 'inclusive' => false, |
|
| 119 | - ), |
|
| 120 | - ); |
|
| 121 | - |
|
| 122 | - $subscriptions = new GetPaid_Subscriptions_Query( $args ); |
|
| 123 | - |
|
| 124 | - foreach ( $subscriptions->get_results() as $subscription ) { |
|
| 125 | - if ( apply_filters( 'getpaid_daily_maintenance_should_expire_subscription', false, $subscription ) ) { |
|
| 126 | - $subscription->set_status( 'expired' ); |
|
| 127 | - $subscription->save(); |
|
| 128 | - } |
|
| 129 | - } |
|
| 130 | - |
|
| 131 | - } |
|
| 132 | - |
|
| 133 | - /** |
|
| 134 | - * Logs cron runs. |
|
| 135 | - * |
|
| 136 | - */ |
|
| 137 | - public function log_cron_run() { |
|
| 138 | - wpinv_error_log( 'GetPaid Daily Cron', false ); |
|
| 139 | - } |
|
| 140 | - |
|
| 141 | - /** |
|
| 142 | - * Updates GeoIP databases. |
|
| 143 | - * |
|
| 144 | - */ |
|
| 145 | - public function maybe_update_geoip_databases() { |
|
| 146 | - $updated = get_transient( 'getpaid_updated_geoip_databases' ); |
|
| 147 | - |
|
| 148 | - if ( false === $updated ) { |
|
| 149 | - set_transient( 'getpaid_updated_geoip_databases', 1, 15 * DAY_IN_SECONDS ); |
|
| 150 | - do_action( 'getpaid_update_geoip_databases' ); |
|
| 151 | - } |
|
| 152 | - |
|
| 153 | - } |
|
| 15 | + /** |
|
| 16 | + * Class constructor. |
|
| 17 | + */ |
|
| 18 | + public function __construct() { |
|
| 19 | + |
|
| 20 | + // Clear deprecated events. |
|
| 21 | + add_action( 'wp', array( $this, 'maybe_clear_deprecated_events' ) ); |
|
| 22 | + |
|
| 23 | + // (Maybe) schedule a cron that runs daily. |
|
| 24 | + add_action( 'wp', array( $this, 'maybe_create_scheduled_event' ) ); |
|
| 25 | + |
|
| 26 | + // Fired everyday at 7 a.m (this might vary for sites with few visitors) |
|
| 27 | + add_action( 'getpaid_daily_maintenance', array( $this, 'log_cron_run' ) ); |
|
| 28 | + add_action( 'getpaid_daily_maintenance', array( $this, 'backwards_compat' ) ); |
|
| 29 | + add_action( 'getpaid_daily_maintenance', array( $this, 'maybe_expire_subscriptions' ) ); |
|
| 30 | + add_action( 'getpaid_daily_maintenance', array( $this, 'check_renewing_subscriptions' ) ); |
|
| 31 | + add_action( 'getpaid_daily_maintenance', array( $this, 'maybe_update_geoip_databases' ) ); |
|
| 32 | + |
|
| 33 | + } |
|
| 34 | + |
|
| 35 | + /** |
|
| 36 | + * Schedules a cron to run every day at 7 a.m |
|
| 37 | + * |
|
| 38 | + */ |
|
| 39 | + public function maybe_create_scheduled_event() { |
|
| 40 | + |
|
| 41 | + if ( ! wp_next_scheduled( 'getpaid_daily_maintenance' ) ) { |
|
| 42 | + $timestamp = strtotime( 'tomorrow 07:00:00', current_time( 'timestamp' ) ); |
|
| 43 | + wp_schedule_event( $timestamp, 'daily', 'getpaid_daily_maintenance' ); |
|
| 44 | + } |
|
| 45 | + |
|
| 46 | + } |
|
| 47 | + |
|
| 48 | + /** |
|
| 49 | + * Clears deprecated events. |
|
| 50 | + * |
|
| 51 | + */ |
|
| 52 | + public function maybe_clear_deprecated_events() { |
|
| 53 | + |
|
| 54 | + if ( ! get_option( 'wpinv_cleared_old_events' ) ) { |
|
| 55 | + wp_clear_scheduled_hook( 'wpinv_register_schedule_event_twicedaily' ); |
|
| 56 | + wp_clear_scheduled_hook( 'wpinv_register_schedule_event_daily' ); |
|
| 57 | + update_option( 'wpinv_cleared_old_events', 1 ); |
|
| 58 | + } |
|
| 59 | + |
|
| 60 | + } |
|
| 61 | + |
|
| 62 | + /** |
|
| 63 | + * Fires the old hook for backwards compatibility. |
|
| 64 | + * |
|
| 65 | + */ |
|
| 66 | + public function backwards_compat() { |
|
| 67 | + do_action( 'wpinv_register_schedule_event_daily' ); |
|
| 68 | + } |
|
| 69 | + |
|
| 70 | + /** |
|
| 71 | + * Checks for subscriptions that are scheduled to renew. |
|
| 72 | + * |
|
| 73 | + */ |
|
| 74 | + public function check_renewing_subscriptions() { |
|
| 75 | + |
|
| 76 | + // Fetch subscriptions that expire today. |
|
| 77 | + $args = array( |
|
| 78 | + 'number' => -1, |
|
| 79 | + 'count_total' => false, |
|
| 80 | + 'status' => 'trialling active', |
|
| 81 | + 'date_expires_query' => array( |
|
| 82 | + array( |
|
| 83 | + 'year' => gmdate( 'Y' ), |
|
| 84 | + 'month' => gmdate( 'n' ), |
|
| 85 | + 'day' => gmdate( 'j' ), |
|
| 86 | + 'compare' => '=', |
|
| 87 | + ), |
|
| 88 | + ), |
|
| 89 | + ); |
|
| 90 | + |
|
| 91 | + $subscriptions = new GetPaid_Subscriptions_Query( $args ); |
|
| 92 | + |
|
| 93 | + foreach ( $subscriptions->get_results() as $subscription ) { |
|
| 94 | + |
|
| 95 | + /** @var WPInv_Subscription $subscription */ |
|
| 96 | + if ( $subscription->is_last_renewal() ) { |
|
| 97 | + $subscription->complete(); |
|
| 98 | + } else { |
|
| 99 | + do_action( 'getpaid_should_renew_subscription', $subscription ); |
|
| 100 | + } |
|
| 101 | + } |
|
| 102 | + |
|
| 103 | + } |
|
| 104 | + |
|
| 105 | + /** |
|
| 106 | + * Expires expired subscriptions. |
|
| 107 | + * |
|
| 108 | + */ |
|
| 109 | + public function maybe_expire_subscriptions() { |
|
| 110 | + |
|
| 111 | + // Fetch expired subscriptions (skips those that expire today). |
|
| 112 | + $args = array( |
|
| 113 | + 'number' => -1, |
|
| 114 | + 'count_total' => false, |
|
| 115 | + 'status' => 'trialling active failing cancelled', |
|
| 116 | + 'date_expires_query' => array( |
|
| 117 | + 'before' => 'yesterday', |
|
| 118 | + 'inclusive' => false, |
|
| 119 | + ), |
|
| 120 | + ); |
|
| 121 | + |
|
| 122 | + $subscriptions = new GetPaid_Subscriptions_Query( $args ); |
|
| 123 | + |
|
| 124 | + foreach ( $subscriptions->get_results() as $subscription ) { |
|
| 125 | + if ( apply_filters( 'getpaid_daily_maintenance_should_expire_subscription', false, $subscription ) ) { |
|
| 126 | + $subscription->set_status( 'expired' ); |
|
| 127 | + $subscription->save(); |
|
| 128 | + } |
|
| 129 | + } |
|
| 130 | + |
|
| 131 | + } |
|
| 132 | + |
|
| 133 | + /** |
|
| 134 | + * Logs cron runs. |
|
| 135 | + * |
|
| 136 | + */ |
|
| 137 | + public function log_cron_run() { |
|
| 138 | + wpinv_error_log( 'GetPaid Daily Cron', false ); |
|
| 139 | + } |
|
| 140 | + |
|
| 141 | + /** |
|
| 142 | + * Updates GeoIP databases. |
|
| 143 | + * |
|
| 144 | + */ |
|
| 145 | + public function maybe_update_geoip_databases() { |
|
| 146 | + $updated = get_transient( 'getpaid_updated_geoip_databases' ); |
|
| 147 | + |
|
| 148 | + if ( false === $updated ) { |
|
| 149 | + set_transient( 'getpaid_updated_geoip_databases', 1, 15 * DAY_IN_SECONDS ); |
|
| 150 | + do_action( 'getpaid_update_geoip_databases' ); |
|
| 151 | + } |
|
| 152 | + |
|
| 153 | + } |
|
| 154 | 154 | |
| 155 | 155 | } |
@@ -39,62 +39,62 @@ discard block |
||
| 39 | 39 | <td style="width: 65%"> |
| 40 | 40 | <?php |
| 41 | 41 | |
| 42 | - switch ( $key ) { |
|
| 42 | + switch ( $key ) { |
|
| 43 | 43 | |
| 44 | - case 'status': |
|
| 45 | - echo esc_html( $subscription->get_status_label() ); |
|
| 46 | - break; |
|
| 44 | + case 'status': |
|
| 45 | + echo esc_html( $subscription->get_status_label() ); |
|
| 46 | + break; |
|
| 47 | 47 | |
| 48 | - case 'start_date': |
|
| 49 | - echo esc_html( getpaid_format_date_value( $subscription->get_date_created() ) ); |
|
| 50 | - break; |
|
| 48 | + case 'start_date': |
|
| 49 | + echo esc_html( getpaid_format_date_value( $subscription->get_date_created() ) ); |
|
| 50 | + break; |
|
| 51 | 51 | |
| 52 | - case 'expiry_date': |
|
| 53 | - echo esc_html( getpaid_format_date_value( $subscription->get_next_renewal_date() ) ); |
|
| 54 | - break; |
|
| 52 | + case 'expiry_date': |
|
| 53 | + echo esc_html( getpaid_format_date_value( $subscription->get_next_renewal_date() ) ); |
|
| 54 | + break; |
|
| 55 | 55 | |
| 56 | - case 'initial_amount': |
|
| 57 | - echo wp_kses_post( wpinv_price( $subscription->get_initial_amount(), $subscription->get_parent_payment()->get_currency() ) ); |
|
| 56 | + case 'initial_amount': |
|
| 57 | + echo wp_kses_post( wpinv_price( $subscription->get_initial_amount(), $subscription->get_parent_payment()->get_currency() ) ); |
|
| 58 | 58 | |
| 59 | - if ( $subscription->has_trial_period() ) { |
|
| 59 | + if ( $subscription->has_trial_period() ) { |
|
| 60 | 60 | |
| 61 | - echo "<small class='text-muted'> "; |
|
| 62 | - printf( |
|
| 63 | - esc_html_x( '( %1$s trial )', 'Subscription trial period. (e.g.: 1 month trial)', 'invoicing' ), |
|
| 64 | - esc_html( $subscription->get_trial_period() ) |
|
| 65 | - ); |
|
| 66 | - echo '</small>'; |
|
| 61 | + echo "<small class='text-muted'> "; |
|
| 62 | + printf( |
|
| 63 | + esc_html_x( '( %1$s trial )', 'Subscription trial period. (e.g.: 1 month trial)', 'invoicing' ), |
|
| 64 | + esc_html( $subscription->get_trial_period() ) |
|
| 65 | + ); |
|
| 66 | + echo '</small>'; |
|
| 67 | 67 | |
| 68 | - } |
|
| 68 | + } |
|
| 69 | 69 | |
| 70 | - break; |
|
| 70 | + break; |
|
| 71 | 71 | |
| 72 | - case 'recurring_amount': |
|
| 73 | - $frequency = getpaid_get_subscription_period_label( $subscription->get_period(), $subscription->get_frequency(), '' ); |
|
| 74 | - $amount = wpinv_price( $subscription->get_recurring_amount(), $subscription->get_parent_payment()->get_currency() ); |
|
| 75 | - echo wp_kses_post( strtolower( "<strong style='font-weight: 500;'>$amount</strong> / <span class='getpaid-item-recurring-period'>$frequency</span>" ) ); |
|
| 76 | - break; |
|
| 72 | + case 'recurring_amount': |
|
| 73 | + $frequency = getpaid_get_subscription_period_label( $subscription->get_period(), $subscription->get_frequency(), '' ); |
|
| 74 | + $amount = wpinv_price( $subscription->get_recurring_amount(), $subscription->get_parent_payment()->get_currency() ); |
|
| 75 | + echo wp_kses_post( strtolower( "<strong style='font-weight: 500;'>$amount</strong> / <span class='getpaid-item-recurring-period'>$frequency</span>" ) ); |
|
| 76 | + break; |
|
| 77 | 77 | |
| 78 | - case 'item': |
|
| 79 | - if ( empty( $subscription_group ) ) { |
|
| 80 | - echo wp_kses_post( WPInv_Subscriptions_List_Table::generate_item_markup( $subscription->get_product_id() ) ); |
|
| 81 | - } else { |
|
| 82 | - $markup = array_map( array( 'WPInv_Subscriptions_List_Table', 'generate_item_markup' ), array_keys( $subscription_group['items'] ) ); |
|
| 83 | - echo wp_kses_post( implode( ' | ', $markup ) ); |
|
| 84 | - } |
|
| 78 | + case 'item': |
|
| 79 | + if ( empty( $subscription_group ) ) { |
|
| 80 | + echo wp_kses_post( WPInv_Subscriptions_List_Table::generate_item_markup( $subscription->get_product_id() ) ); |
|
| 81 | + } else { |
|
| 82 | + $markup = array_map( array( 'WPInv_Subscriptions_List_Table', 'generate_item_markup' ), array_keys( $subscription_group['items'] ) ); |
|
| 83 | + echo wp_kses_post( implode( ' | ', $markup ) ); |
|
| 84 | + } |
|
| 85 | 85 | |
| 86 | - break; |
|
| 86 | + break; |
|
| 87 | 87 | |
| 88 | - case 'payments': |
|
| 89 | - $max_activations = (int) $subscription->get_bill_times(); |
|
| 90 | - echo ( (int) $subscription->get_times_billed() ) . ' / ' . ( empty( $max_activations ) ? '∞' : (int) $max_activations ); |
|
| 88 | + case 'payments': |
|
| 89 | + $max_activations = (int) $subscription->get_bill_times(); |
|
| 90 | + echo ( (int) $subscription->get_times_billed() ) . ' / ' . ( empty( $max_activations ) ? '∞' : (int) $max_activations ); |
|
| 91 | 91 | |
| 92 | - break; |
|
| 92 | + break; |
|
| 93 | 93 | |
| 94 | - } |
|
| 95 | - do_action( "getpaid_render_single_subscription_column_$key", $subscription ); |
|
| 94 | + } |
|
| 95 | + do_action( "getpaid_render_single_subscription_column_$key", $subscription ); |
|
| 96 | 96 | |
| 97 | - ?> |
|
| 97 | + ?> |
|
| 98 | 98 | </td> |
| 99 | 99 | |
| 100 | 100 | </tr> |
@@ -121,17 +121,17 @@ discard block |
||
| 121 | 121 | <span class="form-text"> |
| 122 | 122 | |
| 123 | 123 | <?php |
| 124 | - if ( $subscription->can_cancel() ) { |
|
| 125 | - printf( |
|
| 124 | + if ( $subscription->can_cancel() ) { |
|
| 125 | + printf( |
|
| 126 | 126 | '<a href="%s" class="btn btn-danger btn-sm" onclick="return confirm(\'%s\')">%s</a> ', |
| 127 | 127 | esc_url( $subscription->get_cancel_url() ), |
| 128 | 128 | esc_attr__( 'Are you sure you want to cancel this subscription?', 'invoicing' ), |
| 129 | 129 | esc_html__( 'Cancel Subscription', 'invoicing' ) |
| 130 | 130 | ); |
| 131 | - } |
|
| 131 | + } |
|
| 132 | 132 | |
| 133 | - do_action( 'getpaid-single-subscription-page-actions', $subscription ); |
|
| 134 | - ?> |
|
| 133 | + do_action( 'getpaid-single-subscription-page-actions', $subscription ); |
|
| 134 | + ?> |
|
| 135 | 135 | |
| 136 | 136 | <a href="<?php echo esc_url( getpaid_get_tab_url( 'gp-subscriptions', get_permalink( (int) wpinv_get_option( 'invoice_subscription_page' ) ) ) ); ?>" class="btn btn-secondary btn-sm"><?php esc_html_e( 'Go Back', 'invoicing' ); ?></a> |
| 137 | 137 | </span> |
@@ -12,478 +12,478 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | class GetPaid_Paypal_Gateway_IPN_Handler { |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * Payment method id. |
|
| 17 | - * |
|
| 18 | - * @var string |
|
| 19 | - */ |
|
| 20 | - protected $id = 'paypal'; |
|
| 21 | - |
|
| 22 | - /** |
|
| 23 | - * Payment method object. |
|
| 24 | - * |
|
| 25 | - * @var GetPaid_Paypal_Gateway |
|
| 26 | - */ |
|
| 27 | - protected $gateway; |
|
| 28 | - |
|
| 29 | - /** |
|
| 30 | - * Class constructor. |
|
| 31 | - * |
|
| 32 | - * @param GetPaid_Paypal_Gateway $gateway |
|
| 33 | - */ |
|
| 34 | - public function __construct( $gateway ) { |
|
| 35 | - $this->gateway = $gateway; |
|
| 36 | - $this->verify_ipn(); |
|
| 37 | - } |
|
| 38 | - |
|
| 39 | - /** |
|
| 40 | - * Processes ipns and marks payments as complete. |
|
| 41 | - * |
|
| 42 | - * @return void |
|
| 43 | - */ |
|
| 44 | - public function verify_ipn() { |
|
| 45 | - |
|
| 46 | - wpinv_error_log( 'GetPaid PayPal IPN Handler', false ); |
|
| 47 | - |
|
| 48 | - // Validate the IPN. |
|
| 49 | - if ( empty( $_POST ) || ! $this->validate_ipn() ) { |
|
| 50 | - wp_die( 'PayPal IPN Request Failure', 500 ); |
|
| 51 | - } |
|
| 52 | - |
|
| 53 | - // Process the IPN. |
|
| 54 | - $posted = wp_unslash( $_POST ); |
|
| 55 | - $invoice = $this->get_ipn_invoice( $posted ); |
|
| 56 | - |
|
| 57 | - // Abort if it was not paid by our gateway. |
|
| 58 | - if ( $this->id != $invoice->get_gateway() ) { |
|
| 59 | - wpinv_error_log( 'Aborting, Invoice was not paid via PayPal', false ); |
|
| 60 | - wp_die( 'Invoice not paid via PayPal', 200 ); |
|
| 61 | - } |
|
| 62 | - |
|
| 63 | - $posted['payment_status'] = isset( $posted['payment_status'] ) ? sanitize_key( strtolower( $posted['payment_status'] ) ) : ''; |
|
| 64 | - $posted['txn_type'] = sanitize_key( strtolower( $posted['txn_type'] ) ); |
|
| 65 | - |
|
| 66 | - wpinv_error_log( 'Payment status:' . $posted['payment_status'], false ); |
|
| 67 | - wpinv_error_log( 'IPN Type:' . $posted['txn_type'], false ); |
|
| 68 | - |
|
| 69 | - if ( method_exists( $this, 'ipn_txn_' . $posted['txn_type'] ) ) { |
|
| 70 | - call_user_func( array( $this, 'ipn_txn_' . $posted['txn_type'] ), $invoice, $posted ); |
|
| 71 | - wpinv_error_log( 'Done processing IPN', false ); |
|
| 72 | - wp_die( 'Processed', 200 ); |
|
| 73 | - } |
|
| 74 | - |
|
| 75 | - wpinv_error_log( 'Aborting, Unsupported IPN type:' . $posted['txn_type'], false ); |
|
| 76 | - wp_die( 'Unsupported IPN type', 200 ); |
|
| 77 | - |
|
| 78 | - } |
|
| 79 | - |
|
| 80 | - /** |
|
| 81 | - * Retrieves IPN Invoice. |
|
| 82 | - * |
|
| 83 | - * @param array $posted |
|
| 84 | - * @return WPInv_Invoice |
|
| 85 | - */ |
|
| 86 | - protected function get_ipn_invoice( $posted ) { |
|
| 87 | - |
|
| 88 | - wpinv_error_log( 'Retrieving PayPal IPN Response Invoice', false ); |
|
| 89 | - |
|
| 90 | - if ( ! empty( $posted['custom'] ) ) { |
|
| 91 | - $invoice = new WPInv_Invoice( $posted['custom'] ); |
|
| 92 | - |
|
| 93 | - if ( $invoice->exists() ) { |
|
| 94 | - wpinv_error_log( 'Found invoice #' . $invoice->get_number(), false ); |
|
| 95 | - return $invoice; |
|
| 96 | - } |
|
| 97 | - } |
|
| 98 | - |
|
| 99 | - wpinv_error_log( 'Could not retrieve the associated invoice.', false ); |
|
| 100 | - wp_die( 'Could not retrieve the associated invoice.', 200 ); |
|
| 101 | - } |
|
| 102 | - |
|
| 103 | - /** |
|
| 104 | - * Check PayPal IPN validity. |
|
| 105 | - */ |
|
| 106 | - protected function validate_ipn() { |
|
| 107 | - |
|
| 108 | - wpinv_error_log( 'Validating PayPal IPN response', false ); |
|
| 109 | - |
|
| 110 | - // Retrieve the associated invoice. |
|
| 111 | - $posted = wp_unslash( $_POST ); |
|
| 112 | - $invoice = $this->get_ipn_invoice( $posted ); |
|
| 113 | - |
|
| 114 | - if ( $this->gateway->is_sandbox( $invoice ) ) { |
|
| 115 | - wpinv_error_log( $posted, 'Invoice was processed in sandbox hence logging the posted data', false ); |
|
| 116 | - } |
|
| 117 | - |
|
| 118 | - // Validate the IPN. |
|
| 119 | - $posted['cmd'] = '_notify-validate'; |
|
| 120 | - |
|
| 121 | - // Send back post vars to paypal. |
|
| 122 | - $params = array( |
|
| 123 | - 'body' => $posted, |
|
| 124 | - 'timeout' => 60, |
|
| 125 | - 'httpversion' => '1.1', |
|
| 126 | - 'compress' => false, |
|
| 127 | - 'decompress' => false, |
|
| 128 | - 'user-agent' => 'GetPaid/' . WPINV_VERSION, |
|
| 129 | - ); |
|
| 130 | - |
|
| 131 | - // Post back to get a response. |
|
| 132 | - $response = wp_safe_remote_post( $this->gateway->is_sandbox( $invoice ) ? 'https://www.sandbox.paypal.com/cgi-bin/webscr' : 'https://www.paypal.com/cgi-bin/webscr', $params ); |
|
| 133 | - |
|
| 134 | - // Check to see if the request was valid. |
|
| 135 | - if ( ! is_wp_error( $response ) && $response['response']['code'] < 300 && strstr( $response['body'], 'VERIFIED' ) ) { |
|
| 136 | - $invoice->add_note( 'Received valid response from PayPal IPN: ' . $response['body'], false, false, true ); |
|
| 137 | - wpinv_error_log( 'Received valid response from PayPal IPN: ' . $response['body'], false ); |
|
| 138 | - return true; |
|
| 139 | - } |
|
| 140 | - |
|
| 141 | - $invoice->add_note( 'IPN message:' . wp_json_encode( $posted ), false, false, true ); |
|
| 142 | - |
|
| 143 | - if ( is_wp_error( $response ) ) { |
|
| 144 | - $invoice->add_note( 'Received invalid response from PayPal IPN: ' . $response->get_error_message(), false, false, true ); |
|
| 145 | - wpinv_error_log( $response->get_error_message(), 'Received invalid response from PayPal IPN' ); |
|
| 146 | - return false; |
|
| 147 | - } |
|
| 148 | - |
|
| 149 | - $invoice->add_note( 'Received invalid response from PayPal IPN: ' . $response['body'], false, false, true ); |
|
| 150 | - wpinv_error_log( $response['body'], 'Received invalid response from PayPal IPN' ); |
|
| 151 | - return false; |
|
| 152 | - |
|
| 153 | - } |
|
| 154 | - |
|
| 155 | - /** |
|
| 156 | - * Check currency from IPN matches the invoice. |
|
| 157 | - * |
|
| 158 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 159 | - * @param string $currency currency to validate. |
|
| 160 | - */ |
|
| 161 | - protected function validate_ipn_currency( $invoice, $currency ) { |
|
| 15 | + /** |
|
| 16 | + * Payment method id. |
|
| 17 | + * |
|
| 18 | + * @var string |
|
| 19 | + */ |
|
| 20 | + protected $id = 'paypal'; |
|
| 21 | + |
|
| 22 | + /** |
|
| 23 | + * Payment method object. |
|
| 24 | + * |
|
| 25 | + * @var GetPaid_Paypal_Gateway |
|
| 26 | + */ |
|
| 27 | + protected $gateway; |
|
| 28 | + |
|
| 29 | + /** |
|
| 30 | + * Class constructor. |
|
| 31 | + * |
|
| 32 | + * @param GetPaid_Paypal_Gateway $gateway |
|
| 33 | + */ |
|
| 34 | + public function __construct( $gateway ) { |
|
| 35 | + $this->gateway = $gateway; |
|
| 36 | + $this->verify_ipn(); |
|
| 37 | + } |
|
| 38 | + |
|
| 39 | + /** |
|
| 40 | + * Processes ipns and marks payments as complete. |
|
| 41 | + * |
|
| 42 | + * @return void |
|
| 43 | + */ |
|
| 44 | + public function verify_ipn() { |
|
| 45 | + |
|
| 46 | + wpinv_error_log( 'GetPaid PayPal IPN Handler', false ); |
|
| 47 | + |
|
| 48 | + // Validate the IPN. |
|
| 49 | + if ( empty( $_POST ) || ! $this->validate_ipn() ) { |
|
| 50 | + wp_die( 'PayPal IPN Request Failure', 500 ); |
|
| 51 | + } |
|
| 52 | + |
|
| 53 | + // Process the IPN. |
|
| 54 | + $posted = wp_unslash( $_POST ); |
|
| 55 | + $invoice = $this->get_ipn_invoice( $posted ); |
|
| 56 | + |
|
| 57 | + // Abort if it was not paid by our gateway. |
|
| 58 | + if ( $this->id != $invoice->get_gateway() ) { |
|
| 59 | + wpinv_error_log( 'Aborting, Invoice was not paid via PayPal', false ); |
|
| 60 | + wp_die( 'Invoice not paid via PayPal', 200 ); |
|
| 61 | + } |
|
| 62 | + |
|
| 63 | + $posted['payment_status'] = isset( $posted['payment_status'] ) ? sanitize_key( strtolower( $posted['payment_status'] ) ) : ''; |
|
| 64 | + $posted['txn_type'] = sanitize_key( strtolower( $posted['txn_type'] ) ); |
|
| 65 | + |
|
| 66 | + wpinv_error_log( 'Payment status:' . $posted['payment_status'], false ); |
|
| 67 | + wpinv_error_log( 'IPN Type:' . $posted['txn_type'], false ); |
|
| 68 | + |
|
| 69 | + if ( method_exists( $this, 'ipn_txn_' . $posted['txn_type'] ) ) { |
|
| 70 | + call_user_func( array( $this, 'ipn_txn_' . $posted['txn_type'] ), $invoice, $posted ); |
|
| 71 | + wpinv_error_log( 'Done processing IPN', false ); |
|
| 72 | + wp_die( 'Processed', 200 ); |
|
| 73 | + } |
|
| 74 | + |
|
| 75 | + wpinv_error_log( 'Aborting, Unsupported IPN type:' . $posted['txn_type'], false ); |
|
| 76 | + wp_die( 'Unsupported IPN type', 200 ); |
|
| 77 | + |
|
| 78 | + } |
|
| 79 | + |
|
| 80 | + /** |
|
| 81 | + * Retrieves IPN Invoice. |
|
| 82 | + * |
|
| 83 | + * @param array $posted |
|
| 84 | + * @return WPInv_Invoice |
|
| 85 | + */ |
|
| 86 | + protected function get_ipn_invoice( $posted ) { |
|
| 87 | + |
|
| 88 | + wpinv_error_log( 'Retrieving PayPal IPN Response Invoice', false ); |
|
| 89 | + |
|
| 90 | + if ( ! empty( $posted['custom'] ) ) { |
|
| 91 | + $invoice = new WPInv_Invoice( $posted['custom'] ); |
|
| 92 | + |
|
| 93 | + if ( $invoice->exists() ) { |
|
| 94 | + wpinv_error_log( 'Found invoice #' . $invoice->get_number(), false ); |
|
| 95 | + return $invoice; |
|
| 96 | + } |
|
| 97 | + } |
|
| 98 | + |
|
| 99 | + wpinv_error_log( 'Could not retrieve the associated invoice.', false ); |
|
| 100 | + wp_die( 'Could not retrieve the associated invoice.', 200 ); |
|
| 101 | + } |
|
| 102 | + |
|
| 103 | + /** |
|
| 104 | + * Check PayPal IPN validity. |
|
| 105 | + */ |
|
| 106 | + protected function validate_ipn() { |
|
| 107 | + |
|
| 108 | + wpinv_error_log( 'Validating PayPal IPN response', false ); |
|
| 109 | + |
|
| 110 | + // Retrieve the associated invoice. |
|
| 111 | + $posted = wp_unslash( $_POST ); |
|
| 112 | + $invoice = $this->get_ipn_invoice( $posted ); |
|
| 113 | + |
|
| 114 | + if ( $this->gateway->is_sandbox( $invoice ) ) { |
|
| 115 | + wpinv_error_log( $posted, 'Invoice was processed in sandbox hence logging the posted data', false ); |
|
| 116 | + } |
|
| 117 | + |
|
| 118 | + // Validate the IPN. |
|
| 119 | + $posted['cmd'] = '_notify-validate'; |
|
| 120 | + |
|
| 121 | + // Send back post vars to paypal. |
|
| 122 | + $params = array( |
|
| 123 | + 'body' => $posted, |
|
| 124 | + 'timeout' => 60, |
|
| 125 | + 'httpversion' => '1.1', |
|
| 126 | + 'compress' => false, |
|
| 127 | + 'decompress' => false, |
|
| 128 | + 'user-agent' => 'GetPaid/' . WPINV_VERSION, |
|
| 129 | + ); |
|
| 130 | + |
|
| 131 | + // Post back to get a response. |
|
| 132 | + $response = wp_safe_remote_post( $this->gateway->is_sandbox( $invoice ) ? 'https://www.sandbox.paypal.com/cgi-bin/webscr' : 'https://www.paypal.com/cgi-bin/webscr', $params ); |
|
| 133 | + |
|
| 134 | + // Check to see if the request was valid. |
|
| 135 | + if ( ! is_wp_error( $response ) && $response['response']['code'] < 300 && strstr( $response['body'], 'VERIFIED' ) ) { |
|
| 136 | + $invoice->add_note( 'Received valid response from PayPal IPN: ' . $response['body'], false, false, true ); |
|
| 137 | + wpinv_error_log( 'Received valid response from PayPal IPN: ' . $response['body'], false ); |
|
| 138 | + return true; |
|
| 139 | + } |
|
| 140 | + |
|
| 141 | + $invoice->add_note( 'IPN message:' . wp_json_encode( $posted ), false, false, true ); |
|
| 142 | + |
|
| 143 | + if ( is_wp_error( $response ) ) { |
|
| 144 | + $invoice->add_note( 'Received invalid response from PayPal IPN: ' . $response->get_error_message(), false, false, true ); |
|
| 145 | + wpinv_error_log( $response->get_error_message(), 'Received invalid response from PayPal IPN' ); |
|
| 146 | + return false; |
|
| 147 | + } |
|
| 148 | + |
|
| 149 | + $invoice->add_note( 'Received invalid response from PayPal IPN: ' . $response['body'], false, false, true ); |
|
| 150 | + wpinv_error_log( $response['body'], 'Received invalid response from PayPal IPN' ); |
|
| 151 | + return false; |
|
| 152 | + |
|
| 153 | + } |
|
| 154 | + |
|
| 155 | + /** |
|
| 156 | + * Check currency from IPN matches the invoice. |
|
| 157 | + * |
|
| 158 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 159 | + * @param string $currency currency to validate. |
|
| 160 | + */ |
|
| 161 | + protected function validate_ipn_currency( $invoice, $currency ) { |
|
| 162 | 162 | |
| 163 | - if ( strtolower( $invoice->get_currency() ) !== strtolower( $currency ) ) { |
|
| 163 | + if ( strtolower( $invoice->get_currency() ) !== strtolower( $currency ) ) { |
|
| 164 | 164 | |
| 165 | - /* translators: %s: currency code. */ |
|
| 166 | - $invoice->update_status( 'wpi-processing', sprintf( __( 'Validation error: PayPal currencies do not match (code %s).', 'invoicing' ), $currency ) ); |
|
| 165 | + /* translators: %s: currency code. */ |
|
| 166 | + $invoice->update_status( 'wpi-processing', sprintf( __( 'Validation error: PayPal currencies do not match (code %s).', 'invoicing' ), $currency ) ); |
|
| 167 | 167 | |
| 168 | - wpinv_error_log( "Currencies do not match: {$currency} instead of {$invoice->get_currency()}", 'IPN Error', __FILE__, __LINE__, true ); |
|
| 169 | - } |
|
| 168 | + wpinv_error_log( "Currencies do not match: {$currency} instead of {$invoice->get_currency()}", 'IPN Error', __FILE__, __LINE__, true ); |
|
| 169 | + } |
|
| 170 | 170 | |
| 171 | - wpinv_error_log( $currency, 'Validated IPN Currency', false ); |
|
| 172 | - } |
|
| 171 | + wpinv_error_log( $currency, 'Validated IPN Currency', false ); |
|
| 172 | + } |
|
| 173 | 173 | |
| 174 | - /** |
|
| 175 | - * Check payment amount from IPN matches the invoice. |
|
| 176 | - * |
|
| 177 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 178 | - * @param float $amount amount to validate. |
|
| 179 | - */ |
|
| 180 | - protected function validate_ipn_amount( $invoice, $amount ) { |
|
| 181 | - if ( number_format( $invoice->get_total(), 2, '.', '' ) !== number_format( $amount, 2, '.', '' ) ) { |
|
| 174 | + /** |
|
| 175 | + * Check payment amount from IPN matches the invoice. |
|
| 176 | + * |
|
| 177 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 178 | + * @param float $amount amount to validate. |
|
| 179 | + */ |
|
| 180 | + protected function validate_ipn_amount( $invoice, $amount ) { |
|
| 181 | + if ( number_format( $invoice->get_total(), 2, '.', '' ) !== number_format( $amount, 2, '.', '' ) ) { |
|
| 182 | 182 | |
| 183 | - /* translators: %s: Amount. */ |
|
| 184 | - $invoice->update_status( 'wpi-processing', sprintf( __( 'Validation error: PayPal amounts do not match (gross %s).', 'invoicing' ), $amount ) ); |
|
| 183 | + /* translators: %s: Amount. */ |
|
| 184 | + $invoice->update_status( 'wpi-processing', sprintf( __( 'Validation error: PayPal amounts do not match (gross %s).', 'invoicing' ), $amount ) ); |
|
| 185 | 185 | |
| 186 | - wpinv_error_log( "Amounts do not match: {$amount} instead of {$invoice->get_total()}", 'IPN Error', __FILE__, __LINE__, true ); |
|
| 187 | - } |
|
| 186 | + wpinv_error_log( "Amounts do not match: {$amount} instead of {$invoice->get_total()}", 'IPN Error', __FILE__, __LINE__, true ); |
|
| 187 | + } |
|
| 188 | 188 | |
| 189 | - wpinv_error_log( $amount, 'Validated IPN Amount', false ); |
|
| 190 | - } |
|
| 189 | + wpinv_error_log( $amount, 'Validated IPN Amount', false ); |
|
| 190 | + } |
|
| 191 | 191 | |
| 192 | - /** |
|
| 193 | - * Verify receiver email from PayPal. |
|
| 194 | - * |
|
| 195 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 196 | - * @param string $receiver_email Email to validate. |
|
| 197 | - */ |
|
| 198 | - protected function validate_ipn_receiver_email( $invoice, $receiver_email ) { |
|
| 199 | - $paypal_email = wpinv_get_option( 'paypal_email' ); |
|
| 192 | + /** |
|
| 193 | + * Verify receiver email from PayPal. |
|
| 194 | + * |
|
| 195 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 196 | + * @param string $receiver_email Email to validate. |
|
| 197 | + */ |
|
| 198 | + protected function validate_ipn_receiver_email( $invoice, $receiver_email ) { |
|
| 199 | + $paypal_email = wpinv_get_option( 'paypal_email' ); |
|
| 200 | 200 | |
| 201 | - if ( $receiver_email && strcasecmp( trim( $receiver_email ), trim( $paypal_email ) ) !== 0 ) { |
|
| 202 | - wpinv_record_gateway_error( 'IPN Error', "IPN Response is for another account: {$receiver_email}. Your email is {$paypal_email}" ); |
|
| 201 | + if ( $receiver_email && strcasecmp( trim( $receiver_email ), trim( $paypal_email ) ) !== 0 ) { |
|
| 202 | + wpinv_record_gateway_error( 'IPN Error', "IPN Response is for another account: {$receiver_email}. Your email is {$paypal_email}" ); |
|
| 203 | 203 | |
| 204 | - /* translators: %s: email address . */ |
|
| 205 | - $invoice->update_status( 'wpi-processing', sprintf( __( 'Validation error: PayPal IPN response from a different email address (%s).', 'invoicing' ), $receiver_email ) ); |
|
| 204 | + /* translators: %s: email address . */ |
|
| 205 | + $invoice->update_status( 'wpi-processing', sprintf( __( 'Validation error: PayPal IPN response from a different email address (%s).', 'invoicing' ), $receiver_email ) ); |
|
| 206 | 206 | |
| 207 | - return wpinv_error_log( "IPN Response is for another account: {$receiver_email}. Your email is {$paypal_email}", 'IPN Error', __FILE__, __LINE__, true ); |
|
| 208 | - } |
|
| 207 | + return wpinv_error_log( "IPN Response is for another account: {$receiver_email}. Your email is {$paypal_email}", 'IPN Error', __FILE__, __LINE__, true ); |
|
| 208 | + } |
|
| 209 | 209 | |
| 210 | - wpinv_error_log( 'Validated PayPal Email', false ); |
|
| 211 | - } |
|
| 210 | + wpinv_error_log( 'Validated PayPal Email', false ); |
|
| 211 | + } |
|
| 212 | 212 | |
| 213 | - /** |
|
| 214 | - * Handles one time payments. |
|
| 215 | - * |
|
| 216 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 217 | - * @param array $posted Posted data. |
|
| 218 | - */ |
|
| 219 | - protected function ipn_txn_web_accept( $invoice, $posted ) { |
|
| 213 | + /** |
|
| 214 | + * Handles one time payments. |
|
| 215 | + * |
|
| 216 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 217 | + * @param array $posted Posted data. |
|
| 218 | + */ |
|
| 219 | + protected function ipn_txn_web_accept( $invoice, $posted ) { |
|
| 220 | 220 | |
| 221 | - // Collect payment details |
|
| 222 | - $payment_status = strtolower( $posted['payment_status'] ); |
|
| 223 | - $business_email = isset( $posted['business'] ) && is_email( $posted['business'] ) ? trim( $posted['business'] ) : trim( $posted['receiver_email'] ); |
|
| 221 | + // Collect payment details |
|
| 222 | + $payment_status = strtolower( $posted['payment_status'] ); |
|
| 223 | + $business_email = isset( $posted['business'] ) && is_email( $posted['business'] ) ? trim( $posted['business'] ) : trim( $posted['receiver_email'] ); |
|
| 224 | 224 | |
| 225 | - $this->validate_ipn_receiver_email( $invoice, $business_email ); |
|
| 226 | - $this->validate_ipn_currency( $invoice, $posted['mc_currency'] ); |
|
| 225 | + $this->validate_ipn_receiver_email( $invoice, $business_email ); |
|
| 226 | + $this->validate_ipn_currency( $invoice, $posted['mc_currency'] ); |
|
| 227 | 227 | |
| 228 | - // Update the transaction id. |
|
| 229 | - if ( ! empty( $posted['txn_id'] ) ) { |
|
| 230 | - $invoice->set_transaction_id( wpinv_clean( $posted['txn_id'] ) ); |
|
| 231 | - $invoice->save(); |
|
| 232 | - } |
|
| 228 | + // Update the transaction id. |
|
| 229 | + if ( ! empty( $posted['txn_id'] ) ) { |
|
| 230 | + $invoice->set_transaction_id( wpinv_clean( $posted['txn_id'] ) ); |
|
| 231 | + $invoice->save(); |
|
| 232 | + } |
|
| 233 | 233 | |
| 234 | - $invoice->add_system_note( __( 'Processing invoice IPN', 'invoicing' ) ); |
|
| 234 | + $invoice->add_system_note( __( 'Processing invoice IPN', 'invoicing' ) ); |
|
| 235 | 235 | |
| 236 | - // Process a refund. |
|
| 237 | - if ( 'refunded' === $payment_status || 'reversed' === $payment_status ) { |
|
| 236 | + // Process a refund. |
|
| 237 | + if ( 'refunded' === $payment_status || 'reversed' === $payment_status ) { |
|
| 238 | 238 | |
| 239 | - update_post_meta( $invoice->get_id(), 'refunded_remotely', 1 ); |
|
| 239 | + update_post_meta( $invoice->get_id(), 'refunded_remotely', 1 ); |
|
| 240 | 240 | |
| 241 | - if ( ! $invoice->is_refunded() ) { |
|
| 242 | - $invoice->update_status( 'wpi-refunded', $posted['reason_code'] ); |
|
| 243 | - } |
|
| 241 | + if ( ! $invoice->is_refunded() ) { |
|
| 242 | + $invoice->update_status( 'wpi-refunded', $posted['reason_code'] ); |
|
| 243 | + } |
|
| 244 | 244 | |
| 245 | - return wpinv_error_log( $posted['reason_code'], false ); |
|
| 246 | - } |
|
| 245 | + return wpinv_error_log( $posted['reason_code'], false ); |
|
| 246 | + } |
|
| 247 | 247 | |
| 248 | - // Process payments. |
|
| 249 | - if ( 'completed' === $payment_status ) { |
|
| 248 | + // Process payments. |
|
| 249 | + if ( 'completed' === $payment_status ) { |
|
| 250 | 250 | |
| 251 | - if ( $invoice->is_paid() && 'wpi_processing' != $invoice->get_status() ) { |
|
| 252 | - return wpinv_error_log( 'Aborting, Invoice #' . $invoice->get_number() . ' is already paid.', false ); |
|
| 253 | - } |
|
| 251 | + if ( $invoice->is_paid() && 'wpi_processing' != $invoice->get_status() ) { |
|
| 252 | + return wpinv_error_log( 'Aborting, Invoice #' . $invoice->get_number() . ' is already paid.', false ); |
|
| 253 | + } |
|
| 254 | 254 | |
| 255 | - $this->validate_ipn_amount( $invoice, $posted['mc_gross'] ); |
|
| 255 | + $this->validate_ipn_amount( $invoice, $posted['mc_gross'] ); |
|
| 256 | 256 | |
| 257 | - $note = ''; |
|
| 257 | + $note = ''; |
|
| 258 | 258 | |
| 259 | - if ( ! empty( $posted['mc_fee'] ) ) { |
|
| 260 | - $note = sprintf( __( 'PayPal Transaction Fee %s.', 'invoicing' ), sanitize_text_field( $posted['mc_fee'] ) ); |
|
| 261 | - } |
|
| 259 | + if ( ! empty( $posted['mc_fee'] ) ) { |
|
| 260 | + $note = sprintf( __( 'PayPal Transaction Fee %s.', 'invoicing' ), sanitize_text_field( $posted['mc_fee'] ) ); |
|
| 261 | + } |
|
| 262 | 262 | |
| 263 | - if ( ! empty( $posted['payer_status'] ) ) { |
|
| 264 | - $note = ' ' . sprintf( __( 'Buyer status %s.', 'invoicing' ), sanitize_text_field( $posted['payer_status'] ) ); |
|
| 265 | - } |
|
| 263 | + if ( ! empty( $posted['payer_status'] ) ) { |
|
| 264 | + $note = ' ' . sprintf( __( 'Buyer status %s.', 'invoicing' ), sanitize_text_field( $posted['payer_status'] ) ); |
|
| 265 | + } |
|
| 266 | 266 | |
| 267 | - $invoice->mark_paid( ( ! empty( $posted['txn_id'] ) ? sanitize_text_field( $posted['txn_id'] ) : '' ), trim( $note ) ); |
|
| 268 | - return wpinv_error_log( 'Invoice marked as paid.', false ); |
|
| 267 | + $invoice->mark_paid( ( ! empty( $posted['txn_id'] ) ? sanitize_text_field( $posted['txn_id'] ) : '' ), trim( $note ) ); |
|
| 268 | + return wpinv_error_log( 'Invoice marked as paid.', false ); |
|
| 269 | 269 | |
| 270 | - } |
|
| 270 | + } |
|
| 271 | 271 | |
| 272 | - // Pending payments. |
|
| 273 | - if ( 'pending' === $payment_status ) { |
|
| 272 | + // Pending payments. |
|
| 273 | + if ( 'pending' === $payment_status ) { |
|
| 274 | 274 | |
| 275 | - /* translators: %s: pending reason. */ |
|
| 276 | - $invoice->update_status( 'wpi-onhold', sprintf( __( 'Payment pending (%s).', 'invoicing' ), $posted['pending_reason'] ) ); |
|
| 275 | + /* translators: %s: pending reason. */ |
|
| 276 | + $invoice->update_status( 'wpi-onhold', sprintf( __( 'Payment pending (%s).', 'invoicing' ), $posted['pending_reason'] ) ); |
|
| 277 | 277 | |
| 278 | - return wpinv_error_log( 'Invoice marked as "payment held".', false ); |
|
| 279 | - } |
|
| 278 | + return wpinv_error_log( 'Invoice marked as "payment held".', false ); |
|
| 279 | + } |
|
| 280 | 280 | |
| 281 | - /* translators: %s: payment status. */ |
|
| 282 | - $invoice->update_status( 'wpi-failed', sprintf( __( 'Payment %s via IPN.', 'invoicing' ), sanitize_text_field( $posted['payment_status'] ) ) ); |
|
| 281 | + /* translators: %s: payment status. */ |
|
| 282 | + $invoice->update_status( 'wpi-failed', sprintf( __( 'Payment %s via IPN.', 'invoicing' ), sanitize_text_field( $posted['payment_status'] ) ) ); |
|
| 283 | 283 | |
| 284 | - } |
|
| 284 | + } |
|
| 285 | 285 | |
| 286 | - /** |
|
| 287 | - * Handles one time payments. |
|
| 288 | - * |
|
| 289 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 290 | - * @param array $posted Posted data. |
|
| 291 | - */ |
|
| 292 | - protected function ipn_txn_cart( $invoice, $posted ) { |
|
| 293 | - $this->ipn_txn_web_accept( $invoice, $posted ); |
|
| 294 | - } |
|
| 286 | + /** |
|
| 287 | + * Handles one time payments. |
|
| 288 | + * |
|
| 289 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 290 | + * @param array $posted Posted data. |
|
| 291 | + */ |
|
| 292 | + protected function ipn_txn_cart( $invoice, $posted ) { |
|
| 293 | + $this->ipn_txn_web_accept( $invoice, $posted ); |
|
| 294 | + } |
|
| 295 | 295 | |
| 296 | - /** |
|
| 297 | - * Handles subscription sign ups. |
|
| 298 | - * |
|
| 299 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 300 | - * @param array $posted Posted data. |
|
| 301 | - */ |
|
| 302 | - protected function ipn_txn_subscr_signup( $invoice, $posted ) { |
|
| 296 | + /** |
|
| 297 | + * Handles subscription sign ups. |
|
| 298 | + * |
|
| 299 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 300 | + * @param array $posted Posted data. |
|
| 301 | + */ |
|
| 302 | + protected function ipn_txn_subscr_signup( $invoice, $posted ) { |
|
| 303 | 303 | |
| 304 | - wpinv_error_log( 'Processing subscription signup', false ); |
|
| 304 | + wpinv_error_log( 'Processing subscription signup', false ); |
|
| 305 | 305 | |
| 306 | - // Make sure the invoice has a subscription. |
|
| 307 | - $subscription = getpaid_get_invoice_subscription( $invoice ); |
|
| 306 | + // Make sure the invoice has a subscription. |
|
| 307 | + $subscription = getpaid_get_invoice_subscription( $invoice ); |
|
| 308 | 308 | |
| 309 | - if ( empty( $subscription ) ) { |
|
| 310 | - return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false ); |
|
| 311 | - } |
|
| 309 | + if ( empty( $subscription ) ) { |
|
| 310 | + return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false ); |
|
| 311 | + } |
|
| 312 | 312 | |
| 313 | - wpinv_error_log( 'Found subscription #' . $subscription->get_id(), false ); |
|
| 313 | + wpinv_error_log( 'Found subscription #' . $subscription->get_id(), false ); |
|
| 314 | 314 | |
| 315 | - // Validate the IPN. |
|
| 316 | - $business_email = isset( $posted['business'] ) && is_email( $posted['business'] ) ? trim( $posted['business'] ) : trim( $posted['receiver_email'] ); |
|
| 317 | - $this->validate_ipn_receiver_email( $invoice, $business_email ); |
|
| 318 | - $this->validate_ipn_currency( $invoice, $posted['mc_currency'] ); |
|
| 315 | + // Validate the IPN. |
|
| 316 | + $business_email = isset( $posted['business'] ) && is_email( $posted['business'] ) ? trim( $posted['business'] ) : trim( $posted['receiver_email'] ); |
|
| 317 | + $this->validate_ipn_receiver_email( $invoice, $business_email ); |
|
| 318 | + $this->validate_ipn_currency( $invoice, $posted['mc_currency'] ); |
|
| 319 | 319 | |
| 320 | - // Activate the subscription. |
|
| 321 | - $duration = strtotime( $subscription->get_expiration() ) - strtotime( $subscription->get_date_created() ); |
|
| 322 | - $subscription->set_date_created( current_time( 'mysql' ) ); |
|
| 323 | - $subscription->set_expiration( date( 'Y-m-d H:i:s', ( current_time( 'timestamp' ) + $duration ) ) ); |
|
| 324 | - $subscription->set_profile_id( sanitize_text_field( $posted['subscr_id'] ) ); |
|
| 325 | - $subscription->activate(); |
|
| 320 | + // Activate the subscription. |
|
| 321 | + $duration = strtotime( $subscription->get_expiration() ) - strtotime( $subscription->get_date_created() ); |
|
| 322 | + $subscription->set_date_created( current_time( 'mysql' ) ); |
|
| 323 | + $subscription->set_expiration( date( 'Y-m-d H:i:s', ( current_time( 'timestamp' ) + $duration ) ) ); |
|
| 324 | + $subscription->set_profile_id( sanitize_text_field( $posted['subscr_id'] ) ); |
|
| 325 | + $subscription->activate(); |
|
| 326 | 326 | |
| 327 | - // Set the transaction id. |
|
| 328 | - if ( ! empty( $posted['txn_id'] ) ) { |
|
| 329 | - $invoice->add_note( sprintf( __( 'PayPal Transaction ID: %s', 'invoicing' ), $posted['txn_id'] ), false, false, true ); |
|
| 330 | - $invoice->set_transaction_id( $posted['txn_id'] ); |
|
| 331 | - } |
|
| 327 | + // Set the transaction id. |
|
| 328 | + if ( ! empty( $posted['txn_id'] ) ) { |
|
| 329 | + $invoice->add_note( sprintf( __( 'PayPal Transaction ID: %s', 'invoicing' ), $posted['txn_id'] ), false, false, true ); |
|
| 330 | + $invoice->set_transaction_id( $posted['txn_id'] ); |
|
| 331 | + } |
|
| 332 | 332 | |
| 333 | - // Update the payment status. |
|
| 334 | - $invoice->mark_paid(); |
|
| 333 | + // Update the payment status. |
|
| 334 | + $invoice->mark_paid(); |
|
| 335 | 335 | |
| 336 | - $invoice->add_note( sprintf( __( 'PayPal Subscription ID: %s', 'invoicing' ), $posted['subscr_id'] ), false, false, true ); |
|
| 336 | + $invoice->add_note( sprintf( __( 'PayPal Subscription ID: %s', 'invoicing' ), $posted['subscr_id'] ), false, false, true ); |
|
| 337 | 337 | |
| 338 | - wpinv_error_log( 'Subscription started.', false ); |
|
| 339 | - } |
|
| 338 | + wpinv_error_log( 'Subscription started.', false ); |
|
| 339 | + } |
|
| 340 | 340 | |
| 341 | - /** |
|
| 342 | - * Handles subscription renewals. |
|
| 343 | - * |
|
| 344 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 345 | - * @param array $posted Posted data. |
|
| 346 | - */ |
|
| 347 | - protected function ipn_txn_subscr_payment( $invoice, $posted ) { |
|
| 341 | + /** |
|
| 342 | + * Handles subscription renewals. |
|
| 343 | + * |
|
| 344 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 345 | + * @param array $posted Posted data. |
|
| 346 | + */ |
|
| 347 | + protected function ipn_txn_subscr_payment( $invoice, $posted ) { |
|
| 348 | 348 | |
| 349 | - // Make sure the invoice has a subscription. |
|
| 350 | - $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 349 | + // Make sure the invoice has a subscription. |
|
| 350 | + $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 351 | 351 | |
| 352 | - if ( empty( $subscription ) ) { |
|
| 353 | - return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false ); |
|
| 354 | - } |
|
| 352 | + if ( empty( $subscription ) ) { |
|
| 353 | + return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false ); |
|
| 354 | + } |
|
| 355 | 355 | |
| 356 | - wpinv_error_log( 'Found subscription #' . $subscription->get_id(), false ); |
|
| 356 | + wpinv_error_log( 'Found subscription #' . $subscription->get_id(), false ); |
|
| 357 | 357 | |
| 358 | - // PayPal sends a subscr_payment for the first payment too. |
|
| 359 | - $date_completed = getpaid_format_date( $invoice->get_date_completed() ); |
|
| 360 | - $date_created = getpaid_format_date( $invoice->get_date_created() ); |
|
| 361 | - $today_date = getpaid_format_date( current_time( 'mysql' ) ); |
|
| 362 | - $payment_date = getpaid_format_date( $posted['payment_date'] ); |
|
| 363 | - $subscribe_date = getpaid_format_date( $subscription->get_date_created() ); |
|
| 364 | - $dates = array_filter( compact( 'date_completed', 'date_created', 'subscribe_date' ) ); |
|
| 358 | + // PayPal sends a subscr_payment for the first payment too. |
|
| 359 | + $date_completed = getpaid_format_date( $invoice->get_date_completed() ); |
|
| 360 | + $date_created = getpaid_format_date( $invoice->get_date_created() ); |
|
| 361 | + $today_date = getpaid_format_date( current_time( 'mysql' ) ); |
|
| 362 | + $payment_date = getpaid_format_date( $posted['payment_date'] ); |
|
| 363 | + $subscribe_date = getpaid_format_date( $subscription->get_date_created() ); |
|
| 364 | + $dates = array_filter( compact( 'date_completed', 'date_created', 'subscribe_date' ) ); |
|
| 365 | 365 | |
| 366 | - foreach ( $dates as $date ) { |
|
| 366 | + foreach ( $dates as $date ) { |
|
| 367 | 367 | |
| 368 | - if ( $date !== $today_date && $date !== $payment_date ) { |
|
| 369 | - continue; |
|
| 370 | - } |
|
| 368 | + if ( $date !== $today_date && $date !== $payment_date ) { |
|
| 369 | + continue; |
|
| 370 | + } |
|
| 371 | 371 | |
| 372 | - if ( ! empty( $posted['txn_id'] ) ) { |
|
| 373 | - $invoice->set_transaction_id( sanitize_text_field( $posted['txn_id'] ) ); |
|
| 374 | - $invoice->add_note( wp_sprintf( __( 'PayPal Transaction ID: %s', 'invoicing' ), sanitize_text_field( $posted['txn_id'] ) ), false, false, true ); |
|
| 375 | - } |
|
| 372 | + if ( ! empty( $posted['txn_id'] ) ) { |
|
| 373 | + $invoice->set_transaction_id( sanitize_text_field( $posted['txn_id'] ) ); |
|
| 374 | + $invoice->add_note( wp_sprintf( __( 'PayPal Transaction ID: %s', 'invoicing' ), sanitize_text_field( $posted['txn_id'] ) ), false, false, true ); |
|
| 375 | + } |
|
| 376 | 376 | |
| 377 | - return $invoice->mark_paid(); |
|
| 378 | - |
|
| 379 | - } |
|
| 377 | + return $invoice->mark_paid(); |
|
| 378 | + |
|
| 379 | + } |
|
| 380 | 380 | |
| 381 | - wpinv_error_log( 'Processing subscription renewal payment for the invoice ' . $invoice->get_id(), false ); |
|
| 382 | - |
|
| 383 | - // Abort if the payment is already recorded. |
|
| 384 | - if ( wpinv_get_id_by_transaction_id( $posted['txn_id'] ) ) { |
|
| 385 | - return wpinv_error_log( 'Aborting, Transaction ' . $posted['txn_id'] . ' has already been processed', false ); |
|
| 386 | - } |
|
| 387 | - |
|
| 388 | - $args = array( |
|
| 389 | - 'transaction_id' => $posted['txn_id'], |
|
| 390 | - 'gateway' => $this->id, |
|
| 391 | - ); |
|
| 392 | - |
|
| 393 | - $invoice = wpinv_get_invoice( $subscription->add_payment( $args ) ); |
|
| 381 | + wpinv_error_log( 'Processing subscription renewal payment for the invoice ' . $invoice->get_id(), false ); |
|
| 382 | + |
|
| 383 | + // Abort if the payment is already recorded. |
|
| 384 | + if ( wpinv_get_id_by_transaction_id( $posted['txn_id'] ) ) { |
|
| 385 | + return wpinv_error_log( 'Aborting, Transaction ' . $posted['txn_id'] . ' has already been processed', false ); |
|
| 386 | + } |
|
| 387 | + |
|
| 388 | + $args = array( |
|
| 389 | + 'transaction_id' => $posted['txn_id'], |
|
| 390 | + 'gateway' => $this->id, |
|
| 391 | + ); |
|
| 392 | + |
|
| 393 | + $invoice = wpinv_get_invoice( $subscription->add_payment( $args ) ); |
|
| 394 | 394 | |
| 395 | - if ( empty( $invoice ) ) { |
|
| 396 | - return; |
|
| 397 | - } |
|
| 395 | + if ( empty( $invoice ) ) { |
|
| 396 | + return; |
|
| 397 | + } |
|
| 398 | 398 | |
| 399 | - $invoice->add_note( wp_sprintf( __( 'PayPal Transaction ID: %s', 'invoicing' ), $posted['txn_id'] ), false, false, true ); |
|
| 400 | - $invoice->add_note( wp_sprintf( __( 'PayPal Subscription ID: %s', 'invoicing' ), $posted['subscr_id'] ), false, false, true ); |
|
| 399 | + $invoice->add_note( wp_sprintf( __( 'PayPal Transaction ID: %s', 'invoicing' ), $posted['txn_id'] ), false, false, true ); |
|
| 400 | + $invoice->add_note( wp_sprintf( __( 'PayPal Subscription ID: %s', 'invoicing' ), $posted['subscr_id'] ), false, false, true ); |
|
| 401 | 401 | |
| 402 | - $subscription->renew(); |
|
| 403 | - wpinv_error_log( 'Subscription renewed.', false ); |
|
| 402 | + $subscription->renew(); |
|
| 403 | + wpinv_error_log( 'Subscription renewed.', false ); |
|
| 404 | 404 | |
| 405 | - } |
|
| 405 | + } |
|
| 406 | 406 | |
| 407 | - /** |
|
| 408 | - * Handles subscription cancelations. |
|
| 409 | - * |
|
| 410 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 411 | - */ |
|
| 412 | - protected function ipn_txn_subscr_cancel( $invoice ) { |
|
| 407 | + /** |
|
| 408 | + * Handles subscription cancelations. |
|
| 409 | + * |
|
| 410 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 411 | + */ |
|
| 412 | + protected function ipn_txn_subscr_cancel( $invoice ) { |
|
| 413 | 413 | |
| 414 | - // Make sure the invoice has a subscription. |
|
| 415 | - $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 416 | - |
|
| 417 | - if ( empty( $subscription ) ) { |
|
| 418 | - return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false ); |
|
| 419 | - } |
|
| 420 | - |
|
| 421 | - wpinv_error_log( 'Processing subscription cancellation for the invoice ' . $invoice->get_id(), false ); |
|
| 422 | - $subscription->cancel(); |
|
| 423 | - wpinv_error_log( 'Subscription cancelled.', false ); |
|
| 414 | + // Make sure the invoice has a subscription. |
|
| 415 | + $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 416 | + |
|
| 417 | + if ( empty( $subscription ) ) { |
|
| 418 | + return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false ); |
|
| 419 | + } |
|
| 420 | + |
|
| 421 | + wpinv_error_log( 'Processing subscription cancellation for the invoice ' . $invoice->get_id(), false ); |
|
| 422 | + $subscription->cancel(); |
|
| 423 | + wpinv_error_log( 'Subscription cancelled.', false ); |
|
| 424 | 424 | |
| 425 | - } |
|
| 425 | + } |
|
| 426 | 426 | |
| 427 | - /** |
|
| 428 | - * Handles subscription completions. |
|
| 429 | - * |
|
| 430 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 431 | - * @param array $posted Posted data. |
|
| 432 | - */ |
|
| 433 | - protected function ipn_txn_subscr_eot( $invoice ) { |
|
| 427 | + /** |
|
| 428 | + * Handles subscription completions. |
|
| 429 | + * |
|
| 430 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 431 | + * @param array $posted Posted data. |
|
| 432 | + */ |
|
| 433 | + protected function ipn_txn_subscr_eot( $invoice ) { |
|
| 434 | 434 | |
| 435 | - // Make sure the invoice has a subscription. |
|
| 436 | - $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 435 | + // Make sure the invoice has a subscription. |
|
| 436 | + $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 437 | 437 | |
| 438 | - if ( empty( $subscription ) ) { |
|
| 439 | - return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false ); |
|
| 440 | - } |
|
| 438 | + if ( empty( $subscription ) ) { |
|
| 439 | + return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false ); |
|
| 440 | + } |
|
| 441 | 441 | |
| 442 | - wpinv_error_log( 'Processing subscription end of life for the invoice ' . $invoice->get_id(), false ); |
|
| 443 | - $subscription->complete(); |
|
| 444 | - wpinv_error_log( 'Subscription completed.', false ); |
|
| 442 | + wpinv_error_log( 'Processing subscription end of life for the invoice ' . $invoice->get_id(), false ); |
|
| 443 | + $subscription->complete(); |
|
| 444 | + wpinv_error_log( 'Subscription completed.', false ); |
|
| 445 | 445 | |
| 446 | - } |
|
| 446 | + } |
|
| 447 | 447 | |
| 448 | - /** |
|
| 449 | - * Handles subscription fails. |
|
| 450 | - * |
|
| 451 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 452 | - * @param array $posted Posted data. |
|
| 453 | - */ |
|
| 454 | - protected function ipn_txn_subscr_failed( $invoice ) { |
|
| 448 | + /** |
|
| 449 | + * Handles subscription fails. |
|
| 450 | + * |
|
| 451 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 452 | + * @param array $posted Posted data. |
|
| 453 | + */ |
|
| 454 | + protected function ipn_txn_subscr_failed( $invoice ) { |
|
| 455 | 455 | |
| 456 | - // Make sure the invoice has a subscription. |
|
| 457 | - $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 456 | + // Make sure the invoice has a subscription. |
|
| 457 | + $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 458 | 458 | |
| 459 | - if ( empty( $subscription ) ) { |
|
| 460 | - return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false ); |
|
| 461 | - } |
|
| 459 | + if ( empty( $subscription ) ) { |
|
| 460 | + return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false ); |
|
| 461 | + } |
|
| 462 | 462 | |
| 463 | - wpinv_error_log( 'Processing subscription payment failure for the invoice ' . $invoice->get_id(), false ); |
|
| 464 | - $subscription->failing(); |
|
| 465 | - wpinv_error_log( 'Subscription marked as failing.', false ); |
|
| 463 | + wpinv_error_log( 'Processing subscription payment failure for the invoice ' . $invoice->get_id(), false ); |
|
| 464 | + $subscription->failing(); |
|
| 465 | + wpinv_error_log( 'Subscription marked as failing.', false ); |
|
| 466 | 466 | |
| 467 | - } |
|
| 467 | + } |
|
| 468 | 468 | |
| 469 | - /** |
|
| 470 | - * Handles subscription suspensions. |
|
| 471 | - * |
|
| 472 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 473 | - * @param array $posted Posted data. |
|
| 474 | - */ |
|
| 475 | - protected function ipn_txn_recurring_payment_suspended_due_to_max_failed_payment( $invoice ) { |
|
| 469 | + /** |
|
| 470 | + * Handles subscription suspensions. |
|
| 471 | + * |
|
| 472 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 473 | + * @param array $posted Posted data. |
|
| 474 | + */ |
|
| 475 | + protected function ipn_txn_recurring_payment_suspended_due_to_max_failed_payment( $invoice ) { |
|
| 476 | 476 | |
| 477 | - // Make sure the invoice has a subscription. |
|
| 478 | - $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 477 | + // Make sure the invoice has a subscription. |
|
| 478 | + $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 479 | 479 | |
| 480 | - if ( empty( $subscription ) ) { |
|
| 481 | - return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false ); |
|
| 482 | - } |
|
| 483 | - |
|
| 484 | - wpinv_error_log( 'Processing subscription cancellation due to max failed payment for the invoice ' . $invoice->get_id(), false ); |
|
| 485 | - $subscription->cancel(); |
|
| 486 | - wpinv_error_log( 'Subscription cancelled.', false ); |
|
| 487 | - } |
|
| 480 | + if ( empty( $subscription ) ) { |
|
| 481 | + return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false ); |
|
| 482 | + } |
|
| 483 | + |
|
| 484 | + wpinv_error_log( 'Processing subscription cancellation due to max failed payment for the invoice ' . $invoice->get_id(), false ); |
|
| 485 | + $subscription->cancel(); |
|
| 486 | + wpinv_error_log( 'Subscription cancelled.', false ); |
|
| 487 | + } |
|
| 488 | 488 | |
| 489 | 489 | } |
@@ -8,7 +8,7 @@ discard block |
||
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | 10 | if ( ! defined( 'ABSPATH' ) ) { |
| 11 | - exit; // Exit if accessed directly |
|
| 11 | + exit; // Exit if accessed directly |
|
| 12 | 12 | } |
| 13 | 13 | |
| 14 | 14 | /** |
@@ -16,85 +16,85 @@ discard block |
||
| 16 | 16 | */ |
| 17 | 17 | class GetPaid_Meta_Box_Invoice_Address { |
| 18 | 18 | |
| 19 | - /** |
|
| 20 | - * Output the metabox. |
|
| 21 | - * |
|
| 22 | - * @param WP_Post $post |
|
| 23 | - */ |
|
| 24 | - public static function output( $post ) { |
|
| 25 | - |
|
| 26 | - // Prepare the invoice. |
|
| 27 | - $invoice = new WPInv_Invoice( $post ); |
|
| 28 | - $customer = $invoice->exists() ? $invoice->get_user_id( 'edit' ) : get_current_user_id(); |
|
| 29 | - $customer = new WP_User( $customer ); |
|
| 30 | - $display = sprintf( _x( '%1$s (%2$s)', 'user dropdown', 'invoicing' ), $customer->display_name, $customer->user_email ); |
|
| 31 | - wp_nonce_field( 'getpaid_meta_nonce', 'getpaid_meta_nonce' ); |
|
| 32 | - |
|
| 33 | - // Address fields. |
|
| 34 | - $address_fields = array( |
|
| 35 | - 'first_name' => array( |
|
| 36 | - 'label' => __( 'First Name', 'invoicing' ), |
|
| 37 | - 'type' => 'text', |
|
| 38 | - ), |
|
| 39 | - 'last_name' => array( |
|
| 40 | - 'label' => __( 'Last Name', 'invoicing' ), |
|
| 41 | - 'type' => 'text', |
|
| 42 | - ), |
|
| 43 | - 'company' => array( |
|
| 44 | - 'label' => __( 'Company', 'invoicing' ), |
|
| 45 | - 'type' => 'text', |
|
| 46 | - 'class' => 'getpaid-recalculate-prices-on-change', |
|
| 47 | - ), |
|
| 48 | - 'vat_number' => array( |
|
| 49 | - 'label' => __( 'VAT Number', 'invoicing' ), |
|
| 50 | - 'type' => 'text', |
|
| 51 | - 'class' => 'getpaid-recalculate-prices-on-change', |
|
| 52 | - ), |
|
| 53 | - 'address' => array( |
|
| 54 | - 'label' => __( 'Address', 'invoicing' ), |
|
| 55 | - 'type' => 'text', |
|
| 56 | - ), |
|
| 57 | - 'city' => array( |
|
| 58 | - 'label' => __( 'City', 'invoicing' ), |
|
| 59 | - 'type' => 'text', |
|
| 60 | - ), |
|
| 61 | - 'country' => array( |
|
| 62 | - 'label' => __( 'Country', 'invoicing' ), |
|
| 63 | - 'type' => 'select', |
|
| 64 | - 'class' => 'getpaid-recalculate-prices-on-change', |
|
| 65 | - 'options' => wpinv_get_country_list(), |
|
| 66 | - 'placeholder' => __( 'Choose a country', 'invoicing' ), |
|
| 67 | - ), |
|
| 68 | - 'state' => array( |
|
| 69 | - 'label' => __( 'State', 'invoicing' ), |
|
| 70 | - 'type' => 'text', |
|
| 71 | - 'class' => 'getpaid-recalculate-prices-on-change', |
|
| 72 | - ), |
|
| 73 | - 'zip' => array( |
|
| 74 | - 'label' => __( 'Zip', 'invoicing' ), |
|
| 75 | - 'type' => 'text', |
|
| 76 | - ), |
|
| 77 | - 'phone' => array( |
|
| 78 | - 'label' => __( 'Phone', 'invoicing' ), |
|
| 79 | - 'type' => 'text', |
|
| 80 | - ), |
|
| 81 | - ); |
|
| 82 | - |
|
| 83 | - $states = wpinv_get_country_states( $invoice->get_country( 'edit' ) ); |
|
| 84 | - |
|
| 85 | - if ( ! empty( $states ) ) { |
|
| 86 | - $address_fields['state']['type'] = 'select'; |
|
| 87 | - $address_fields['state']['options'] = $states; |
|
| 88 | - $address_fields['state']['placeholder'] = __( 'Choose a state', 'invoicing' ); |
|
| 89 | - } |
|
| 90 | - |
|
| 91 | - // Maybe remove the VAT field. |
|
| 92 | - if ( ! wpinv_use_taxes() ) { |
|
| 93 | - unset( $address_fields['vat_number'] ); |
|
| 94 | - } |
|
| 95 | - |
|
| 96 | - $address_fields = apply_filters( 'getpaid_admin_edit_invoice_address_fields', $address_fields, $invoice ); |
|
| 97 | - ?> |
|
| 19 | + /** |
|
| 20 | + * Output the metabox. |
|
| 21 | + * |
|
| 22 | + * @param WP_Post $post |
|
| 23 | + */ |
|
| 24 | + public static function output( $post ) { |
|
| 25 | + |
|
| 26 | + // Prepare the invoice. |
|
| 27 | + $invoice = new WPInv_Invoice( $post ); |
|
| 28 | + $customer = $invoice->exists() ? $invoice->get_user_id( 'edit' ) : get_current_user_id(); |
|
| 29 | + $customer = new WP_User( $customer ); |
|
| 30 | + $display = sprintf( _x( '%1$s (%2$s)', 'user dropdown', 'invoicing' ), $customer->display_name, $customer->user_email ); |
|
| 31 | + wp_nonce_field( 'getpaid_meta_nonce', 'getpaid_meta_nonce' ); |
|
| 32 | + |
|
| 33 | + // Address fields. |
|
| 34 | + $address_fields = array( |
|
| 35 | + 'first_name' => array( |
|
| 36 | + 'label' => __( 'First Name', 'invoicing' ), |
|
| 37 | + 'type' => 'text', |
|
| 38 | + ), |
|
| 39 | + 'last_name' => array( |
|
| 40 | + 'label' => __( 'Last Name', 'invoicing' ), |
|
| 41 | + 'type' => 'text', |
|
| 42 | + ), |
|
| 43 | + 'company' => array( |
|
| 44 | + 'label' => __( 'Company', 'invoicing' ), |
|
| 45 | + 'type' => 'text', |
|
| 46 | + 'class' => 'getpaid-recalculate-prices-on-change', |
|
| 47 | + ), |
|
| 48 | + 'vat_number' => array( |
|
| 49 | + 'label' => __( 'VAT Number', 'invoicing' ), |
|
| 50 | + 'type' => 'text', |
|
| 51 | + 'class' => 'getpaid-recalculate-prices-on-change', |
|
| 52 | + ), |
|
| 53 | + 'address' => array( |
|
| 54 | + 'label' => __( 'Address', 'invoicing' ), |
|
| 55 | + 'type' => 'text', |
|
| 56 | + ), |
|
| 57 | + 'city' => array( |
|
| 58 | + 'label' => __( 'City', 'invoicing' ), |
|
| 59 | + 'type' => 'text', |
|
| 60 | + ), |
|
| 61 | + 'country' => array( |
|
| 62 | + 'label' => __( 'Country', 'invoicing' ), |
|
| 63 | + 'type' => 'select', |
|
| 64 | + 'class' => 'getpaid-recalculate-prices-on-change', |
|
| 65 | + 'options' => wpinv_get_country_list(), |
|
| 66 | + 'placeholder' => __( 'Choose a country', 'invoicing' ), |
|
| 67 | + ), |
|
| 68 | + 'state' => array( |
|
| 69 | + 'label' => __( 'State', 'invoicing' ), |
|
| 70 | + 'type' => 'text', |
|
| 71 | + 'class' => 'getpaid-recalculate-prices-on-change', |
|
| 72 | + ), |
|
| 73 | + 'zip' => array( |
|
| 74 | + 'label' => __( 'Zip', 'invoicing' ), |
|
| 75 | + 'type' => 'text', |
|
| 76 | + ), |
|
| 77 | + 'phone' => array( |
|
| 78 | + 'label' => __( 'Phone', 'invoicing' ), |
|
| 79 | + 'type' => 'text', |
|
| 80 | + ), |
|
| 81 | + ); |
|
| 82 | + |
|
| 83 | + $states = wpinv_get_country_states( $invoice->get_country( 'edit' ) ); |
|
| 84 | + |
|
| 85 | + if ( ! empty( $states ) ) { |
|
| 86 | + $address_fields['state']['type'] = 'select'; |
|
| 87 | + $address_fields['state']['options'] = $states; |
|
| 88 | + $address_fields['state']['placeholder'] = __( 'Choose a state', 'invoicing' ); |
|
| 89 | + } |
|
| 90 | + |
|
| 91 | + // Maybe remove the VAT field. |
|
| 92 | + if ( ! wpinv_use_taxes() ) { |
|
| 93 | + unset( $address_fields['vat_number'] ); |
|
| 94 | + } |
|
| 95 | + |
|
| 96 | + $address_fields = apply_filters( 'getpaid_admin_edit_invoice_address_fields', $address_fields, $invoice ); |
|
| 97 | + ?> |
|
| 98 | 98 | |
| 99 | 99 | <style> |
| 100 | 100 | #wpinv-address label { |
@@ -119,19 +119,19 @@ discard block |
||
| 119 | 119 | <div id="getpaid-invoice-email-wrapper" class="d-none"> |
| 120 | 120 | <input type="hidden" id="getpaid-invoice-create-new-user" name="wpinv_new_user" value="" /> |
| 121 | 121 | <?php |
| 122 | - aui()->input( |
|
| 123 | - array( |
|
| 124 | - 'type' => 'text', |
|
| 125 | - 'id' => 'getpaid-invoice-new-user-email', |
|
| 126 | - 'name' => 'wpinv_email', |
|
| 127 | - 'label' => __( 'Email', 'invoicing' ) . '<span class="required">*</span>', |
|
| 128 | - 'label_type' => 'vertical', |
|
| 129 | - 'placeholder' => '[email protected]', |
|
| 130 | - 'class' => 'form-control-sm', |
|
| 131 | - ), |
|
| 132 | - true |
|
| 133 | - ); |
|
| 134 | - ?> |
|
| 122 | + aui()->input( |
|
| 123 | + array( |
|
| 124 | + 'type' => 'text', |
|
| 125 | + 'id' => 'getpaid-invoice-new-user-email', |
|
| 126 | + 'name' => 'wpinv_email', |
|
| 127 | + 'label' => __( 'Email', 'invoicing' ) . '<span class="required">*</span>', |
|
| 128 | + 'label_type' => 'vertical', |
|
| 129 | + 'placeholder' => '[email protected]', |
|
| 130 | + 'class' => 'form-control-sm', |
|
| 131 | + ), |
|
| 132 | + true |
|
| 133 | + ); |
|
| 134 | + ?> |
|
| 135 | 135 | </div> |
| 136 | 136 | </div> |
| 137 | 137 | <div class="col-12 col-sm-6 form-group mb-3 mt-sm-4"> |
@@ -155,39 +155,39 @@ discard block |
||
| 155 | 155 | <div class="col-12 col-sm-6 getpaid-invoice-address-field__<?php echo esc_attr( $key ); ?>--wrapper"> |
| 156 | 156 | <?php |
| 157 | 157 | |
| 158 | - if ( 'select' === $field['type'] ) { |
|
| 159 | - aui()->select( |
|
| 160 | - array( |
|
| 161 | - 'id' => 'wpinv_' . $key, |
|
| 162 | - 'name' => 'wpinv_' . $key, |
|
| 163 | - 'label' => $field['label'], |
|
| 164 | - 'label_type' => 'vertical', |
|
| 165 | - 'placeholder' => isset( $field['placeholder'] ) ? $field['placeholder'] : '', |
|
| 166 | - 'class' => 'form-control-sm ' . ( isset( $field['class'] ) ? $field['class'] : '' ), |
|
| 167 | - 'value' => $invoice->get( $key, 'edit' ), |
|
| 168 | - 'options' => $field['options'], |
|
| 169 | - 'data-allow-clear' => 'false', |
|
| 170 | - 'select2' => true, |
|
| 171 | - ), |
|
| 172 | - true |
|
| 173 | - ); |
|
| 174 | - } else { |
|
| 175 | - aui()->input( |
|
| 176 | - array( |
|
| 177 | - 'type' => $field['type'], |
|
| 178 | - 'id' => 'wpinv_' . $key, |
|
| 179 | - 'name' => 'wpinv_' . $key, |
|
| 180 | - 'label' => $field['label'], |
|
| 181 | - 'label_type' => 'vertical', |
|
| 182 | - 'placeholder' => isset( $field['placeholder'] ) ? $field['placeholder'] : '', |
|
| 183 | - 'class' => 'form-control-sm ' . ( isset( $field['class'] ) ? $field['class'] : '' ), |
|
| 184 | - 'value' => $invoice->get( $key, 'edit' ), |
|
| 185 | - ), |
|
| 186 | - true |
|
| 187 | - ); |
|
| 188 | - } |
|
| 189 | - |
|
| 190 | - ?> |
|
| 158 | + if ( 'select' === $field['type'] ) { |
|
| 159 | + aui()->select( |
|
| 160 | + array( |
|
| 161 | + 'id' => 'wpinv_' . $key, |
|
| 162 | + 'name' => 'wpinv_' . $key, |
|
| 163 | + 'label' => $field['label'], |
|
| 164 | + 'label_type' => 'vertical', |
|
| 165 | + 'placeholder' => isset( $field['placeholder'] ) ? $field['placeholder'] : '', |
|
| 166 | + 'class' => 'form-control-sm ' . ( isset( $field['class'] ) ? $field['class'] : '' ), |
|
| 167 | + 'value' => $invoice->get( $key, 'edit' ), |
|
| 168 | + 'options' => $field['options'], |
|
| 169 | + 'data-allow-clear' => 'false', |
|
| 170 | + 'select2' => true, |
|
| 171 | + ), |
|
| 172 | + true |
|
| 173 | + ); |
|
| 174 | + } else { |
|
| 175 | + aui()->input( |
|
| 176 | + array( |
|
| 177 | + 'type' => $field['type'], |
|
| 178 | + 'id' => 'wpinv_' . $key, |
|
| 179 | + 'name' => 'wpinv_' . $key, |
|
| 180 | + 'label' => $field['label'], |
|
| 181 | + 'label_type' => 'vertical', |
|
| 182 | + 'placeholder' => isset( $field['placeholder'] ) ? $field['placeholder'] : '', |
|
| 183 | + 'class' => 'form-control-sm ' . ( isset( $field['class'] ) ? $field['class'] : '' ), |
|
| 184 | + 'value' => $invoice->get( $key, 'edit' ), |
|
| 185 | + ), |
|
| 186 | + true |
|
| 187 | + ); |
|
| 188 | + } |
|
| 189 | + |
|
| 190 | + ?> |
|
| 191 | 191 | </div> |
| 192 | 192 | <?php endforeach; ?> |
| 193 | 193 | </div> |
@@ -198,48 +198,48 @@ discard block |
||
| 198 | 198 | <div class="row"> |
| 199 | 199 | <div class="col-12 col-sm-6"> |
| 200 | 200 | <?php |
| 201 | - aui()->select( |
|
| 202 | - array( |
|
| 203 | - 'id' => 'wpinv_template', |
|
| 204 | - 'name' => 'wpinv_template', |
|
| 205 | - 'label' => __( 'Template', 'invoicing' ), |
|
| 206 | - 'label_type' => 'vertical', |
|
| 207 | - 'placeholder' => __( 'Choose a template', 'invoicing' ), |
|
| 208 | - 'class' => 'form-control-sm', |
|
| 209 | - 'value' => $invoice->get_template( 'edit' ), |
|
| 210 | - 'options' => array( |
|
| 211 | - 'quantity' => __( 'Quantity', 'invoicing' ), |
|
| 212 | - 'hours' => __( 'Hours', 'invoicing' ), |
|
| 213 | - ), |
|
| 214 | - 'data-allow-clear' => 'false', |
|
| 215 | - 'select2' => true, |
|
| 216 | - ), |
|
| 217 | - true |
|
| 218 | - ); |
|
| 219 | - ?> |
|
| 201 | + aui()->select( |
|
| 202 | + array( |
|
| 203 | + 'id' => 'wpinv_template', |
|
| 204 | + 'name' => 'wpinv_template', |
|
| 205 | + 'label' => __( 'Template', 'invoicing' ), |
|
| 206 | + 'label_type' => 'vertical', |
|
| 207 | + 'placeholder' => __( 'Choose a template', 'invoicing' ), |
|
| 208 | + 'class' => 'form-control-sm', |
|
| 209 | + 'value' => $invoice->get_template( 'edit' ), |
|
| 210 | + 'options' => array( |
|
| 211 | + 'quantity' => __( 'Quantity', 'invoicing' ), |
|
| 212 | + 'hours' => __( 'Hours', 'invoicing' ), |
|
| 213 | + ), |
|
| 214 | + 'data-allow-clear' => 'false', |
|
| 215 | + 'select2' => true, |
|
| 216 | + ), |
|
| 217 | + true |
|
| 218 | + ); |
|
| 219 | + ?> |
|
| 220 | 220 | </div> |
| 221 | 221 | <div class="col-12 col-sm-6"> |
| 222 | 222 | <?php |
| 223 | 223 | |
| 224 | - // Set currency. |
|
| 225 | - aui()->select( |
|
| 226 | - array( |
|
| 227 | - 'id' => 'wpinv_currency', |
|
| 228 | - 'name' => 'wpinv_currency', |
|
| 229 | - 'label' => __( 'Currency', 'invoicing' ), |
|
| 230 | - 'label_type' => 'vertical', |
|
| 231 | - 'placeholder' => __( 'Select Invoice Currency', 'invoicing' ), |
|
| 232 | - 'class' => 'form-control-sm getpaid-recalculate-prices-on-change', |
|
| 233 | - 'value' => $invoice->get_currency( 'edit' ), |
|
| 234 | - 'required' => false, |
|
| 235 | - 'data-allow-clear' => 'false', |
|
| 236 | - 'select2' => true, |
|
| 237 | - 'options' => wpinv_get_currencies(), |
|
| 238 | - ), |
|
| 239 | - true |
|
| 240 | - ); |
|
| 241 | - |
|
| 242 | - ?> |
|
| 224 | + // Set currency. |
|
| 225 | + aui()->select( |
|
| 226 | + array( |
|
| 227 | + 'id' => 'wpinv_currency', |
|
| 228 | + 'name' => 'wpinv_currency', |
|
| 229 | + 'label' => __( 'Currency', 'invoicing' ), |
|
| 230 | + 'label_type' => 'vertical', |
|
| 231 | + 'placeholder' => __( 'Select Invoice Currency', 'invoicing' ), |
|
| 232 | + 'class' => 'form-control-sm getpaid-recalculate-prices-on-change', |
|
| 233 | + 'value' => $invoice->get_currency( 'edit' ), |
|
| 234 | + 'required' => false, |
|
| 235 | + 'data-allow-clear' => 'false', |
|
| 236 | + 'select2' => true, |
|
| 237 | + 'options' => wpinv_get_currencies(), |
|
| 238 | + ), |
|
| 239 | + true |
|
| 240 | + ); |
|
| 241 | + |
|
| 242 | + ?> |
|
| 243 | 243 | </div> |
| 244 | 244 | </div> |
| 245 | 245 | |
@@ -249,123 +249,123 @@ discard block |
||
| 249 | 249 | <div class="row"> |
| 250 | 250 | <div class="col-12 col-sm-6"> |
| 251 | 251 | <?php |
| 252 | - aui()->input( |
|
| 253 | - array( |
|
| 254 | - 'type' => 'text', |
|
| 255 | - 'id' => 'wpinv_company_id', |
|
| 256 | - 'name' => 'wpinv_company_id', |
|
| 257 | - 'label' => __( 'Company ID', 'invoicing' ), |
|
| 258 | - 'label_type' => 'vertical', |
|
| 259 | - 'placeholder' => '', |
|
| 260 | - 'class' => 'form-control-sm', |
|
| 261 | - 'value' => $invoice->get_company_id( 'edit' ), |
|
| 262 | - ), |
|
| 263 | - true |
|
| 264 | - ); |
|
| 265 | - ?> |
|
| 252 | + aui()->input( |
|
| 253 | + array( |
|
| 254 | + 'type' => 'text', |
|
| 255 | + 'id' => 'wpinv_company_id', |
|
| 256 | + 'name' => 'wpinv_company_id', |
|
| 257 | + 'label' => __( 'Company ID', 'invoicing' ), |
|
| 258 | + 'label_type' => 'vertical', |
|
| 259 | + 'placeholder' => '', |
|
| 260 | + 'class' => 'form-control-sm', |
|
| 261 | + 'value' => $invoice->get_company_id( 'edit' ), |
|
| 262 | + ), |
|
| 263 | + true |
|
| 264 | + ); |
|
| 265 | + ?> |
|
| 266 | 266 | </div> |
| 267 | 267 | </div> |
| 268 | 268 | |
| 269 | 269 | <?php do_action( 'getpaid_after_metabox_invoice_address', $invoice ); ?> |
| 270 | 270 | </div> |
| 271 | 271 | <?php |
| 272 | - } |
|
| 273 | - |
|
| 274 | - /** |
|
| 275 | - * Save meta box data. |
|
| 276 | - * |
|
| 277 | - * @param int $post_id |
|
| 278 | - * @param array $posted the posted data. |
|
| 279 | - */ |
|
| 280 | - public static function save( $post_id, $posted ) { |
|
| 281 | - |
|
| 282 | - // Prepare the invoice. |
|
| 283 | - $invoice = new WPInv_Invoice( $post_id ); |
|
| 284 | - |
|
| 285 | - // Load new data. |
|
| 286 | - $invoice->set_props( |
|
| 287 | - array( |
|
| 288 | - 'template' => isset( $posted['wpinv_template'] ) ? wpinv_clean( $posted['wpinv_template'] ) : null, |
|
| 289 | - 'email_cc' => isset( $posted['wpinv_cc'] ) ? wpinv_clean( $posted['wpinv_cc'] ) : null, |
|
| 290 | - 'disable_taxes' => ! empty( $posted['disable_taxes'] ), |
|
| 291 | - 'currency' => isset( $posted['wpinv_currency'] ) ? wpinv_clean( $posted['wpinv_currency'] ) : null, |
|
| 292 | - 'gateway' => ( $invoice->needs_payment() && isset( $posted['wpinv_gateway'] ) ) ? wpinv_clean( $posted['wpinv_gateway'] ) : null, |
|
| 293 | - 'address' => isset( $posted['wpinv_address'] ) ? wpinv_clean( $posted['wpinv_address'] ) : null, |
|
| 294 | - 'vat_number' => isset( $posted['wpinv_vat_number'] ) ? wpinv_clean( $posted['wpinv_vat_number'] ) : null, |
|
| 295 | - 'company' => isset( $posted['wpinv_company'] ) ? wpinv_clean( $posted['wpinv_company'] ) : null, |
|
| 296 | - 'company_id' => isset( $posted['wpinv_company_id'] ) ? wpinv_clean( $posted['wpinv_company_id'] ) : null, |
|
| 297 | - 'zip' => isset( $posted['wpinv_zip'] ) ? wpinv_clean( $posted['wpinv_zip'] ) : null, |
|
| 298 | - 'state' => isset( $posted['wpinv_state'] ) ? wpinv_clean( $posted['wpinv_state'] ) : null, |
|
| 299 | - 'city' => isset( $posted['wpinv_city'] ) ? wpinv_clean( $posted['wpinv_city'] ) : null, |
|
| 300 | - 'country' => isset( $posted['wpinv_country'] ) ? wpinv_clean( $posted['wpinv_country'] ) : null, |
|
| 301 | - 'phone' => isset( $posted['wpinv_phone'] ) ? wpinv_clean( $posted['wpinv_phone'] ) : null, |
|
| 302 | - 'first_name' => isset( $posted['wpinv_first_name'] ) ? wpinv_clean( $posted['wpinv_first_name'] ) : null, |
|
| 303 | - 'last_name' => isset( $posted['wpinv_last_name'] ) ? wpinv_clean( $posted['wpinv_last_name'] ) : null, |
|
| 304 | - 'author' => isset( $posted['post_author_override'] ) ? wpinv_clean( $posted['post_author_override'] ) : null, |
|
| 305 | - 'date_created' => isset( $posted['date_created'] ) ? wpinv_clean( $posted['date_created'] ) : null, |
|
| 306 | - 'date_completed' => isset( $posted['wpinv_date_completed'] ) ? wpinv_clean( $posted['wpinv_date_completed'] ) : null, |
|
| 307 | - 'due_date' => isset( $posted['wpinv_due_date'] ) ? wpinv_clean( $posted['wpinv_due_date'] ) : null, |
|
| 308 | - 'number' => isset( $posted['wpinv_number'] ) ? wpinv_clean( $posted['wpinv_number'] ) : null, |
|
| 309 | - 'status' => isset( $posted['wpinv_status'] ) ? wpinv_clean( $posted['wpinv_status'] ) : null, |
|
| 310 | - ) |
|
| 311 | - ); |
|
| 312 | - |
|
| 313 | - // Discount code. |
|
| 314 | - if ( ! $invoice->is_paid() && ! $invoice->is_refunded() ) { |
|
| 315 | - |
|
| 316 | - if ( isset( $posted['wpinv_discount_code'] ) ) { |
|
| 317 | - $invoice->set_discount_code( wpinv_clean( $posted['wpinv_discount_code'] ) ); |
|
| 318 | - } |
|
| 319 | - |
|
| 320 | - $discount = new WPInv_Discount( $invoice->get_discount_code() ); |
|
| 321 | - if ( $discount->exists() ) { |
|
| 322 | - $invoice->add_discount( getpaid_calculate_invoice_discount( $invoice, $discount ) ); |
|
| 323 | - } else { |
|
| 324 | - $invoice->remove_discount( 'discount_code' ); |
|
| 325 | - } |
|
| 326 | - |
|
| 327 | - // Recalculate totals. |
|
| 328 | - $invoice->recalculate_total(); |
|
| 329 | - |
|
| 330 | - } |
|
| 331 | - |
|
| 332 | - // If we're creating a new user... |
|
| 333 | - if ( ! empty( $posted['wpinv_new_user'] ) && is_email( stripslashes( $posted['wpinv_email'] ) ) ) { |
|
| 334 | - |
|
| 335 | - // Attempt to create the user. |
|
| 336 | - $user = wpinv_create_user( sanitize_email( stripslashes( $posted['wpinv_email'] ) ), $invoice->get_first_name() . $invoice->get_last_name() ); |
|
| 337 | - |
|
| 338 | - // If successful, update the invoice author. |
|
| 339 | - if ( is_numeric( $user ) ) { |
|
| 340 | - $invoice->set_author( $user ); |
|
| 341 | - } else { |
|
| 342 | - wpinv_error_log( $user->get_error_message(), __( 'Invoice add new user', 'invoicing' ), __FILE__, __LINE__ ); |
|
| 343 | - } |
|
| 344 | - } |
|
| 345 | - |
|
| 346 | - // Do not send new invoice notifications. |
|
| 347 | - $GLOBALS['wpinv_skip_invoice_notification'] = true; |
|
| 348 | - |
|
| 349 | - // Save the invoice. |
|
| 350 | - $invoice->save(); |
|
| 351 | - |
|
| 352 | - // Save the user address. |
|
| 353 | - getpaid_save_invoice_user_address( $invoice ); |
|
| 354 | - |
|
| 355 | - // Undo do not send new invoice notifications. |
|
| 356 | - $GLOBALS['wpinv_skip_invoice_notification'] = false; |
|
| 357 | - |
|
| 358 | - // (Maybe) send new user notification. |
|
| 359 | - $should_send_notification = wpinv_get_option( 'disable_new_user_emails' ); |
|
| 360 | - if ( ! empty( $user ) && is_numeric( $user ) && apply_filters( 'getpaid_send_new_user_notification', empty( $should_send_notification ) ) ) { |
|
| 361 | - wp_send_new_user_notifications( $user, 'user' ); |
|
| 362 | - } |
|
| 363 | - |
|
| 364 | - if ( ! empty( $posted['send_to_customer'] ) && ! $invoice->is_draft() ) { |
|
| 365 | - getpaid()->get( 'invoice_emails' )->user_invoice( $invoice, true ); |
|
| 366 | - } |
|
| 367 | - |
|
| 368 | - // Fires after an invoice is saved. |
|
| 369 | - do_action( 'wpinv_invoice_metabox_saved', $invoice ); |
|
| 370 | - } |
|
| 272 | + } |
|
| 273 | + |
|
| 274 | + /** |
|
| 275 | + * Save meta box data. |
|
| 276 | + * |
|
| 277 | + * @param int $post_id |
|
| 278 | + * @param array $posted the posted data. |
|
| 279 | + */ |
|
| 280 | + public static function save( $post_id, $posted ) { |
|
| 281 | + |
|
| 282 | + // Prepare the invoice. |
|
| 283 | + $invoice = new WPInv_Invoice( $post_id ); |
|
| 284 | + |
|
| 285 | + // Load new data. |
|
| 286 | + $invoice->set_props( |
|
| 287 | + array( |
|
| 288 | + 'template' => isset( $posted['wpinv_template'] ) ? wpinv_clean( $posted['wpinv_template'] ) : null, |
|
| 289 | + 'email_cc' => isset( $posted['wpinv_cc'] ) ? wpinv_clean( $posted['wpinv_cc'] ) : null, |
|
| 290 | + 'disable_taxes' => ! empty( $posted['disable_taxes'] ), |
|
| 291 | + 'currency' => isset( $posted['wpinv_currency'] ) ? wpinv_clean( $posted['wpinv_currency'] ) : null, |
|
| 292 | + 'gateway' => ( $invoice->needs_payment() && isset( $posted['wpinv_gateway'] ) ) ? wpinv_clean( $posted['wpinv_gateway'] ) : null, |
|
| 293 | + 'address' => isset( $posted['wpinv_address'] ) ? wpinv_clean( $posted['wpinv_address'] ) : null, |
|
| 294 | + 'vat_number' => isset( $posted['wpinv_vat_number'] ) ? wpinv_clean( $posted['wpinv_vat_number'] ) : null, |
|
| 295 | + 'company' => isset( $posted['wpinv_company'] ) ? wpinv_clean( $posted['wpinv_company'] ) : null, |
|
| 296 | + 'company_id' => isset( $posted['wpinv_company_id'] ) ? wpinv_clean( $posted['wpinv_company_id'] ) : null, |
|
| 297 | + 'zip' => isset( $posted['wpinv_zip'] ) ? wpinv_clean( $posted['wpinv_zip'] ) : null, |
|
| 298 | + 'state' => isset( $posted['wpinv_state'] ) ? wpinv_clean( $posted['wpinv_state'] ) : null, |
|
| 299 | + 'city' => isset( $posted['wpinv_city'] ) ? wpinv_clean( $posted['wpinv_city'] ) : null, |
|
| 300 | + 'country' => isset( $posted['wpinv_country'] ) ? wpinv_clean( $posted['wpinv_country'] ) : null, |
|
| 301 | + 'phone' => isset( $posted['wpinv_phone'] ) ? wpinv_clean( $posted['wpinv_phone'] ) : null, |
|
| 302 | + 'first_name' => isset( $posted['wpinv_first_name'] ) ? wpinv_clean( $posted['wpinv_first_name'] ) : null, |
|
| 303 | + 'last_name' => isset( $posted['wpinv_last_name'] ) ? wpinv_clean( $posted['wpinv_last_name'] ) : null, |
|
| 304 | + 'author' => isset( $posted['post_author_override'] ) ? wpinv_clean( $posted['post_author_override'] ) : null, |
|
| 305 | + 'date_created' => isset( $posted['date_created'] ) ? wpinv_clean( $posted['date_created'] ) : null, |
|
| 306 | + 'date_completed' => isset( $posted['wpinv_date_completed'] ) ? wpinv_clean( $posted['wpinv_date_completed'] ) : null, |
|
| 307 | + 'due_date' => isset( $posted['wpinv_due_date'] ) ? wpinv_clean( $posted['wpinv_due_date'] ) : null, |
|
| 308 | + 'number' => isset( $posted['wpinv_number'] ) ? wpinv_clean( $posted['wpinv_number'] ) : null, |
|
| 309 | + 'status' => isset( $posted['wpinv_status'] ) ? wpinv_clean( $posted['wpinv_status'] ) : null, |
|
| 310 | + ) |
|
| 311 | + ); |
|
| 312 | + |
|
| 313 | + // Discount code. |
|
| 314 | + if ( ! $invoice->is_paid() && ! $invoice->is_refunded() ) { |
|
| 315 | + |
|
| 316 | + if ( isset( $posted['wpinv_discount_code'] ) ) { |
|
| 317 | + $invoice->set_discount_code( wpinv_clean( $posted['wpinv_discount_code'] ) ); |
|
| 318 | + } |
|
| 319 | + |
|
| 320 | + $discount = new WPInv_Discount( $invoice->get_discount_code() ); |
|
| 321 | + if ( $discount->exists() ) { |
|
| 322 | + $invoice->add_discount( getpaid_calculate_invoice_discount( $invoice, $discount ) ); |
|
| 323 | + } else { |
|
| 324 | + $invoice->remove_discount( 'discount_code' ); |
|
| 325 | + } |
|
| 326 | + |
|
| 327 | + // Recalculate totals. |
|
| 328 | + $invoice->recalculate_total(); |
|
| 329 | + |
|
| 330 | + } |
|
| 331 | + |
|
| 332 | + // If we're creating a new user... |
|
| 333 | + if ( ! empty( $posted['wpinv_new_user'] ) && is_email( stripslashes( $posted['wpinv_email'] ) ) ) { |
|
| 334 | + |
|
| 335 | + // Attempt to create the user. |
|
| 336 | + $user = wpinv_create_user( sanitize_email( stripslashes( $posted['wpinv_email'] ) ), $invoice->get_first_name() . $invoice->get_last_name() ); |
|
| 337 | + |
|
| 338 | + // If successful, update the invoice author. |
|
| 339 | + if ( is_numeric( $user ) ) { |
|
| 340 | + $invoice->set_author( $user ); |
|
| 341 | + } else { |
|
| 342 | + wpinv_error_log( $user->get_error_message(), __( 'Invoice add new user', 'invoicing' ), __FILE__, __LINE__ ); |
|
| 343 | + } |
|
| 344 | + } |
|
| 345 | + |
|
| 346 | + // Do not send new invoice notifications. |
|
| 347 | + $GLOBALS['wpinv_skip_invoice_notification'] = true; |
|
| 348 | + |
|
| 349 | + // Save the invoice. |
|
| 350 | + $invoice->save(); |
|
| 351 | + |
|
| 352 | + // Save the user address. |
|
| 353 | + getpaid_save_invoice_user_address( $invoice ); |
|
| 354 | + |
|
| 355 | + // Undo do not send new invoice notifications. |
|
| 356 | + $GLOBALS['wpinv_skip_invoice_notification'] = false; |
|
| 357 | + |
|
| 358 | + // (Maybe) send new user notification. |
|
| 359 | + $should_send_notification = wpinv_get_option( 'disable_new_user_emails' ); |
|
| 360 | + if ( ! empty( $user ) && is_numeric( $user ) && apply_filters( 'getpaid_send_new_user_notification', empty( $should_send_notification ) ) ) { |
|
| 361 | + wp_send_new_user_notifications( $user, 'user' ); |
|
| 362 | + } |
|
| 363 | + |
|
| 364 | + if ( ! empty( $posted['send_to_customer'] ) && ! $invoice->is_draft() ) { |
|
| 365 | + getpaid()->get( 'invoice_emails' )->user_invoice( $invoice, true ); |
|
| 366 | + } |
|
| 367 | + |
|
| 368 | + // Fires after an invoice is saved. |
|
| 369 | + do_action( 'wpinv_invoice_metabox_saved', $invoice ); |
|
| 370 | + } |
|
| 371 | 371 | } |
@@ -14,7 +14,7 @@ discard block |
||
| 14 | 14 | */ |
| 15 | 15 | function wpinv_subscriptions_page() { |
| 16 | 16 | |
| 17 | - ?> |
|
| 17 | + ?> |
|
| 18 | 18 | |
| 19 | 19 | <div class="wrap"> |
| 20 | 20 | <h1><?php echo esc_html( get_admin_page_title() ); ?></h1> |
@@ -22,28 +22,28 @@ discard block |
||
| 22 | 22 | |
| 23 | 23 | <?php |
| 24 | 24 | |
| 25 | - // Verify user permissions. |
|
| 26 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
| 25 | + // Verify user permissions. |
|
| 26 | + if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
| 27 | 27 | |
| 28 | - aui()->alert( |
|
| 28 | + aui()->alert( |
|
| 29 | 29 | array( |
| 30 | - 'type' => 'danger', |
|
| 31 | - 'content' => __( 'You are not permitted to view this page.', 'invoicing' ), |
|
| 32 | - ), |
|
| 33 | - true |
|
| 30 | + 'type' => 'danger', |
|
| 31 | + 'content' => __( 'You are not permitted to view this page.', 'invoicing' ), |
|
| 32 | + ), |
|
| 33 | + true |
|
| 34 | 34 | ); |
| 35 | 35 | |
| 36 | - } elseif ( ! empty( $_GET['id'] ) && is_numeric( $_GET['id'] ) ) { |
|
| 36 | + } elseif ( ! empty( $_GET['id'] ) && is_numeric( $_GET['id'] ) ) { |
|
| 37 | 37 | |
| 38 | - // Display a single subscription. |
|
| 39 | - wpinv_recurring_subscription_details(); |
|
| 40 | - } else { |
|
| 38 | + // Display a single subscription. |
|
| 39 | + wpinv_recurring_subscription_details(); |
|
| 40 | + } else { |
|
| 41 | 41 | |
| 42 | - // Display a list of available subscriptions. |
|
| 43 | - getpaid_print_subscriptions_list(); |
|
| 44 | - } |
|
| 42 | + // Display a list of available subscriptions. |
|
| 43 | + getpaid_print_subscriptions_list(); |
|
| 44 | + } |
|
| 45 | 45 | |
| 46 | - ?> |
|
| 46 | + ?> |
|
| 47 | 47 | |
| 48 | 48 | </div> |
| 49 | 49 | </div> |
@@ -60,10 +60,10 @@ discard block |
||
| 60 | 60 | */ |
| 61 | 61 | function getpaid_print_subscriptions_list() { |
| 62 | 62 | |
| 63 | - $subscribers_table = new WPInv_Subscriptions_List_Table(); |
|
| 64 | - $subscribers_table->prepare_items(); |
|
| 63 | + $subscribers_table = new WPInv_Subscriptions_List_Table(); |
|
| 64 | + $subscribers_table->prepare_items(); |
|
| 65 | 65 | |
| 66 | - ?> |
|
| 66 | + ?> |
|
| 67 | 67 | <?php $subscribers_table->views(); ?> |
| 68 | 68 | <form id="subscribers-filter" class="bsui" method="get"> |
| 69 | 69 | <input type="hidden" name="page" value="wpinv-subscriptions" /> |
@@ -82,42 +82,42 @@ discard block |
||
| 82 | 82 | */ |
| 83 | 83 | function wpinv_recurring_subscription_details() { |
| 84 | 84 | |
| 85 | - // Fetch the subscription. |
|
| 86 | - $sub = new WPInv_Subscription( (int) $_GET['id'] ); |
|
| 87 | - if ( ! $sub->exists() ) { |
|
| 85 | + // Fetch the subscription. |
|
| 86 | + $sub = new WPInv_Subscription( (int) $_GET['id'] ); |
|
| 87 | + if ( ! $sub->exists() ) { |
|
| 88 | 88 | |
| 89 | - aui()->alert( |
|
| 90 | - array( |
|
| 91 | - 'type' => 'danger', |
|
| 92 | - 'content' => __( 'Subscription not found.', 'invoicing' ), |
|
| 93 | - ), |
|
| 94 | - true |
|
| 95 | - ); |
|
| 89 | + aui()->alert( |
|
| 90 | + array( |
|
| 91 | + 'type' => 'danger', |
|
| 92 | + 'content' => __( 'Subscription not found.', 'invoicing' ), |
|
| 93 | + ), |
|
| 94 | + true |
|
| 95 | + ); |
|
| 96 | 96 | |
| 97 | - return; |
|
| 98 | - } |
|
| 97 | + return; |
|
| 98 | + } |
|
| 99 | 99 | |
| 100 | - // Use metaboxes to display the subscription details. |
|
| 101 | - add_meta_box( 'getpaid_admin_subscription_details_metabox', __( 'Subscription Details', 'invoicing' ), 'getpaid_admin_subscription_details_metabox', get_current_screen(), 'normal', 'high' ); |
|
| 102 | - add_meta_box( 'getpaid_admin_subscription_update_metabox', __( 'Change Status', 'invoicing' ), 'getpaid_admin_subscription_update_metabox', get_current_screen(), 'side' ); |
|
| 100 | + // Use metaboxes to display the subscription details. |
|
| 101 | + add_meta_box( 'getpaid_admin_subscription_details_metabox', __( 'Subscription Details', 'invoicing' ), 'getpaid_admin_subscription_details_metabox', get_current_screen(), 'normal', 'high' ); |
|
| 102 | + add_meta_box( 'getpaid_admin_subscription_update_metabox', __( 'Change Status', 'invoicing' ), 'getpaid_admin_subscription_update_metabox', get_current_screen(), 'side' ); |
|
| 103 | 103 | |
| 104 | - $subscription_id = $sub->get_id(); |
|
| 105 | - $subscription_groups = getpaid_get_invoice_subscription_groups( $sub->get_parent_invoice_id() ); |
|
| 106 | - $subscription_group = wp_list_filter( $subscription_groups, compact( 'subscription_id' ) ); |
|
| 104 | + $subscription_id = $sub->get_id(); |
|
| 105 | + $subscription_groups = getpaid_get_invoice_subscription_groups( $sub->get_parent_invoice_id() ); |
|
| 106 | + $subscription_group = wp_list_filter( $subscription_groups, compact( 'subscription_id' ) ); |
|
| 107 | 107 | |
| 108 | - if ( 1 < count( $subscription_groups ) ) { |
|
| 109 | - add_meta_box( 'getpaid_admin_subscription_related_subscriptions_metabox', __( 'Related Subscriptions', 'invoicing' ), 'getpaid_admin_subscription_related_subscriptions_metabox', get_current_screen(), 'advanced' ); |
|
| 110 | - } |
|
| 108 | + if ( 1 < count( $subscription_groups ) ) { |
|
| 109 | + add_meta_box( 'getpaid_admin_subscription_related_subscriptions_metabox', __( 'Related Subscriptions', 'invoicing' ), 'getpaid_admin_subscription_related_subscriptions_metabox', get_current_screen(), 'advanced' ); |
|
| 110 | + } |
|
| 111 | 111 | |
| 112 | - if ( ! empty( $subscription_group ) ) { |
|
| 113 | - add_meta_box( 'getpaid_admin_subscription_item_details_metabox', __( 'Subscription Items', 'invoicing' ), 'getpaid_admin_subscription_item_details_metabox', get_current_screen(), 'normal', 'low' ); |
|
| 114 | - } |
|
| 112 | + if ( ! empty( $subscription_group ) ) { |
|
| 113 | + add_meta_box( 'getpaid_admin_subscription_item_details_metabox', __( 'Subscription Items', 'invoicing' ), 'getpaid_admin_subscription_item_details_metabox', get_current_screen(), 'normal', 'low' ); |
|
| 114 | + } |
|
| 115 | 115 | |
| 116 | - add_meta_box( 'getpaid_admin_subscription_invoice_details_metabox', __( 'Related Invoices', 'invoicing' ), 'getpaid_admin_subscription_invoice_details_metabox', get_current_screen(), 'advanced' ); |
|
| 116 | + add_meta_box( 'getpaid_admin_subscription_invoice_details_metabox', __( 'Related Invoices', 'invoicing' ), 'getpaid_admin_subscription_invoice_details_metabox', get_current_screen(), 'advanced' ); |
|
| 117 | 117 | |
| 118 | - do_action( 'getpaid_admin_single_subscription_register_metabox', $sub ); |
|
| 118 | + do_action( 'getpaid_admin_single_subscription_register_metabox', $sub ); |
|
| 119 | 119 | |
| 120 | - ?> |
|
| 120 | + ?> |
|
| 121 | 121 | |
| 122 | 122 | <form method="post" action="<?php echo esc_url( admin_url( 'admin.php?page=wpinv-subscriptions&id=' . absint( $sub->get_id() ) ) ); ?>"> |
| 123 | 123 | |
@@ -157,49 +157,49 @@ discard block |
||
| 157 | 157 | */ |
| 158 | 158 | function getpaid_admin_subscription_details_metabox( $sub ) { |
| 159 | 159 | |
| 160 | - // Subscription items. |
|
| 161 | - $subscription_group = getpaid_get_invoice_subscription_group( $sub->get_parent_invoice_id(), $sub->get_id() ); |
|
| 162 | - $items_count = empty( $subscription_group ) ? 1 : count( $subscription_group['items'] ); |
|
| 163 | - |
|
| 164 | - // Prepare subscription detail columns. |
|
| 165 | - $fields = apply_filters( |
|
| 166 | - 'getpaid_subscription_admin_page_fields', |
|
| 167 | - array( |
|
| 168 | - 'subscription' => __( 'Subscription', 'invoicing' ), |
|
| 169 | - 'customer' => __( 'Customer', 'invoicing' ), |
|
| 170 | - 'amount' => __( 'Amount', 'invoicing' ), |
|
| 171 | - 'start_date' => __( 'Start Date', 'invoicing' ), |
|
| 172 | - 'renews_on' => __( 'Next Payment', 'invoicing' ), |
|
| 173 | - 'renewals' => __( 'Collected Payments', 'invoicing' ), |
|
| 174 | - 'item' => _n( 'Item', 'Items', $items_count, 'invoicing' ), |
|
| 175 | - 'gateway' => __( 'Payment Method', 'invoicing' ), |
|
| 176 | - 'profile_id' => __( 'Profile ID', 'invoicing' ), |
|
| 177 | - 'status' => __( 'Status', 'invoicing' ), |
|
| 178 | - ) |
|
| 179 | - ); |
|
| 180 | - |
|
| 181 | - if ( ! $sub->is_active() ) { |
|
| 182 | - |
|
| 183 | - if ( isset( $fields['renews_on'] ) ) { |
|
| 184 | - unset( $fields['renews_on'] ); |
|
| 185 | - } |
|
| 186 | - |
|
| 187 | - if ( isset( $fields['gateway'] ) ) { |
|
| 188 | - unset( $fields['gateway'] ); |
|
| 189 | - } |
|
| 190 | - } elseif ( $sub->is_last_renewal() ) { |
|
| 191 | - |
|
| 192 | - if ( isset( $fields['renews_on'] ) ) { |
|
| 193 | - $fields['renews_on'] = __( 'End Date', 'invoicing' ); |
|
| 194 | - } |
|
| 195 | - } |
|
| 196 | - |
|
| 197 | - $profile_id = $sub->get_profile_id(); |
|
| 198 | - if ( empty( $profile_id ) && isset( $fields['profile_id'] ) ) { |
|
| 199 | - unset( $fields['profile_id'] ); |
|
| 200 | - } |
|
| 201 | - |
|
| 202 | - ?> |
|
| 160 | + // Subscription items. |
|
| 161 | + $subscription_group = getpaid_get_invoice_subscription_group( $sub->get_parent_invoice_id(), $sub->get_id() ); |
|
| 162 | + $items_count = empty( $subscription_group ) ? 1 : count( $subscription_group['items'] ); |
|
| 163 | + |
|
| 164 | + // Prepare subscription detail columns. |
|
| 165 | + $fields = apply_filters( |
|
| 166 | + 'getpaid_subscription_admin_page_fields', |
|
| 167 | + array( |
|
| 168 | + 'subscription' => __( 'Subscription', 'invoicing' ), |
|
| 169 | + 'customer' => __( 'Customer', 'invoicing' ), |
|
| 170 | + 'amount' => __( 'Amount', 'invoicing' ), |
|
| 171 | + 'start_date' => __( 'Start Date', 'invoicing' ), |
|
| 172 | + 'renews_on' => __( 'Next Payment', 'invoicing' ), |
|
| 173 | + 'renewals' => __( 'Collected Payments', 'invoicing' ), |
|
| 174 | + 'item' => _n( 'Item', 'Items', $items_count, 'invoicing' ), |
|
| 175 | + 'gateway' => __( 'Payment Method', 'invoicing' ), |
|
| 176 | + 'profile_id' => __( 'Profile ID', 'invoicing' ), |
|
| 177 | + 'status' => __( 'Status', 'invoicing' ), |
|
| 178 | + ) |
|
| 179 | + ); |
|
| 180 | + |
|
| 181 | + if ( ! $sub->is_active() ) { |
|
| 182 | + |
|
| 183 | + if ( isset( $fields['renews_on'] ) ) { |
|
| 184 | + unset( $fields['renews_on'] ); |
|
| 185 | + } |
|
| 186 | + |
|
| 187 | + if ( isset( $fields['gateway'] ) ) { |
|
| 188 | + unset( $fields['gateway'] ); |
|
| 189 | + } |
|
| 190 | + } elseif ( $sub->is_last_renewal() ) { |
|
| 191 | + |
|
| 192 | + if ( isset( $fields['renews_on'] ) ) { |
|
| 193 | + $fields['renews_on'] = __( 'End Date', 'invoicing' ); |
|
| 194 | + } |
|
| 195 | + } |
|
| 196 | + |
|
| 197 | + $profile_id = $sub->get_profile_id(); |
|
| 198 | + if ( empty( $profile_id ) && isset( $fields['profile_id'] ) ) { |
|
| 199 | + unset( $fields['profile_id'] ); |
|
| 200 | + } |
|
| 201 | + |
|
| 202 | + ?> |
|
| 203 | 203 | |
| 204 | 204 | <table class="table table-borderless" style="font-size: 14px;"> |
| 205 | 205 | <tbody> |
@@ -233,20 +233,20 @@ discard block |
||
| 233 | 233 | */ |
| 234 | 234 | function getpaid_admin_subscription_metabox_display_customer( $subscription ) { |
| 235 | 235 | |
| 236 | - $username = __( '(Missing User)', 'invoicing' ); |
|
| 236 | + $username = __( '(Missing User)', 'invoicing' ); |
|
| 237 | 237 | |
| 238 | - $user = get_userdata( $subscription->get_customer_id() ); |
|
| 239 | - if ( $user ) { |
|
| 238 | + $user = get_userdata( $subscription->get_customer_id() ); |
|
| 239 | + if ( $user ) { |
|
| 240 | 240 | |
| 241 | - $username = sprintf( |
|
| 242 | - '<a href="user-edit.php?user_id=%s">%s</a>', |
|
| 243 | - absint( $user->ID ), |
|
| 244 | - ! empty( $user->display_name ) ? esc_html( $user->display_name ) : sanitize_email( $user->user_email ) |
|
| 245 | - ); |
|
| 241 | + $username = sprintf( |
|
| 242 | + '<a href="user-edit.php?user_id=%s">%s</a>', |
|
| 243 | + absint( $user->ID ), |
|
| 244 | + ! empty( $user->display_name ) ? esc_html( $user->display_name ) : sanitize_email( $user->user_email ) |
|
| 245 | + ); |
|
| 246 | 246 | |
| 247 | - } |
|
| 247 | + } |
|
| 248 | 248 | |
| 249 | - echo wp_kses_post( $username ); |
|
| 249 | + echo wp_kses_post( $username ); |
|
| 250 | 250 | } |
| 251 | 251 | add_action( 'getpaid_subscription_admin_display_customer', 'getpaid_admin_subscription_metabox_display_customer' ); |
| 252 | 252 | |
@@ -256,8 +256,8 @@ discard block |
||
| 256 | 256 | * @param WPInv_Subscription $subscription |
| 257 | 257 | */ |
| 258 | 258 | function getpaid_admin_subscription_metabox_display_amount( $subscription ) { |
| 259 | - $amount = getpaid_get_formatted_subscription_amount( $subscription ); |
|
| 260 | - echo wp_kses_post( "<span>$amount</span>" ); |
|
| 259 | + $amount = getpaid_get_formatted_subscription_amount( $subscription ); |
|
| 260 | + echo wp_kses_post( "<span>$amount</span>" ); |
|
| 261 | 261 | } |
| 262 | 262 | add_action( 'getpaid_subscription_admin_display_amount', 'getpaid_admin_subscription_metabox_display_amount' ); |
| 263 | 263 | |
@@ -268,11 +268,11 @@ discard block |
||
| 268 | 268 | */ |
| 269 | 269 | function getpaid_admin_subscription_metabox_display_id( $subscription ) { |
| 270 | 270 | |
| 271 | - printf( |
|
| 272 | - '<a href="%s">#%s</a>', |
|
| 273 | - esc_url( admin_url( 'admin.php?page=wpinv-subscriptions&id=' . absint( $subscription->get_id() ) ) ), |
|
| 274 | - absint( $subscription->get_id() ) |
|
| 275 | - ); |
|
| 271 | + printf( |
|
| 272 | + '<a href="%s">#%s</a>', |
|
| 273 | + esc_url( admin_url( 'admin.php?page=wpinv-subscriptions&id=' . absint( $subscription->get_id() ) ) ), |
|
| 274 | + absint( $subscription->get_id() ) |
|
| 275 | + ); |
|
| 276 | 276 | |
| 277 | 277 | } |
| 278 | 278 | add_action( 'getpaid_subscription_admin_display_subscription', 'getpaid_admin_subscription_metabox_display_id' ); |
@@ -284,24 +284,24 @@ discard block |
||
| 284 | 284 | */ |
| 285 | 285 | function getpaid_admin_subscription_metabox_display_start_date( $subscription ) { |
| 286 | 286 | |
| 287 | - if ( $subscription->has_status( 'active trialling' ) && getpaid_payment_gateway_supports( $subscription->get_gateway(), 'subscription_date_change' ) ) { |
|
| 288 | - aui()->input( |
|
| 289 | - array( |
|
| 290 | - 'type' => 'text', |
|
| 291 | - 'id' => 'wpinv_subscription_date_created', |
|
| 292 | - 'name' => 'wpinv_subscription_date_created', |
|
| 293 | - 'label' => __( 'Start Date', 'invoicing' ), |
|
| 294 | - 'label_type' => 'hidden', |
|
| 295 | - 'placeholder' => 'YYYY-MM-DD', |
|
| 296 | - 'value' => esc_attr( $subscription->get_date_created( 'edit' ) ), |
|
| 297 | - 'no_wrap' => true, |
|
| 298 | - 'size' => 'sm', |
|
| 299 | - ), |
|
| 300 | - true |
|
| 301 | - ); |
|
| 302 | - } else { |
|
| 303 | - echo esc_html( getpaid_format_date_value( $subscription->get_date_created() ) ); |
|
| 304 | - } |
|
| 287 | + if ( $subscription->has_status( 'active trialling' ) && getpaid_payment_gateway_supports( $subscription->get_gateway(), 'subscription_date_change' ) ) { |
|
| 288 | + aui()->input( |
|
| 289 | + array( |
|
| 290 | + 'type' => 'text', |
|
| 291 | + 'id' => 'wpinv_subscription_date_created', |
|
| 292 | + 'name' => 'wpinv_subscription_date_created', |
|
| 293 | + 'label' => __( 'Start Date', 'invoicing' ), |
|
| 294 | + 'label_type' => 'hidden', |
|
| 295 | + 'placeholder' => 'YYYY-MM-DD', |
|
| 296 | + 'value' => esc_attr( $subscription->get_date_created( 'edit' ) ), |
|
| 297 | + 'no_wrap' => true, |
|
| 298 | + 'size' => 'sm', |
|
| 299 | + ), |
|
| 300 | + true |
|
| 301 | + ); |
|
| 302 | + } else { |
|
| 303 | + echo esc_html( getpaid_format_date_value( $subscription->get_date_created() ) ); |
|
| 304 | + } |
|
| 305 | 305 | |
| 306 | 306 | } |
| 307 | 307 | add_action( 'getpaid_subscription_admin_display_start_date', 'getpaid_admin_subscription_metabox_display_start_date' ); |
@@ -313,24 +313,24 @@ discard block |
||
| 313 | 313 | */ |
| 314 | 314 | function getpaid_admin_subscription_metabox_display_renews_on( $subscription ) { |
| 315 | 315 | |
| 316 | - if ( $subscription->has_status( 'active trialling' ) && getpaid_payment_gateway_supports( $subscription->get_gateway(), 'subscription_date_change' ) ) { |
|
| 317 | - aui()->input( |
|
| 318 | - array( |
|
| 319 | - 'type' => 'text', |
|
| 320 | - 'id' => 'wpinv_subscription_expiration', |
|
| 321 | - 'name' => 'wpinv_subscription_expiration', |
|
| 322 | - 'label' => __( 'Renews On', 'invoicing' ), |
|
| 323 | - 'label_type' => 'hidden', |
|
| 324 | - 'placeholder' => 'YYYY-MM-DD', |
|
| 325 | - 'value' => esc_attr( $subscription->get_expiration( 'edit' ) ), |
|
| 326 | - 'no_wrap' => true, |
|
| 327 | - 'size' => 'sm', |
|
| 328 | - ), |
|
| 329 | - true |
|
| 330 | - ); |
|
| 331 | - } else { |
|
| 332 | - echo esc_html( getpaid_format_date_value( $subscription->get_expiration() ) ); |
|
| 333 | - } |
|
| 316 | + if ( $subscription->has_status( 'active trialling' ) && getpaid_payment_gateway_supports( $subscription->get_gateway(), 'subscription_date_change' ) ) { |
|
| 317 | + aui()->input( |
|
| 318 | + array( |
|
| 319 | + 'type' => 'text', |
|
| 320 | + 'id' => 'wpinv_subscription_expiration', |
|
| 321 | + 'name' => 'wpinv_subscription_expiration', |
|
| 322 | + 'label' => __( 'Renews On', 'invoicing' ), |
|
| 323 | + 'label_type' => 'hidden', |
|
| 324 | + 'placeholder' => 'YYYY-MM-DD', |
|
| 325 | + 'value' => esc_attr( $subscription->get_expiration( 'edit' ) ), |
|
| 326 | + 'no_wrap' => true, |
|
| 327 | + 'size' => 'sm', |
|
| 328 | + ), |
|
| 329 | + true |
|
| 330 | + ); |
|
| 331 | + } else { |
|
| 332 | + echo esc_html( getpaid_format_date_value( $subscription->get_expiration() ) ); |
|
| 333 | + } |
|
| 334 | 334 | } |
| 335 | 335 | add_action( 'getpaid_subscription_admin_display_renews_on', 'getpaid_admin_subscription_metabox_display_renews_on' ); |
| 336 | 336 | |
@@ -341,32 +341,32 @@ discard block |
||
| 341 | 341 | */ |
| 342 | 342 | function getpaid_admin_subscription_metabox_display_renewals( $subscription ) { |
| 343 | 343 | |
| 344 | - $max_bills = $subscription->get_bill_times(); |
|
| 345 | - $times_billed = (int) $subscription->get_times_billed(); |
|
| 346 | - |
|
| 347 | - if ( $subscription->has_status( 'active trialling' ) && getpaid_payment_gateway_supports( $subscription->get_gateway(), 'subscription_bill_times_change' ) ) { |
|
| 348 | - aui()->input( |
|
| 349 | - array( |
|
| 350 | - 'type' => 'number', |
|
| 351 | - 'id' => 'wpinv_subscription_max_bill_times', |
|
| 352 | - 'name' => 'wpinv_subscription_max_bill_times', |
|
| 353 | - 'label' => __( 'Maximum bill times', 'invoicing' ), |
|
| 354 | - 'label_type' => 'hidden', |
|
| 355 | - 'placeholder' => __( 'Unlimited', 'invoicing' ), |
|
| 356 | - 'value' => empty( $max_bills ) ? '' : (int) $max_bills, |
|
| 357 | - 'no_wrap' => true, |
|
| 358 | - 'size' => 'sm', |
|
| 359 | - 'input_group_left' => sprintf( |
|
| 360 | - // translators: %d: Number of times billed |
|
| 361 | - __( '%d of', 'invoicing' ), |
|
| 362 | - $times_billed |
|
| 363 | - ), |
|
| 364 | - ), |
|
| 365 | - true |
|
| 366 | - ); |
|
| 367 | - } else { |
|
| 368 | - echo esc_html( $times_billed ) . ' / ' . ( empty( $max_bills ) ? '∞' : (int) $max_bills ); |
|
| 369 | - } |
|
| 344 | + $max_bills = $subscription->get_bill_times(); |
|
| 345 | + $times_billed = (int) $subscription->get_times_billed(); |
|
| 346 | + |
|
| 347 | + if ( $subscription->has_status( 'active trialling' ) && getpaid_payment_gateway_supports( $subscription->get_gateway(), 'subscription_bill_times_change' ) ) { |
|
| 348 | + aui()->input( |
|
| 349 | + array( |
|
| 350 | + 'type' => 'number', |
|
| 351 | + 'id' => 'wpinv_subscription_max_bill_times', |
|
| 352 | + 'name' => 'wpinv_subscription_max_bill_times', |
|
| 353 | + 'label' => __( 'Maximum bill times', 'invoicing' ), |
|
| 354 | + 'label_type' => 'hidden', |
|
| 355 | + 'placeholder' => __( 'Unlimited', 'invoicing' ), |
|
| 356 | + 'value' => empty( $max_bills ) ? '' : (int) $max_bills, |
|
| 357 | + 'no_wrap' => true, |
|
| 358 | + 'size' => 'sm', |
|
| 359 | + 'input_group_left' => sprintf( |
|
| 360 | + // translators: %d: Number of times billed |
|
| 361 | + __( '%d of', 'invoicing' ), |
|
| 362 | + $times_billed |
|
| 363 | + ), |
|
| 364 | + ), |
|
| 365 | + true |
|
| 366 | + ); |
|
| 367 | + } else { |
|
| 368 | + echo esc_html( $times_billed ) . ' / ' . ( empty( $max_bills ) ? '∞' : (int) $max_bills ); |
|
| 369 | + } |
|
| 370 | 370 | } |
| 371 | 371 | add_action( 'getpaid_subscription_admin_display_renewals', 'getpaid_admin_subscription_metabox_display_renewals' ); |
| 372 | 372 | |
@@ -378,13 +378,13 @@ discard block |
||
| 378 | 378 | */ |
| 379 | 379 | function getpaid_admin_subscription_metabox_display_item( $subscription, $subscription_group = false ) { |
| 380 | 380 | |
| 381 | - if ( empty( $subscription_group ) ) { |
|
| 382 | - echo wp_kses_post( WPInv_Subscriptions_List_Table::generate_item_markup( $subscription->get_product_id() ) ); |
|
| 383 | - return; |
|
| 384 | - } |
|
| 381 | + if ( empty( $subscription_group ) ) { |
|
| 382 | + echo wp_kses_post( WPInv_Subscriptions_List_Table::generate_item_markup( $subscription->get_product_id() ) ); |
|
| 383 | + return; |
|
| 384 | + } |
|
| 385 | 385 | |
| 386 | - $markup = array_map( array( 'WPInv_Subscriptions_List_Table', 'generate_item_markup' ), array_keys( $subscription_group['items'] ) ); |
|
| 387 | - echo wp_kses_post( implode( ' | ', $markup ) ); |
|
| 386 | + $markup = array_map( array( 'WPInv_Subscriptions_List_Table', 'generate_item_markup' ), array_keys( $subscription_group['items'] ) ); |
|
| 387 | + echo wp_kses_post( implode( ' | ', $markup ) ); |
|
| 388 | 388 | |
| 389 | 389 | } |
| 390 | 390 | add_action( 'getpaid_subscription_admin_display_item', 'getpaid_admin_subscription_metabox_display_item', 10, 2 ); |
@@ -396,13 +396,13 @@ discard block |
||
| 396 | 396 | */ |
| 397 | 397 | function getpaid_admin_subscription_metabox_display_gateway( $subscription ) { |
| 398 | 398 | |
| 399 | - $gateway = $subscription->get_gateway(); |
|
| 399 | + $gateway = $subscription->get_gateway(); |
|
| 400 | 400 | |
| 401 | - if ( ! empty( $gateway ) ) { |
|
| 402 | - echo esc_html( wpinv_get_gateway_admin_label( $gateway ) ); |
|
| 403 | - } else { |
|
| 404 | - echo '—'; |
|
| 405 | - } |
|
| 401 | + if ( ! empty( $gateway ) ) { |
|
| 402 | + echo esc_html( wpinv_get_gateway_admin_label( $gateway ) ); |
|
| 403 | + } else { |
|
| 404 | + echo '—'; |
|
| 405 | + } |
|
| 406 | 406 | |
| 407 | 407 | } |
| 408 | 408 | add_action( 'getpaid_subscription_admin_display_gateway', 'getpaid_admin_subscription_metabox_display_gateway' ); |
@@ -413,7 +413,7 @@ discard block |
||
| 413 | 413 | * @param WPInv_Subscription $subscription |
| 414 | 414 | */ |
| 415 | 415 | function getpaid_admin_subscription_metabox_display_status( $subscription ) { |
| 416 | - echo wp_kses_post( $subscription->get_status_label_html() ); |
|
| 416 | + echo wp_kses_post( $subscription->get_status_label_html() ); |
|
| 417 | 417 | } |
| 418 | 418 | add_action( 'getpaid_subscription_admin_display_status', 'getpaid_admin_subscription_metabox_display_status' ); |
| 419 | 419 | |
@@ -424,28 +424,28 @@ discard block |
||
| 424 | 424 | */ |
| 425 | 425 | function getpaid_admin_subscription_metabox_display_profile_id( $subscription ) { |
| 426 | 426 | |
| 427 | - $profile_id = $subscription->get_profile_id(); |
|
| 428 | - |
|
| 429 | - aui()->input( |
|
| 430 | - array( |
|
| 431 | - 'type' => 'text', |
|
| 432 | - 'id' => 'wpinv_subscription_profile_id', |
|
| 433 | - 'name' => 'wpinv_subscription_profile_id', |
|
| 434 | - 'label' => __( 'Profile Id', 'invoicing' ), |
|
| 435 | - 'label_type' => 'hidden', |
|
| 436 | - 'placeholder' => __( 'Profile Id', 'invoicing' ), |
|
| 437 | - 'value' => esc_attr( $profile_id ), |
|
| 438 | - 'input_group_right' => '', |
|
| 439 | - 'no_wrap' => true, |
|
| 440 | - 'size' => 'sm', |
|
| 441 | - ), |
|
| 442 | - true |
|
| 443 | - ); |
|
| 444 | - |
|
| 445 | - $url = apply_filters( 'getpaid_remote_subscription_profile_url', '', $subscription ); |
|
| 446 | - if ( ! empty( $url ) ) { |
|
| 447 | - echo ' <a href="' . esc_url_raw( $url ) . '" title="' . esc_attr__( 'View in Gateway', 'invoicing' ) . '" target="_blank"><i class="fas fa-external-link-alt fa-xs fa-fw align-top"></i></a>'; |
|
| 448 | - } |
|
| 427 | + $profile_id = $subscription->get_profile_id(); |
|
| 428 | + |
|
| 429 | + aui()->input( |
|
| 430 | + array( |
|
| 431 | + 'type' => 'text', |
|
| 432 | + 'id' => 'wpinv_subscription_profile_id', |
|
| 433 | + 'name' => 'wpinv_subscription_profile_id', |
|
| 434 | + 'label' => __( 'Profile Id', 'invoicing' ), |
|
| 435 | + 'label_type' => 'hidden', |
|
| 436 | + 'placeholder' => __( 'Profile Id', 'invoicing' ), |
|
| 437 | + 'value' => esc_attr( $profile_id ), |
|
| 438 | + 'input_group_right' => '', |
|
| 439 | + 'no_wrap' => true, |
|
| 440 | + 'size' => 'sm', |
|
| 441 | + ), |
|
| 442 | + true |
|
| 443 | + ); |
|
| 444 | + |
|
| 445 | + $url = apply_filters( 'getpaid_remote_subscription_profile_url', '', $subscription ); |
|
| 446 | + if ( ! empty( $url ) ) { |
|
| 447 | + echo ' <a href="' . esc_url_raw( $url ) . '" title="' . esc_attr__( 'View in Gateway', 'invoicing' ) . '" target="_blank"><i class="fas fa-external-link-alt fa-xs fa-fw align-top"></i></a>'; |
|
| 448 | + } |
|
| 449 | 449 | |
| 450 | 450 | } |
| 451 | 451 | add_action( 'getpaid_subscription_admin_display_profile_id', 'getpaid_admin_subscription_metabox_display_profile_id' ); |
@@ -457,40 +457,40 @@ discard block |
||
| 457 | 457 | */ |
| 458 | 458 | function getpaid_admin_subscription_update_metabox( $subscription ) { |
| 459 | 459 | |
| 460 | - ?> |
|
| 460 | + ?> |
|
| 461 | 461 | <div class="mt-3"> |
| 462 | 462 | |
| 463 | 463 | <?php |
| 464 | - aui()->select( |
|
| 465 | - array( |
|
| 466 | - 'options' => getpaid_get_subscription_statuses(), |
|
| 467 | - 'name' => 'subscription_status', |
|
| 468 | - 'id' => 'subscription_status_update_select', |
|
| 469 | - 'required' => true, |
|
| 470 | - 'no_wrap' => false, |
|
| 471 | - 'label' => __( 'Subscription Status', 'invoicing' ), |
|
| 472 | - 'help_text' => __( 'Updating the status will trigger related actions and hooks', 'invoicing' ), |
|
| 473 | - 'select2' => true, |
|
| 474 | - 'value' => $subscription->get_status( 'edit' ), |
|
| 475 | - ), |
|
| 476 | - true |
|
| 477 | - ); |
|
| 478 | - ?> |
|
| 464 | + aui()->select( |
|
| 465 | + array( |
|
| 466 | + 'options' => getpaid_get_subscription_statuses(), |
|
| 467 | + 'name' => 'subscription_status', |
|
| 468 | + 'id' => 'subscription_status_update_select', |
|
| 469 | + 'required' => true, |
|
| 470 | + 'no_wrap' => false, |
|
| 471 | + 'label' => __( 'Subscription Status', 'invoicing' ), |
|
| 472 | + 'help_text' => __( 'Updating the status will trigger related actions and hooks', 'invoicing' ), |
|
| 473 | + 'select2' => true, |
|
| 474 | + 'value' => $subscription->get_status( 'edit' ), |
|
| 475 | + ), |
|
| 476 | + true |
|
| 477 | + ); |
|
| 478 | + ?> |
|
| 479 | 479 | |
| 480 | 480 | <div class="mt-2 px-3 py-2 bg-light border-top" style="margin: -12px;"> |
| 481 | 481 | |
| 482 | 482 | <?php |
| 483 | - submit_button( __( 'Update', 'invoicing' ), 'primary', 'submit', false ); |
|
| 483 | + submit_button( __( 'Update', 'invoicing' ), 'primary', 'submit', false ); |
|
| 484 | 484 | |
| 485 | - $url = wp_nonce_url( add_query_arg( 'getpaid-admin-action', 'subscription_manual_renew' ), 'getpaid-nonce', 'getpaid-nonce' ); |
|
| 486 | - $anchor = __( 'Renew Subscription', 'invoicing' ); |
|
| 487 | - $title = esc_attr__( 'Are you sure you want to extend the subscription and generate a new invoice that will be automatically marked as paid?', 'invoicing' ); |
|
| 485 | + $url = wp_nonce_url( add_query_arg( 'getpaid-admin-action', 'subscription_manual_renew' ), 'getpaid-nonce', 'getpaid-nonce' ); |
|
| 486 | + $anchor = __( 'Renew Subscription', 'invoicing' ); |
|
| 487 | + $title = esc_attr__( 'Are you sure you want to extend the subscription and generate a new invoice that will be automatically marked as paid?', 'invoicing' ); |
|
| 488 | 488 | |
| 489 | - if ( $subscription->is_active() ) { |
|
| 490 | - echo "<a href='" . esc_url( $url ) . "' class='float-right text-muted' onclick='return confirm(\"" . esc_attr( $title ) . "\")'>" . esc_html( $anchor ) . "</a>"; |
|
| 491 | - } |
|
| 489 | + if ( $subscription->is_active() ) { |
|
| 490 | + echo "<a href='" . esc_url( $url ) . "' class='float-right text-muted' onclick='return confirm(\"" . esc_attr( $title ) . "\")'>" . esc_html( $anchor ) . "</a>"; |
|
| 491 | + } |
|
| 492 | 492 | |
| 493 | - echo '</div></div>'; |
|
| 493 | + echo '</div></div>'; |
|
| 494 | 494 | } |
| 495 | 495 | |
| 496 | 496 | /** |
@@ -501,33 +501,33 @@ discard block |
||
| 501 | 501 | */ |
| 502 | 502 | function getpaid_admin_subscription_invoice_details_metabox( $subscription, $strict = true ) { |
| 503 | 503 | |
| 504 | - $columns = apply_filters( |
|
| 505 | - 'getpaid_subscription_related_invoices_columns', |
|
| 506 | - array( |
|
| 507 | - 'invoice' => __( 'Invoice', 'invoicing' ), |
|
| 508 | - 'relationship' => __( 'Relationship', 'invoicing' ), |
|
| 509 | - 'date' => __( 'Date', 'invoicing' ), |
|
| 510 | - 'status' => __( 'Status', 'invoicing' ), |
|
| 511 | - 'total' => __( 'Total', 'invoicing' ), |
|
| 512 | - ), |
|
| 513 | - $subscription |
|
| 514 | - ); |
|
| 515 | - |
|
| 516 | - // Prepare the invoices. |
|
| 517 | - $payments = $subscription->get_child_payments( ! is_admin() ); |
|
| 518 | - $parent = $subscription->get_parent_invoice(); |
|
| 519 | - |
|
| 520 | - if ( $parent->exists() ) { |
|
| 521 | - $payments = array_merge( array( $parent ), $payments ); |
|
| 522 | - } |
|
| 523 | - |
|
| 524 | - $table_class = 'w-100 bg-white'; |
|
| 525 | - |
|
| 526 | - if ( ! is_admin() ) { |
|
| 527 | - $table_class = 'table table-bordered'; |
|
| 528 | - } |
|
| 529 | - |
|
| 530 | - ?> |
|
| 504 | + $columns = apply_filters( |
|
| 505 | + 'getpaid_subscription_related_invoices_columns', |
|
| 506 | + array( |
|
| 507 | + 'invoice' => __( 'Invoice', 'invoicing' ), |
|
| 508 | + 'relationship' => __( 'Relationship', 'invoicing' ), |
|
| 509 | + 'date' => __( 'Date', 'invoicing' ), |
|
| 510 | + 'status' => __( 'Status', 'invoicing' ), |
|
| 511 | + 'total' => __( 'Total', 'invoicing' ), |
|
| 512 | + ), |
|
| 513 | + $subscription |
|
| 514 | + ); |
|
| 515 | + |
|
| 516 | + // Prepare the invoices. |
|
| 517 | + $payments = $subscription->get_child_payments( ! is_admin() ); |
|
| 518 | + $parent = $subscription->get_parent_invoice(); |
|
| 519 | + |
|
| 520 | + if ( $parent->exists() ) { |
|
| 521 | + $payments = array_merge( array( $parent ), $payments ); |
|
| 522 | + } |
|
| 523 | + |
|
| 524 | + $table_class = 'w-100 bg-white'; |
|
| 525 | + |
|
| 526 | + if ( ! is_admin() ) { |
|
| 527 | + $table_class = 'table table-bordered'; |
|
| 528 | + } |
|
| 529 | + |
|
| 530 | + ?> |
|
| 531 | 531 | <div class="m-0" style="overflow: auto;"> |
| 532 | 532 | |
| 533 | 533 | <table class="<?php echo esc_attr( $table_class ); ?>"> |
@@ -535,10 +535,10 @@ discard block |
||
| 535 | 535 | <thead> |
| 536 | 536 | <tr> |
| 537 | 537 | <?php |
| 538 | - foreach ( $columns as $key => $label ) { |
|
| 539 | - echo "<th class='subscription-invoice-field-" . esc_attr( $key ) . " bg-light p-2 text-left color-dark font-weight-bold'>" . esc_html( $label ) . "</th>"; |
|
| 540 | - } |
|
| 541 | - ?> |
|
| 538 | + foreach ( $columns as $key => $label ) { |
|
| 539 | + echo "<th class='subscription-invoice-field-" . esc_attr( $key ) . " bg-light p-2 text-left color-dark font-weight-bold'>" . esc_html( $label ) . "</th>"; |
|
| 540 | + } |
|
| 541 | + ?> |
|
| 542 | 542 | </tr> |
| 543 | 543 | </thead> |
| 544 | 544 | |
@@ -554,72 +554,72 @@ discard block |
||
| 554 | 554 | |
| 555 | 555 | <?php |
| 556 | 556 | |
| 557 | - foreach ( $payments as $payment ) : |
|
| 557 | + foreach ( $payments as $payment ) : |
|
| 558 | 558 | |
| 559 | - // Ensure that we have an invoice. |
|
| 560 | - $payment = new WPInv_Invoice( $payment ); |
|
| 559 | + // Ensure that we have an invoice. |
|
| 560 | + $payment = new WPInv_Invoice( $payment ); |
|
| 561 | 561 | |
| 562 | - // Abort if the invoice is invalid... |
|
| 563 | - if ( ! $payment->exists() ) { |
|
| 564 | - continue; |
|
| 565 | - } |
|
| 562 | + // Abort if the invoice is invalid... |
|
| 563 | + if ( ! $payment->exists() ) { |
|
| 564 | + continue; |
|
| 565 | + } |
|
| 566 | 566 | |
| 567 | - // ... or belongs to a different subscription. |
|
| 568 | - if ( $strict && $payment->is_renewal() && $payment->get_subscription_id() && $payment->get_subscription_id() != $subscription->get_id() ) { |
|
| 569 | - continue; |
|
| 570 | - } |
|
| 567 | + // ... or belongs to a different subscription. |
|
| 568 | + if ( $strict && $payment->is_renewal() && $payment->get_subscription_id() && $payment->get_subscription_id() != $subscription->get_id() ) { |
|
| 569 | + continue; |
|
| 570 | + } |
|
| 571 | 571 | |
| 572 | - echo '<tr>'; |
|
| 572 | + echo '<tr>'; |
|
| 573 | 573 | |
| 574 | - foreach ( array_keys( $columns ) as $key ) { |
|
| 574 | + foreach ( array_keys( $columns ) as $key ) { |
|
| 575 | 575 | |
| 576 | - echo "<td class='p-2 text-left'>"; |
|
| 576 | + echo "<td class='p-2 text-left'>"; |
|
| 577 | 577 | |
| 578 | - switch ( $key ) { |
|
| 578 | + switch ( $key ) { |
|
| 579 | 579 | |
| 580 | - case 'total': |
|
| 581 | - echo '<strong>'; |
|
| 582 | - wpinv_the_price( $payment->get_total(), $payment->get_currency() ); |
|
| 583 | - echo '</strong>'; |
|
| 584 | - break; |
|
| 580 | + case 'total': |
|
| 581 | + echo '<strong>'; |
|
| 582 | + wpinv_the_price( $payment->get_total(), $payment->get_currency() ); |
|
| 583 | + echo '</strong>'; |
|
| 584 | + break; |
|
| 585 | 585 | |
| 586 | - case 'relationship': |
|
| 587 | - echo $payment->is_renewal() ? esc_html__( 'Renewal Invoice', 'invoicing' ) : esc_html__( 'Initial Invoice', 'invoicing' ); |
|
| 588 | - break; |
|
| 586 | + case 'relationship': |
|
| 587 | + echo $payment->is_renewal() ? esc_html__( 'Renewal Invoice', 'invoicing' ) : esc_html__( 'Initial Invoice', 'invoicing' ); |
|
| 588 | + break; |
|
| 589 | 589 | |
| 590 | - case 'date': |
|
| 591 | - echo esc_html( getpaid_format_date_value( $payment->get_date_created() ) ); |
|
| 592 | - break; |
|
| 590 | + case 'date': |
|
| 591 | + echo esc_html( getpaid_format_date_value( $payment->get_date_created() ) ); |
|
| 592 | + break; |
|
| 593 | 593 | |
| 594 | - case 'status': |
|
| 595 | - $status = $payment->get_status_nicename(); |
|
| 596 | - if ( is_admin() ) { |
|
| 597 | - $status = $payment->get_status_label_html(); |
|
| 598 | - } |
|
| 594 | + case 'status': |
|
| 595 | + $status = $payment->get_status_nicename(); |
|
| 596 | + if ( is_admin() ) { |
|
| 597 | + $status = $payment->get_status_label_html(); |
|
| 598 | + } |
|
| 599 | 599 | |
| 600 | - echo wp_kses_post( $status ); |
|
| 601 | - break; |
|
| 600 | + echo wp_kses_post( $status ); |
|
| 601 | + break; |
|
| 602 | 602 | |
| 603 | - case 'invoice': |
|
| 604 | - $link = esc_url( get_edit_post_link( $payment->get_id() ) ); |
|
| 603 | + case 'invoice': |
|
| 604 | + $link = esc_url( get_edit_post_link( $payment->get_id() ) ); |
|
| 605 | 605 | |
| 606 | - if ( ! is_admin() ) { |
|
| 607 | - $link = esc_url( $payment->get_view_url() ); |
|
| 608 | - } |
|
| 606 | + if ( ! is_admin() ) { |
|
| 607 | + $link = esc_url( $payment->get_view_url() ); |
|
| 608 | + } |
|
| 609 | 609 | |
| 610 | - $invoice = esc_html( $payment->get_number() ); |
|
| 611 | - echo wp_kses_post( "<a href='$link'>$invoice</a>" ); |
|
| 612 | - break; |
|
| 613 | - } |
|
| 610 | + $invoice = esc_html( $payment->get_number() ); |
|
| 611 | + echo wp_kses_post( "<a href='$link'>$invoice</a>" ); |
|
| 612 | + break; |
|
| 613 | + } |
|
| 614 | 614 | |
| 615 | - echo '</td>'; |
|
| 615 | + echo '</td>'; |
|
| 616 | 616 | |
| 617 | - } |
|
| 617 | + } |
|
| 618 | 618 | |
| 619 | - echo '</tr>'; |
|
| 619 | + echo '</tr>'; |
|
| 620 | 620 | |
| 621 | - endforeach; |
|
| 622 | - ?> |
|
| 621 | + endforeach; |
|
| 622 | + ?> |
|
| 623 | 623 | |
| 624 | 624 | </tbody> |
| 625 | 625 | |
@@ -637,42 +637,42 @@ discard block |
||
| 637 | 637 | */ |
| 638 | 638 | function getpaid_admin_subscription_item_details_metabox( $subscription ) { |
| 639 | 639 | |
| 640 | - // Fetch the subscription group. |
|
| 641 | - $subscription_group = getpaid_get_invoice_subscription_group( $subscription->get_parent_payment_id(), $subscription->get_id() ); |
|
| 640 | + // Fetch the subscription group. |
|
| 641 | + $subscription_group = getpaid_get_invoice_subscription_group( $subscription->get_parent_payment_id(), $subscription->get_id() ); |
|
| 642 | 642 | |
| 643 | - if ( empty( $subscription_group ) || empty( $subscription_group['items'] ) ) { |
|
| 644 | - return; |
|
| 645 | - } |
|
| 643 | + if ( empty( $subscription_group ) || empty( $subscription_group['items'] ) ) { |
|
| 644 | + return; |
|
| 645 | + } |
|
| 646 | 646 | |
| 647 | - // Prepare table columns. |
|
| 648 | - $columns = apply_filters( |
|
| 649 | - 'getpaid_subscription_item_details_columns', |
|
| 650 | - array( |
|
| 651 | - 'item_name' => __( 'Item', 'invoicing' ), |
|
| 652 | - 'price' => __( 'Price', 'invoicing' ), |
|
| 653 | - 'tax' => __( 'Tax', 'invoicing' ), |
|
| 654 | - 'discount' => __( 'Discount', 'invoicing' ), |
|
| 655 | - //'initial' => __( 'Initial Amount', 'invoicing' ), |
|
| 656 | - 'recurring' => __( 'Subtotal', 'invoicing' ), |
|
| 657 | - ), |
|
| 658 | - $subscription |
|
| 659 | - ); |
|
| 647 | + // Prepare table columns. |
|
| 648 | + $columns = apply_filters( |
|
| 649 | + 'getpaid_subscription_item_details_columns', |
|
| 650 | + array( |
|
| 651 | + 'item_name' => __( 'Item', 'invoicing' ), |
|
| 652 | + 'price' => __( 'Price', 'invoicing' ), |
|
| 653 | + 'tax' => __( 'Tax', 'invoicing' ), |
|
| 654 | + 'discount' => __( 'Discount', 'invoicing' ), |
|
| 655 | + //'initial' => __( 'Initial Amount', 'invoicing' ), |
|
| 656 | + 'recurring' => __( 'Subtotal', 'invoicing' ), |
|
| 657 | + ), |
|
| 658 | + $subscription |
|
| 659 | + ); |
|
| 660 | 660 | |
| 661 | - // Prepare the invoices. |
|
| 661 | + // Prepare the invoices. |
|
| 662 | 662 | |
| 663 | - $invoice = $subscription->get_parent_invoice(); |
|
| 663 | + $invoice = $subscription->get_parent_invoice(); |
|
| 664 | 664 | |
| 665 | - if ( ( ! wpinv_use_taxes() || ! $invoice->is_taxable() ) && isset( $columns['tax'] ) ) { |
|
| 666 | - unset( $columns['tax'] ); |
|
| 667 | - } |
|
| 665 | + if ( ( ! wpinv_use_taxes() || ! $invoice->is_taxable() ) && isset( $columns['tax'] ) ) { |
|
| 666 | + unset( $columns['tax'] ); |
|
| 667 | + } |
|
| 668 | 668 | |
| 669 | - $table_class = 'w-100 bg-white'; |
|
| 669 | + $table_class = 'w-100 bg-white'; |
|
| 670 | 670 | |
| 671 | - if ( ! is_admin() ) { |
|
| 672 | - $table_class = 'table table-bordered'; |
|
| 673 | - } |
|
| 671 | + if ( ! is_admin() ) { |
|
| 672 | + $table_class = 'table table-bordered'; |
|
| 673 | + } |
|
| 674 | 674 | |
| 675 | - ?> |
|
| 675 | + ?> |
|
| 676 | 676 | <div class="m-0" style="overflow: auto;"> |
| 677 | 677 | |
| 678 | 678 | <table class="<?php echo esc_attr( $table_class ); ?>"> |
@@ -681,10 +681,10 @@ discard block |
||
| 681 | 681 | <tr> |
| 682 | 682 | <?php |
| 683 | 683 | |
| 684 | - foreach ( $columns as $key => $label ) { |
|
| 685 | - echo "<th class='subscription-item-field-" . esc_attr( $key ) . " bg-light p-2 text-left color-dark font-weight-bold'>" . esc_html( $label ) . "</th>"; |
|
| 686 | - } |
|
| 687 | - ?> |
|
| 684 | + foreach ( $columns as $key => $label ) { |
|
| 685 | + echo "<th class='subscription-item-field-" . esc_attr( $key ) . " bg-light p-2 text-left color-dark font-weight-bold'>" . esc_html( $label ) . "</th>"; |
|
| 686 | + } |
|
| 687 | + ?> |
|
| 688 | 688 | </tr> |
| 689 | 689 | </thead> |
| 690 | 690 | |
@@ -692,106 +692,106 @@ discard block |
||
| 692 | 692 | |
| 693 | 693 | <?php |
| 694 | 694 | |
| 695 | - foreach ( $subscription_group['items'] as $subscription_group_item ) : |
|
| 695 | + foreach ( $subscription_group['items'] as $subscription_group_item ) : |
|
| 696 | 696 | |
| 697 | - echo '<tr>'; |
|
| 697 | + echo '<tr>'; |
|
| 698 | 698 | |
| 699 | - foreach ( array_keys( $columns ) as $key ) { |
|
| 699 | + foreach ( array_keys( $columns ) as $key ) { |
|
| 700 | 700 | |
| 701 | - $class = 'text-left'; |
|
| 701 | + $class = 'text-left'; |
|
| 702 | 702 | |
| 703 | - echo "<td class='p-2 text-left'>"; |
|
| 703 | + echo "<td class='p-2 text-left'>"; |
|
| 704 | 704 | |
| 705 | - switch ( $key ) { |
|
| 705 | + switch ( $key ) { |
|
| 706 | 706 | |
| 707 | - case 'item_name': |
|
| 708 | - $item_name = get_the_title( $subscription_group_item['item_id'] ); |
|
| 709 | - $item_name = empty( $item_name ) ? $subscription_group_item['item_name'] : $item_name; |
|
| 707 | + case 'item_name': |
|
| 708 | + $item_name = get_the_title( $subscription_group_item['item_id'] ); |
|
| 709 | + $item_name = empty( $item_name ) ? $subscription_group_item['item_name'] : $item_name; |
|
| 710 | 710 | |
| 711 | - if ( $invoice->get_template() == 'amount' || 1 == (float) $subscription_group_item['quantity'] ) { |
|
| 712 | - echo esc_html( $item_name ); |
|
| 713 | - } else { |
|
| 714 | - printf( '%1$s x %2$d', esc_html( $item_name ), (float) $subscription_group_item['quantity'] ); |
|
| 715 | - } |
|
| 711 | + if ( $invoice->get_template() == 'amount' || 1 == (float) $subscription_group_item['quantity'] ) { |
|
| 712 | + echo esc_html( $item_name ); |
|
| 713 | + } else { |
|
| 714 | + printf( '%1$s x %2$d', esc_html( $item_name ), (float) $subscription_group_item['quantity'] ); |
|
| 715 | + } |
|
| 716 | 716 | |
| 717 | - break; |
|
| 717 | + break; |
|
| 718 | 718 | |
| 719 | - case 'price': |
|
| 720 | - wpinv_the_price( $subscription_group_item['item_price'], $invoice->get_currency() ); |
|
| 721 | - break; |
|
| 719 | + case 'price': |
|
| 720 | + wpinv_the_price( $subscription_group_item['item_price'], $invoice->get_currency() ); |
|
| 721 | + break; |
|
| 722 | 722 | |
| 723 | - case 'tax': |
|
| 724 | - wpinv_the_price( $subscription_group_item['tax'], $invoice->get_currency() ); |
|
| 725 | - break; |
|
| 723 | + case 'tax': |
|
| 724 | + wpinv_the_price( $subscription_group_item['tax'], $invoice->get_currency() ); |
|
| 725 | + break; |
|
| 726 | 726 | |
| 727 | - case 'discount': |
|
| 728 | - wpinv_the_price( $subscription_group_item['discount'], $invoice->get_currency() ); |
|
| 729 | - break; |
|
| 727 | + case 'discount': |
|
| 728 | + wpinv_the_price( $subscription_group_item['discount'], $invoice->get_currency() ); |
|
| 729 | + break; |
|
| 730 | 730 | |
| 731 | - case 'initial': |
|
| 732 | - wpinv_the_price( $subscription_group_item['price'] * $subscription_group_item['quantity'], $invoice->get_currency() ); |
|
| 733 | - break; |
|
| 731 | + case 'initial': |
|
| 732 | + wpinv_the_price( $subscription_group_item['price'] * $subscription_group_item['quantity'], $invoice->get_currency() ); |
|
| 733 | + break; |
|
| 734 | 734 | |
| 735 | - case 'recurring': |
|
| 736 | - echo wp_kses_post( '<strong>' . wpinv_price( $subscription_group_item['price'] * $subscription_group_item['quantity'], $invoice->get_currency() ) . '</strong>' ); |
|
| 737 | - break; |
|
| 735 | + case 'recurring': |
|
| 736 | + echo wp_kses_post( '<strong>' . wpinv_price( $subscription_group_item['price'] * $subscription_group_item['quantity'], $invoice->get_currency() ) . '</strong>' ); |
|
| 737 | + break; |
|
| 738 | 738 | |
| 739 | - } |
|
| 739 | + } |
|
| 740 | 740 | |
| 741 | - echo '</td>'; |
|
| 741 | + echo '</td>'; |
|
| 742 | 742 | |
| 743 | - } |
|
| 743 | + } |
|
| 744 | 744 | |
| 745 | - echo '</tr>'; |
|
| 745 | + echo '</tr>'; |
|
| 746 | 746 | |
| 747 | - endforeach; |
|
| 747 | + endforeach; |
|
| 748 | 748 | |
| 749 | - foreach ( $subscription_group['fees'] as $subscription_group_fee ) : |
|
| 749 | + foreach ( $subscription_group['fees'] as $subscription_group_fee ) : |
|
| 750 | 750 | |
| 751 | - echo '<tr>'; |
|
| 751 | + echo '<tr>'; |
|
| 752 | 752 | |
| 753 | - foreach ( array_keys( $columns ) as $key ) { |
|
| 753 | + foreach ( array_keys( $columns ) as $key ) { |
|
| 754 | 754 | |
| 755 | - $class = 'text-left'; |
|
| 755 | + $class = 'text-left'; |
|
| 756 | 756 | |
| 757 | - echo "<td class='p-2 text-left'>"; |
|
| 757 | + echo "<td class='p-2 text-left'>"; |
|
| 758 | 758 | |
| 759 | - switch ( $key ) { |
|
| 759 | + switch ( $key ) { |
|
| 760 | 760 | |
| 761 | - case 'item_name': |
|
| 762 | - echo esc_html( $subscription_group_fee['name'] ); |
|
| 763 | - break; |
|
| 761 | + case 'item_name': |
|
| 762 | + echo esc_html( $subscription_group_fee['name'] ); |
|
| 763 | + break; |
|
| 764 | 764 | |
| 765 | - case 'price': |
|
| 766 | - wpinv_the_price( $subscription_group_fee['initial_fee'], $invoice->get_currency() ); |
|
| 767 | - break; |
|
| 765 | + case 'price': |
|
| 766 | + wpinv_the_price( $subscription_group_fee['initial_fee'], $invoice->get_currency() ); |
|
| 767 | + break; |
|
| 768 | 768 | |
| 769 | - case 'tax': |
|
| 770 | - echo '—'; |
|
| 771 | - break; |
|
| 769 | + case 'tax': |
|
| 770 | + echo '—'; |
|
| 771 | + break; |
|
| 772 | 772 | |
| 773 | - case 'discount': |
|
| 774 | - echo '—'; |
|
| 775 | - break; |
|
| 773 | + case 'discount': |
|
| 774 | + echo '—'; |
|
| 775 | + break; |
|
| 776 | 776 | |
| 777 | - case 'initial': |
|
| 778 | - wpinv_the_price( $subscription_group_fee['initial_fee'], $invoice->get_currency() ); |
|
| 779 | - break; |
|
| 777 | + case 'initial': |
|
| 778 | + wpinv_the_price( $subscription_group_fee['initial_fee'], $invoice->get_currency() ); |
|
| 779 | + break; |
|
| 780 | 780 | |
| 781 | - case 'recurring': |
|
| 782 | - echo wp_kses_post( '<strong>' . wpinv_price( $subscription_group_fee['recurring_fee'], $invoice->get_currency() ) . '</strong>' ); |
|
| 783 | - break; |
|
| 781 | + case 'recurring': |
|
| 782 | + echo wp_kses_post( '<strong>' . wpinv_price( $subscription_group_fee['recurring_fee'], $invoice->get_currency() ) . '</strong>' ); |
|
| 783 | + break; |
|
| 784 | 784 | |
| 785 | - } |
|
| 785 | + } |
|
| 786 | 786 | |
| 787 | - echo '</td>'; |
|
| 787 | + echo '</td>'; |
|
| 788 | 788 | |
| 789 | - } |
|
| 789 | + } |
|
| 790 | 790 | |
| 791 | - echo '</tr>'; |
|
| 791 | + echo '</tr>'; |
|
| 792 | 792 | |
| 793 | - endforeach; |
|
| 794 | - ?> |
|
| 793 | + endforeach; |
|
| 794 | + ?> |
|
| 795 | 795 | |
| 796 | 796 | </tbody> |
| 797 | 797 | |
@@ -810,38 +810,38 @@ discard block |
||
| 810 | 810 | */ |
| 811 | 811 | function getpaid_admin_subscription_related_subscriptions_metabox( $subscription, $skip_current = true ) { |
| 812 | 812 | |
| 813 | - // Fetch the subscription groups. |
|
| 814 | - $subscription_groups = getpaid_get_invoice_subscription_groups( $subscription->get_parent_payment_id() ); |
|
| 815 | - |
|
| 816 | - if ( empty( $subscription_groups ) ) { |
|
| 817 | - return; |
|
| 818 | - } |
|
| 819 | - |
|
| 820 | - // Prepare table columns. |
|
| 821 | - $columns = apply_filters( |
|
| 822 | - 'getpaid_subscription_related_subscriptions_columns', |
|
| 823 | - array( |
|
| 824 | - 'subscription' => __( 'Subscription', 'invoicing' ), |
|
| 825 | - 'start_date' => __( 'Start Date', 'invoicing' ), |
|
| 826 | - 'renewal_date' => __( 'Next Payment', 'invoicing' ), |
|
| 827 | - 'renewals' => __( 'Payments', 'invoicing' ), |
|
| 828 | - 'item' => __( 'Items', 'invoicing' ), |
|
| 829 | - 'status' => __( 'Status', 'invoicing' ), |
|
| 830 | - ), |
|
| 831 | - $subscription |
|
| 832 | - ); |
|
| 833 | - |
|
| 834 | - if ( $subscription->get_status() == 'pending' ) { |
|
| 835 | - unset( $columns['start_date'], $columns['renewal_date'] ); |
|
| 836 | - } |
|
| 837 | - |
|
| 838 | - $table_class = 'w-100 bg-white'; |
|
| 839 | - |
|
| 840 | - if ( ! is_admin() ) { |
|
| 841 | - $table_class = 'table table-bordered'; |
|
| 842 | - } |
|
| 843 | - |
|
| 844 | - ?> |
|
| 813 | + // Fetch the subscription groups. |
|
| 814 | + $subscription_groups = getpaid_get_invoice_subscription_groups( $subscription->get_parent_payment_id() ); |
|
| 815 | + |
|
| 816 | + if ( empty( $subscription_groups ) ) { |
|
| 817 | + return; |
|
| 818 | + } |
|
| 819 | + |
|
| 820 | + // Prepare table columns. |
|
| 821 | + $columns = apply_filters( |
|
| 822 | + 'getpaid_subscription_related_subscriptions_columns', |
|
| 823 | + array( |
|
| 824 | + 'subscription' => __( 'Subscription', 'invoicing' ), |
|
| 825 | + 'start_date' => __( 'Start Date', 'invoicing' ), |
|
| 826 | + 'renewal_date' => __( 'Next Payment', 'invoicing' ), |
|
| 827 | + 'renewals' => __( 'Payments', 'invoicing' ), |
|
| 828 | + 'item' => __( 'Items', 'invoicing' ), |
|
| 829 | + 'status' => __( 'Status', 'invoicing' ), |
|
| 830 | + ), |
|
| 831 | + $subscription |
|
| 832 | + ); |
|
| 833 | + |
|
| 834 | + if ( $subscription->get_status() == 'pending' ) { |
|
| 835 | + unset( $columns['start_date'], $columns['renewal_date'] ); |
|
| 836 | + } |
|
| 837 | + |
|
| 838 | + $table_class = 'w-100 bg-white'; |
|
| 839 | + |
|
| 840 | + if ( ! is_admin() ) { |
|
| 841 | + $table_class = 'table table-bordered'; |
|
| 842 | + } |
|
| 843 | + |
|
| 844 | + ?> |
|
| 845 | 845 | <div class="m-0" style="overflow: auto;"> |
| 846 | 846 | |
| 847 | 847 | <table class="<?php echo esc_attr( $table_class ); ?>"> |
@@ -850,10 +850,10 @@ discard block |
||
| 850 | 850 | <tr> |
| 851 | 851 | <?php |
| 852 | 852 | |
| 853 | - foreach ( $columns as $key => $label ) { |
|
| 854 | - echo "<th class='related-subscription-field-" . esc_attr( $key ) . " bg-light p-2 text-left color-dark font-weight-bold'>" . esc_html( $label ) . "</th>"; |
|
| 855 | - } |
|
| 856 | - ?> |
|
| 853 | + foreach ( $columns as $key => $label ) { |
|
| 854 | + echo "<th class='related-subscription-field-" . esc_attr( $key ) . " bg-light p-2 text-left color-dark font-weight-bold'>" . esc_html( $label ) . "</th>"; |
|
| 855 | + } |
|
| 856 | + ?> |
|
| 857 | 857 | </tr> |
| 858 | 858 | </thead> |
| 859 | 859 | |
@@ -861,74 +861,74 @@ discard block |
||
| 861 | 861 | |
| 862 | 862 | <?php |
| 863 | 863 | |
| 864 | - foreach ( $subscription_groups as $subscription_group ) : |
|
| 864 | + foreach ( $subscription_groups as $subscription_group ) : |
|
| 865 | 865 | |
| 866 | - // Do not list current subscription. |
|
| 867 | - if ( $skip_current && (int) $subscription_group['subscription_id'] === $subscription->get_id() ) { |
|
| 868 | - continue; |
|
| 869 | - } |
|
| 866 | + // Do not list current subscription. |
|
| 867 | + if ( $skip_current && (int) $subscription_group['subscription_id'] === $subscription->get_id() ) { |
|
| 868 | + continue; |
|
| 869 | + } |
|
| 870 | 870 | |
| 871 | - // Ensure the subscription exists. |
|
| 872 | - $_suscription = new WPInv_Subscription( $subscription_group['subscription_id'] ); |
|
| 871 | + // Ensure the subscription exists. |
|
| 872 | + $_suscription = new WPInv_Subscription( $subscription_group['subscription_id'] ); |
|
| 873 | 873 | |
| 874 | - if ( ! $_suscription->exists() ) { |
|
| 875 | - continue; |
|
| 876 | - } |
|
| 874 | + if ( ! $_suscription->exists() ) { |
|
| 875 | + continue; |
|
| 876 | + } |
|
| 877 | 877 | |
| 878 | - echo '<tr>'; |
|
| 878 | + echo '<tr>'; |
|
| 879 | 879 | |
| 880 | - foreach ( array_keys( $columns ) as $key ) { |
|
| 880 | + foreach ( array_keys( $columns ) as $key ) { |
|
| 881 | 881 | |
| 882 | - $class = 'text-left'; |
|
| 882 | + $class = 'text-left'; |
|
| 883 | 883 | |
| 884 | - echo "<td class='p-2 text-left'>"; |
|
| 884 | + echo "<td class='p-2 text-left'>"; |
|
| 885 | 885 | |
| 886 | - switch ( $key ) { |
|
| 886 | + switch ( $key ) { |
|
| 887 | 887 | |
| 888 | - case 'status': |
|
| 889 | - echo wp_kses_post( $_suscription->get_status_label_html() ); |
|
| 890 | - break; |
|
| 888 | + case 'status': |
|
| 889 | + echo wp_kses_post( $_suscription->get_status_label_html() ); |
|
| 890 | + break; |
|
| 891 | 891 | |
| 892 | - case 'item': |
|
| 893 | - $markup = array_map( array( 'WPInv_Subscriptions_List_Table', 'generate_item_markup' ), array_keys( $subscription_group['items'] ) ); |
|
| 894 | - echo wp_kses_post( implode( ' | ', $markup ) ); |
|
| 895 | - break; |
|
| 892 | + case 'item': |
|
| 893 | + $markup = array_map( array( 'WPInv_Subscriptions_List_Table', 'generate_item_markup' ), array_keys( $subscription_group['items'] ) ); |
|
| 894 | + echo wp_kses_post( implode( ' | ', $markup ) ); |
|
| 895 | + break; |
|
| 896 | 896 | |
| 897 | - case 'renewals': |
|
| 898 | - $max_bills = $_suscription->get_bill_times(); |
|
| 899 | - echo ( (int) $_suscription->get_times_billed() ) . ' / ' . ( empty( $max_bills ) ? '∞' : (int) $max_bills ); |
|
| 900 | - break; |
|
| 897 | + case 'renewals': |
|
| 898 | + $max_bills = $_suscription->get_bill_times(); |
|
| 899 | + echo ( (int) $_suscription->get_times_billed() ) . ' / ' . ( empty( $max_bills ) ? '∞' : (int) $max_bills ); |
|
| 900 | + break; |
|
| 901 | 901 | |
| 902 | - case 'renewal_date': |
|
| 903 | - echo $_suscription->is_active() ? esc_html( getpaid_format_date_value( $_suscription->get_expiration() ) ) : '—'; |
|
| 904 | - break; |
|
| 902 | + case 'renewal_date': |
|
| 903 | + echo $_suscription->is_active() ? esc_html( getpaid_format_date_value( $_suscription->get_expiration() ) ) : '—'; |
|
| 904 | + break; |
|
| 905 | 905 | |
| 906 | - case 'start_date': |
|
| 907 | - echo 'pending' == $_suscription->get_status() ? '—' : esc_html( getpaid_format_date_value( $_suscription->get_date_created() ) ); |
|
| 908 | - break; |
|
| 906 | + case 'start_date': |
|
| 907 | + echo 'pending' == $_suscription->get_status() ? '—' : esc_html( getpaid_format_date_value( $_suscription->get_date_created() ) ); |
|
| 908 | + break; |
|
| 909 | 909 | |
| 910 | - case 'subscription': |
|
| 911 | - $url = is_admin() ? admin_url( 'admin.php?page=wpinv-subscriptions&id=' . absint( $_suscription->get_id() ) ) : $_suscription->get_view_url(); |
|
| 912 | - printf( |
|
| 910 | + case 'subscription': |
|
| 911 | + $url = is_admin() ? admin_url( 'admin.php?page=wpinv-subscriptions&id=' . absint( $_suscription->get_id() ) ) : $_suscription->get_view_url(); |
|
| 912 | + printf( |
|
| 913 | 913 | '%1$s#%2$s%3$s', |
| 914 | 914 | '<a href="' . esc_url( $url ) . '">', |
| 915 | 915 | '<strong>' . intval( $_suscription->get_id() ) . '</strong>', |
| 916 | - '</a>' |
|
| 916 | + '</a>' |
|
| 917 | 917 | ); |
| 918 | 918 | |
| 919 | - echo wp_kses_post( WPInv_Subscriptions_List_Table::column_amount( $_suscription ) ); |
|
| 920 | - break; |
|
| 919 | + echo wp_kses_post( WPInv_Subscriptions_List_Table::column_amount( $_suscription ) ); |
|
| 920 | + break; |
|
| 921 | 921 | |
| 922 | - } |
|
| 922 | + } |
|
| 923 | 923 | |
| 924 | - echo '</td>'; |
|
| 924 | + echo '</td>'; |
|
| 925 | 925 | |
| 926 | - } |
|
| 926 | + } |
|
| 927 | 927 | |
| 928 | - echo '</tr>'; |
|
| 928 | + echo '</tr>'; |
|
| 929 | 929 | |
| 930 | - endforeach; |
|
| 931 | - ?> |
|
| 930 | + endforeach; |
|
| 931 | + ?> |
|
| 932 | 932 | |
| 933 | 933 | </tbody> |
| 934 | 934 | |