bp_get_repeater_template_field_ids( type $field_group_id )

Return repeater template field ids

Description

Parameters

$field_group_id

(Required)

Return

(type)

Source

File: bp-xprofile/bp-xprofile-repeaters.php

30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
function bp_get_repeater_template_field_ids ( $field_group_id ) {
    global $wpdb;
    $bp = buddypress();
     
    $group_field_ids = $wpdb->get_col( "SELECT id FROM {$bp->profile->table_name_fields} WHERE group_id = {$field_group_id} AND parent_id = 0" );
    if ( empty( $group_field_ids ) || is_wp_error( $group_field_ids ) ) {
        return array();
    }
     
    $clone_field_ids = $wpdb->get_col( "SELECT object_id FROM {$bp->profile->table_name_meta} "
        . " WHERE object_type = 'field' AND object_id IN (". implode( ',', $group_field_ids ) .") AND meta_key = '_is_repeater_clone' AND meta_value = 1"
    );
     
    if ( empty( $clone_field_ids ) || is_wp_error( $clone_field_ids ) ) {
        $template_field_ids = $group_field_ids;
    } else {
        $template_field_ids = array_diff( $group_field_ids, $clone_field_ids );
    }
     
    return $template_field_ids;
}

Changelog

Changelog
Version Description
BuddyBoss 1.0.0 Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.