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()


Top ↑

Return Return

(string)


Top ↑

Source Source

File: includes/admin/reporting/tables/llms.table.course.students.php

	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 );
	}


Top ↑

Changelog Changelog

Changelog
Version Description
3.15.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.