Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
fusiondirectory
fusiondirectory
Commits
ef35d154
Verified
Commit
ef35d154
authored
1 year ago
by
dockx thibault
Browse files
Options
Download
Patches
Plain Diff
Feat(CORE) - Add lastExec to tasks
Add last exec to tasks.
parent
e225a216
dev
6342-update-the-locales-for-1-5
6344-template-issue-when-creating-a-template-with-empty-password-error-message-should-not-be-seen
6365-core-locking-mechanism-is-not-changing-the-mail-ressource-it-does-lock-the-mail-account
6365-core-when-lock-mechanism-is-trigger-the-user-should-not-be-editable-if-not-unlock
core-php8
master
fusiondirectory-1.5
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
contrib/openldap/core-fd.schema
+10
-2
contrib/openldap/core-fd.schema
plugins/configuration/tasks/class_tasks.inc
+10
-0
plugins/configuration/tasks/class_tasks.inc
with
20 additions
and
2 deletions
+20
-2
contrib/openldap/core-fd.schema
+
10
−
2
View file @
ef35d154
...
...
@@ -2,6 +2,8 @@
## core-fd.schema - Needed by FusionDirectory for its basic fonctionnalities
##
# Last OID used : 1.3.6.1.4.1.38414.62.1.57 12/21/23
##### Attributes from gosa ######
attributetype ( 1.3.6.1.4.1.10098.1.1.12.30 NAME 'gosaGroupObjects'
...
...
@@ -167,6 +169,11 @@ attributetype ( 1.3.6.1.4.1.38414.62.1.15 NAME 'fdTasksEndDate'
EQUALITY caseExactMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )
attributetype ( 1.3.6.1.4.1.38414.62.1.57 NAME 'fdTasksLastExec'
DESC 'Fusion Directory - Time when tasks was last executed'
EQUALITY caseExactMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )
attributetype ( 1.3.6.1.4.1.38414.62.1.16 NAME 'fdTasksCreationDate'
DESC 'Fusion Directory - Task Start Date'
EQUALITY caseExactMatch
...
...
@@ -341,7 +348,7 @@ attributetype ( 1.3.6.1.4.1.38414.62.1.43 NAME 'fdPluginManagerSupportDownloadUr
SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 )
attributetype ( 1.3.6.1.4.1.38414.62.1.44 NAME 'fdPluginManagerInfoTags'
DESC 'FusionDirectory - Plugin Tag for identiy plugins goals'
DESC 'FusionDirectory - Plugin Tag for identi
t
y plugins goals'
EQUALITY caseIgnoreIA5Match
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 )
...
...
@@ -476,7 +483,8 @@ objectclass ( 1.3.6.1.4.1.38414.62.2.5 NAME 'fdMailTemplateConf'
objectclass (1.3.6.1.4.1.38414.62.2.6 NAME 'fdTasks'
DESC 'FusionDirectory - Tasks objects'
MUST ( cn $ fdTasksStatus $ fdTasksCreationDate )
MAY ( fdTasksScheduleDate $ fdTasksEndDate $ fdTasksRepeatableSchedule $ fdTasksUpdatable $ fdTasksRepeatable ) )
MAY ( fdTasksScheduleDate $ fdTasksEndDate $ fdTasksRepeatableSchedule $ fdTasksUpdatable $ fdTasksRepeatable
$ fdTasksLastExec))
objectclass (1.3.6.1.4.1.38414.62.2.7 NAME 'fdTasksMail'
DESC 'FusionDirectory - Tasks objects Mail'
...
...
This diff is collapsed.
Click to expand it.
plugins/configuration/tasks/class_tasks.inc
+
10
−
0
View file @
ef35d154
...
...
@@ -57,6 +57,7 @@ class tasks extends simplePlugin
),
new
HiddenAttribute
(
'fdTasksStatus'
,
TRUE
,
'1'
,
''
,
'Status'
,
'Status of the task'
),
new
HiddenAttribute
(
'fdTasksLastExec'
,
FALSE
,
''
,
''
,
'LastExec'
,
'Last exec date'
),
new
HiddenAttribute
(
'fdTasksCreationDate'
,
TRUE
,
date
(
"Y-m-d h:i:sa"
),
''
,
'StartDate'
,
'Start Date And Time Of A Task'
),
]
],
...
...
@@ -108,4 +109,13 @@ class tasks extends simplePlugin
$this
->
attributesAccess
[
'fdSubTasksActivation'
]
->
setInLdap
(
FALSE
);
}
function
save
():
array
{
// Verification if the bool of activation is ticked and activate the last exec accordingly.
if
(
$this
->
fdSubTasksActivation
==
TRUE
)
{
$currentDateTime
=
date
(
"Y-m-d h:i:sa"
,
time
());
$this
->
fdTasksLastExec
=
$currentDateTime
;
}
return
parent
::
save
();
}
}
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
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
Menu
Explore
Projects
Groups
Topics
Snippets