WC_Settings_Emails::run_email_admin_options()protectedWC 1.0

Run the 'admin_options' method on a given email. This method exists to easy unit testing.

Method of the class: WC_Settings_Emails{}

No Hooks.

Return

null. Nothing (null).

Usage

// protected - for code of main (parent) or child class
$result = $this->run_email_admin_options( $email );
$email(object) (required)
The email object to run the method on.

WC_Settings_Emails::run_email_admin_options() code WC 8.7.0

protected function run_email_admin_options( $email ) {
	$email->admin_options();
}