PluginProbe ʕ •ᴥ•ʔ
Search Regex / 2.1
Search Regex v2.1
trunk 1.4.12 1.4.13 1.4.14 1.4.15 1.4.16 2.0 2.0.1 2.1 2.2 2.2.1 2.3 2.3.1 2.3.2 2.3.3 2.4 2.4.1 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.1 3.1.1 3.1.2 3.2 3.3 3.3.0 3.3.1 3.4 3.4.1 3.4.2
search-regex / source / core / user-meta.php
search-regex / source / core Last commit date
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
user-meta.php
26 lines
1 <?php
2
3 namespace SearchRegex;
4
5 use SearchRegex\Search_Source;
6
7 class Source_User_Meta extends Source_Meta {
8 public function get_table_name() {
9 global $wpdb;
10
11 return $wpdb->prefix . 'usermeta';
12 }
13
14 public function get_table_id() {
15 return 'umeta_id';
16 }
17
18 public function get_meta_object_id() {
19 return 'user_id';
20 }
21
22 public function get_meta_table() {
23 return 'user';
24 }
25 }
26