ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMailSearchGroupsGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
27 {
28  protected function getObjectType(): string
29  {
30  return 'grp';
31  }
32 
33  protected function getLocalDefaultRolePrefixes(): array
34  {
35  return [
36  'il_grp_member_',
37  'il_grp_admin_',
38  ];
39  }
40 
41  protected function doesExposeMembers(ilObject $object): bool
42  {
43  $showMemberListEnabled = (bool) $object->getShowMembers();
44  $isPrivilegedUser = $this->rbacsystem->checkAccess('write', $object->getRefId());
45 
46  return $showMemberListEnabled || $isPrivilegedUser;
47  }
48 }