WC_Email_Customer_Refunded_Order::get_heading()
Get email heading.
Description Description
Return Return
(string)
Source Source
File: includes/emails/class-wc-email-customer-refunded-order.php
public function get_heading() { if ( $this->partial_refund ) { $heading = $this->get_option( 'heading_partial', $this->get_default_heading( true ) ); } else { $heading = $this->get_option( 'heading_full', $this->get_default_heading() ); } return apply_filters( 'woocommerce_email_heading_customer_refunded_order', $this->format_string( $heading ), $this->object, $this ); }