Lines Matching defs:all
44 $all = $this->getMaintainers($watchcycle['maintainer']);
45 $title = $this->getLang('maintained by') . implode(', ', array_keys($all)) . ' ';
93 $all = explode(',', $def);
94 foreach ($all as $item) {
128 $all = explode(',', $def);
129 foreach ($all as $item) {
181 $all = explode(',', $def);
182 foreach ($all as $item) {
195 * Inform all maintainers that the page needs checking
232 * @param array $all
235 protected function flattenMaintainers($all)
237 if (empty($all['users'])) {
238 return $all;
241 $users = array_map(static fn($user) => $user['name'], $all['users']);
243 return array_merge($users, $all['groups']);
249 * @param array $all
252 protected function expandMaintainers($all)
254 if (empty($all['groups'])) {
255 return $all;
263 foreach ($all['groups'] as $group) {
268 return array_merge($all['users'], $members);