31require
'../main.inc.php';
32require_once DOL_DOCUMENT_ROOT.
'/categories/class/categorie.class.php';
33require_once DOL_DOCUMENT_ROOT.
'/core/class/extrafields.class.php';
34require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formother.class.php';
37$langs->load(
"categories");
40$socid = (int)
GETPOST(
'socid',
'int');
41if (!$user->hasRight(
'categorie',
'lire')) {
45$action =
GETPOST(
'action',
'alpha');
46$cancel =
GETPOST(
'cancel',
'alpha');
47$origin =
GETPOST(
'origin',
'alpha');
48$catorigin = (int)
GETPOST(
'catorigin',
'int');
50$urlfrom =
GETPOST(
'urlfrom',
'alpha');
51$backtopage =
GETPOST(
'backtopage',
'alpha');
53$label = (string)
GETPOST(
'label',
'alphanohtml');
54$description = (string)
GETPOST(
'description',
'restricthtml');
55$color = preg_replace(
'/[^0-9a-f#]/i',
'', (
string)
GETPOST(
'color',
'alphanohtml'));
56$visible = (int)
GETPOST(
'visible',
'int');
57$parent = (int)
GETPOST(
'parent',
'int');
60 if ($type == Categorie::TYPE_PRODUCT) {
61 $idProdOrigin = $origin;
63 if ($type == Categorie::TYPE_SUPPLIER) {
64 $idSupplierOrigin = $origin;
66 if ($type == Categorie::TYPE_CUSTOMER) {
67 $idCompanyOrigin = $origin;
69 if ($type == Categorie::TYPE_MEMBER) {
70 $idMemberOrigin = $origin;
72 if ($type == Categorie::TYPE_CONTACT) {
73 $idContactOrigin = $origin;
75 if ($type == Categorie::TYPE_PROJECT) {
76 $idProjectOrigin = $origin;
80if ($catorigin && $type == Categorie::TYPE_PRODUCT) {
81 $idCatOrigin = $catorigin;
87$extrafields->fetch_name_optionals_label($object->table_element);
90$hookmanager->initHooks(array(
'categorycard'));
100if ($action ==
'add' && $user->rights->categorie->creer) {
104 header(
"Location: ".$urlfrom);
106 } elseif ($backtopage) {
107 header(
"Location: ".$backtopage);
109 } elseif ($idProdOrigin) {
110 header(
"Location: ".DOL_URL_ROOT.
'/categories/viewcat.php?id='.$idProdOrigin.
'&type='.$type);
112 } elseif ($idCompanyOrigin) {
113 header(
"Location: ".DOL_URL_ROOT.
'/categories/viewcat.php?id='.$idCompanyOrigin.
'&type='.$type);
115 } elseif ($idSupplierOrigin) {
116 header(
"Location: ".DOL_URL_ROOT.
'/categories/viewcat.php?id='.$idSupplierOrigin.
'&type='.$type);
118 } elseif ($idMemberOrigin) {
119 header(
"Location: ".DOL_URL_ROOT.
'/categories/viewcat.php?id='.$idMemberOrigin.
'&type='.$type);
121 } elseif ($idContactOrigin) {
122 header(
"Location: ".DOL_URL_ROOT.
'/categories/viewcat.php?id='.$idContactOrigin.
'&type='.$type);
124 } elseif ($idProjectOrigin) {
125 header(
"Location: ".DOL_URL_ROOT.
'/categories/viewcat.php?id='.$idProjectOrigin.
'&type='.$type);
128 header(
"Location: ".DOL_URL_ROOT.
'/categories/index.php?leftmenu=cat&type='.$type);
135 $object->label = $label;
136 $object->color = $color;
138 $object->socid = ($socid > 0 ? $socid : 0);
139 $object->visible = $visible;
140 $object->type = $type;
142 if ($parent !=
"-1") {
143 $object->fk_parent = $parent;
146 $ret = $extrafields->setOptionalsFromPost(
null, $object);
151 if (!$object->label) {
153 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentities(
"Ref")),
null,
'errors');
159 $result = $object->create($user);
161 $action =
'confirmed';
162 $_POST[
"addcat"] =
'';
170if (($action ==
'add' || $action ==
'confirmed') && $user->rights->categorie->creer) {
172 if ($action ==
'confirmed') {
174 header(
"Location: ".$urlfrom);
176 } elseif ($backtopage) {
177 header(
"Location: ".$backtopage);
179 } elseif ($idProdOrigin) {
180 header(
"Location: ".DOL_URL_ROOT.
'/categories/viewcat.php?id='.$idProdOrigin.
'&type='.$type.
'&mesg='.urlencode($langs->trans(
"CatCreated")));
182 } elseif ($idCompanyOrigin) {
183 header(
"Location: ".DOL_URL_ROOT.
'/categories/viewcat.php?id='.$idCompanyOrigin.
'&type='.$type.
'&mesg='.urlencode($langs->trans(
"CatCreated")));
185 } elseif ($idSupplierOrigin) {
186 header(
"Location: ".DOL_URL_ROOT.
'/categories/viewcat.php?id='.$idSupplierOrigin.
'&type='.$type.
'&mesg='.urlencode($langs->trans(
"CatCreated")));
188 } elseif ($idMemberOrigin) {
189 header(
"Location: ".DOL_URL_ROOT.
'/categories/viewcat.php?id='.$idMemberOrigin.
'&type='.$type.
'&mesg='.urlencode($langs->trans(
"CatCreated")));
191 } elseif ($idContactOrigin) {
192 header(
"Location: ".DOL_URL_ROOT.
'/categories/viewcat.php?id='.$idContactOrigin.
'&type='.$type.
'&mesg='.urlencode($langs->trans(
"CatCreated")));
194 } elseif ($idProjectOrigin) {
195 header(
"Location: ".DOL_URL_ROOT.
'/categories/viewcat.php?id='.$idProjectOrigin.
'&type='.$type.
'&mesg='.urlencode($langs->trans(
"CatCreated")));
199 header(
"Location: ".DOL_URL_ROOT.
'/categories/viewcat.php?id='.$result.
'&type='.$type);
209$form =
new Form($db);
212$help_url =
'EN:Module_Categories|FR:Module_Catégories|DE:Modul_Kategorien';
214llxHeader(
"", $langs->trans(
"Categories"), $help_url);
216if ($user->rights->categorie->creer) {
218 if ($action ==
'create' ||
GETPOST(
"addcat") ==
'addcat') {
221 print
'<form action="'.$_SERVER[
'PHP_SELF'].
'?type='.$type.
'" method="POST">';
222 print
'<input type="hidden" name="token" value="'.newToken().
'">';
223 print
'<input type="hidden" name="urlfrom" value="'.$urlfrom.
'">';
224 print
'<input type="hidden" name="action" value="add">';
225 print
'<input type="hidden" name="addcat" value="addcat">';
226 print
'<input type="hidden" name="id" value="'.GETPOST(
'origin',
'alpha').
'">';
227 print
'<input type="hidden" name="type" value="'.$type.
'">';
228 print
'<input type="hidden" name="backtopage" value="'.$backtopage.
'">';
230 print
'<input type="hidden" name="origin" value="'.$origin.
'">';
233 print
'<input type="hidden" name="catorigin" value="'.$catorigin.
'">';
240 print
'<table width="100%" class="border">';
244 print
'<td class="titlefieldcreate fieldrequired">'.$langs->trans(
"Ref").
'</td><td><input id="label" class="minwidth100" name="label" value="'.
dol_escape_htmltag($label).
'">';
248 print
'<tr><td class="tdtop">'.$langs->trans(
"Description").
'</td><td>';
249 require_once DOL_DOCUMENT_ROOT.
'/core/class/doleditor.class.php';
250 $doleditor =
new DolEditor(
'description', $description,
'', 160,
'dolibarr_notes',
'',
false,
true,
getDolGlobalInt(
'FCKEDITOR_ENABLE_SOCIETE'), ROWS_5,
'90%');
251 $doleditor->Create();
255 print
'<tr><td>'.$langs->trans(
"Color").
'</td><td>';
256 print $formother->selectColor($color,
'color');
260 print
'<tr><td>'.$langs->trans(
"AddIn").
'</td><td>';
261 print
img_picto($langs->trans(
"ParentCategory"),
'category',
'class="pictofixedwidth"');
262 print $form->select_all_categories($type, $catorigin,
'parent');
266 $parameters = array();
267 $reshook = $hookmanager->executeHooks(
'formObjectOptions', $parameters, $object, $action);
268 print $hookmanager->resPrint;
269 if (empty($reshook)) {
270 print $object->showOptionals($extrafields,
'create', $parameters);
277 print
'<div class="center">';
278 print
'<input type="submit" class="button b" value="'.$langs->trans(
"CreateThisCat").
'" name="creation" />';
279 print
' ';
280 print
'<input type="submit" class="button button-cancel" value="'.$langs->trans(
"Cancel").
'" name="cancel" />';
ajax_combobox($htmlname, $events=array(), $minLengthToAutocomplete=0, $forcefocus=0, $widthTypeOfAutocomplete='resolve', $idforemptyvalue='-1', $morecss='')
Convert a html select field into an ajax combobox.
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Class to manage categories.
Class to manage a WYSIWYG editor.
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
getDolGlobalInt($key, $default=0)
Return dolibarr global constant int value.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
dol_set_focus($selector)
Set focus onto field with selector (similar behaviour of 'autofocus' HTML5 tag)
dol_htmlcleanlastbr($stringtodecode)
This function remove all ending and br at end.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.