phpbb\search\fulltext_mysql::index_created PHP Method

index_created() public method

Returns true if both FULLTEXT indexes exist
public index_created ( )
    public function index_created()
    {
        if (empty($this->stats)) {
            $this->get_stats();
        }
        return isset($this->stats['post_subject']) && isset($this->stats['post_content']);
    }