public function GroupType::getOutsiderRole in Group 2.0.x
Same name and namespace in other branches
- 8 src/Entity/GroupType.php \Drupal\group\Entity\GroupType::getOutsiderRole()
Gets the generic outsider group role for this group type.
Return value
\Drupal\group\Entity\GroupRoleInterface The outsider group role this group type uses.
Overrides GroupTypeInterface::getOutsiderRole
File
- src/
Entity/ GroupType.php, line 185
Class
- GroupType
- Defines the Group type configuration entity.
Namespace
Drupal\group\EntityCode
public function getOutsiderRole() {
return $this
->entityTypeManager()
->getStorage('group_role')
->load($this
->getOutsiderRoleId());
}