api-single-action.php
2 years ago
link-single-action.php
2 years ago
view-single-action.php
2 years ago
link-single-action.php
22 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 Link_Single_Action extends View_Single_Action { |
| 12 | |
| 13 | abstract public function get_href( array $record ): string; |
| 14 | |
| 15 | public function to_array( array $record ): array { |
| 16 | $attrs = parent::to_array( $record ); |
| 17 | $attrs['href'] = $this->get_href( $record ); |
| 18 | |
| 19 | return $attrs; |
| 20 | } |
| 21 | } |
| 22 |