1 | <?php |
||
10 | class Post_Meta_Datastore extends Meta_Datastore { |
||
11 | |||
12 | /** |
||
13 | * Retrieve the type of meta data. |
||
14 | * |
||
15 | * @return string |
||
16 | */ |
||
17 | public function get_meta_type() { |
||
20 | |||
21 | /** |
||
22 | * Retrieve the meta table name to query. |
||
23 | * |
||
24 | * @return string |
||
25 | */ |
||
26 | public function get_table_name() { |
||
30 | |||
31 | /** |
||
32 | * Retrieve the meta table field name to query by. |
||
33 | * |
||
34 | * @return string |
||
35 | */ |
||
36 | public function get_table_field_name() { |
||
39 | } |
||
40 |