mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
batch replacing ', ou' in filters
This commit is contained in:
parent
93713f2ac2
commit
a7a921ee4d
@ -62,7 +62,7 @@ class ByCreatorFilter implements FilterInterface
|
||||
}
|
||||
|
||||
return ['Filtered activity by creator: only %users%', [
|
||||
'%users%' => implode(', ou ', $users),
|
||||
'%users%' => implode(', ', $users),
|
||||
]];
|
||||
}
|
||||
|
||||
|
@ -72,7 +72,7 @@ class BySocialActionFilter implements FilterInterface
|
||||
}
|
||||
|
||||
return ['Filtered activity by linked socialaction: only %actions%', [
|
||||
'%actions%' => implode(', ou ', $actions),
|
||||
'%actions%' => implode(', ', $actions),
|
||||
]];
|
||||
}
|
||||
|
||||
|
@ -72,7 +72,7 @@ class BySocialIssueFilter implements FilterInterface
|
||||
}
|
||||
|
||||
return ['Filtered activity by linked socialissue: only %issues%', [
|
||||
'%issues%' => implode(', ou ', $issues),
|
||||
'%issues%' => implode(', ', $issues),
|
||||
]];
|
||||
}
|
||||
|
||||
|
@ -77,7 +77,7 @@ class LocationTypeFilter implements FilterInterface
|
||||
}
|
||||
|
||||
return ['Filtered activity by locationtype: only %types%', [
|
||||
'%types%' => implode(', ou ', $types),
|
||||
'%types%' => implode(', ', $types),
|
||||
]];
|
||||
}
|
||||
|
||||
|
@ -71,7 +71,7 @@ class UserFilter implements FilterInterface
|
||||
}
|
||||
|
||||
return ['Filtered activity by user: only %users%', [
|
||||
'%users%' => implode(', ou ', $users),
|
||||
'%users%' => implode(', ', $users),
|
||||
]];
|
||||
}
|
||||
|
||||
|
@ -85,7 +85,7 @@ class UserScopeFilter implements FilterInterface
|
||||
}
|
||||
|
||||
return ['Filtered activity by userscope: only %scopes%', [
|
||||
'%scopes%' => implode(', ou ', $scopes),
|
||||
'%scopes%' => implode(', ', $scopes),
|
||||
]];
|
||||
}
|
||||
|
||||
|
@ -91,7 +91,7 @@ class ActivityTypeFilter implements ExportElementValidatedInterface, FilterInter
|
||||
);
|
||||
|
||||
return ['Filtered by activity type: only %list%', [
|
||||
'%list%' => implode(', ou ', $reasonsNames),
|
||||
'%list%' => implode(', ', $reasonsNames),
|
||||
]];
|
||||
}
|
||||
|
||||
|
@ -76,7 +76,7 @@ class AgentFilter implements FilterInterface
|
||||
|
||||
return [
|
||||
'Filtered by agent: only %agents%', [
|
||||
'%agents' => implode(', ou ', $users),
|
||||
'%agents' => implode(', ', $users),
|
||||
], ];
|
||||
}
|
||||
|
||||
|
@ -90,7 +90,7 @@ class JobFilter implements FilterInterface
|
||||
}
|
||||
|
||||
return ['Filtered by agent job: only %jobs%', [
|
||||
'%jobs%' => implode(', ou ', $userJobs),
|
||||
'%jobs%' => implode(', ', $userJobs),
|
||||
]];
|
||||
}
|
||||
|
||||
|
@ -90,7 +90,7 @@ class ScopeFilter implements FilterInterface
|
||||
}
|
||||
|
||||
return ['Filtered by agent scope: only %scopes%', [
|
||||
'%scopes%' => implode(', ou ', $scopes),
|
||||
'%scopes%' => implode(', ', $scopes),
|
||||
]];
|
||||
}
|
||||
|
||||
|
@ -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),
|
||||
]];
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user