LLMS_Admin_Tool_Limited_Billing_Order_Locator::get_csv()

Retrieve a list of orders.


Return Return

(int[])


Top ↑

Source Source

File: includes/admin/tools/class-llms-admin-tool-limited-billing-order-locator.php

239
240
241
242
243
244
245
246
247
248
249
protected function get_csv() {
 
    $csv = wp_cache_get( $this->id, 'llms_tool_data' );
    if ( ! $csv ) {
        $csv = $this->generate_csv();
        wp_cache_set( $this->id, $csv, 'llms_tool_data' );
    }
 
    return $csv;
 
}


Top ↑

Changelog Changelog

Changelog
Version Description
5.3.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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