api-single-action.php
2 years ago
link-single-action.php
2 years ago
view-single-action.php
2 years ago
api-single-action.php
33 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Admin\Table_Views\Actions; |
| 5 | |
| 6 | // If this file is called directly, abort. |
| 7 | if ( ! defined( 'WPINC' ) ) { |
| 8 | die; |
| 9 | } |
| 10 | |
| 11 | abstract class Api_Single_Action extends View_Single_Action { |
| 12 | |
| 13 | abstract public function get_method(): string; |
| 14 | |
| 15 | abstract public function get_rest_url( array $record ): string; |
| 16 | |
| 17 | public function get_payload( array $record ): array { |
| 18 | return array(); |
| 19 | } |
| 20 | |
| 21 | public function to_array( array $record ): array { |
| 22 | $attrs = parent::to_array( $record ); |
| 23 | |
| 24 | $attrs['payload'] = $this->get_payload( $record ); |
| 25 | $attrs['endpoint'] = array( |
| 26 | 'method' => $this->get_method(), |
| 27 | 'url' => $this->get_rest_url( $record ), |
| 28 | ); |
| 29 | |
| 30 | return $attrs; |
| 31 | } |
| 32 | } |
| 33 |