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


Top ↑

Return Return

(void)


Top ↑

Source Source

File: libraries/lifterlms-rest/includes/admin/tables/class-llms-rest-table-webhooks.php

104
105
106
107
108
109
110
111
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();
 
}


Top ↑

Changelog Changelog

Changelog
Version Description
1.0.0-beta.1 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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