comment-meta.php
6 years ago
comment.php
6 years ago
meta.php
6 years ago
options.php
6 years ago
post-meta.php
6 years ago
post.php
6 years ago
user-meta.php
6 years ago
user.php
6 years ago
comment-meta.php
22 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SearchRegex; |
| 4 | |
| 5 | use SearchRegex\Search_Source; |
| 6 | |
| 7 | class Source_Comment_Meta extends Source_Meta { |
| 8 | public function get_table_name() { |
| 9 | global $wpdb; |
| 10 | |
| 11 | return $wpdb->commentmeta; |
| 12 | } |
| 13 | |
| 14 | public function get_meta_object_id() { |
| 15 | return 'comment_id'; |
| 16 | } |
| 17 | |
| 18 | public function get_meta_table() { |
| 19 | return 'comment'; |
| 20 | } |
| 21 | } |
| 22 |