Yoast\WP\SEO\Actions\Importing

Abstract_Aioseo_Importing_Action::get_completed()publicYoast 1.0

Returns the stored state of completedness.

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

Хуков нет.

Возвращает

int. The stored state of completedness.

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

$Abstract_Aioseo_Importing_Action = new Abstract_Aioseo_Importing_Action();
$Abstract_Aioseo_Importing_Action->get_completed();

Код Abstract_Aioseo_Importing_Action::get_completed() Yoast 22.4

public function get_completed() {
	$completed_id          = $this->get_completed_id();
	$importers_completions = $this->options->get( 'importing_completed', [] );

	return ( isset( $importers_completions[ $completed_id ] ) ) ? $importers_completions[ $completed_id ] : false;
}