Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
dolibarr_module_tasktoagenda
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dolibarr extension
dolibarr_module_tasktoagenda
Commits
36a3adb4
Commit
36a3adb4
authored
10 months ago
by
Thomas Negre
Browse files
Options
Downloads
Plain Diff
Merge branch '2024_rc_version' into '2024_rc'
fix correction version See merge request
!13
parents
6613d759
f0cc253f
No related branches found
No related tags found
2 merge requests
!15
merge 2024 rc dans 2024
,
!13
fix correction version
Pipeline
#2205
passed with warnings
10 months ago
Stage: test
Stage: code_quality
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
ChangeLog.md
+5
-1
5 additions, 1 deletion
ChangeLog.md
VERSION
+1
-1
1 addition, 1 deletion
VERSION
core/modules/modTaskToAgenda.class.php
+5
-2
5 additions, 2 deletions
core/modules/modTaskToAgenda.class.php
with
11 additions
and
4 deletions
ChangeLog.md
+
5
−
1
View file @
36a3adb4
...
...
@@ -3,6 +3,9 @@ Le format du fichier est basé sur [Tenez un ChangeLog](http://keepachangelog.co
## [Non Distribué]
## [14.0.10] - 05-06-2024
-
Correction version.
## [14.0.9] - 29-05-2024
-
Ajout CI.
...
...
@@ -50,7 +53,8 @@ Le format du fichier est basé sur [Tenez un ChangeLog](http://keepachangelog.co
## [4.0.0] - 06-09-2017
-
Version initial.
[
Non Distribué
]:
http://git.open-dsi.fr/dolibarr-extension/tasktoagenda/compare/14.0.9...HEAD
[
Non Distribué
]:
http://git.open-dsi.fr/dolibarr-extension/tasktoagenda/compare/14.0.10...HEAD
[
14.0.10
]:
http://git.open-dsi.fr/dolibarr-extension/tasktoagenda/commits/14.0.10
[
14.0.9
]:
http://git.open-dsi.fr/dolibarr-extension/tasktoagenda/commits/14.0.9
[
14.0.8
]:
http://git.open-dsi.fr/dolibarr-extension/tasktoagenda/commits/14.0.8
[
14.0.7
]:
http://git.open-dsi.fr/dolibarr-extension/tasktoagenda/commits/14.0.7
...
...
This diff is collapsed.
Click to expand it.
VERSION
+
1
−
1
View file @
36a3adb4
14.0.9
\ No newline at end of file
14.0.10
\ No newline at end of file
This diff is collapsed.
Click to expand it.
core/modules/modTaskToAgenda.class.php
+
5
−
2
View file @
36a3adb4
...
...
@@ -122,8 +122,11 @@ class modTaskToAgenda extends DolibarrModules
$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
(
7
,
0
);
// Minimum version of Dolibarr required by module
// $this->phpmin = array(5, 0); // Minimum version of PHP required by module
// $this->need_dolibarr_version = array(7, 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
(
"tasktoagenda@tasktoagenda"
,
"opendsi@tasktoagenda"
);
$langs
->
load
(
'tasktoagenda@tasktoagenda'
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment