WC_Email::get_email_type_options()
Email type options.
Метод класса: WC_Email{}
Хуков нет.
Возвращает
Массив
.
Использование
$WC_Email = new WC_Email(); $WC_Email->get_email_type_options();
Код WC_Email::get_email_type_options() WC Email::get email type options WC 9.2.3
public function get_email_type_options() { $types = array( 'plain' => __( 'Plain text', 'woocommerce' ) ); if ( class_exists( 'DOMDocument' ) ) { $types['html'] = __( 'HTML', 'woocommerce' ); $types['multipart'] = __( 'Multipart', 'woocommerce' ); } return $types; }