| 1 |
<?php |
| 2 |
|
| 3 |
|
| 4 |
namespace Jet_Form_Builder\Gateways\Meta_Boxes\Actions; |
| 5 |
|
| 6 |
|
| 7 |
use Jet_Form_Builder\Admin\Single_Pages\Actions\Delete_Page_Action; |
| 8 |
use Jet_Form_Builder\Gateways\Rest_Api\Delete_Payment_Endpoint; |
| 9 |
|
| 10 |
class Delete_Payment_Action extends Delete_Page_Action { |
| 11 |
|
| 12 |
public function get_rest_url(): string { |
| 13 |
return Delete_Payment_Endpoint::dynamic_rest_url( |
| 14 |
array( 'id' => jet_fb_current_page()->get_id() ) |
| 15 |
); |
| 16 |
} |
| 17 |
|
| 18 |
public function get_rest_methods(): string { |
| 19 |
return Delete_Payment_Endpoint::get_methods(); |
| 20 |
} |
| 21 |
} |