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
36c852f8
Verified
Commit
36c852f8
authored
1 month ago
by
dockx thibault
Browse files
Options
Download
Patches
Plain Diff
Feat(workflow) - adapts workflow to php8.2
Adapts workflow to php8.2
parent
18edbb97
core-php8
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
plugins/workflow/tasks/class_tasks.inc
+2
-2
plugins/workflow/tasks/class_tasks.inc
plugins/workflow/tasks/class_tasksMail.inc
+6
-15
plugins/workflow/tasks/class_tasksMail.inc
with
8 additions
and
17 deletions
+8
-17
plugins/workflow/tasks/class_tasks.inc
+
2
−
2
View file @
36c852f8
...
...
@@ -258,7 +258,7 @@ class tasks extends simplePlugin
if
(
!
empty
(
$groups
))
{
// Verify if the values received is a member or a group and collect the members DN
foreach
(
$groups
as
$group
)
{
if
(
str
pos
(
$group
,
"ou=groups"
)
!==
FALSE
)
{
if
(
str
_contains
((
string
)
$group
,
"ou=groups"
))
{
// Position ldap to the dn required (limit search).
$ldap
->
cd
(
$group
);
...
...
@@ -286,7 +286,7 @@ class tasks extends simplePlugin
// Iterate on the DN list to remove any members representing a group (members of that potential groups were extracted).
foreach
(
$listMemberDN
as
$key
=>
$value
)
{
if
(
str
pos
(
$value
,
'ou=groups'
)
!==
FALSE
)
{
if
(
str
_contains
((
string
)
$value
,
'ou=groups'
))
{
unset
(
$listMemberDN
[
$key
]);
}
}
...
...
This diff is collapsed.
Click to expand it.
plugins/workflow/tasks/class_tasksMail.inc
+
6
−
15
View file @
36c852f8
...
...
@@ -152,20 +152,11 @@ class tasksMail extends simplePlugin
*/
public
function
getMailObject
(
string
$mailAttr
):
string
{
switch
(
$mailAttr
)
{
case
'mail'
:
case
'gosaMailAlternateAddress'
:
case
'gosaMailForwardingAddress'
:
return
'gosaMailAccount'
;
case
'supannAutreMail'
:
case
'supannMailPerso'
:
case
'supannMailPrive'
:
return
'supannPerson'
;
default
:
return
'gosaMailAccount'
;
}
return
match
(
$mailAttr
)
{
'mail'
,
'gosaMailAlternateAddress'
,
'gosaMailForwardingAddress'
=>
'gosaMailAccount'
,
'supannAutreMail'
,
'supannMailPerso'
,
'supannMailPrive'
=>
'supannPerson'
,
default
=>
'gosaMailAccount'
,
};
}
/*
...
...
@@ -191,7 +182,7 @@ class tasksMail extends simplePlugin
if
(
!
empty
(
$info
[
$mailAttr
][
0
]))
{
// Remove anything between curly braces (e.g., {PERSO}, {PRO} as well as supann labels)
$cleanMail
=
preg_replace
(
'/.+?(?=supann)/'
,
''
,
$info
[
$mailAttr
][
0
]);
$cleanMail
=
preg_replace
(
'/.+?(?=supann)/'
,
''
,
(
string
)
$info
[
$mailAttr
][
0
]);
$finalMail
=
preg_replace
(
'/\{.*?\}/'
,
''
,
$cleanMail
);
$mailList
[]
=
$finalMail
;
...
...
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