WC_Email_Customer_Note::get_content_html
Get content html.
Метод класса: WC_Email_Customer_Note{}
Хуков нет.
Возвращает
Строку.
Использование
$WC_Email_Customer_Note = new WC_Email_Customer_Note(); $WC_Email_Customer_Note->get_content_html();
Код WC_Email_Customer_Note::get_content_html() WC Email Customer Note::get content html WC 10.3.4
public function get_content_html() {
return wc_get_template_html(
$this->template_html,
array(
'order' => $this->object,
'email_heading' => $this->get_heading(),
'additional_content' => $this->get_additional_content(),
'customer_note' => $this->customer_note,
'sent_to_admin' => false,
'plain_text' => false,
'email' => $this,
)
);
}