Optim: Suppression fichier /comm/docsoc.php rendu obsolete par /docsop.php
This commit is contained in:
parent
2f1f85a692
commit
a948cb2dda
@ -1,151 +0,0 @@
|
|||||||
<?PHP
|
|
||||||
/* Copyright (C) 2002-2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
||||||
*
|
|
||||||
* 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.
|
|
||||||
*
|
|
||||||
* $Id$
|
|
||||||
* $Source$
|
|
||||||
*/
|
|
||||||
require("./pre.inc.php");
|
|
||||||
|
|
||||||
llxHeader();
|
|
||||||
|
|
||||||
$mesg = "";
|
|
||||||
|
|
||||||
$upload_dir = SOCIETE_OUTPUTDIR . "/" . $socid ;
|
|
||||||
|
|
||||||
if (! is_dir($upload_dir))
|
|
||||||
{
|
|
||||||
umask(0);
|
|
||||||
if (! mkdir($upload_dir, 0755))
|
|
||||||
{
|
|
||||||
print "Impossible de créer $upload_dir";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( $sendit )
|
|
||||||
{
|
|
||||||
if (is_dir($upload_dir))
|
|
||||||
{
|
|
||||||
|
|
||||||
if (doliMoveFileUpload($_FILES['userfile']['tmp_name'], $upload_dir . "/" . $_FILES['userfile']['name']))
|
|
||||||
{
|
|
||||||
$mesg = "Le fichier est valide, et a été téléchargé
|
|
||||||
avec succès.\n";
|
|
||||||
//print_r($_FILES);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$mesg = "Le fichier n'a pas été téléchargé";
|
|
||||||
// print_r($_FILES);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( $error_msg )
|
|
||||||
{
|
|
||||||
echo "<B>$error_msg</B><BR><BR>";
|
|
||||||
}
|
|
||||||
if ($action=='delete')
|
|
||||||
{
|
|
||||||
$file = $upload_dir . "/" . urldecode($urlfile);
|
|
||||||
dol_delete_file($file);
|
|
||||||
$mesg = "Le fichier a été supprimé";
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
*
|
|
||||||
* Mode fiche
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
if ($socid > 0)
|
|
||||||
{
|
|
||||||
$societe = new Societe($db);
|
|
||||||
if ($societe->fetch($socid))
|
|
||||||
{
|
|
||||||
/*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
print "<table width=\"100%\" border=\"0\" cellspacing=\"1\">\n";
|
|
||||||
|
|
||||||
print "<tr><td><div class=\"titre\">Documents associés à l'entreprise : $societe->nom</div></td>";
|
|
||||||
print "<td align=\"center\"><a href=\"fiche.php?socid=$societe->id\">Commercial</a></td>";
|
|
||||||
print "<td align=\"center\"><a href=\"../compta/fiche.php?socid=$societe->id\">Compta</a></td>";
|
|
||||||
print "</tr></table>";
|
|
||||||
/*
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
echo '<FORM NAME="userfile" ACTION="docsoc.php?socid='.$socid.'" ENCTYPE="multipart/form-data" METHOD="POST">';
|
|
||||||
print '<input type="hidden" name="max_file_size" value="2000000">';
|
|
||||||
print '<input type="file" name="userfile" size="40" maxlength="80">';
|
|
||||||
print '<BR>';
|
|
||||||
print '<input type="submit" value="Upload File!" name="sendit">';
|
|
||||||
print '<input type="submit" value="Cancel" name="cancelit"><BR>';
|
|
||||||
print '</FORM>';
|
|
||||||
|
|
||||||
print $mesg;
|
|
||||||
|
|
||||||
clearstatcache();
|
|
||||||
|
|
||||||
$handle=opendir($upload_dir);
|
|
||||||
|
|
||||||
if ($handle)
|
|
||||||
{
|
|
||||||
|
|
||||||
print '<table width="100%" border="1" cellpadding="3" cellspacing="0">';
|
|
||||||
|
|
||||||
while (($file = readdir($handle))!==false)
|
|
||||||
{
|
|
||||||
if (!is_dir($dir.$file) && substr($file, 0, 1) <> '.' && substr($file, 0, 3) <> 'CVS')
|
|
||||||
{
|
|
||||||
print '<tr><td>';
|
|
||||||
echo '<a href="'.DOL_URL_ROOT.'/document/societe/'.$socid.'/'.$file.'">'.$file.'</a>';
|
|
||||||
print "</td>\n";
|
|
||||||
|
|
||||||
print '<td align="right">'.filesize($upload_dir."/".$file). ' bytes</td>';
|
|
||||||
print '<td align="right">'.strftime("%d %b %Y %H:%M:%S",filemtime($upload_dir."/".$file)).'</td>';
|
|
||||||
|
|
||||||
print '<td>';
|
|
||||||
echo '<a href="'.$PHP_SELF.'?socid='.$socid.'&action=delete&urlfile='.urlencode($file).'">Delete</a>';
|
|
||||||
print "</td></tr>\n";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
print "</table>";
|
|
||||||
|
|
||||||
closedir($handle);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
print "<p>Impossible d'ouvrir : <b>".$upload_dir."</b>";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
print $db->error() . "<br>" . $sql;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
print "Erreur";
|
|
||||||
}
|
|
||||||
$db->close();
|
|
||||||
|
|
||||||
llxFooter("<em>Dernière modification $Date$ révision $Revision$</em>");
|
|
||||||
?>
|
|
||||||
Loading…
Reference in New Issue
Block a user