BP_XProfile_Group::populate( int $id )

Populate a profile field group.


Description Description


Parameters Parameters

$id

(Required) Field group ID.


Top ↑

Return Return

(boolean)


Top ↑

Source Source

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

91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
public function populate( $id ) {
 
    // Get this group.
    $group = self::get( array(
        'profile_group_id' => $id
    ) );
 
    // Bail if group not found.
    if ( empty( $group ) ) {
        return false;
    }
 
    // Get the first array element.
    $group = reset( $group );
 
    // Set object properties.
    $this->id          = $group->id;
    $this->name        = $group->name;
    $this->description = $group->description;
    $this->can_delete  = $group->can_delete;
    $this->group_order = $group->group_order;
}

Top ↑

Changelog Changelog

Changelog
Version Description
1.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.