LLMS_Analytics_Refunds_Widget
Refunds analytics widget class
Description Description
Locates number of refunded orders from a given date range by a given group of students.
Uses "post_modified" rather than "post_date" for date query.
Source Source
File: includes/admin/reporting/widgets/class.llms.analytics.widget.refunds.php
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | class LLMS_Analytics_Refunds_Widget extends LLMS_Analytics_Widget { public $charts = true; protected function get_chart_data() { return array ( 'type' => 'count' , 'header' => array ( 'id' => 'refunds' , 'label' => __( '# of Refunds' , 'lifterlms' ), 'type' => 'number' , ), ); } 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' , ), ) ); } protected function format_response() { if ( ! $this ->is_error() ) { return count ( $this ->get_results() ); } } } |
Expand full source code Collapse full source code View on GitHub
Methods Methods
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |