* * 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 3 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 resource/card.php * \ingroup resource * \brief Page to manage resource object */ // Change this following line to use the correct relative path (../, ../../, etc) $res=0; $res=@include("../main.inc.php"); // For root directory if (! $res) $res=@include("../../main.inc.php"); // For "custom" directory if (! $res) die("Include of main fails"); require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php'; require_once DOL_DOCUMENT_ROOT.'/resource/class/dolresource.class.php'; require_once DOL_DOCUMENT_ROOT.'/resource/class/html.formresource.class.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/resource.lib.php'; require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php'; // Load traductions files requiredby by page $langs->load("resource"); $langs->load("companies"); $langs->load("other"); $langs->load("main"); // Get parameters $id = GETPOST('id','int'); $action = GETPOST('action','alpha'); $ref = GETPOST('ref'); $description = GETPOST('description'); $confirm = GETPOST('confirm'); $fk_code_type_resource = GETPOST('fk_code_type_resource','alpha'); // Protection if external user if ($user->societe_id > 0) { accessforbidden(); } if (! $user->rights->resource->read) accessforbidden(); $object = new Dolresource($db); $objectFetchRes = $object->fetch($id); if (! ($objectFetchRes > 0)) dol_print_error($db, $object->error); $extrafields = new ExtraFields($db); // fetch optionals attributes and labels $extralabels=$extrafields->fetch_name_optionals_label($object->table_element); $hookmanager->initHooks(array('resource_card','globalcard')); $parameters=array('resource_id'=>$id); $reshook=$hookmanager->executeHooks('doActions',$parameters,$object,$action); // Note that $action and $object may have been modified by some hooks if ($reshook < 0) setEventMessages($hookmanager->error, $hookmanager->errors, 'errors'); if (empty($reshook)) { /******************************************************************* * ACTIONS ********************************************************************/ if ($action == 'update' && ! $_POST["cancel"] && $user->rights->resource->write) { $error=0; if (empty($ref)) { $error++; setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentities("Ref")), null, 'errors'); } if (! $error) { $res = $object->fetch($id); if ( $res > 0 ) { $object->ref = $ref; $object->description = $description; $object->fk_code_type_resource = $fk_code_type_resource; // Fill array 'array_options' with data from add form $ret = $extrafields->setOptionalsFromPost($extralabels, $object); if ($ret < 0) { $error ++; } $result=$object->update($user); if ($result > 0) { Header("Location: ".$_SERVER['PHP_SELF']."?id=".$object->id); exit; } else { setEventMessages($object->error, $object->errors, 'errors'); $action='edit'; } } else { setEventMessages($object->error, $object->errors, 'errors'); $action='edit'; } } else { $action='edit'; } } if ($action == 'confirm_delete_resource' && $user->rights->resource->delete && $confirm === 'yes') { $res = $object->fetch($id); if($res > 0) { $result = $object->delete($id); if ($result >= 0) { setEventMessages($langs->trans('RessourceSuccessfullyDeleted'), null, 'mesgs'); Header('Location: '.DOL_URL_ROOT.'/resource/list.php'); exit; } else { setEventMessages($object->error, $object->errors, 'errors'); } } else { setEventMessages($object->error, $object->errors, 'errors'); } } } /*************************************************** * VIEW * * Put here all code to build page ****************************************************/ $pagetitle = $langs->trans('ResourceCard'); llxHeader('',$pagetitle,''); $form = new Form($db); $formresource = new FormResource($db); if ( $objectFetchRes > 0 ) { $head=resource_prepare_head($object); if ($action == 'edit' ) { if ( ! $user->rights->resource->write ) accessforbidden('',0); /*--------------------------------------- * Edit object */ print '
'; print ''; print ''; print ''; dol_fiche_head($head, 'resource', $langs->trans("ResourceSingular"),0,'resource'); print ''; // Ref print ''; print ''; // Type print ''; print ''; // Description print ''; print ''; // Other attributes $parameters=array('objectsrc' => $objectsrc); $reshook=$hookmanager->executeHooks('formObjectOptions',$parameters,$object,$action); // Note that $action and $object may have been modified by hook print $hookmanager->resPrint; if (empty($reshook) && ! empty($extrafields->attribute_label)) { print $object->showOptionals($extrafields,'edit'); } print '
'.$langs->trans("ResourceFormLabel_ref").'
'.$langs->trans("ResourceType").''; $ret = $formresource->select_types_resource($object->fk_code_type_resource,'fk_code_type_resource','',2); print '
'.$langs->trans("Description").''; print ''; print '
'; dol_fiche_end(); print '
'; print '   '; print ''; print '
'; print '
'; } else { dol_fiche_head($head, 'resource', $langs->trans("ResourceSingular"), -1, 'resource'); $formconfirm = ''; // Confirm deleting resource line if ($action == 'delete') { $formconfirm = $form->formconfirm("card.php?&id=".$id,$langs->trans("DeleteResource"),$langs->trans("ConfirmDeleteResource"),"confirm_delete_resource",'','',1); } // Print form confirm print $formconfirm; $linkback = '' . $langs->trans("BackToList") . ''; $morehtmlref='
'; $morehtmlref.='
'; dol_banner_tab($object, 'id', $linkback, 1, 'rowid', 'ref', $morehtmlref); print '
'; print '
'; /*--------------------------------------- * View object */ print ''; // Resource type print ''; print ''; print ''; print ''; // Description print ''; print ''; print ''; // Other attributes include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_view.tpl.php'; print ''; print '
' . $langs->trans("ResourceType") . ''; print $object->type_label; print '
' . $langs->trans("ResourceFormLabel_description") . ''; print $object->description; print '
'; print '
'; print '

'; dol_fiche_end(); } /* * Boutons actions */ print '
'; $parameters = array(); $reshook = $hookmanager->executeHooks('addMoreActionsButtons', $parameters, $object, $action); // Note that $action and $object may have been // modified by hook if (empty($reshook)) { if ($action != "edit" ) { // Edit resource if($user->rights->resource->write) { print '
'; print ''.$langs->trans('Modify').''; print '
'; } } if ($action != "delete" && $action != "edit") { // Delete resource if($user->rights->resource->delete) { print '
'; print ''.$langs->trans('Delete').''; print '
'; } } } print '
'; } else { dol_print_error(); } // End of page llxFooter(); $db->close();