base-export-it.php
24 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace JFB_Components\Export\Interfaces; |
| 5 | |
| 6 | // If this file is called directly, abort. |
| 7 | if ( ! defined( 'WPINC' ) ) { |
| 8 | die; |
| 9 | } |
| 10 | |
| 11 | interface Base_Export_It { |
| 12 | |
| 13 | public function open(); |
| 14 | |
| 15 | public function close(); |
| 16 | |
| 17 | public function add_row( array $row ); |
| 18 | |
| 19 | public function set_title( string $title ); |
| 20 | |
| 21 | public function get_title(): string; |
| 22 | |
| 23 | } |
| 24 |