mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-26 03:11:21 +01:00
182 lines
4.5 KiB
PHP
182 lines
4.5 KiB
PHP
<?php
|
|
/* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
* Copyright (C) 2004 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
*
|
|
* 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");
|
|
|
|
if ($action == 'add') {
|
|
$editeur = new Editeur($db);
|
|
|
|
$editeur->nom = $nom;
|
|
|
|
$id = $editeur->create($user);
|
|
}
|
|
|
|
if ($action == 'addga') {
|
|
$editeur = new Editeur($db);
|
|
|
|
$editeur->linkga($id, $ga);
|
|
}
|
|
|
|
if ($action == 'update' && !$cancel)
|
|
{
|
|
$editeur = new Editeur($db);
|
|
|
|
$editeur->nom = $nom;
|
|
|
|
$editeur->update($id, $user);
|
|
}
|
|
|
|
if ($_POST["action"] == 'confirm_delete' && $_POST["confirm"] == yes)
|
|
{
|
|
$editeur = new Editeur($db);
|
|
$result = $editeur->fetch($id);
|
|
$editeur->delete();
|
|
Header("Location: index.php");
|
|
}
|
|
|
|
llxHeader();
|
|
|
|
/*
|
|
*
|
|
*
|
|
*/
|
|
if ($action == 'create')
|
|
{
|
|
|
|
print "<form action=\"fiche.php?id=$id\" method=\"post\">\n";
|
|
print '<input type="hidden" name="action" value="add">';
|
|
|
|
print '<div class="titre">Nouvel Editeur</div><br>';
|
|
|
|
print '<table border="1" width="100%" cellspacing="0" cellpadding="4">';
|
|
print "<tr>";
|
|
print '<td width="20%">Nom</td><td><input name="nom" size="40" value=""></td></tr>';
|
|
print '<tr><td> </td><td><input type="submit" value="Créer"></td></tr>';
|
|
print '</table>';
|
|
print '</form>';
|
|
|
|
|
|
}
|
|
else
|
|
{
|
|
if ($id)
|
|
{
|
|
|
|
$editeur = new Editeur($db);
|
|
$result = $editeur->fetch($id);
|
|
|
|
if ( $result )
|
|
{
|
|
$livres = $editeur->liste_livre();
|
|
|
|
/*
|
|
* Confirmation de la suppression de l'editeur
|
|
*
|
|
*/
|
|
|
|
if ($action == 'delete')
|
|
{
|
|
$htmls = new Form($db);
|
|
$htmls->form_confirm("fiche.php?id=$id","Supprimer un éditeur","Etes-vous sur de vouloir supprimer cet éditeur ?","confirm_delete");
|
|
}
|
|
|
|
/*
|
|
* Edition de la fiche
|
|
*
|
|
*/
|
|
|
|
if ($action == 'edit')
|
|
{
|
|
print '<div class="titre">Edition de la fiche Editeur : '.$editeur->titre.'</div><br>';
|
|
|
|
print "<form action=\"fiche.php?id=$id\" method=\"post\">\n";
|
|
print '<input type="hidden" name="action" value="update">';
|
|
|
|
print '<table class="border" width="100%">';
|
|
print "<tr>";
|
|
print '<td width="20%">Nom</td><td width="80%"><input name="nom" size="40" value="'.$editeur->nom.'"></td>';
|
|
|
|
print '<tr><td colspan="2" align="center"><input type="submit" value="'.$langs->trans("Save").'"> <input type="submit" value="'.$langs->trans("Cancel").'" name="cancel"></td></tr>';
|
|
|
|
print '</form>';
|
|
|
|
print '</table><hr>';
|
|
|
|
}
|
|
|
|
print '<div class="titre">Fiche Editeur : '.$editeur->titre.'</div><br>';
|
|
|
|
print '<table class="border" width="100%">';
|
|
print "<tr>";
|
|
print '<td width="20%">Nom</td><td width="80%">'.$editeur->nom.'</td></tr>';
|
|
|
|
print '<tr><td>Livres</td><td>';
|
|
|
|
foreach ($livres as $key => $value)
|
|
{
|
|
print '<a href="../livre/fiche.php?id='.$key.'">'.$value."<br>\n";
|
|
}
|
|
print "</td></tr>";
|
|
|
|
print "</table>";
|
|
|
|
|
|
|
|
}
|
|
else
|
|
{
|
|
print "Fetch failed";
|
|
}
|
|
|
|
|
|
}
|
|
else
|
|
{
|
|
print "Error";
|
|
}
|
|
}
|
|
|
|
/* ************************************************************************** */
|
|
/* */
|
|
/* Barre d'action */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
print '<div class="tabsAction">';
|
|
if ($action != 'create')
|
|
{
|
|
print '<a class="tabAction" href="fiche.php?action=edit&id='.$id.'">'.$langs->trans("Edit").'</a>';
|
|
}
|
|
|
|
if(sizeof($livres)==0 && $id)
|
|
{
|
|
print '<a class="tabAction" href="fiche.php?action=delete&id='.$id.'">'.$langs->trans("Delete").'</a>';
|
|
}
|
|
print '</div>';
|
|
|
|
|
|
$db->close();
|
|
|
|
llxFooter("<em>Dernière modification $Date$ révision $Revision$</em>");
|
|
?>
|