LLMS_AJAX_Handler::get_admin_table_data( array $request )
Reload admin tables
Description Description
Parameters Parameters
- $request
-
(array) (Required) post data ($_REQUEST)
Return Return
(array)
Source Source
File: includes/class.llms.ajax.handler.php
public static function get_admin_table_data( $request ) { require_once 'admin/reporting/class.llms.admin.reporting.php'; $handler = 'LLMS_Table_' . $request['handler']; LLMS_Admin_Reporting::includes(); if ( class_exists( $handler ) ) { $table = new $handler(); $table->get_results( $request ); return array( 'args' => json_encode( $table->get_args() ), 'thead' => trim( $table->get_thead_html() ), 'tbody' => trim( $table->get_tbody_html() ), 'tfoot' => trim( $table->get_tfoot_html() ), ); } else { return false; } }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.2.0 | Introduced. |
User Contributed Notes User Contributed Notes
Permalink: