37require_once DOL_DOCUMENT_ROOT.
'/core/class/commonobject.class.php';
38require_once DOL_DOCUMENT_ROOT.
'/product/class/product.class.php';
39require_once DOL_DOCUMENT_ROOT.
'/ticket/class/ticket.class.php';
40require_once DOL_DOCUMENT_ROOT.
'/fourn/class/fournisseur.class.php';
41require_once DOL_DOCUMENT_ROOT.
'/contact/class/contact.class.php';
42require_once DOL_DOCUMENT_ROOT.
'/knowledgemanagement/class/knowledgerecord.class.php';
51 const TYPE_PRODUCT =
'product';
52 const TYPE_SUPPLIER =
'supplier';
53 const TYPE_CUSTOMER =
'customer';
54 const TYPE_MEMBER =
'member';
55 const TYPE_CONTACT =
'contact';
56 const TYPE_USER =
'user';
57 const TYPE_PROJECT =
'project';
58 const TYPE_ACCOUNT =
'bank_account';
59 const TYPE_BANK_LINE =
'bank_line';
60 const TYPE_WAREHOUSE =
'warehouse';
61 const TYPE_ACTIONCOMM =
'actioncomm';
62 const TYPE_WEBSITE_PAGE =
'website_page';
63 const TYPE_TICKET =
'ticket';
64 const TYPE_KNOWLEDGEMANAGEMENT =
'knowledgemanagement';
69 public $picto =
'category';
75 protected $MAP_ID = array(
89 'knowledgemanagement' => 13
97 public static $MAP_ID_TO_CODE = array(
109 11 =>
'website_page',
111 13 =>
'knowledgemanagement'
119 public $MAP_CAT_FK = array(
122 'contact' =>
'socpeople',
123 'bank_account' =>
'account',
131 public $MAP_CAT_TABLE = array(
132 'customer' =>
'societe',
133 'supplier' =>
'fournisseur',
134 'bank_account' =>
'account',
142 public $MAP_OBJ_CLASS = array(
143 'product' =>
'Product',
144 'customer' =>
'Societe',
145 'supplier' =>
'Fournisseur',
146 'member' =>
'Adherent',
147 'contact' =>
'Contact',
149 'account' =>
'Account',
150 'bank_account' =>
'Account',
151 'project' =>
'Project',
152 'warehouse' =>
'Entrepot',
153 'actioncomm' =>
'ActionComm',
154 'website_page' =>
'WebsitePage',
155 'ticket' =>
'Ticket',
156 'knowledgemanagement' =>
'KnowledgeRecord'
164 public static $MAP_TYPE_TITLE_AREA = array(
165 'product' =>
'ProductsCategoriesArea',
166 'customer' =>
'CustomersCategoriesArea',
167 'supplier' =>
'SuppliersCategoriesArea',
168 'member' =>
'MembersCategoriesArea',
169 'contact' =>
'ContactsCategoriesArea',
170 'user' =>
'UsersCategoriesArea',
171 'account' =>
'AccountsCategoriesArea',
172 'bank_account' =>
'AccountsCategoriesArea',
173 'project' =>
'ProjectsCategoriesArea',
174 'warehouse' =>
'StocksCategoriesArea',
175 'actioncomm' =>
'ActioncommCategoriesArea',
176 'website_page' =>
'WebsitePageCategoriesArea'
183 public $MAP_OBJ_TABLE = array(
184 'customer' =>
'societe',
185 'supplier' =>
'societe',
186 'member' =>
'adherent',
187 'contact' =>
'socpeople',
188 'account' =>
'bank_account',
189 'project' =>
'projet',
190 'warehouse' =>
'entrepot',
191 'knowledgemanagement' =>
'knowledgemanagement_knowledgerecord'
197 public $element =
'category';
202 public $table_element =
'categorie';
261 public $cats = array();
266 public $motherof = array();
271 public $childs = array();
316 public $fields = array(
317 'rowid' => array(
'type' =>
'integer',
'label' =>
'TechnicalID',
'enabled' => 1,
'visible' => -2,
'notnull' => 1,
'index' => 1,
'position' => 1,
'comment' =>
'Id'),
318 'entity' => array(
'type' =>
'integer',
'label' =>
'Entity',
'enabled' => 1,
'visible' => 0,
'default' =>
'1',
'notnull' => 1,
'index' => 1,
'position' => 5),
319 'label' => array(
'type' =>
'varchar(255)',
'label' =>
'Label',
'enabled' => 1,
'visible' => 1,
'showoncombobox' => 1,
'position' => 15,
'csslist' =>
'tdoverflowmax250'),
333 if (is_object($hookmanager)) {
334 $hookmanager->initHooks(array(
'category'));
335 $parameters = array();
336 $reshook = $hookmanager->executeHooks(
'constructCategory', $parameters, $this);
337 if ($reshook >= 0 && !empty($hookmanager->resArray)) {
338 foreach ($hookmanager->resArray as $mapList) {
339 $mapId = $mapList[
'id'];
340 $mapCode = $mapList[
'code'];
341 self::$MAP_ID_TO_CODE[$mapId] = $mapCode;
342 $this->MAP_ID[$mapCode] = $mapId;
343 $this->MAP_CAT_FK[$mapCode] = isset($mapList[
'cat_fk']) ? $mapList[
'cat_fk'] :
null;
344 $this->MAP_CAT_TABLE[$mapCode] = isset($mapList[
'cat_table']) ? $mapList[
'cat_table'] :
null;
345 $this->MAP_OBJ_CLASS[$mapCode] = $mapList[
'obj_class'];
346 $this->MAP_OBJ_TABLE[$mapCode] = $mapList[
'obj_table'];
361 foreach ($this->MAP_ID as $mapCode => $mapId) {
365 'cat_fk' => (empty($this->MAP_CAT_FK[$mapCode]) ? $mapCode : $this->MAP_CAT_FK[$mapCode]),
366 'cat_table' => (empty($this->MAP_CAT_TABLE[$mapCode]) ? $mapCode : $this->MAP_CAT_TABLE[$mapCode]),
367 'obj_class' => (empty($this->MAP_OBJ_CLASS[$mapCode]) ? $mapCode : $this->MAP_OBJ_CLASS[$mapCode]),
368 'obj_table' => (empty($this->MAP_OBJ_TABLE[$mapCode]) ? $mapCode : $this->MAP_OBJ_TABLE[$mapCode])
384 public function fetch($id, $label =
'', $type =
null, $ref_ext =
'')
387 if (empty($id) && empty($label) && empty($ref_ext)) {
388 $this->error =
"No category to search for";
391 if (!is_null($type) && !is_numeric($type)) {
392 $type = $this->MAP_ID[$type];
395 $sql =
"SELECT rowid, fk_parent, entity, label, description, color, position, fk_soc, visible, type, ref_ext";
396 $sql .=
", date_creation, tms, fk_user_creat, fk_user_modif";
397 $sql .=
" FROM ".MAIN_DB_PREFIX.
"categorie";
399 $sql .=
" WHERE rowid = ".((int) $id);
400 } elseif (!empty($ref_ext)) {
401 $sql .=
" WHERE ref_ext LIKE '".$this->db->escape($ref_ext).
"'";
403 $sql .=
" WHERE label = '".$this->db->escape($label).
"' AND entity IN (".
getEntity(
'category').
")";
404 if (!is_null($type)) {
405 $sql .=
" AND type = ".((int) $type);
409 dol_syslog(get_class($this).
"::fetch", LOG_DEBUG);
410 $resql = $this->db->query($sql);
412 if ($this->db->num_rows($resql) > 0 && $res = $this->db->fetch_array($resql)) {
413 $this->
id = $res[
'rowid'];
415 $this->fk_parent = (int) $res[
'fk_parent'];
416 $this->label = $res[
'label'];
418 $this->color = $res[
'color'];
420 $this->socid = (int) $res[
'fk_soc'];
421 $this->visible = (int) $res[
'visible'];
422 $this->
type = $res[
'type'];
423 $this->ref_ext = $res[
'ref_ext'];
424 $this->entity = (int) $res[
'entity'];
425 $this->date_creation = $this->db->jdate($res[
'date_creation']);
426 $this->date_modification = $this->db->jdate($res[
'tms']);
427 $this->user_creation_id = (int) $res[
'fk_user_creat'];
428 $this->user_modification_id = (int) $res[
'fk_user_modif'];
434 $this->db->free($resql);
443 $this->error =
"No category found";
448 $this->error = $this->db->lasterror;
449 $this->errors[] = $this->db->lasterror;
464 public function create($user, $notrigger = 0)
466 global $conf, $langs, $hookmanager;
467 $langs->load(
'categories');
471 if (!is_numeric($type)) {
472 $type = $this->MAP_ID[$type];
477 dol_syslog(get_class($this).
'::create', LOG_DEBUG);
480 $this->label = trim($this->label);
482 $this->color = trim($this->color);
484 $this->import_key = trim($this->import_key);
485 $this->ref_ext = trim($this->ref_ext);
486 if (empty($this->visible)) {
489 $this->fk_parent = ($this->fk_parent !=
"" ? intval($this->fk_parent) : 0);
492 $this->error = $langs->trans(
"ImpossibleAddCat", $this->label);
493 $this->error .=
" : ".$langs->trans(
"CategoryExistsAtSameLevel");
500 $sql =
"INSERT INTO ".MAIN_DB_PREFIX.
"categorie (";
501 $sql .=
"fk_parent,";
503 $sql .=
" description,";
505 $sql .=
" position,";
511 $sql .=
" import_key,";
514 $sql .=
" date_creation,";
515 $sql .=
" fk_user_creat";
516 $sql .=
") VALUES (";
517 $sql .= (int) $this->fk_parent.
",";
518 $sql .=
"'".$this->db->escape($this->label).
"', ";
519 $sql .=
"'".$this->db->escape($this->
description).
"', ";
520 $sql .=
"'".$this->db->escape($this->color).
"', ";
523 $sql .= ($this->socid > 0 ? $this->socid :
'null').
", ";
525 $sql .=
"'".$this->db->escape($this->visible).
"', ";
526 $sql .= ((int) $type).
", ";
527 $sql .= (!empty($this->import_key) ?
"'".$this->db->escape($this->import_key).
"'" :
'null').
", ";
528 $sql .= (!empty($this->ref_ext) ?
"'".$this->db->escape($this->ref_ext).
"'" :
'null').
", ";
529 $sql .= (int) $conf->entity.
", ";
530 $sql .=
"'".$this->db->idate($now).
"', ";
531 $sql .= (int) $user->id;
534 $res = $this->db->query($sql);
536 $id = $this->db->last_insert_id(MAIN_DB_PREFIX.
"categorie");
551 if (!$error && !$notrigger) {
553 $result = $this->
call_trigger(
'CATEGORY_CREATE', $user);
564 $this->db->rollback();
568 $this->db->rollback();
572 $this->error = $this->db->error();
573 $this->db->rollback();
594 $this->label = trim($this->label);
596 $this->ref_ext = trim($this->ref_ext);
597 $this->fk_parent = ($this->fk_parent !=
"" ? intval($this->fk_parent) : 0);
598 $this->visible = ($this->visible !=
"" ? intval($this->visible) : 0);
601 $this->error = $langs->trans(
"ImpossibleUpdateCat");
602 $this->error .=
" : ".$langs->trans(
"CategoryExistsAtSameLevel");
608 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"categorie";
609 $sql .=
" SET label = '".$this->db->escape($this->label).
"',";
610 $sql .=
" description = '".$this->db->escape($this->
description).
"',";
611 $sql .=
" ref_ext = '".$this->db->escape($this->ref_ext).
"',";
612 $sql .=
" color = '".$this->db->escape($this->color).
"'";
613 $sql .=
", position = ".(int) $this->
position;
615 $sql .=
", fk_soc = ".($this->socid > 0 ? $this->socid :
'null');
617 $sql .=
", visible = ".(int) $this->visible;
618 $sql .=
", fk_parent = ".(int) $this->fk_parent;
619 $sql .=
", fk_user_modif = ".(int) $user->id;
620 $sql .=
" WHERE rowid = ".((int) $this->
id);
622 dol_syslog(get_class($this).
"::update", LOG_DEBUG);
623 if ($this->db->query($sql)) {
634 if (!$error && !$notrigger) {
636 $result = $this->
call_trigger(
'CATEGORY_MODIFY', $user);
647 $this->db->rollback();
651 $this->db->rollback();
664 public function delete($user, $notrigger = 0)
669 $this->fk_parent = ($this->fk_parent !=
"" ? intval($this->fk_parent) : 0);
675 if (!$error && !$notrigger) {
677 $result = $this->
call_trigger(
'CATEGORY_DELETE', $user);
686 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"categorie";
687 $sql .=
" SET fk_parent = ".((int) $this->fk_parent);
688 $sql .=
" WHERE fk_parent = ".((int) $this->
id);
690 if (!$this->db->query($sql)) {
691 $this->error = $this->db->lasterror();
696 $arraydelete = array(
697 'categorie_account' =>
'fk_categorie',
698 'categorie_actioncomm' =>
'fk_categorie',
699 'categorie_contact' =>
'fk_categorie',
700 'categorie_fournisseur' =>
'fk_categorie',
701 'categorie_knowledgemanagement' => array(
'field' =>
'fk_categorie',
'enabled' => isModEnabled(
'knowledgemanagement')),
702 'categorie_member' =>
'fk_categorie',
703 'categorie_user' =>
'fk_categorie',
704 'categorie_product' =>
'fk_categorie',
705 'categorie_project' =>
'fk_categorie',
706 'categorie_societe' =>
'fk_categorie',
707 'categorie_ticket' => array(
'field' =>
'fk_categorie',
'enabled' => isModEnabled(
'ticket')),
708 'categorie_warehouse' =>
'fk_categorie',
709 'categorie_website_page' => array(
'field' =>
'fk_categorie',
'enabled' => isModEnabled(
'website')),
710 'bank_class' =>
'fk_categ',
711 'categorie_lang' =>
'fk_category',
712 'categorie' =>
'rowid',
714 foreach ($arraydelete as $key => $value) {
715 if (is_array($value)) {
716 if (empty($value[
'enabled'])) {
719 $value = $value[
'field'];
721 $sql =
"DELETE FROM ".MAIN_DB_PREFIX.$key;
722 $sql .=
" WHERE ".$value.
" = ".((int) $this->
id);
723 if (!$this->db->query($sql)) {
724 $this->errors[] = $this->db->lasterror();
725 dol_syslog(
"Error sql=".$sql.
" ".$this->error, LOG_ERR);
735 dol_syslog(get_class($this).
"::delete erreur ".$this->error, LOG_ERR);
743 $this->db->rollback();
764 if ($this->
id == -1) {
769 $type = $obj->element;
772 dol_syslog(get_class($this).
'::add_type', LOG_DEBUG);
776 $sql =
"INSERT INTO ".MAIN_DB_PREFIX.
"categorie_".(empty($this->MAP_CAT_TABLE[$type]) ? $type : $this->MAP_CAT_TABLE[$type]);
777 $sql .=
" (fk_categorie, fk_".(empty($this->MAP_CAT_FK[$type]) ? $type : $this->MAP_CAT_FK[$type]).
")";
778 $sql .=
" VALUES (".((int) $this->
id).
", ".((int) $obj->id).
")";
780 if ($this->db->query($sql)) {
782 $sql =
'SELECT fk_parent FROM '.MAIN_DB_PREFIX.
'categorie';
783 $sql .=
" WHERE rowid = ".((int) $this->
id);
785 dol_syslog(get_class($this).
"::add_type", LOG_DEBUG);
786 $resql = $this->db->query($sql);
788 if ($this->db->num_rows($resql) > 0) {
789 $objparent = $this->db->fetch_object($resql);
791 if (!empty($objparent->fk_parent)) {
793 $cat->id = $objparent->fk_parent;
794 if (!$cat->containsObject($type, $obj->id)) {
795 $result = $cat->add_type($obj, $type);
797 $this->error = $cat->error;
805 $this->error = $this->db->lasterror();
809 $this->db->rollback();
815 $this->context = array(
'linkto' => $obj);
826 $this->db->rollback();
830 $this->db->rollback();
831 if ($this->db->lasterrno() ==
'DB_ERROR_RECORD_ALREADY_EXISTS') {
832 $this->error = $this->db->lasterrno();
835 $this->error = $this->db->lasterror();
858 if ($type ==
'societe') {
860 dol_syslog(get_class($this).
"::del_type(): type 'societe' is deprecated, please use 'customer' instead", LOG_WARNING);
861 } elseif ($type ==
'fournisseur') {
863 dol_syslog(get_class($this).
"::del_type(): type 'fournisseur' is deprecated, please use 'supplier' instead", LOG_WARNING);
868 $sql =
"DELETE FROM ".MAIN_DB_PREFIX.
"categorie_".(empty($this->MAP_CAT_TABLE[$type]) ? $type : $this->MAP_CAT_TABLE[$type]);
869 $sql .=
" WHERE fk_categorie = ".((int) $this->
id);
870 $sql .=
" AND fk_".(empty($this->MAP_CAT_FK[$type]) ? $type : $this->MAP_CAT_FK[$type]).
" = ".((
int) $obj->id);
872 dol_syslog(get_class($this).
'::del_type', LOG_DEBUG);
873 if ($this->db->query($sql)) {
875 $this->context = array(
'unlinkoff' => $obj);
876 $result = $this->
call_trigger(
'CATEGORY_UNLINK', $user);
886 $this->db->rollback();
890 $this->db->rollback();
891 $this->error = $this->db->lasterror();
911 public function getObjectsInCateg($type, $onlyids = 0, $limit = 0, $offset = 0, $sortfield =
'', $sortorder =
'ASC', $filter =
'', $filtermode =
'AND')
917 $classnameforobj = $this->MAP_OBJ_CLASS[$type];
918 if (!empty($classnameforobj) && class_exists($classnameforobj)) {
919 $obj =
new $classnameforobj($this->db);
921 $sql =
"SELECT c.fk_".(empty($this->MAP_CAT_FK[$type]) ? $type : $this->MAP_CAT_FK[$type]).
" as fk_object";
922 $sql .=
" FROM ".MAIN_DB_PREFIX.
"categorie_".(empty($this->MAP_CAT_TABLE[$type]) ? $type : $this->MAP_CAT_TABLE[$type]).
" as c";
923 $sql .=
", ".MAIN_DB_PREFIX.(empty($this->MAP_OBJ_TABLE[$type]) ? $type : $this->MAP_OBJ_TABLE[$type]).
" as o";
924 $sql .=
" WHERE o.entity IN (".getEntity($obj->element).
")";
925 $sql .=
" AND c.fk_categorie = ".((int) $this->
id);
927 if ((array_key_exists($type, $this->MAP_OBJ_TABLE) && $this->MAP_OBJ_TABLE[$type] ==
"actioncomm") || $type ==
"actioncomm") {
928 $sql .=
" AND c.fk_".(empty($this->MAP_CAT_FK[$type]) ? $type : $this->MAP_CAT_FK[$type]).
" = o.id";
930 $sql .=
" AND c.fk_".(empty($this->MAP_CAT_FK[$type]) ? $type : $this->MAP_CAT_FK[$type]).
" = o.rowid";
933 if (($type ==
'customer' || $type ==
'supplier') && $user->socid > 0) {
934 $sql .=
" AND o.rowid = ".((int) $user->socid);
940 $this->errors[] = $errormessage;
941 dol_syslog(__METHOD__.
' '.implode(
',', $this->errors), LOG_ERR);
945 $sql .= $this->db->order($sortfield, $sortorder);
946 if ($limit > 0 || $offset > 0) {
947 $sql .= $this->db->plimit($limit + 1, $offset);
950 dol_syslog(get_class($this).
"::getObjectsInCateg", LOG_DEBUG);
952 $resql = $this->db->query($sql);
954 while ($rec = $this->db->fetch_array($resql)) {
956 $objs[] = $rec[
'fk_object'];
959 $obj->fetch($rec[
'fk_object']);
961 $objs[] = clone $obj;
966 $this->error = $this->db->error().
' sql='.$sql;
984 $sql =
"SELECT COUNT(*) as nb FROM ".MAIN_DB_PREFIX.
"categorie_".(empty($this->MAP_CAT_TABLE[$type]) ? $type : $this->MAP_CAT_TABLE[$type]);
985 $sql .=
" WHERE fk_categorie = ".((int) $this->
id).
" AND fk_".(empty($this->MAP_CAT_FK[$type]) ? $type : $this->MAP_CAT_FK[$type]).
" = ".((
int) $object_id);
987 dol_syslog(get_class($this).
"::containsObject", LOG_DEBUG);
989 $resql = $this->db->query($sql);
991 return $this->db->fetch_object($resql)->nb;
993 $this->error = $this->db->error();
1009 public function getListForItem($id, $type =
'customer', $sortfield =
"s.rowid", $sortorder =
'ASC', $limit = 0, $page = 0)
1011 $categories = array();
1016 $subcol_name =
"fk_".$type;
1017 if ($type ==
"customer") {
1018 $sub_type =
"societe";
1019 $subcol_name =
"fk_soc";
1021 if ($type ==
"supplier") {
1022 $sub_type =
"fournisseur";
1023 $subcol_name =
"fk_soc";
1025 if ($type ==
"contact") {
1026 $subcol_name =
"fk_socpeople";
1029 $idoftype = array_search($type, self::$MAP_ID_TO_CODE);
1031 $sql =
"SELECT s.rowid";
1032 $sql .=
" FROM ".MAIN_DB_PREFIX.
"categorie as s, ".MAIN_DB_PREFIX.
"categorie_".$sub_type.
" as sub";
1033 $sql .=
' WHERE s.entity IN ('.getEntity(
'category').
')';
1034 $sql .=
' AND s.type='.((int) $idoftype);
1035 $sql .=
' AND s.rowid = sub.fk_categorie';
1036 $sql .=
" AND sub.".$subcol_name.
" = ".((int) $id);
1038 $sql .= $this->db->order($sortfield, $sortorder);
1041 $nbtotalofrecords =
'';
1043 $result = $this->db->query($sql);
1044 $nbtotalofrecords = $this->db->num_rows($result);
1045 if (($page * $limit) > $nbtotalofrecords) {
1055 $offset = $limit * $page;
1057 $sql .= $this->db->plimit($limit + 1, $offset);
1060 $result = $this->db->query($sql);
1063 $num = $this->db->num_rows($result);
1064 $min = min($num, ($limit <= 0 ? $num : $limit));
1066 $obj = $this->db->fetch_object($result);
1067 $category_static =
new Categorie($this->db);
1068 if ($category_static->fetch($obj->rowid)) {
1069 $categories[$i][
'id'] = $category_static->id;
1070 $categories[$i][
'fk_parent'] = $category_static->fk_parent;
1071 $categories[$i][
'label'] = $category_static->label;
1072 $categories[$i][
'description'] = $category_static->description;
1073 $categories[$i][
'color'] = $category_static->color;
1074 $categories[$i][
'position'] = $category_static->position;
1075 $categories[$i][
'socid'] = $category_static->socid;
1076 $categories[$i][
'ref_ext'] = $category_static->ref_ext;
1077 $categories[$i][
'visible'] = $category_static->visible;
1078 $categories[$i][
'type'] = $category_static->type;
1079 $categories[$i][
'entity'] = $category_static->entity;
1080 $categories[$i][
'array_options'] = $category_static->array_options;
1083 if (
getDolGlobalInt(
'MAIN_MULTILANGS') && isset($category_static->multilangs)) {
1084 $categories[$i][
'multilangs'] = $category_static->multilangs;
1090 $this->error = $this->db->lasterror();
1093 if (!count($categories)) {
1109 $sql =
"SELECT rowid FROM ".MAIN_DB_PREFIX.
"categorie";
1110 $sql .=
" WHERE fk_parent = ".((int) $this->
id);
1111 $sql .=
" AND entity IN (".getEntity(
'category').
")";
1113 $res = $this->db->query($sql);
1116 while ($rec = $this->db->fetch_array($res)) {
1118 $cat->fetch($rec[
'rowid']);
1137 $this->motherof = array();
1140 $sql =
"SELECT fk_parent as id_parent, rowid as id_son";
1141 $sql .=
" FROM ".MAIN_DB_PREFIX.
"categorie";
1142 $sql .=
" WHERE fk_parent != 0";
1143 $sql .=
" AND entity IN (".getEntity(
'category').
")";
1145 dol_syslog(get_class($this).
"::load_motherof", LOG_DEBUG);
1146 $resql = $this->db->query($sql);
1148 while ($obj = $this->db->fetch_object($resql)) {
1149 $this->motherof[$obj->id_son] = $obj->id_parent;
1183 if (!is_numeric($type)) {
1184 $type = $this->MAP_ID[$type];
1186 if (is_null($type)) {
1187 $this->error =
'BadValueForParameterType';
1191 if (is_string($fromid)) {
1192 $fromid = explode(
',', $fromid);
1193 } elseif (is_numeric($fromid)) {
1195 $fromid = array($fromid);
1199 } elseif (!is_array($fromid)) {
1203 $this->cats = array();
1208 $current_lang = $langs->getDefaultLang();
1211 $sql =
"SELECT DISTINCT c.rowid, c.label, c.ref_ext, c.description, c.color, c.position, c.fk_parent, c.visible";
1213 $sql .=
", t.label as label_trans, t.description as description_trans";
1215 $sql .=
" FROM ".MAIN_DB_PREFIX.
"categorie as c";
1217 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"categorie_lang as t ON t.fk_category=c.rowid AND t.lang='".$this->db->escape($current_lang).
"'";
1219 $sql .=
" WHERE c.entity IN (".getEntity(
'category').
")";
1220 $sql .=
" AND c.type = ".(int) $type;
1222 dol_syslog(get_class($this).
"::get_full_arbo get category list", LOG_DEBUG);
1223 $resql = $this->db->query($sql);
1226 $nbcateg = $this->db->num_rows($resql);
1228 while ($obj = $this->db->fetch_object($resql)) {
1229 $this->cats[$obj->rowid][
'rowid'] = $obj->rowid;
1230 $this->cats[$obj->rowid][
'id'] = $obj->rowid;
1231 $this->cats[$obj->rowid][
'fk_parent'] = $obj->fk_parent;
1232 $this->cats[$obj->rowid][
'label'] = !empty($obj->label_trans) ? $obj->label_trans : $obj->label;
1233 $this->cats[$obj->rowid][
'description'] = !empty($obj->description_trans) ? $obj->description_trans : $obj->description;
1234 $this->cats[$obj->rowid][
'color'] = $obj->color;
1235 $this->cats[$obj->rowid][
'position'] = $obj->position;
1236 $this->cats[$obj->rowid][
'visible'] = $obj->visible;
1237 $this->cats[$obj->rowid][
'ref_ext'] = $obj->ref_ext;
1238 $this->cats[$obj->rowid][
'picto'] =
'category';
1240 $this->cats[$obj->rowid][
'fullpath'] =
'';
1241 $this->cats[$obj->rowid][
'fulllabel'] =
'';
1250 dol_syslog(get_class($this).
"::get_full_arbo call to buildPathFromId", LOG_DEBUG);
1251 foreach ($this->cats as $key => $val) {
1257 if (count($fromid) > 0) {
1258 $keyfiltercatid =
'('.implode(
'|', $fromid).
')';
1261 $keyfilter1 =
'^'.$keyfiltercatid.
'$';
1262 $keyfilter2 =
'_'.$keyfiltercatid.
'$';
1263 $keyfilter3 =
'^'.$keyfiltercatid.
'_';
1264 $keyfilter4 =
'_'.$keyfiltercatid.
'_';
1265 foreach (array_keys($this->cats) as $key) {
1266 $fullpath = (string) $this->cats[$key][
'fullpath'];
1267 $test = (preg_match(
'/'.$keyfilter1.
'/', $fullpath) || preg_match(
'/'.$keyfilter2.
'/', $fullpath)
1268 || preg_match(
'/'.$keyfilter3.
'/', $fullpath) || preg_match(
'/'.$keyfilter4.
'/', $fullpath));
1270 if (($test && !$include) || (!$test && $include)) {
1271 unset($this->cats[$key]);
1276 dol_syslog(get_class($this).
"::get_full_arbo dol_sort_array", LOG_DEBUG);
1278 $this->cats =
dol_sort_array($this->cats,
'fulllabel',
'asc', 1, 0, 1);
1297 if (!empty($this->cats[$id_categ][
'fullpath'])) {
1299 dol_syslog(get_class($this).
"::buildPathFromId fullpath and fulllabel already defined", LOG_WARNING);
1309 $this->cats[$id_categ][
'fullpath'] =
'_'.$id_categ;
1310 $this->cats[$id_categ][
'fulllabel'] = $this->cats[$id_categ][
'label'];
1312 $cursor_categ = $id_categ;
1314 while ((empty($protection) || $i < $protection) && !empty($this->motherof[$cursor_categ])) {
1316 $this->cats[$id_categ][
'fullpath'] =
'_'.$this->motherof[$cursor_categ].$this->cats[$id_categ][
'fullpath'];
1317 $this->cats[$id_categ][
'fulllabel'] = (empty($this->cats[$this->motherof[$cursor_categ]]) ?
'NotFound' : $this->cats[$this->motherof[$cursor_categ]][
'label']).
' >> '.$this->cats[$id_categ][
'fulllabel'];
1320 $cursor_categ = $this->motherof[$cursor_categ];
1325 $nbunderscore = substr_count($this->cats[$id_categ][
'fullpath'],
'_');
1326 $this->cats[$id_categ][
'level'] = ($nbunderscore ? $nbunderscore :
null);
1343 if (!is_numeric($type)) {
1344 $type = $this->MAP_ID[$type];
1347 $sql =
"SELECT rowid FROM ".MAIN_DB_PREFIX.
"categorie";
1348 $sql .=
" WHERE entity IN (".getEntity(
'category').
")";
1349 if (!is_null($type)) {
1350 $sql .=
" AND type = ".(int) $type;
1353 $sql .=
" AND fk_parent = 0";
1356 $res = $this->db->query($sql);
1359 while ($rec = $this->db->fetch_array($res)) {
1361 $cat->fetch($rec[
'rowid']);
1362 $cats[$rec[
'rowid']] = $cat;
1393 $type = $this->type;
1395 if (!is_numeric($type)) {
1396 $type = $this->MAP_ID[$type];
1402 $sql =
"SELECT c.rowid";
1403 $sql .=
" FROM ".MAIN_DB_PREFIX.
"categorie as c ";
1404 $sql .=
" WHERE c.entity IN (".getEntity(
'category').
")";
1405 $sql .=
" AND c.type = ".((int) $type);
1406 $sql .=
" AND c.fk_parent = ".((int) $this->fk_parent);
1407 $sql .=
" AND c.label = '".$this->db->escape($this->label).
"'";
1409 dol_syslog(get_class($this).
"::already_exists", LOG_DEBUG);
1411 $resql = $this->db->query($sql);
1413 if ($this->db->num_rows($resql) > 0) {
1414 $obj = $this->db->fetch_object($resql);
1419 if (!empty($obj) && $obj->rowid > 0 && $obj->rowid != $this->id) {
1420 dol_syslog(get_class($this).
"::already_exists category with name=".$this->label.
" and parent ".$this->fk_parent.
" exists: rowid=".$obj->rowid.
" current_id=".$this->id, LOG_DEBUG);
1424 dol_syslog(get_class($this).
"::already_exists no category with same name=".$this->label.
" and same parent ".$this->fk_parent.
" than category id=".$this->id, LOG_DEBUG);
1427 $this->error = $this->db->error();
1444 public function print_all_ways($sep =
'>>', $url =
'', $nocolor = 0, $addpicto = 0)
1450 foreach ($all_ways as $way) {
1454 foreach ($way as $cat) {
1457 if (empty($nocolor)) {
1458 $forced_color =
'colortoreplace';
1459 if ($i == count($way)) {
1461 $forced_color =
'categtextwhite';
1464 $forced_color =
'categtextblack';
1471 $link =
'<a href="'.DOL_URL_ROOT.
'/categories/viewcat.php?id='.$cat->id.
'&type='.$cat->type.
'" class="'.$forced_color.
'">';
1473 $w[] = $link.(($addpicto && $i == 1) ?
img_object(
'',
'category',
'class="paddingright"') :
'').$cat->label.$linkend;
1474 } elseif ($url ==
'none') {
1475 $link =
'<span class="'.$forced_color.
'">';
1476 $linkend =
'</span>';
1477 $w[] = $link.(($addpicto && $i == 1) ?
img_object(
'',
'category',
'class="paddingright"') :
'').$cat->label.$linkend;
1479 $w[] =
'<a class="'.$forced_color.
'" href="'.DOL_URL_ROOT.
'/'.$url.
'?catid='.$cat->id.
'">'.($addpicto ?
img_object(
'',
'category') :
'').$cat->label.
'</a>';
1482 $newcategwithpath = preg_replace(
'/colortoreplace/', $forced_color, implode(
'<span class="inline-block valignmiddle paddingleft paddingright '.$forced_color.
'">'.$sep.
'</span>', $w));
1484 $ways[] = $newcategwithpath;
1502 $sql =
"SELECT fk_parent FROM ".MAIN_DB_PREFIX.
"categorie";
1503 $sql .=
" WHERE rowid = ".((int) $this->
id);
1505 $res = $this->db->query($sql);
1508 while ($rec = $this->db->fetch_array($res)) {
1509 if ($rec[
'fk_parent'] > 0) {
1511 $cat->fetch($rec[
'fk_parent']);
1535 if (is_array($parents)) {
1536 foreach ($parents as $parent) {
1537 $all_ways = $parent->get_all_ways();
1538 foreach ($all_ways as $way) {
1546 if (count($ways) == 0) {
1547 $ways[0][0] = $this;
1567 if (is_numeric($type)) {
1568 $type = Categorie::$MAP_ID_TO_CODE[$type];
1571 if ($type === Categorie::TYPE_BANK_LINE) {
1573 $sql =
"SELECT c.label, c.rowid";
1574 $sql .=
" FROM ".MAIN_DB_PREFIX.
"bank_class as a, ".MAIN_DB_PREFIX.
"bank_categ as c";
1575 $sql .=
" WHERE a.lineid=".((int) $id).
" AND a.fk_categ = c.rowid";
1576 $sql .=
" AND c.entity IN (".getEntity(
'category').
")";
1577 $sql .=
" ORDER BY c.label";
1579 $res = $this->db->query($sql);
1581 while ($obj = $this->db->fetch_object($res)) {
1582 if ($mode ==
'id') {
1583 $cats[] = $obj->rowid;
1584 } elseif ($mode ==
'label') {
1585 $cats[] = $obj->label;
1588 $cat->id = $obj->rowid;
1589 $cat->label = $obj->label;
1598 $sql =
"SELECT ct.fk_categorie, c.label, c.rowid";
1599 $sql .=
" FROM ".MAIN_DB_PREFIX.
"categorie_".(empty($this->MAP_CAT_TABLE[$type]) ? $type : $this->MAP_CAT_TABLE[$type]).
" as ct, ".MAIN_DB_PREFIX.
"categorie as c";
1600 $sql .=
" WHERE ct.fk_categorie = c.rowid AND ct.fk_".(empty($this->MAP_CAT_FK[$type]) ? $type : $this->MAP_CAT_FK[$type]).
" = ".(
int) $id;
1604 $sql .=
" AND c.entity IN (".getEntity(
'category').
")";
1606 $res = $this->db->query($sql);
1608 while ($obj = $this->db->fetch_object($res)) {
1609 if ($mode ==
'id') {
1610 $cats[] = $obj->rowid;
1611 } elseif ($mode ==
'label') {
1612 $cats[] = $obj->label;
1615 $cat->fetch($obj->fk_categorie);
1639 public function rechercher($id, $nom, $type, $exact =
false, $case =
false)
1642 if (is_numeric($type)) {
1643 dol_syslog(__METHOD__.
': using numeric types is deprecated.', LOG_WARNING);
1649 if (is_numeric($type)) {
1651 $map_type = array_flip($this->MAP_ID);
1652 $type = $map_type[$type];
1653 dol_syslog(get_class($this).
"::rechercher(): numeric types are deprecated, please use string instead", LOG_WARNING);
1657 $sql =
"SELECT rowid FROM ".MAIN_DB_PREFIX.
"categorie";
1658 $sql .=
" WHERE type = ".((int) $this->MAP_ID[$type]);
1659 $sql .=
" AND entity IN (".getEntity(
'category').
")";
1662 $nom =
'%'.$this->db->escape(str_replace(
'*',
'%', $nom)).
'%';
1665 $sql .=
" AND label LIKE '".$this->db->escape($nom).
"'";
1667 $sql .=
" AND label LIKE BINARY '".$this->db->escape($nom).
"'";
1671 $sql .=
" AND rowid = ".((int) $id);
1674 $res = $this->db->query($sql);
1676 while ($rec = $this->db->fetch_array($res)) {
1678 $cat->fetch($rec[
'rowid']);
1684 $this->error = $this->db->error().
' sql='.$sql;
1697 include_once DOL_DOCUMENT_ROOT .
'/core/lib/files.lib.php';
1698 include_once DOL_DOCUMENT_ROOT .
'/core/lib/images.lib.php';
1700 $sdir .=
'/' .
get_exdir($this->
id, 2, 0, 0, $this,
'category') . $this->
id .
"/photos/";
1703 if (file_exists($dir_osencoded)) {
1704 $handle = opendir($dir_osencoded);
1705 if (is_resource($handle)) {
1706 while (($file = readdir($handle)) !==
false) {
1708 $file = mb_convert_encoding($file,
'UTF-8',
'ISO-8859-1');
1729 $langs->load(
'categories');
1733 $datas[
'label'] = $langs->trans(
"ShowCategory").
': '.($this->
ref ? $this->
ref : $this->label);
1751 public function getNomUrl($withpicto = 0, $option =
'', $maxlength = 0, $moreparam =
'', $notooltip = 0, $morecss =
'', $save_lastsearch_value = 0)
1753 global $conf, $langs, $hookmanager;
1755 if (!empty($conf->dol_no_mouse_hover)) {
1762 'objecttype' => $this->element,
1763 'option' => $option,
1765 $classfortooltip =
'classfortooltip';
1768 $classfortooltip =
'classforajaxtooltip';
1769 $dataparams =
' data-params="'.dol_escape_htmltag(json_encode($params)).
'"';
1775 $url = DOL_URL_ROOT.
'/categories/viewcat.php?id='.$this->
id.
'&type='.$this->
type.$moreparam.
'&backtopage='.urlencode($_SERVER[
'PHP_SELF'].($moreparam ?
'?'.$moreparam :
''));
1777 if ($option !==
'nolink') {
1779 $add_save_lastsearch_values = ($save_lastsearch_value == 1 ? 1 : 0);
1780 if ($save_lastsearch_value == -1 && isset($_SERVER[
"PHP_SELF"]) && preg_match(
'/list\.php/', $_SERVER[
"PHP_SELF"])) {
1781 $add_save_lastsearch_values = 1;
1783 if ($url && $add_save_lastsearch_values) {
1784 $url .=
'&save_lastsearch_values=1';
1789 $forced_color =
'categtextwhite';
1792 $forced_color =
'categtextblack';
1797 if (empty($notooltip)) {
1799 $label = $langs->trans(
"ShowMyObject");
1800 $linkclose .=
' alt="'.dol_escape_htmltag($label, 1).
'"';
1802 $linkclose .= ($label ?
' title="'.dol_escape_htmltag($label, 1).
'"' :
' title="tocomplete"');
1803 $linkclose .= $dataparams.
' class="'.$classfortooltip.
' '.$forced_color.($morecss ?
' '.$morecss :
'').
'"';
1805 $linkclose = ($morecss ?
' class="'.$forced_color.($morecss ?
' '.$morecss :
'').
'"' :
'');
1808 if ($option ==
'nolink' || empty($url)) {
1809 $linkstart =
'<span';
1811 $linkstart =
'<a href="'.$url.
'"';
1813 $linkstart .= $linkclose.
'>';
1814 if ($option ==
'nolink' || empty($url)) {
1815 $linkend =
'</span>';
1820 $result .= $linkstart;
1823 $result .=
img_object(($notooltip ?
'' : $label), ($this->picto ? $this->picto :
'generic'), ($notooltip ? (($withpicto != 2) ?
'class="paddingright"' :
'') :
'class="'.(($withpicto != 2) ?
'paddingright ' :
'').
'"'), 0, 0, $notooltip ? 0 : 1);
1826 if ($withpicto != 2) {
1827 $result .=
dol_trunc(($this->
ref ? $this->
ref : $this->label), $maxlength);
1830 $result .= $linkend;
1833 $hookmanager->initHooks(array($this->element .
'dao'));
1834 $parameters = array(
'id' => $this->
id,
'getnomurl' => &$result);
1835 $reshook = $hookmanager->executeHooks(
'getNomUrl', $parameters, $this, $action);
1837 $result = $hookmanager->resPrint;
1839 $result .= $hookmanager->resPrint;
1856 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
1858 $dir = $sdir.
'/'.
get_exdir($this->
id, 2, 0, 0, $this,
'category').$this->id.
"/";
1861 if (!file_exists($dir)) {
1865 if (file_exists($dir)) {
1866 if (is_array($file[
'name']) && count($file[
'name']) > 0) {
1867 $nbfile = count($file[
'name']);
1868 for ($i = 0; $i < $nbfile; $i++) {
1869 $originImage = $dir.$file[
'name'][$i];
1874 if (file_exists($originImage)) {
1880 $originImage = $dir.$file[
'name'];
1885 if (file_exists($originImage)) {
1904 include_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
1909 $dirthumb = $dir.
'thumbs/';
1911 if (file_exists($dir)) {
1912 $handle = opendir($dir);
1913 if (is_resource($handle)) {
1914 while (($file = readdir($handle)) !==
false) {
1915 if (
dol_is_file($dir.$file) && preg_match(
'/(\.jpeg|\.jpg|\.bmp|\.gif|\.png|\.tiff)$/i', $dir.$file)) {
1920 $photo_vignette =
'';
1922 if (preg_match(
'/(\.jpeg|\.jpg|\.bmp|\.gif|\.png|\.tiff)$/i', $photo, $regs)) {
1923 $photo_vignette = preg_replace(
'/'.$regs[0].
'/i',
'', $photo).
'_small'.$regs[0];
1928 $obj[
'photo'] = $photo;
1929 if ($photo_vignette && is_file($dirthumb.$photo_vignette)) {
1930 $obj[
'photo_vignette'] =
'thumbs/'.$photo_vignette;
1932 $obj[
'photo_vignette'] =
"";
1935 $tabobj[$nbphoto - 1] = $obj;
1938 if ($nbmax && $nbphoto >= $nbmax) {
1961 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
1963 $dir = dirname($file).
'/';
1964 $dirthumb = $dir.
'/thumbs/';
1965 $filename = preg_replace(
'/'.preg_quote($dir,
'/').
'/i',
'', $file);
1972 if (preg_match(
'/(\.jpeg|\.jpg|\.bmp|\.gif|\.png|\.tiff)$/i', $filename, $regs)) {
1973 $photo_vignette = preg_replace(
'/'.$regs[0].
'/i',
'', $filename).
'_small'.$regs[0];
1974 if (file_exists($dirthumb.$photo_vignette)) {
1990 $infoImg = getimagesize($file);
1991 $this->imgWidth = $infoImg[0];
1992 $this->imgHeight = $infoImg[1];
2007 $langs_available = $langs->get_available_languages();
2008 $current_lang = $langs->getDefaultLang();
2010 foreach ($langs_available as $key => $value) {
2011 $sql =
"SELECT rowid";
2012 $sql .=
" FROM ".MAIN_DB_PREFIX.
"categorie_lang";
2013 $sql .=
" WHERE fk_category=".((int) $this->
id);
2014 $sql .=
" AND lang = '".$this->db->escape($key).
"'";
2016 $result = $this->db->query($sql);
2018 if ($key == $current_lang) {
2020 if ($this->db->num_rows($result)) {
2021 $sql2 =
"UPDATE ".MAIN_DB_PREFIX.
"categorie_lang";
2022 $sql2 .=
" SET label = '".$this->db->escape($this->label).
"',";
2023 $sql2 .=
" description = '".$this->db->escape($this->
description).
"'";
2024 $sql2 .=
" WHERE fk_category = ".((int) $this->
id).
" AND lang = '".$this->db->escape($key).
"'";
2025 } elseif (isset($this->multilangs[$key])) {
2026 $sql2 =
"INSERT INTO ".MAIN_DB_PREFIX.
"categorie_lang (fk_category, lang, label, description)";
2027 $sql2 .=
" VALUES(".((int) $this->
id).
", '".$this->db->escape($key).
"', '".$this->db->escape($this->label).
"'";
2028 $sql2 .=
", '".$this->db->escape($this->multilangs[$key][
"description"]).
"')";
2030 dol_syslog(get_class($this).
'::setMultiLangs', LOG_DEBUG);
2031 if ($sql2 && !$this->db->query($sql2)) {
2032 $this->error = $this->db->lasterror();
2035 } elseif (isset($this->multilangs[$key])) {
2036 if ($this->db->num_rows($result)) {
2037 $sql2 =
"UPDATE ".MAIN_DB_PREFIX.
"categorie_lang";
2038 $sql2 .=
" SET label='".$this->db->escape($this->multilangs[$key][
"label"]).
"',";
2039 $sql2 .=
" description='".$this->db->escape($this->multilangs[$key][
"description"]).
"'";
2040 $sql2 .=
" WHERE fk_category=".((int) $this->
id).
" AND lang='".$this->db->escape($key).
"'";
2042 $sql2 =
"INSERT INTO ".MAIN_DB_PREFIX.
"categorie_lang (fk_category, lang, label, description)";
2043 $sql2 .=
" VALUES(".((int) $this->
id).
", '".$this->db->escape($key).
"', '".$this->db->escape($this->multilangs[$key][
"label"]).
"'";
2044 $sql2 .=
",'".$this->db->escape($this->multilangs[$key][
"description"]).
"')";
2048 if ($this->multilangs[$key][
"label"] || $this->multilangs[$key][
"description"] || $this->multilangs[$key][
"note"]) {
2049 dol_syslog(get_class($this).
'::setMultiLangs', LOG_DEBUG);
2051 if (!$this->db->query($sql2)) {
2052 $this->error = $this->db->lasterror();
2060 $result = $this->
call_trigger(
'CATEGORY_SET_MULTILANGS', $user);
2062 $this->error = $this->db->lasterror();
2080 $current_lang = $langs->getDefaultLang();
2082 $sql =
"SELECT lang, label, description";
2083 $sql .=
" FROM ".MAIN_DB_PREFIX.
"categorie_lang";
2084 $sql .=
" WHERE fk_category=".((int) $this->
id);
2086 $result = $this->db->query($sql);
2088 while ($obj = $this->db->fetch_object($result)) {
2090 if ($obj->lang == $current_lang) {
2091 $this->label = $obj->label;
2094 $this->multilangs[$obj->lang][
"label"] = $obj->label;
2095 $this->multilangs[$obj->lang][
"description"] = $obj->description;
2099 $this->error = $langs->trans(
"Error").
" : ".$this->db->error().
" - ".$sql;
2125 dol_syslog(get_class($this).
"::initAsSpecimen");
2129 $this->fk_parent = 0;
2130 $this->label =
'SPECIMEN';
2131 $this->specimen = 1;
2134 $this->
type = self::TYPE_PRODUCT;
2166 if ($type ==
'bank_account') {
2170 return " LEFT JOIN ".MAIN_DB_PREFIX.
"categorie_".$type.
" as cp ON ".$rowIdName.
" = cp.fk_".$type;
2184 if ($type ==
'bank_account') {
2187 if ($type ==
'customer') {
2190 if ($type ==
'supplier') {
2191 $type =
'fournisseur';
2194 if (empty($searchList) && !is_array($searchList)) {
2198 $searchCategorySqlList = array();
2199 foreach ($searchList as $searchCategory) {
2200 if (intval($searchCategory) == -2) {
2201 $searchCategorySqlList[] =
" cp.fk_categorie IS NULL";
2202 } elseif (intval($searchCategory) > 0) {
2203 $searchCategorySqlList[] =
" ".$rowIdName.
" IN (SELECT fk_".$type.
" FROM ".MAIN_DB_PREFIX.
"categorie_".$type.
" WHERE fk_categorie = ".((int) $searchCategory).
")";
2207 if (!empty($searchCategorySqlList)) {
2208 return " AND (".implode(
' AND ', $searchCategorySqlList).
")";
2221 dol_syslog(get_class($this).
"::count_all_categories", LOG_DEBUG);
2222 $sql =
"SELECT COUNT(rowid) FROM ".MAIN_DB_PREFIX.
"categorie";
2223 $sql .=
" WHERE entity IN (".getEntity(
'category').
")";
2225 $res = $this->db->query($sql);
2227 $obj = $this->db->fetch_object($res);
Class to manage categories.
getListForItem($id, $type='customer', $sortfield="s.rowid", $sortorder='ASC', $limit=0, $page=0)
List categories of an element id.
get_image_size($file)
Load size of image file.
load_motherof()
Load the array this->motherof that is array(id_son=>id_parent, ...)
get_full_arbo($type, $fromid=0, $include=0)
Rebuilding the category tree as an array Return an array of table('id','id_mere',....
getLibStatut($mode)
Return label of contact status.
delete_photo($file)
Efface la photo de la categorie et sa vignette.
containing($id, $type, $mode='object')
Return list of categories (object instances or labels) linked to element of id $id and type $type Sho...
getTooltipContentArray($params)
getTooltipContentArray
countNbOfCategories()
Count all categories.
del_type($obj, $type)
Delete object from category.
buildPathFromId($id_categ, $protection=1000)
For category id_categ and its children available in this->cats, define property fullpath and fulllabe...
static getFilterSelectQuery($type, $rowIdName, $searchList)
Return the additional SQL SELECT query for filtering a list by a category.
create($user, $notrigger=0)
Add category into database.
rechercher($id, $nom, $type, $exact=false, $case=false)
Returns categories whose id or name match add wildcards in the name unless $exact = true.
getMultiLangs()
Load array this->multilangs.
isAnyPhotoAvailable($sdir)
Return if at least one photo is available.
already_exists()
Check if a category with same label already exists for this cat's parent or root and for this cat's t...
get_filles()
Return direct children ids of a category into an array.
initAsSpecimen()
Initialise an instance with random values.
get_all_categories($type=null, $parent=false)
Returns all categories.
static getFilterJoinQuery($type, $rowIdName)
Return the additional SQL JOIN query for filtering a list by a category.
containsObject($type, $object_id)
Check for the presence of an object in a category.
get_main_categories($type=null)
Returns the top level categories (which are not child)
__construct($db)
Constructor.
static replaceThirdparty(DoliDB $dbs, $origin_id, $dest_id)
Function used to replace a thirdparty id with another one.
setMultiLangs(User $user, $notrigger=0)
Update ou cree les traductions des infos produits.
getObjectsInCateg($type, $onlyids=0, $limit=0, $offset=0, $sortfield='', $sortorder='ASC', $filter='', $filtermode='AND')
Return list of fetched instance of elements having this category.
getMapList()
Get map list.
get_meres()
Returns an array containing the list of parent categories.
add_type($obj, $type='')
Link an object to the category.
update(User $user, $notrigger=0)
Update category.
liste_photos($dir, $nbmax=0)
Return an array with all photos inside the directory.
get_all_ways()
Returns in a table all possible paths to get to the category starting with the major categories repre...
getNomUrl($withpicto=0, $option='', $maxlength=0, $moreparam='', $notooltip=0, $morecss='', $save_lastsearch_value=0)
Return name and link of category (with picto) Use ->id, ->ref, ->label, ->color.
print_all_ways($sep='>>', $url='', $nocolor=0, $addpicto=0)
Returns the path of the category, with the names of the categories separated by $sep (" >> " by defau...
add_photo($sdir, $file)
Add the image uploaded as $file to the directory $sdir/<category>-<id>/photos/.
fetch($id, $label='', $type=null, $ref_ext='')
Load category into memory from database.
Parent class of all other business classes (invoices, contracts, proposals, orders,...
fetch_optionals($rowid=null, $optionsArray=null)
Function to get extra fields of an object into $this->array_options This method is in most cases call...
deleteExtraFields()
Delete all extra fields values for the current object.
addThumbs($file)
Build thumb.
static commonReplaceThirdparty(DoliDB $dbs, $origin_id, $dest_id, array $tables, $ignoreerrors=0)
Function used to replace a thirdparty id with another one.
insertExtraFields($trigger='', $userused=null)
Add/Update all extra fields values for the current object.
call_trigger($triggerName, $user)
Call trigger based on this instance.
Class to manage Dolibarr database access.
Class to manage Dolibarr users.
print $script_file $mode $langs defaultlang(is_numeric($duration_value) ? " delay=". $duration_value :"").(is_numeric($duration_value2) ? " after cd cd cd description as description
Only used if Module[ID]Desc translation string is not found.
dol_delete_file($file, $disableglob=0, $nophperrors=0, $nohook=0, $object=null, $allowdotdot=false, $indexdatabase=1, $nolog=0)
Remove a file or several files with a mask.
dol_move_uploaded_file($src_file, $dest_file, $allowoverwrite, $disablevirusscan=0, $uploaderrorcode=0, $nohook=0, $varfiles='addedfile', $upload_dir='')
Check validity of a file upload from an GUI page, and move it to its final destination.
dol_is_file($pathoffile)
Return if path is a file.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
dol_osencode($str)
Return a string encoded into OS filesystem encoding.
forgeSQLFromUniversalSearchCriteria($filter, &$errorstr='', $noand=0, $nopar=0, $noerror=0)
forgeSQLFromUniversalSearchCriteria
dol_now($mode='auto')
Return date for now.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dol_sort_array(&$array, $index, $order='asc', $natsort=0, $case_sensitive=0, $keepindex=0)
Advanced sort array by the value of a given key, which produces ascending (default) or descending out...
colorIsLight($stringcolor)
Return true if the color is light.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_trunc($string, $size=40, $trunc='right', $stringencoding='UTF-8', $nodot=0, $display=0)
Truncate a string to a particular length adding '…' if string larger than length.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
sanitizeVal($out='', $check='alphanohtml', $filter=null, $options=null)
Return a sanitized or empty value after checking value against a rule.
utf8_check($str)
Check if a string is in UTF8.
get_exdir($num, $level, $alpha, $withoutslash, $object, $modulepart='')
Return a path to have a the directory according to object where files are stored.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
getEntity($element, $shared=1, $currentobject=null)
Get list of entity id to use.
dol_mkdir($dir, $dataroot='', $newmask='')
Creation of a directory (this can create recursive subdir)
image_format_supported($file, $acceptsvg=0)
Return if a filename is file name of a supported image format.
if(preg_match('/crypted:/i', $dolibarr_main_db_pass)||!empty($dolibarr_main_db_encrypted_pass)) $conf db type