123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405 |
- <?php
- /* Copyright (C) 2013-2014 Jean-François Ferry <jfefe@aternatik.fr>
- *
- * 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 <http://www.gnu.org/licenses/>.
- */
- /**
- * \file resource/card.php
- * \ingroup resource
- * \brief Page to manage resource object
- */
- require '../main.inc.php';
- 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/lib/company.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php';
- // Load translation files required by the page
- $langs->loadLangs(array('resource', 'companies', 'other', 'main'));
- // Get parameters
- $id = GETPOST('id','int');
- $action = GETPOST('action','alpha');
- $cancel = GETPOST('cancel','alpha');
- $ref = GETPOST('ref','alpha');
- $description = GETPOST('description');
- $confirm = GETPOST('confirm');
- $fk_code_type_resource = GETPOST('fk_code_type_resource','alpha');
- $country_id = GETPOST('country_id', 'int');
- // Protection if external user
- if ($user->socid > 0)
- {
- accessforbidden();
- }
- if( ! $user->rights->resource->read)
- {
- accessforbidden();
- }
- $object = new Dolresource($db);
- $extrafields = new ExtraFields($db);
- // fetch optionals attributes and labels
- $extralabels=$extrafields->fetch_name_optionals_label($object->table_element);
- /*******************************************************************
- * ACTIONS
- ********************************************************************/
- $hookmanager->initHooks(array('resource', '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))
- {
- if ($cancel)
- {
- if (! empty($backtopage))
- {
- header("Location: ".$backtopage);
- exit;
- }
- if ($action == 'add')
- {
- header("Location: ".DOL_URL_ROOT.'/resource/list.php');
- exit;
- }
- $action='';
- }
- if ($action == 'add' && $user->rights->resource->write)
- {
- if (! $cancel)
- {
- $error='';
- if (empty($ref))
- {
- setEventMessages($langs->trans("ErrorFieldRequired",$langs->transnoentities("Ref")), null, 'errors');
- $action = 'create';
- }
- else
- {
- $object->ref = $ref;
- $object->description = $description;
- $object->fk_code_type_resource = $fk_code_type_resource;
- $object->country_id = $country_id;
- // Fill array 'array_options' with data from add form
- $ret = $extrafields->setOptionalsFromPost($extralabels,$object);
- if ($ret < 0) $error++;
- $result=$object->create($user);
- if ($result > 0)
- {
- // Creation OK
- setEventMessages($langs->trans('ResourceCreatedWithSuccess'), null, 'mesgs');
- Header("Location: ".$_SERVER['PHP_SELF']."?id=".$object->id);
- exit;
- }
- else
- {
- // Creation KO
- setEventMessages($object->error, $object->errors, 'errors');
- $action = 'create';
- }
- }
- }
- else
- {
- Header("Location: list.php");
- exit;
- }
- }
- if ($action == 'update' && ! $cancel && $user->rights->resource->write)
- {
- $error=0;
- if (empty($ref))
- {
- setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentities("Ref")), null, 'errors');
- $error++;
- }
- if (! $error)
- {
- $res = $object->fetch($id);
- if ( $res > 0 )
- {
- $object->ref = $ref;
- $object->description = $description;
- $object->fk_code_type_resource = $fk_code_type_resource;
- $object->country_id = $country_id;
- // 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');
- $error++;
- }
- }
- else
- {
- setEventMessages($object->error, $object->errors, 'errors');
- $error++;
- }
- }
- if ($error)
- {
- $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
- ****************************************************/
- $title = $langs->trans($action == 'create' ? 'AddResource' : 'ResourceSingular');
- llxHeader('',$title,'');
- $form = new Form($db);
- $formresource = new FormResource($db);
- if ($action == 'create' || $object->fetch($id) > 0)
- {
- if ($action == 'create')
- {
- print load_fiche_titre($title,'','title_generic');
- dol_fiche_head('');
- }
- else
- {
- $head = resource_prepare_head($object);
- dol_fiche_head($head, 'resource', $title, -1, 'resource');
- }
- if ($action == 'create' || $action == 'edit')
- {
- if ( ! $user->rights->resource->write )
- accessforbidden('',0);
- // Create/Edit object
- print '<form action="'.$_SERVER["PHP_SELF"].'?id='.$id.'" method="POST">';
- print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
- print '<input type="hidden" name="action" value="'.($action == "create"?"add":"update").'">';
- print '<table class="border" width="100%">';
- // Ref
- print '<tr><td class="titlefieldcreate fieldrequired">'.$langs->trans("ResourceFormLabel_ref").'</td>';
- print '<td><input class="minwidth200" name="ref" value="'.($ref ? $ref : $object->ref).'" autofocus="autofocus"></td></tr>';
- // Type
- print '<tr><td>'.$langs->trans("ResourceType").'</td>';
- print '<td>';
- $ret = $formresource->select_types_resource($object->fk_code_type_resource,'fk_code_type_resource','',2);
- print '</td></tr>';
- // Description
- print '<tr><td class="tdtop">'.$langs->trans("Description").'</td>';
- print '<td>';
- require_once DOL_DOCUMENT_ROOT.'/core/class/doleditor.class.php';
- $doleditor = new DolEditor('description', ($description ? $description : $object->description), '', '200', 'dolibarr_notes', false);
- $doleditor->Create();
- print '</td></tr>';
- // Origin country
- print '<tr><td>'.$langs->trans("CountryOrigin").'</td><td>';
- print $form->select_country($object->country_id,'country_id');
- if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"),1);
- print '</td></tr>';
- // 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))
- {
- print $object->showOptionals($extrafields,'edit');
- }
- print '</table>';
- dol_fiche_end();
- print '<div class="center">';
- print '<input type="submit" class="button" name="save" value="' . $langs->trans($action == "create"?"Create":"Modify") . '">';
- print ' ';
- print '<input type="submit" class="button" name="cancel" value="' . $langs->trans("Cancel") . '">';
- print '</div>';
- print '</div>';
- print '</form>';
- }
- else
- {
- $formconfirm = '';
- // Confirm deleting resource line
- if ($action == 'delete')
- {
- $formconfirm = $form->formconfirm("card.php?&id=".$object->id,$langs->trans("DeleteResource"),$langs->trans("ConfirmDeleteResource"),"confirm_delete_resource",'','',1);
- }
- // Print form confirm
- print $formconfirm;
- $linkback = '<a href="' . DOL_URL_ROOT . '/resource/list.php' . (! empty($socid) ? '?id=' . $socid : '') . '">' . $langs->trans("BackToList") . '</a>';
- $morehtmlref='<div class="refidno">';
- $morehtmlref.='</div>';
- dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
- print '<div class="fichecenter">';
- print '<div class="underbanner clearboth"></div>';
- /*---------------------------------------
- * View object
- */
- print '<table width="100%" class="border">';
- // Resource type
- print '<tr>';
- print '<td class="titlefield">' . $langs->trans("ResourceType") . '</td>';
- print '<td>';
- print $object->type_label;
- print '</td>';
- print '</tr>';
- // Description
- print '<tr>';
- print '<td>' . $langs->trans("ResourceFormLabel_description") . '</td>';
- print '<td>';
- print $object->description;
- print '</td>';
- // Other attributes
- include DOL_DOCUMENT_ROOT . '/core/tpl/extrafields_view.tpl.php';
- print '</tr>';
- // Origin country code
- print '<tr>';
- print '<td>'.$langs->trans("CountryOrigin").'</td>';
- print '<td>';
- print getCountry($object->country_id,0,$db);
- print '</td>';
- print '</tr>';
- print '</table>';
- print '</div>';
- print '<div class="clearboth"></div><br>';
- dol_fiche_end();
- }
- /*
- * Boutons actions
- */
- print '<div class="tabsAction">';
- $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 != "create" && $action != "edit" )
- {
- // Edit resource
- if($user->rights->resource->write)
- {
- print '<div class="inline-block divButAction">';
- print '<a href="'.$_SERVER['PHP_SELF'].'?id='.$id.'&action=edit" class="butAction">'.$langs->trans('Modify').'</a>';
- print '</div>';
- }
- }
- if ($action != "delete" && $action != "create" && $action != "edit")
- {
- // Delete resource
- if($user->rights->resource->delete)
- {
- print '<div class="inline-block divButAction">';
- print '<a href="'.$_SERVER['PHP_SELF'].'?id='.$id.'&action=delete" class="butActionDelete">'.$langs->trans('Delete').'</a>';
- print '</div>';
- }
- }
- }
- print '</div>';
- }
- else {
- dol_print_error();
- }
- // End of page
- llxFooter();
- $db->close();
|