base-list-box.php
3 years ago
base-meta-box.php
3 years ago
base-table-box.php
3 years ago
meta-box-options-converter.php
3 years ago
meta-box-options.php
3 years ago
meta-box-update-callback.php
3 years ago
meta-table-options-converter.php
3 years ago
meta-table-options.php
3 years ago
meta-table-options.php
21 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Admin\Single_Pages\Meta_Boxes; |
| 5 | |
| 6 | |
| 7 | interface Meta_Table_Options extends Meta_Box_Options { |
| 8 | |
| 9 | public function is_footer_heading(): bool; |
| 10 | |
| 11 | /** |
| 12 | * @return bool |
| 13 | */ |
| 14 | public function is_show_overflow(): bool; |
| 15 | |
| 16 | /** |
| 17 | * @return bool |
| 18 | */ |
| 19 | public function is_show_overflow_control(): bool; |
| 20 | |
| 21 | } |