base-list-box.php
2 years ago
base-meta-box.php
2 years ago
base-table-box.php
2 years ago
meta-box-options-converter.php
2 years ago
meta-box-options.php
2 years ago
meta-box-update-callback.php
2 years ago
meta-table-options-converter.php
2 years ago
meta-table-options.php
2 years ago
meta-table-options.php
26 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Admin\Single_Pages\Meta_Boxes; |
| 5 | |
| 6 | // If this file is called directly, abort. |
| 7 | if ( ! defined( 'WPINC' ) ) { |
| 8 | die; |
| 9 | } |
| 10 | |
| 11 | interface Meta_Table_Options extends Meta_Box_Options { |
| 12 | |
| 13 | public function is_footer_heading(): bool; |
| 14 | |
| 15 | /** |
| 16 | * @return bool |
| 17 | */ |
| 18 | public function is_show_overflow(): bool; |
| 19 | |
| 20 | /** |
| 21 | * @return bool |
| 22 | */ |
| 23 | public function is_show_overflow_control(): bool; |
| 24 | |
| 25 | } |
| 26 |