Update DolibarrModules.class.php

This commit is contained in:
Frédéric FRANCE 2023-01-09 12:09:16 +01:00 committed by GitHub
parent 64a59b3a4b
commit baeff3710c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,7 @@
* Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com> * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
* Copyright (C) 2014 Raphaël Doursenaud <rdoursenaud@gpcsolutions.fr> * Copyright (C) 2014 Raphaël Doursenaud <rdoursenaud@gpcsolutions.fr>
* Copyright (C) 2018 Josep Lluís Amador <joseplluis@lliuretic.cat> * Copyright (C) 2018 Josep Lluís Amador <joseplluis@lliuretic.cat>
* Copyright (C) 2019 Frédéric France <frederic.france@netlogic.fr> * Copyright (C) 2019-2022 Frédéric France <frederic.france@netlogic.fr>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -180,6 +180,11 @@ class DolibarrModules // Can not be abstract, because we need to instantiate it
*/ */
public $error; public $error;
/**
* @var string[] Array of Errors messages
*/
public $errors;
/** /**
* @var string Module version * @var string Module version
* @see http://semver.org * @see http://semver.org
@ -220,16 +225,12 @@ class DolibarrModules // Can not be abstract, because we need to instantiate it
public $descriptionlong; public $descriptionlong;
/** /**
* dictionaries * @var array dictionaries description
*
* @var array
*/ */
public $dictionaries; public $dictionaries;
/** /**
* tabs * @var array tabs description
*
* @var array
*/ */
public $tabs; public $tabs;