BP_Groups_Group::get_admins()
Get a list of the group’s admins.
Description Description
Used to provide cache-friendly access to the ‘admins’ property of the group object.
Return Return
(array|null)
Source Source
File: bp-groups/classes/class-bp-groups-group.php
protected function get_admins() { if ( isset( $this->admins ) ) { return $this->admins; } $this->set_up_admins_and_mods(); return $this->admins; }
Changelog Changelog
Version | Description |
---|---|
2.7.0 | Introduced. |