WC_Email_Customer_Fulfillment_Updated::get_content_plainpublicWC 1.0

Get content plain.

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

Хуков нет.

Возвращает

Строку.

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

$WC_Email_Customer_Fulfillment_Updated = new WC_Email_Customer_Fulfillment_Updated();
$WC_Email_Customer_Fulfillment_Updated->get_content_plain();

Код WC_Email_Customer_Fulfillment_Updated::get_content_plain() WC 10.3.4

public function get_content_plain() {
	$this->maybe_init_fulfillment_for_preview( $this->object );
	return wc_get_template_html(
		$this->template_plain,
		array(
			'order'              => $this->object,
			'fulfillment'        => $this->fulfillment,
			'email_heading'      => $this->get_heading(),
			'additional_content' => $this->get_additional_content(),
			'sent_to_admin'      => false,
			'plain_text'         => true,
			'email'              => $this,
		)
	);
}