WC_Email_Customer_Partially_Refunded_Order::get_option_keypublicWC 2.6.0

Return the name of the option in the WP DB.

Method of the class: WC_Email_Customer_Partially_Refunded_Order{}

No Hooks.

Returns

String.

Usage

$WC_Email_Customer_Partially_Refunded_Order = new WC_Email_Customer_Partially_Refunded_Order();
$WC_Email_Customer_Partially_Refunded_Order->get_option_key();

Changelog

Since 2.6.0 Introduced.

WC_Email_Customer_Partially_Refunded_Order::get_option_key() code WC 10.7.0

public function get_option_key() {
	$id = 'customer_refunded_order';
	// we need to continue using the parent class's id because we want to maintain backwards compatibility
	// and allow the parent class continue managing the settings options for this class.
	// We can remove this once we have migrated all the settings options to this class.
	return $this->plugin_id . $id . '_settings';
}