WC_Report_Customers::get_chart_widgets
Get chart widgets.
Method of the class: WC_Report_Customers{}
No Hooks.
Returns
Array.
Usage
$WC_Report_Customers = new WC_Report_Customers(); $WC_Report_Customers->get_chart_widgets();
WC_Report_Customers::get_chart_widgets() WC Report Customers::get chart widgets code WC 10.8.1
public function get_chart_widgets() {
$widgets = array();
$widgets[] = array(
'title' => '',
'callback' => array( $this, 'customers_vs_guests' ),
);
return $widgets;
}