ReportsGenerator::getColumns()
Get the table columns
Description
Source
File: bp-integrations/learndash/library/ReportsGenerator.php
public function getColumns()
{
$columns = array_map(function($column) {
$column = apply_filters('bp_ld_sync/report_column', $column, $this->args);
return apply_filters("bp_ld_sync/report_column/step={$this->args['step']}", $column, $this->args);
}, $this->columns());
$columns = apply_filters('bp_ld_sync/report_columns', $columns, $this->args);
return apply_filters("bp_ld_sync/report_columns/step={$this->args['step']}", $columns, $this->args);
}
Changelog
| Version | Description |
|---|---|
| BuddyBoss 1.0.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.