mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-20 14:43:49 +00:00
batch replacing ', ou' in filters
This commit is contained in:
@@ -63,7 +63,7 @@ class AdministrativeLocationFilter implements FilterInterface
|
||||
}
|
||||
|
||||
return ['Filtered by administratives locations: only %locations%', [
|
||||
'%locations%' => implode(', ou ', $locations),
|
||||
'%locations%' => implode(', ', $locations),
|
||||
]];
|
||||
}
|
||||
|
||||
|
@@ -77,7 +77,7 @@ class ClosingMotiveFilter implements FilterInterface
|
||||
|
||||
return [
|
||||
'Filtered by closingmotive: only %closingmotives%', [
|
||||
'%closingmotives%' => implode(', ou ', $motives),
|
||||
'%closingmotives%' => implode(', ', $motives),
|
||||
], ];
|
||||
}
|
||||
|
||||
|
@@ -87,7 +87,7 @@ class EvaluationFilter implements FilterInterface
|
||||
}
|
||||
|
||||
return ['Filtered by evaluations: only %evals%', [
|
||||
'%evals%' => implode(', ou ', $evaluations),
|
||||
'%evals%' => implode(', ', $evaluations),
|
||||
]];
|
||||
}
|
||||
|
||||
|
@@ -76,7 +76,7 @@ class OriginFilter implements FilterInterface
|
||||
}
|
||||
|
||||
return ['Filtered by origins: only %origins%', [
|
||||
'%origins%' => implode(', ou ', $origins),
|
||||
'%origins%' => implode(', ', $origins),
|
||||
]];
|
||||
}
|
||||
|
||||
|
@@ -89,7 +89,7 @@ class ReferrerFilter implements FilterInterface
|
||||
|
||||
return [
|
||||
'Filtered by referrer: only %referrers%', [
|
||||
'%referrers' => implode(', ou ', $users),
|
||||
'%referrers' => implode(', ', $users),
|
||||
], ];
|
||||
}
|
||||
|
||||
|
@@ -84,7 +84,7 @@ class SocialActionFilter implements FilterInterface
|
||||
}
|
||||
|
||||
return ['Filtered by socialactions: only %socialactions%', [
|
||||
'%socialactions%' => implode(', ou ', $actions),
|
||||
'%socialactions%' => implode(', ', $actions),
|
||||
]];
|
||||
}
|
||||
|
||||
|
@@ -89,7 +89,7 @@ class SocialIssueFilter implements FilterInterface
|
||||
|
||||
return [
|
||||
'Filtered by socialissues: only %socialissues%', [
|
||||
'%socialissues%' => implode(', ou ', $issues),
|
||||
'%socialissues%' => implode(', ', $issues),
|
||||
], ];
|
||||
}
|
||||
|
||||
|
@@ -76,7 +76,7 @@ final class EvaluationTypeFilter implements FilterInterface
|
||||
}
|
||||
|
||||
return ['Filtered by evaluation type: only %evals%', [
|
||||
'%evals%' => implode(', ou ', $evals),
|
||||
'%evals%' => implode(', ', $evals),
|
||||
]];
|
||||
}
|
||||
|
||||
|
@@ -95,7 +95,7 @@ class CompositionFilter implements FilterInterface
|
||||
}
|
||||
|
||||
return ['Filtered by composition: only %compositions% on %ondate%', [
|
||||
'%compositions%' => implode(', ou ', $compositions),
|
||||
'%compositions%' => implode(', ', $compositions),
|
||||
'%ondate%' => $data['on_date']->format('d-m-Y'),
|
||||
]];
|
||||
}
|
||||
|
@@ -90,7 +90,7 @@ class JobFilter implements FilterInterface
|
||||
}
|
||||
|
||||
return ['Filtered by treating agent job: only %jobs%', [
|
||||
'%jobs%' => implode(', ou ', $userjobs),
|
||||
'%jobs%' => implode(', ', $userjobs),
|
||||
]];
|
||||
}
|
||||
|
||||
|
@@ -81,7 +81,7 @@ class ReferrerFilter implements FilterInterface
|
||||
|
||||
return [
|
||||
'Filtered by treating agent: only %agents%', [
|
||||
'%agents' => implode(', ou ', $users),
|
||||
'%agents' => implode(', ', $users),
|
||||
], ];
|
||||
}
|
||||
|
||||
|
@@ -90,7 +90,7 @@ class ScopeFilter implements FilterInterface
|
||||
}
|
||||
|
||||
return ['Filtered by treating agent scope: only %scopes%', [
|
||||
'%scopes%' => implode(', ou ', $scopes),
|
||||
'%scopes%' => implode(', ', $scopes),
|
||||
]];
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user