WC_Email_Customer_POS_Completed_Order::get_content_plain
Get content plain.
Метод класса: WC_Email_Customer_POS_Completed_Order{}
Хуков нет.
Возвращает
Строку
.
Использование
$WC_Email_Customer_POS_Completed_Order = new WC_Email_Customer_POS_Completed_Order(); $WC_Email_Customer_POS_Completed_Order->get_content_plain();
Код WC_Email_Customer_POS_Completed_Order::get_content_plain() WC Email Customer POS Completed Order::get content plain WC 9.9.5
public function get_content_plain() { $this->add_pos_customizations(); $content = wc_get_template_html( $this->template_plain, array( 'order' => $this->object, 'email_heading' => $this->get_heading(), 'additional_content' => $this->get_additional_content(), 'sent_to_admin' => false, 'plain_text' => true, 'email' => $this, ) ); $this->remove_pos_customizations(); return $content; }