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)


Top ↑

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

	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.28.0 This method has been deprecated.
3.15.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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





Permalink: