BP_Groups_List_Table::get_column_info()
Get an array of all the columns on the page.
Description Description
Return Return
(array) Array of column headers.
Source Source
File: bp-groups/classes/class-bp-groups-list-table.php
public function get_column_info() {
$this->_column_headers = array(
$this->get_columns(),
array(),
$this->get_sortable_columns(),
$this->get_default_primary_column_name(),
);
return $this->_column_headers;
}
Changelog Changelog
| Version | Description |
|---|---|
| 1.7.0 | Introduced. |