phpbb\search\fulltext_sphinx::index_created PHP Method

index_created() public method

Returns true if the sphinx table was created
public index_created ( $allow_new_files = true ) : boolean
return boolean true if sphinx table was created
    public function index_created($allow_new_files = true)
    {
        $created = false;
        if ($this->db_tools->sql_table_exists(SPHINX_TABLE)) {
            $created = true;
        }
        return $created;
    }