Automattic\WooCommerce\Admin
ReportCSVEmail::get_content_html() public WC 1.0
Get content html.
{} Это метод класса: ReportCSVEmail{}
Хуков нет.
Возвращает
Строку
. Ничего.
Использование
$ReportCSVEmail = new ReportCSVEmail(); $ReportCSVEmail->get_content_html();
Код ReportCSVEmail::get_content_html() ReportCSVEmail::get content html WC 5.2.2
public function get_content_html() {
return wc_get_template_html(
$this->template_html,
array(
'report_name' => $this->report_type,
'download_url' => $this->download_url,
'email_heading' => $this->get_heading(),
'sent_to_admin' => true,
'plain_text' => false,
'email' => $this,
),
'',
$this->template_base
);
}