LLMS_Analytics_Refunds_Widget::set_query()


Source Source

File: includes/admin/reporting/widgets/class.llms.analytics.widget.refunds.php

41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
public function set_query() {
 
    $this->set_order_data_query(
        array(
            'date_field'     => 'post_modified',
            'query_function' => 'get_results',
            'select'         => array(
                'orders.post_modified AS date',
            ),
            'statuses'       => array(
                'llms-refunded',
            ),
        )
    );
 
}

Top ↑

User Contributed Notes User Contributed Notes

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