Automattic\WooCommerce\Admin

ReportCSVEmail::get_content_html()publicWC 1.0

Get content html.

Метод класса: ReportCSVEmail{}

Хуков нет.

Возвращает

Строку.

Использование

$ReportCSVEmail = new ReportCSVEmail();
$ReportCSVEmail->get_content_html();

Код ReportCSVEmail::get_content_html() WC 8.7.0

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
	);
}