return false;
}
} );
+
+/**
+ * Filter to get the user meta for a contact.
+ */
+add_filter( 'glm_contact_has_employees', function( $content, $member_id ){
+ global $wpdb;
+ if ( isset( $member_id ) && !$member_id ) {
+ return $content;
+ }
+ // First will have to see if this member a member contact.
+ $contact = $wpdb->get_row(
+ $wpdb->prepare(
+ "SELECT id,email,username
+ FROM " . GLM_MEMBERS_CONTACTS_PLUGIN_DB_PREFIX . "contacts
+ WHERE ref_dest = %d
+ AND primary_contact",
+ $member_id
+ ),
+ ARRAY_A
+ );
+ if ( !$contact ) {
+ return $content;
+ }
+ // Get the members wordpress user.
+ if ( $contact['email'] ) {
+ $wp_user = get_user_by( 'email', $contact['email'] );
+ } else if ( $contact['username'] ) {
+ $wp_user = get_user_by( 'login', $contact['username'] );
+ }
+ $employees = array();
+ // Get the users meta data.
+ $user_meta = get_user_meta( $wp_user->ID, 'glmMembersContactMembers', true );
+ if ( $user_meta ) {
+ $employees = explode( ',', $user_meta );
+ // Remove the $member_id from this array if it's in there.
+ $employees = array_filter( $employees, function( $input ) use( $member_id ) { return $input != $member_id; } );
+ }
+ return $employees;
+}, 10, 2 );
?>