PluginProbe
OpenStation: Desktop Windows, Dock & Virtual Desktops for WP Admin / 1.1.10
OpenStation: Desktop Windows, Dock & Virtual Desktops for WP Admin v1.1.10
1.1.10 1.1.9 1.1.8 1.1.7 1.1.6 1.1.5 1.1.4 1.1.3 1.1.2 1.1.1 1.1.0 1.0.1 1.0.0 0.9.8 0.9.7 0.9.6 0.9.4 0.9.5 0.9.3 0.9.2 0.9.1 0.9.0 0.8.9 0.8.8 0.8.7 All 34 releases
← All changes | includes/agents/privacy.php +16 -0 1.1.11.1.10 View file →
@@ -106,8 +106,24 @@
106 106 'value' => (string) $rate_limit,
107 107 );
108 108 }
109 109
110 + $vibes = openstation_agent_get_vibes( (int) $user->ID );
111 + if ( '' !== $vibes ) {
112 + $rows[] = array(
113 + 'name' => __( 'Voice', 'desktop-mode' ),
114 + 'value' => $vibes,
115 + );
116 + }
117 +
118 + $face = (string) get_user_meta( (int) $user->ID, OPENSTATION_AGENT_FACE_META, true );
119 + if ( '' !== $face ) {
120 + $rows[] = array(
121 + 'name' => __( 'Face (JSON)', 'desktop-mode' ),
122 + 'value' => $face,
123 + );
124 + }
125 +
110 126 return array(
111 127 'data' => array(
112 128 array(
113 129 'group_id' => 'os-agents',