BP_XProfile_Field::get_children( bool $for_editing = false )

Get all child fields for this field ID.

Description

Parameters

$for_editing

(Optional) Whether or not the field is for editing.

Default value: false

Return

(array)

Source

File: bp-xprofile/classes/class-bp-xprofile-field.php

598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
public function get_children( $for_editing = false ) {
    global $wpdb;
 
    // This is done here so we don't have problems with sql injection.
    if ( empty( $for_editing ) && ( 'asc' === $this->order_by ) ) {
        $sort_sql = 'ORDER BY name ASC';
    } elseif ( empty( $for_editing ) && ( 'desc' === $this->order_by ) ) {
        $sort_sql = 'ORDER BY name DESC';
    } elseif ( $for_editing && ( 'desc' === $this->order_by ) ) {
        $sort_sql = 'ORDER BY name DESC';
    } elseif ( $for_editing && ( 'asc' === $this->order_by ) ) {
        $sort_sql = 'ORDER BY name ASC';
    } else {
        $sort_sql = 'ORDER BY option_order ASC';
    }
 
    // This eliminates a problem with getting all fields when there is no
    // id for the object.
    if ( empty( $this->id ) ) {
        $parent_id = - 1;
    } else {
        $parent_id = $this->id;
    }
 
    $bp  = buddypress();
    $sql = $wpdb->prepare( "SELECT * FROM {$bp->profile->table_name_fields} WHERE parent_id = %d AND group_id = %d {$sort_sql}", $parent_id, $this->group_id );
 
    $children = $wpdb->get_results( $sql );
 
    /**
     * Filters the found children for a field.
     *
     * @since BuddyPress 1.2.5
     * @since BuddyPress 3.0.0 Added the `$this` parameter.
     *
     * @param object $children Found children for a field.
     * @param bool $for_editing Whether or not the field is for editing.
     * @param BP_XProfile_Field $this Field object
     */
    return apply_filters( 'bp_xprofile_field_get_children', $children, $for_editing, $this );
}

Changelog

Changelog
Version Description
BuddyPress 1.2.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.