WC_Report_Customers::get_chart_widgets() public WC 1.0
Get chart widgets.
{} Это метод класса: WC_Report_Customers{}
Хуков нет.
Возвращает
Массив.
Использование
$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 WC 4.9.1
public function get_chart_widgets() {
$widgets = array();
$widgets[] = array(
'title' => '',
'callback' => array( $this, 'customers_vs_guests' ),
);
return $widgets;
}