This repository has been archived by the owner on Oct 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #39 from OPEN-DSI/2024_rc
2024 rc -> 2024
- Loading branch information
Showing
12 changed files
with
36 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
{ | ||
"dol_min": 14, | ||
"dol_max": 18 | ||
"dlb_min_version": 14, | ||
"dlb_max_version": 18, | ||
"php_min_version": 7.1, | ||
"php_max_version": 8.2 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
14.0.2 | ||
14.0.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,13 +67,14 @@ public function __construct($db) | |
// Module description, used if translation string 'ModuleXXXDesc' not found (where XXX is value of numeric property 'numero' of module) | ||
$this->description = "Description of module Advanced Dictionaries"; | ||
$this->descriptionlong = ""; | ||
$this->editor_name = '<b>Easya Solutions</b> (Ex Open-Dsi)'; | ||
$this->editor_name = '<b>Easya Solutions</b>'; | ||
$this->editor_web = 'https://easya.solutions'; | ||
$this->editor_url = "https://easya.solutions"; | ||
$this->editor_email = '[email protected]'; | ||
|
||
// Possible values for version are: 'development', 'experimental', 'dolibarr', 'dolibarr_deprecated' or a version string like 'x.y.z' | ||
$this->version = file_get_contents(__DIR__.'/../../VERSION'); | ||
$this->url_last_version = 'https://git.open-dsi.fr/dolibarr-extension/'.strtolower($this->name).'/-/raw/2024/VERSION'; | ||
// Key used in llx_const table to save module status enabled/disabled (where MYMODULE is value of property name of module in uppercase) | ||
$this->const_name = 'MAIN_MODULE_'.strtoupper($this->name); | ||
// Name of image file used for this module. | ||
|
@@ -121,8 +122,9 @@ public function __construct($db) | |
$this->depends = array(); // List of modules id that must be enabled if this module is enabled | ||
$this->requiredby = array(); // List of modules id to disable if this one is disabled | ||
$this->conflictwith = array(); // List of modules id this module is in conflict with | ||
$this->phpmin = array(5,0); // Minimum version of PHP required by module | ||
$this->need_dolibarr_version = array(4,0); // Minimum version of Dolibarr required by module | ||
$easya_info = json_decode(file_get_contents(__DIR__.'/../../.easya_info.json')); | ||
$this->phpmin = explode('.', $easya_info->php_min_version); // Minimum version of PHP required by module | ||
$this->need_dolibarr_version = explode('.', $easya_info->dlb_min_version); // Minimum version of Dolibarr required by module | ||
$this->langfiles = array("advancedictionaries@advancedictionaries", "opendsi@advancedictionaries"); | ||
$langs->load('advancedictionaries@advancedictionaries'); | ||
|
||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,5 @@ CHARSET=UTF-8 | |
easyaFamily=Easya Solutions | ||
OpenDsiAboutDesc1=Ce module a été développé par <a href="https://easya.solutions" target="_blank">Easya Solutions</a><br><br>Pour toute question technique ou retour, déposez une demande de support sur | ||
OpenDsiAboutDesc2=notre support | ||
OpenDsiAboutDesc3=ou contactez-nous sur <a href="mailto:[email protected]">[email protected]</a><br><br>Pour toute question commerciale, contactez-nous sur <a href="mailto:[email protected]">[email protected]</a> ou au +33 4 82 53 94 76<br><br>Retrouvez nos autres modules sur <a href="http://www.dolistore.com/search.php?orderby=position&orderway=desc&search_query=open-dsi&submit_search=Rechercher" target="_blank">Dolistore</a> | ||
OpenDsiAboutDesc3=<br><br>Pour toute question commerciale, contactez-nous sur <a href="mailto:[email protected]">[email protected]</a> ou au +33 4 82 53 94 76<br><br>Retrouvez nos autres modules sur <a href="http://www.dolistore.com/search.php?orderby=position&orderway=desc&search_query=easya&submit_search=Rechercher" target="_blank">Dolistore</a> | ||
OpenDsiChangeLog=Fichier de log |