LLMS_Table_Course_Students::get_export_title( array $args = array() )
Allow customization of the title for export files
Parameters Parameters
- $args
-
(array) (Optional) arguments passed from table to csv processor
Default value: array()
Return Return
(string)
Source Source
File: includes/admin/reporting/tables/llms.table.course.students.php
250 251 252 253 254 255 256 | public function get_export_title( $args = array () ) { $title = $this ->get_title(); if ( isset( $args [ 'course_id' ] ) ) { $title = get_the_title( $args [ 'course_id' ] ) . ' ' . $title ; } return apply_filters( 'llms_table_get_' . $this ->id . '_export_title' , $title ); } |
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.15.0 | Introduced. |