LLMS_Abstract_Exportable_Admin_Table::get_export_file_name( array $args = array() )
Get the file name for an export file
Description Description
Parameters Parameters
- $args
-
(array) (Optional) arguments passed from table to csv processor
Default value: array()
Return Return
(string)
Source Source
File: includes/abstracts/llms.abstract.exportable.admin.table.php
public function get_export_file_name( $args = array() ) { $title = sprintf( '%1$s_export_%2$s_%3$s', sanitize_title( $this->get_export_title( $args ), 'llms-' . $this->id ), current_time( 'Y-m-d' ), wp_generate_password( 8, false, false ) ); return apply_filters( 'llms_table_get_' . $this->id . '_export_file_name', $title ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.15.0 | Introduced. |
User Contributed Notes User Contributed Notes
Permalink: