mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-19 16:02:15 +00:00
Removed deprecated File
This commit is contained in:
@@ -1,77 +0,0 @@
|
||||
<?php
|
||||
/* Copyright (C) 2006 Technikum-Wien
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as
|
||||
* published by the Free Software Foundation; either version 2 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||
*
|
||||
* Authors: Christian Paminger <christian.paminger@technikum-wien.at>,
|
||||
* Andreas Oesterreicher <andreas.oesterreicher@technikum-wien.at>
|
||||
* Rudolf Hangl < rudolf.hangl@technikum-wien.at >
|
||||
* Gerald Simane-Sequens < gerald.simane-sequens@technikum-wien.at >
|
||||
*/
|
||||
|
||||
/**
|
||||
* Erstellt ein Zip Archiv des Download-Bereichs und leitet dann zum Download weiter
|
||||
* @create 20-03-2006
|
||||
* Aufruf: zipdownload.php?stg=255&sem=1$short=eng
|
||||
*/
|
||||
|
||||
require_once('../../../config/cis.config.inc.php');
|
||||
require_once('../../../include/studiengang.class.php');
|
||||
require_once('../../../include/functions.inc.php');
|
||||
|
||||
//Gueltigkeit der Parameter pruefen
|
||||
if(!isset($_GET['stg']) || !is_numeric($_GET['stg']))
|
||||
{
|
||||
die('Fehler bei der Parameteruebergabe');
|
||||
}
|
||||
|
||||
if(!isset($_GET['sem']) || !is_numeric($_GET['sem']))
|
||||
{
|
||||
die('Fehler bei der Parameteruebergabe');
|
||||
}
|
||||
|
||||
if(!isset($_GET['short']) || mb_strstr("..",$_GET['short'],false))
|
||||
{
|
||||
die("Fehler bei der Parameteruebergabe");
|
||||
}
|
||||
|
||||
$stg = $_GET['stg'];
|
||||
$sem = $_GET['sem'];
|
||||
$short = $_GET['short'];
|
||||
|
||||
//Studiengangskuerzel holen
|
||||
$stg_obj = new studiengang();
|
||||
$stg_obj->load($stg);
|
||||
|
||||
$kurzbz = mb_strtolower($stg_obj->kuerzel);
|
||||
|
||||
//Pfade bauen
|
||||
$pfad = '../../../documents/'.$kurzbz.'/'.$sem.'/'.$short.'/download/';
|
||||
$filename = $kurzbz.'_'.$sem.'_'.$short.'_download.zip';
|
||||
$pfad2 = '../../../documents/'.$kurzbz.'/'.$sem.'/'.$short.'/';
|
||||
|
||||
//Pfad wechseln
|
||||
chdir($pfad);
|
||||
|
||||
//File loeschen falls es existiert
|
||||
if(file_exists('../'.$filename))
|
||||
exec("rm ../$filename");
|
||||
|
||||
//Zip File erstellen
|
||||
exec("zip -r ../".$filename." ./*");
|
||||
|
||||
//Auf Zip File Verweisen
|
||||
header("Location: $pfad2$filename");
|
||||
?>
|
||||
@@ -189,10 +189,6 @@ function checkZeilenUmbruch()
|
||||
$text.= '<br>';
|
||||
$text.= "<a class='Item' target='_blank' href='upload.php?course_id=$studiengang_kz&term_id=$semester&short=$short'>".$p->t('lehre/upload')."</a>";
|
||||
$text.= ' ';
|
||||
if(isset($dir_empty) && $dir_empty == false)
|
||||
$text.= "<a class='Item' title='".$p->t('lehre/ziparchivTitle')."' href='zipdownload.php?stg=$studiengang_kz&sem=$semester&short=$short' target='_blank'>".$p->t('lehre/ziparchiv')."</a>";
|
||||
else
|
||||
$text.= $p->t('lehre/ziparchiv');
|
||||
}
|
||||
|
||||
$menu[]=array
|
||||
|
||||
Reference in New Issue
Block a user