phpbb\search\fulltext_native::index_created PHP Method

index_created() public method

Returns true if both FULLTEXT indexes exist
public index_created ( )
    public function index_created()
    {
        if (!sizeof($this->stats)) {
            $this->get_stats();
        }
        return $this->stats['total_words'] && $this->stats['total_matches'] ? true : false;
    }