LLMS_REST_Table_Webhooks::get_results( array $args = array() )
Execute a query to retrieve results from the table
Parameters Parameters
- $args
-
(array) (Optional) Array of query args.
Default value: array()
Return Return
(void)
Source Source
File: libraries/lifterlms-rest/includes/admin/tables/class-llms-rest-table-webhooks.php
public function get_results( $args = array() ) { $args = wp_parse_args( $args, $this->set_args() ); $query = new LLMS_REST_Webhooks_Query( $args ); $this->tbody_data = $query->get_webhooks(); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
1.0.0-beta.1 | Introduced. |