* Copyright (C) 2006-2010 Laurent Destailleur * Copyright (C) 2007 Patrick Raguin * Copyright (C) 2005-2011 Regis Houssin * * 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, see . */ /** * \file htdocs/categories/viewcat.php * \ingroup category * \brief Page to show a category card */ require("../main.inc.php"); require_once(DOL_DOCUMENT_ROOT."/categories/class/categorie.class.php"); require_once(DOL_DOCUMENT_ROOT."/core/lib/categories.lib.php"); $langs->load("categories"); $mesg = ''; $id=GETPOST('id'); $ref=GETPOST('ref'); $type=GETPOST('type'); $action=GETPOST('action'); $confirm=GETPOST('confirm'); if ($id == "") { dol_print_error('','Missing parameter id'); exit(); } // Security check $result = restrictedArea($user, 'categorie', $id); $object = new Categorie($db); $result=$object->fetch($id); if ($result <= 0) { dol_print_error($db,$object->error); exit; } $type=$object->type; /* * Actions */ if ($user->rights->categorie->supprimer && $action == 'confirm_delete' && $confirm == 'yes') { if ($object->delete($user) >= 0) { header("Location: ".DOL_URL_ROOT.'/categories/index.php?type='.$type); exit; } else { $mesg='
'.$object->error.'
'; } } /* * View */ $form = new Form($db); llxHeader("","",$langs->trans("Categories")); if ($mesg) print $mesg.'
'; if ($type == 0) $title=$langs->trans("ProductsCategoryShort"); elseif ($type == 1) $title=$langs->trans("SuppliersCategoryShort"); elseif ($type == 2) $title=$langs->trans("CustomersCategoryShort"); elseif ($type == 3) $title=$langs->trans("MembersCategoryShort"); else $title=$langs->trans("Category"); $head = categories_prepare_head($object,$type); dol_fiche_head($head, 'card', $title, 0, 'category'); /* * Confirmation suppression */ if ($action == 'delete') { $ret=$form->form_confirm($_SERVER["PHP_SELF"].'?id='.$object->id.'&type='.$type,$langs->trans('DeleteCategory'),$langs->trans('ConfirmDeleteCategory'),'confirm_delete'); if ($ret == 'html') print '
'; } print ''; // Path of category print ''; // Description print ''; print '
'; $ways = $object->print_all_ways(); print $langs->trans("Ref").''; print ''.$langs->trans("Root").' >> '; foreach ($ways as $way) { print $way."
\n"; } print '
'; print $langs->trans("Description").''; print nl2br($object->description); print '
'; print ''; /* * Boutons actions */ print "
\n"; if ($user->rights->categorie->creer) { $socid = ($object->socid ? "&socid=".$object->socid : ""); print "".$langs->trans("Modify").""; } if ($user->rights->categorie->supprimer) { print "".$langs->trans("Delete").""; } print "
"; $cats = $object->get_filles(); if ($cats < 0) { dol_print_error(); } else { print "
"; print "\n"; print ""; print "\n"; if (count($cats) > 0) { $var=true; foreach ($cats as $cat) { $i++; $var=!$var; print "\t\n"; print "\t\t\n"; print "\t\t".'\n"; /* if ($cat->visible == 1) { print "\t\t\n"; } else { print "\t\t\n"; } */ print "\t\n"; } } else { print ""; } print "
".$langs->trans("SubCats").''; if ($user->rights->categorie->creer) { print ""; print img_picto($langs->trans("Create"),'filenew'); print ""; } print "
"; print "".$cat->label.""; print "'.$cat->description."".$langs->trans("ContentsVisibleByAllShort")."".$langs->trans("ContentsNotVisibleByAllShort")."
'.$langs->trans("NoSubCat")."
\n"; } // List of products if ($object->type == 0) { $prods = $object->get_type("product","Product"); if ($prods < 0) { dol_print_error(); } else { print "
"; print "\n"; print '\n"; if (count($prods) > 0) { $i = 0; $var=true; foreach ($prods as $prod) { $i++; $var=!$var; print "\t\n"; print '\n"; print '\n"; print "\n"; } } else { print ""; } print "
'.$langs->trans("ProductsAndServices")."
'; if ($prod->type == 1) print img_object($langs->trans("ShowService"),"service"); else print img_object($langs->trans("ShowProduct"),"product"); print " ".$prod->ref."'.$prod->libelle."
'.$langs->trans("ThisCategoryHasNoProduct")."
\n"; } } if ($object->type == 1) { $socs = $object->get_type("societe","Fournisseur","fournisseur"); if ($socs < 0) { dol_print_error(); } else { print "
"; print "\n"; print "\n"; if (count($socs) > 0) { $i = 0; $var=true; foreach ($socs as $soc) { $i++; $var=!$var; print "\t\n"; print '\n"; print "\n"; } } else { print ""; } print "
".$langs->trans("Suppliers")."
'; print $soc->getNomUrl(1); print "
".$langs->trans("ThisCategoryHasNoSupplier")."
\n"; } } if($object->type == 2) { $socs = $object->get_type("societe","Societe"); if ($socs < 0) { dol_print_error(); } else { print "
"; print "\n"; print "\n"; if (count($socs) > 0) { $i = 0; $var=true; foreach ($socs as $key => $soc) { $i++; $var=!$var; print "\t\n"; print '\n"; print "\n"; } } else { print ""; } print "
".$langs->trans("Customers")."
'; print $soc->getNomUrl(1); print "
".$langs->trans("ThisCategoryHasNoCustomer")."
\n"; } } // List of members if ($object->type == 3) { require_once(DOL_DOCUMENT_ROOT."/adherents/class/adherent.class.php"); $prods = $object->get_type("member","Adherent"); if ($prods < 0) { dol_print_error($db,$object->error); } else { print "
"; print "\n"; print '\n"; if (count($prods) > 0) { $i = 0; $var=true; foreach ($prods as $key => $member) { $i++; $var=!$var; print "\t\n"; print '\n"; print '\n"; print '\n"; print "\n"; } } else { print ""; } print "
'.$langs->trans("Member")."
'; print $member->getNomUrl(1); print "'.$member->nom."'.$member->prenom."
'.$langs->trans("ThisCategoryHasNoMember")."
\n"; } } $db->close(); llxFooter(); ?>