* Copyright (C) 2004-2007 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$ */ /** \file htdocs/adherents/note.php \ingroup member \brief Fiche de notes sur un adherent \version $Revision$ */ require("./pre.inc.php"); require_once(DOL_DOCUMENT_ROOT.'/lib/member.lib.php'); require_once(DOL_DOCUMENT_ROOT.'/adherents/adherent.class.php'); $action=isset($_GET["action"])?$_GET["action"]:(isset($_POST["action"])?$_POST["action"]:""); $id=isset($_GET["id"])?$_GET["id"]:(isset($_POST["id"])?$_POST["id"]:""); $user->getrights('adherent'); $langs->load("companies"); $langs->load("members"); $langs->load("bills"); if (!$user->rights->adherent->lire) accessforbidden(); $adh = new Adherent($db); $adh->id = $id; $adh->fetch($id); /******************************************************************************/ /* Actions */ /******************************************************************************/ if ($_POST["action"] == 'update' && $user->rights->adherent->creer && ! $_POST["cancel"]) { $db->begin(); $res=$adh->update_note($_POST["note"],$user); if ($res < 0) { $mesg='
'.$adh->error.'
'; $db->rollback(); } else { $db->commit(); } } /******************************************************************************/ /* Affichage fiche */ /******************************************************************************/ llxHeader(); $html = new Form($db); if ($id) { $head = member_prepare_head($adh); dolibarr_fiche_head($head, 'note', $langs->trans("Member")); if ($msg) print '
'.$msg.'
'; print "
"; print ''; // Reference print ''; print ''; print ''; // Nom print ''; print ''; // Prenom print ''; // Login print ''; // Note print ''; print '"; if ($action == 'edit') { print ''; } print "
'.$langs->trans('Ref').''; print $html->showrefnav($adh,'id'); print '
'.$langs->trans("Lastname").''.$adh->nom.' 
'.$langs->trans("Firstname").''.$adh->prenom.' 
'.$langs->trans("Login").''.$adh->login.' 
'.$langs->trans("Note").''; if ($action == 'edit' && $user->rights->adherent->creer) { print ""; print "id."\">"; if ($conf->fckeditor->enabled && $conf->global->FCKEDITOR_ENABLE_MEMBER) { // Editeur wysiwyg require_once(DOL_DOCUMENT_ROOT."/lib/doleditor.class.php"); $doleditor=new DolEditor('note',$adh->commentaire,280,'dolibarr_notes','In',true); $doleditor->Create(); } else { print ''; } } else { print nl2br($adh->commentaire); } print "
'; print ''; print '   '; print ''; print '
"; print "
\n"; /* * Actions */ print ''; print '
'; if ($user->rights->adherent->creer && $action != 'edit') { print "id&action=edit\">".$langs->trans('Edit').""; } print "
"; } $db->close(); llxFooter('$Date$ - $Revision$'); ?>