Automattic\WooCommerce\Internal\CLI\Migrator\Lib

ImportSession::set_original_argumentspublicWC 1.0

Save the original command arguments for session resumption.

Метод класса: ImportSession{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$ImportSession = new ImportSession();
$ImportSession->set_original_arguments( $args );
$args(массив) (обязательный)
The original command arguments.

Код ImportSession::set_original_arguments() WC 10.5.2

public function set_original_arguments( array $args ) {
	update_post_meta( $this->post_id, 'original_arguments', $args );
}