You appear to be a bot. Output may be restricted
Description
Returns the stored state of completedness.
Usage
$int = Abstract_Aioseo_Importing_Action::get_completed();
Parameters
Returns
int The stored state of completedness.
Source
File name: wordpress-seo/src/actions/importing/abstract-aioseo-importing-action.php
Lines:
1 to 6 of 6
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; }