* Copyright (C) 2004 Laurent Destailleur * * 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(); if ($action == 'add') { $groupart = new Groupart($db); $groupart->nom = $nom; $groupart->desc = $desc; $groupart->grar = $grar; $id = $groupart->create($user); } if ($action == 'update') { $groupart = new Groupart($db); $groupart->nom = $nom; $groupart->desc = $desc; $groupart->grar = $grar; $groupart->update($id, $user); } if ($action == 'updateosc') { $groupart = new Groupart($db); $result = $groupart->fetch($id); $groupart->updateosc($user); } /* * * */ if ($action == 'create') { print "
\n"; print ""; print '
Nouvel Artiste/Groupe

'; print ''; print ""; print ''; print ''; print '"; print ''; print '
Nom
Artiste/Groupe
'.$langs->trans("Description").''; print '
 
'; print '
'; } else { if ($id) { $groupart = new Groupart($db); $result = $groupart->fetch($id); if ( $result ) { print '
Fiche Artiste/Groupe

'; print ''; print ""; print "\n"; print ""; print "\n"; print ''; $gas = $groupart->liste_albums(); print '\n"; print "
Nom".$groupart->nom."
Groupe/Artiste".ucfirst(strtolower(strtoupper($groupart->grar)))."
'.$langs->trans("Description").''.nl2br($groupart->desc).'
Album(s)
    '; foreach ($gas as $key => $value) { print '
  • '.$value."
  • "; } print "
"; } if ($action == 'edit') { if ($groupart->grar == 'artiste') { $grar_opt = 'Groupe'; } else { $grar_opt = 'Artiste'; } print '
Edition de la fiche produit : '.$groupart->ref.'

'; print "
\n"; print ""; print ''; print ''; print ''; print '"; print ''; print '
Nom
Artiste/Groupe
'.$langs->trans("Description").''; print '
 
'; print '
'; } } else { print "Error"; } } /* ************************************************************************** */ /* */ /* Barre d'action */ /* */ /* ************************************************************************** */ print '
'; print ''; print ''; print ''; if ($action == 'create') { print ''; } else { print ''; } print ''; print '
-[Update Osc]--['.$langs->trans("Edit").']-

'; $db->close(); llxFooter("Dernière modification $Date$ révision $Revision$"); ?>