LLMS_Abstract_Exportable_Admin_Table::get_export_file_url( string $file_path )
Retrieve the download URL to an export file
Parameters Parameters
- $file_path
-
(string) (Required) Full path to a download file.
Return Return
(string)
Source Source
File: includes/abstracts/llms.abstract.exportable.admin.table.php
protected function get_export_file_url( $file_path ) { return add_query_arg( array( 'llms-dl-export' => basename( $file_path ), ), admin_url( 'admin.php' ) ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.28.1 | Unknown. |
3.28.0 | Introduced. |