Automattic\WooCommerce\Internal\Admin\Orders

Edit::set_current_action()publicWC 1.0

Set the current action for the form.

Method of the class: Edit{}

No Hooks.

Return

null. Nothing (null).

Usage

$Edit = new Edit();
$Edit->set_current_action( $action );
$action(string) (required)
Action name.

Edit::set_current_action() code WC 8.7.0

public function set_current_action( string $action ) {
	$this->current_action = $action;
}