post-meta-view.php
2 years ago
relation.php
2 years ago
view-base-count-trait.php
2 years ago
view-base.php
2 years ago
view-custom-table-base.php
2 years ago
post-meta-view.php
29 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Db_Queries\Views; |
| 5 | |
| 6 | // If this file is called directly, abort. |
| 7 | if ( ! defined( 'WPINC' ) ) { |
| 8 | die; |
| 9 | } |
| 10 | |
| 11 | abstract class Post_Meta_View extends View_Base { |
| 12 | |
| 13 | public function table(): string { |
| 14 | global $wpdb; |
| 15 | |
| 16 | return $wpdb->postmeta; |
| 17 | } |
| 18 | |
| 19 | public function select_columns(): array { |
| 20 | return array( |
| 21 | 'meta_id', |
| 22 | 'post_id', |
| 23 | 'meta_key', |
| 24 | 'meta_value', |
| 25 | ); |
| 26 | } |
| 27 | |
| 28 | } |
| 29 |