ReportsGenerator::getColumns()
Get the table columns
Description
Source
File: bp-integrations/learndash/library/ReportsGenerator.php
64 65 66 67 68 69 70 71 72 73 | 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.