WC_Email_Customer_Invoice::__construct()
Constructor.
Method of the class: WC_Email_Customer_Invoice{}
No Hooks.
Return
null
. Nothing (null).
Usage
$WC_Email_Customer_Invoice = new WC_Email_Customer_Invoice(); $WC_Email_Customer_Invoice->__construct();
WC_Email_Customer_Invoice::__construct() WC Email Customer Invoice:: construct code WC 9.3.1
public function __construct() { $this->id = 'customer_invoice'; $this->customer_email = true; $this->title = __( 'Order details', 'woocommerce' ); $this->description = __( 'Order detail emails can be sent to customers containing their order information and payment links.', 'woocommerce' ); $this->template_html = 'emails/customer-invoice.php'; $this->template_plain = 'emails/plain/customer-invoice.php'; $this->placeholders = array( '{order_date}' => '', '{order_number}' => '', ); // Call parent constructor. parent::__construct(); $this->manual = true; }