summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--src/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php29
1 files changed, 25 insertions, 4 deletions
diff --git a/src/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php b/src/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php
index 2e25c7e4e4..dcc9be6727 100644
--- a/src/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php
+++ b/src/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php
@@ -1,19 +1,40 @@
<?php
+/**
+ * REST API: WP_REST_User_Meta_Fields class
+ *
+ * @package WordPress
+ * @subpackage REST_API
+ * @since 4.7.0
+ */
+/**
+ * Core class used to manage meta values for users via the REST API.
+ *
+ * @since 4.7.0
+ *
+ * @see WP_REST_Meta_Fields
+ */
class WP_REST_User_Meta_Fields extends WP_REST_Meta_Fields {
+
/**
- * Get the object type for meta.
+ * Retrieves the object meta type.
+ *
+ * @since 4.7.0
+ * @access protected
*
- * @return string
+ * @return string The user meta type.
*/
protected function get_meta_type() {
return 'user';
}
/**
- * Get the type for `register_rest_field`.
+ * Retrieves the type for register_rest_field().
+ *
+ * @since 4.7.0
+ * @access public
*
- * @return string
+ * @return string The user REST field type.
*/
public function get_rest_field_type() {
return 'user';