32require
'../main.inc.php';
33require_once DOL_DOCUMENT_ROOT.
'/categories/class/categorie.class.php';
34require_once DOL_DOCUMENT_ROOT.
'/core/class/extrafields.class.php';
35require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formother.class.php';
38$langs->load(
"categories");
42if (!$user->hasRight(
'categorie',
'lire')) {
46$action =
GETPOST(
'action',
'alpha');
47$cancel =
GETPOST(
'cancel',
'alpha');
48$origin =
GETPOST(
'origin',
'alpha');
51$urlfrom =
GETPOST(
'urlfrom',
'alpha');
52$backtopage =
GETPOST(
'backtopage',
'alpha');
54$label = (string)
GETPOST(
'label',
'alphanohtml');
55$description = (string)
GETPOST(
'description',
'restricthtml');
56$color = preg_replace(
'/[^0-9a-f#]/i',
'', (
string)
GETPOST(
'color',
'alphanohtml'));
70 if ($type == Categorie::TYPE_PRODUCT) {
71 $idProdOrigin = $origin;
73 if ($type == Categorie::TYPE_SUPPLIER) {
74 $idSupplierOrigin = $origin;
76 if ($type == Categorie::TYPE_CUSTOMER) {
77 $idCompanyOrigin = $origin;
79 if ($type == Categorie::TYPE_MEMBER) {
80 $idMemberOrigin = $origin;
82 if ($type == Categorie::TYPE_CONTACT) {
83 $idContactOrigin = $origin;
85 if ($type == Categorie::TYPE_PROJECT) {
86 $idProjectOrigin = $origin;
90if ($catorigin && $type == Categorie::TYPE_PRODUCT) {
91 $idCatOrigin = $catorigin;
93if (!GETPOSTISSET(
'parent') && $catorigin) {
100$extrafields->fetch_name_optionals_label(
$object->table_element);
103$hookmanager->initHooks(array(
'categorycard'));
112$parameters = array(
'socid' => $socid,
'origin' => $origin,
'catorigin' => $catorigin,
'type' => $type,
'urlfrom' => $urlfrom,
'backtopage' => $backtopage,
'label' => $label,
'description' => $description,
'color' => $color,
'position' => $position,
'visible' => $visible,
'parent' => $parent);
114$reshook = $hookmanager->executeHooks(
'doActions', $parameters,
$object, $action);
119if (empty($reshook)) {
121 if ($action ==
'add' && $user->hasRight(
'categorie',
'creer')) {
125 header(
"Location: ".$urlfrom);
127 } elseif ($backtopage) {
128 header(
"Location: ".$backtopage);
130 } elseif ($idProdOrigin) {
131 header(
"Location: ".DOL_URL_ROOT.
'/categories/viewcat.php?id='.$idProdOrigin.
'&type='.$type);
133 } elseif ($idCompanyOrigin) {
134 header(
"Location: ".DOL_URL_ROOT.
'/categories/viewcat.php?id='.$idCompanyOrigin.
'&type='.$type);
136 } elseif ($idSupplierOrigin) {
137 header(
"Location: ".DOL_URL_ROOT.
'/categories/viewcat.php?id='.$idSupplierOrigin.
'&type='.$type);
139 } elseif ($idMemberOrigin) {
140 header(
"Location: ".DOL_URL_ROOT.
'/categories/viewcat.php?id='.$idMemberOrigin.
'&type='.$type);
142 } elseif ($idContactOrigin) {
143 header(
"Location: ".DOL_URL_ROOT.
'/categories/viewcat.php?id='.$idContactOrigin.
'&type='.$type);
145 } elseif ($idProjectOrigin) {
146 header(
"Location: ".DOL_URL_ROOT.
'/categories/viewcat.php?id='.$idProjectOrigin.
'&type='.$type);
149 header(
"Location: ".DOL_URL_ROOT.
'/categories/index.php?leftmenu=cat&type='.$type);
157 $object->socid = ($socid > 0 ? $socid : 0);
161 if ($parent !=
"-1") {
165 $ret = $extrafields->setOptionalsFromPost(
null,
$object);
172 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentities(
"Ref")),
null,
'errors');
178 $result =
$object->create($user);
180 $action =
'confirmed';
187 if ($action ==
'confirmed' && $user->hasRight(
'categorie',
'creer')) {
189 header(
"Location: ".$urlfrom);
191 } elseif ($backtopage) {
192 header(
"Location: ".$backtopage);
194 } elseif ($idProdOrigin) {
195 header(
"Location: ".DOL_URL_ROOT.
'/categories/viewcat.php?id='.$idProdOrigin.
'&type='.$type.
'&mesg='.urlencode($langs->trans(
"CatCreated")));
197 } elseif ($idCompanyOrigin) {
198 header(
"Location: ".DOL_URL_ROOT.
'/categories/viewcat.php?id='.$idCompanyOrigin.
'&type='.$type.
'&mesg='.urlencode($langs->trans(
"CatCreated")));
200 } elseif ($idSupplierOrigin) {
201 header(
"Location: ".DOL_URL_ROOT.
'/categories/viewcat.php?id='.$idSupplierOrigin.
'&type='.$type.
'&mesg='.urlencode($langs->trans(
"CatCreated")));
203 } elseif ($idMemberOrigin) {
204 header(
"Location: ".DOL_URL_ROOT.
'/categories/viewcat.php?id='.$idMemberOrigin.
'&type='.$type.
'&mesg='.urlencode($langs->trans(
"CatCreated")));
206 } elseif ($idContactOrigin) {
207 header(
"Location: ".DOL_URL_ROOT.
'/categories/viewcat.php?id='.$idContactOrigin.
'&type='.$type.
'&mesg='.urlencode($langs->trans(
"CatCreated")));
209 } elseif ($idProjectOrigin) {
210 header(
"Location: ".DOL_URL_ROOT.
'/categories/viewcat.php?id='.$idProjectOrigin.
'&type='.$type.
'&mesg='.urlencode($langs->trans(
"CatCreated")));
214 header(
"Location: ".DOL_URL_ROOT.
'/categories/viewcat.php?id='.$result.
'&type='.$type);
224$form =
new Form($db);
227$help_url =
'EN:Module_Categories|FR:Module_Catégories|DE:Modul_Kategorien';
229llxHeader(
"", $langs->trans(
"Categories"), $help_url);
231if ($user->hasRight(
'categorie',
'creer')) {
233 if ($action ==
'create' || $action ==
'add') {
236 print
'<form action="'.$_SERVER[
'PHP_SELF'].
'?type='.$type.
'" method="POST">';
237 print
'<input type="hidden" name="token" value="'.newToken().
'">';
238 print
'<input type="hidden" name="urlfrom" value="'.$urlfrom.
'">';
239 print
'<input type="hidden" name="action" value="add">';
240 print
'<input type="hidden" name="id" value="'.GETPOST(
'origin',
'alpha').
'">';
241 print
'<input type="hidden" name="type" value="'.$type.
'">';
242 print
'<input type="hidden" name="backtopage" value="'.$backtopage.
'">';
244 print
'<input type="hidden" name="origin" value="'.$origin.
'">';
247 print
'<input type="hidden" name="catorigin" value="'.$catorigin.
'">';
254 print
'<table class="border centpercent">';
258 print
'<td class="titlefieldcreate fieldrequired">'.$langs->trans(
"Ref").
'</td><td><input id="label" class="minwidth100" name="label" value="'.
dol_escape_htmltag($label).
'">';
262 print
'<tr><td class="tdtop">'.$langs->trans(
"Description").
'</td><td>';
263 require_once DOL_DOCUMENT_ROOT.
'/core/class/doleditor.class.php';
264 $doleditor =
new DolEditor(
'description', $description,
'', 160,
'dolibarr_notes',
'',
false,
true, isModEnabled(
'fckeditor') &&
getDolGlobalInt(
'FCKEDITOR_ENABLE_SOCIETE'), ROWS_5,
'90%');
265 $doleditor->Create();
269 print
'<tr><td>'.$langs->trans(
"Color").
'</td><td>';
270 print $formother->selectColor($color,
'color');
275 print
'<td class="titlefieldcreate">'.$langs->trans(
"Position").
'</td><td><input id="position" type="number" class="minwidth50 maxwidth50" name="position" value="'.$position.
'">';
279 print
'<tr><td>'.$langs->trans(
"AddIn").
'</td><td>';
280 print
img_picto($langs->trans(
"ParentCategory"),
'category',
'class="pictofixedwidth"');
281 print $form->select_all_categories($type, $parent,
'parent');
285 $parameters = array();
286 $reshook = $hookmanager->executeHooks(
'formObjectOptions', $parameters,
$object, $action);
287 print $hookmanager->resPrint;
288 if (empty($reshook)) {
289 print
$object->showOptionals($extrafields,
'create', $parameters);
296 print
'<div class="center">';
297 print
'<input type="submit" class="button b" value="'.$langs->trans(
"CreateThisCat").
'" name="creation" />';
298 print
' ';
299 print
'<input type="submit" class="button button-cancel" value="'.$langs->trans(
"Cancel").
'" name="cancel" />';
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
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($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Class to manage categories.
Class to manage a WYSIWYG editor.
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
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 a Dolibarr global constant int value.
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.
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.