Yoast\WP\SEO\Actions\Importing
Abstract_Aioseo_Importing_Action::get_completed()
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() Abstract Aioseo Importing Action::get completed Yoast 24.3
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; }