';
print '';
print $langs->trans("Categories");
diff --git a/htdocs/commande/class/commande.class.php b/htdocs/commande/class/commande.class.php
index 859afdee86d9f..1018a847ff983 100644
--- a/htdocs/commande/class/commande.class.php
+++ b/htdocs/commande/class/commande.class.php
@@ -832,14 +832,15 @@ public function cloture($user, $notrigger = 0)
}
/**
- * Sets object to supplied categories.
+ * Sets object to given categories.
*
- * Deletes object from existing categories not supplied.
* Adds it to non existing supplied categories.
+ * Deletes object from existing categories not supplied.
* Existing categories are left untouch.
*
- * @param int[]|int $categories Category or categories IDs
- * @return void
+ * @param int[]|int $categories Category ID or array of Categories IDs
+ *
+ * @return int Return integer <0 if KO, >0 if OK
*/
public function setCategories($categories)
{
diff --git a/htdocs/core/class/html.form.class.php b/htdocs/core/class/html.form.class.php
index 05037dab66458..ca641bc286a74 100644
--- a/htdocs/core/class/html.form.class.php
+++ b/htdocs/core/class/html.form.class.php
@@ -10920,18 +10920,19 @@ public function selectInvoiceRec($selected = '', $htmlname = 'facrecid', $maxlen
/**
- * Output a combo list with orders qualified for a third party
+ * Output a combo list with orders qualified for a third party
*
- * @param int $selected Id order preselected
- * @param string $htmlname Name of HTML select
- * @param int $maxlength Maximum length of label
- * @param int $option_only Return only html options lines without the select tag
- * @param string $show_empty Add an empty line ('1' or string to show for empty line)
- * @param int $discard_closed Discard closed projects (0=Keep,1=hide completely,2=Disable)
- * @param int $forcefocus Force focus on field (works with javascript only)
- * @param int $disabled Disabled
- * @param string $morecss More css added to the select component
- * @return int Nbr of project if OK, <0 if KO
+ * @param string $selected Id order preselected
+ * @param string $htmlname Name of HTML select
+ * @param int $maxlength Maximum length of label
+ * @param int $option_only Return only html options lines without the select tag
+ * @param string $show_empty Add an empty line ('1' or string to show for empty line)
+ * @param int $discard_closed Discard closed projects (0=Keep,1=hide completely,2=Disable)
+ * @param int $forcefocus Force focus on field (works with javascript only)
+ * @param int $disabled Disabled
+ * @param string $morecss More css added to the select component
+ *
+ * @return int Nbr of project if OK, <0 if KO
*/
public function selectOrder($selected = '', $htmlname = 'orderid', $maxlength = 24, $option_only = 0, $show_empty = '1', $discard_closed = 0, $forcefocus = 0, $disabled = 0, $morecss = 'maxwidth500')
{
@@ -10954,7 +10955,7 @@ public function selectOrder($selected = '', $htmlname = 'orderid', $maxlength =
// Use select2 selector
if (!empty($conf->use_javascript_ajax)) {
include_once DOL_DOCUMENT_ROOT.'/core/lib/ajax.lib.php';
- $comboenhancement = ajax_combobox($htmlname, '', 0, $forcefocus);
+ $comboenhancement = ajax_combobox($htmlname, array(), 0, $forcefocus);
$out .= $comboenhancement;
$morecss = 'minwidth200imp maxwidth500';
}
diff --git a/htdocs/core/menus/standard/eldy.lib.php b/htdocs/core/menus/standard/eldy.lib.php
index 4e7fcee2e7837..a38930b16ec28 100644
--- a/htdocs/core/menus/standard/eldy.lib.php
+++ b/htdocs/core/menus/standard/eldy.lib.php
@@ -1388,7 +1388,7 @@ function get_left_menu_commercial($mainmenu, &$newmenu, $usemenuhider = 1, $left
}
// Categories
- if (isModEnabled('categorie')) {
+ if (isModEnabled('category')) {
$langs->load("categories");
$newmenu->add("/categories/index.php?leftmenu=cat&type=16", $langs->trans("Categories"), 1, $user->hasRight('categorie', 'lire'), '', $mainmenu, 'cat');
}
diff --git a/htdocs/core/modules/modCategorie.class.php b/htdocs/core/modules/modCategorie.class.php
index 59681a537b3c3..087a71f9540f7 100644
--- a/htdocs/core/modules/modCategorie.class.php
+++ b/htdocs/core/modules/modCategorie.class.php
@@ -663,7 +663,7 @@ public function __construct($db)
* @param int $cat_id Categorie id
* @param string $class Class of the linked object
* @param string $enabled Condition to enable this export
- * @param string $permission Permission to export the linked object
+ * @param array $permission Permission to export the linked object
* @param array $fields_list Additional fields of the linked object to export
*
* @return void
@@ -751,7 +751,7 @@ protected function importTagLinks(
int $cat_id,
string $class_file,
string $class,
- string $element,
+ string $element
) {
$cat_type = Categorie::$MAP_ID_TO_CODE[$cat_id];
|
|