Verified Commit 36c852f8 authored by dockx thibault's avatar dockx thibault
Browse files

:sparkles: Feat(workflow) - adapts workflow to php8.2

Adapts workflow to php8.2
No related merge requests found
Showing with 8 additions and 17 deletions
+8 -17
......@@ -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 (strpos($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 (strpos($value, 'ou=groups') !== FALSE) {
if (str_contains((string) $value, 'ou=groups')) {
unset($listMemberDN[$key]);
}
}
......
......@@ -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;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment