post-meta-view.php
3 years ago
relation.php
3 years ago
view-base-count-trait.php
3 years ago
view-base.php
3 years ago
view-custom-table-base.php
3 years ago
view-custom-table-base.php
24 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Db_Queries\Views; |
| 5 | |
| 6 | |
| 7 | abstract class View_Base_Custom_Table extends View_Base { |
| 8 | |
| 9 | abstract public function table_name(): string; |
| 10 | |
| 11 | /** |
| 12 | * @return string |
| 13 | */ |
| 14 | public function table_prefix(): string { |
| 15 | global $wpdb; |
| 16 | |
| 17 | return $wpdb->prefix; |
| 18 | } |
| 19 | |
| 20 | public function table(): string { |
| 21 | return $this->table_prefix() . $this->table_name(); |
| 22 | } |
| 23 | |
| 24 | } |