LLMS_Abstract_Exportable_Admin_Table::get_export_file_url( string $file_path )

Retrieve the download URL to an export file


Description Description


Parameters Parameters

$file_path

(string) (Required) full path to a download file.


Top ↑

Return Return

(string)


Top ↑

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

Top ↑

Changelog Changelog

Changelog
Version Description
3.28.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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





Permalink: