Subtitles::downloadRow PHP Method

downloadRow() private method

private downloadRow ( $row )
    private function downloadRow($row)
    {
        if (!$row || !file_exists($this->subsDir . $row["filnamn"])) {
            header($_SERVER["SERVER_PROTOCOL"] . " 404 Not Found");
            header("Status: 404 Not Found");
            exit;
        }
        header('Content-Disposition: attachment; filename="' . $row["filnamn"] . '"');
        echo file_get_contents($this->subsDir . $row["filnamn"]);
    }