Warning: This method has been deprecated.
LLMS_Abstract_Exportable_Admin_Table::queue_export( $args = array() )
Queues an export for the table to be generated
Description Description
Return Return
(void)
Source Source
File: includes/abstracts/llms.abstract.exportable.admin.table.php
public function queue_export( $args = array() ) { llms_deprecated_function( 'LLMS_Admin_Table::queue_export()', '3.28.0' ); $args = $this->clean_args( $args ); foreach ( $args as $key => $val ) { $this->$key = $val; } do_action( 'llms_table_generate_csv', $this ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.28.0 | This method has been deprecated. |
3.15.0 | Introduced. |
User Contributed Notes User Contributed Notes
Permalink: