1<?php
2/* Copyright (C) 2001-2002	Rodolphe Quiedeville	<rodolphe@quiedeville.org>
3 * Copyright (C) 2003		Jean-Louis Bergamo		<jlb@j1b.org>
4 * Copyright (C) 2004-2013	Laurent Destailleur		<eldy@users.sourceforge.net>
5 * Copyright (C) 2012		Regis Houssin			<regis.houssin@inodbox.com>
6 * Copyright (C) 2012		Florian Henry			<florian.henry@open-concept.pro>
7 * Copyright (C) 2013		Philippe Grand			<philippe.grand@atoo-net.com>
8 * Copyright (C) 2015		Claudio Aschieri		<c.aschieri@19.coop>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 3 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22 */
23
24/**
25 *      \file       htdocs/admin/expedition_extrafields.php
26 *		\ingroup    expedition
27 *		\brief      Page to setup extra fields of expedition
28 */
29
30require '../main.inc.php';
31require_once DOL_DOCUMENT_ROOT.'/core/lib/expedition.lib.php';
32require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php';
33
34
35if (!$user->admin)
36	accessforbidden();
37
38// Load translation files required by the page
39$langs->loadLangs(array('admin', 'other', 'sendings', 'deliveries'));
40
41
42$extrafields = new ExtraFields($db);
43$form = new Form($db);
44
45// List of supported format
46$tmptype2label = ExtraFields::$type2label;
47$type2label = array('');
48foreach ($tmptype2label as $key => $val) $type2label[$key] = $langs->transnoentitiesnoconv($val);
49
50$action = GETPOST('action', 'aZ09');
51$attrname = GETPOST('attrname', 'alpha');
52$elementtype = 'expedition'; //Must be the $table_element of the class that manage extrafield
53
54if (!$user->admin) accessforbidden();
55
56
57/*
58 * Actions
59 */
60
61require DOL_DOCUMENT_ROOT.'/core/actions_extrafields.inc.php';
62
63
64
65/*
66 * View
67 */
68
69$textobject = $langs->transnoentitiesnoconv("Sendings");
70
71llxHeader('', $langs->trans("SendingsSetup"));
72
73$linkback = '<a href="'.DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans("BackToModuleList").'</a>';
74print load_fiche_titre($langs->trans("SendingsSetup"), $linkback, 'title_setup');
75print "<br>\n";
76
77$head = expedition_admin_prepare_head();
78
79print dol_get_fiche_head($head, 'attributes_shipment', $langs->trans("Sendings"), -1, 'shipment');
80
81require DOL_DOCUMENT_ROOT.'/core/tpl/admin_extrafields_view.tpl.php';
82
83print dol_get_fiche_end();
84
85
86// Buttons
87if ($action != 'create' && $action != 'edit')
88{
89	print '<div class="tabsAction">';
90	print "<a class=\"butAction\" href=\"".$_SERVER["PHP_SELF"]."?action=create#newattrib\">".$langs->trans("NewAttribute")."</a>";
91	print "</div>";
92}
93
94
95/* ************************************************************************** */
96/*                                                                            */
97/* Creation of an optional field											  */
98/*                                                                            */
99/* ************************************************************************** */
100
101if ($action == 'create')
102{
103	print '<br><div id="newattrib"></div>';
104	print load_fiche_titre($langs->trans('NewAttribute'));
105
106	require DOL_DOCUMENT_ROOT.'/core/tpl/admin_extrafields_add.tpl.php';
107}
108
109/* ************************************************************************** */
110/*                                                                            */
111/* Edition of an optional field                                                */
112/*                                                                            */
113/* ************************************************************************** */
114if ($action == 'edit' && !empty($attrname))
115{
116	print "<br>";
117	print load_fiche_titre($langs->trans("FieldEdition", $attrname));
118
119	require DOL_DOCUMENT_ROOT.'/core/tpl/admin_extrafields_edit.tpl.php';
120}
121
122// End of page
123llxFooter();
124$db->close();
125