WC_Report_Customers::get_chart_legend() public WC 1.0
Get the legend for the main chart sidebar.
{} Это метод класса: WC_Report_Customers{}
Хуков нет.
Возвращает
Массив.
Использование
$WC_Report_Customers = new WC_Report_Customers(); $WC_Report_Customers->get_chart_legend();
Код WC_Report_Customers::get_chart_legend() WC Report Customers::get chart legend WC 5.0.0
public function get_chart_legend() {
$legend = array();
$legend[] = array(
/* translators: %s: signups amount */
'title' => sprintf( __( '%s signups in this period', 'woocommerce' ), '<strong>' . count( $this->customers ) . '</strong>' ),
'color' => $this->chart_colours['signups'],
'highlight_series' => 2,
);
return $legend;
}