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

	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.