phpbb\search\fulltext_sphinx::delete_index PHP Method

delete_index() public method

Drop sphinx table
public delete_index ( $acp_module, $u_action ) : string | boolean
return string | boolean error string is returned incase of errors otherwise false
    public function delete_index($acp_module, $u_action)
    {
        if (!$this->index_created()) {
            return false;
        }
        $this->db_tools->sql_table_drop(SPHINX_TABLE);
        return false;
    }