You are here

public function GroupType::getAnonymousRoleId in Group 8

Same name and namespace in other branches
  1. 2.0.x src/Entity/GroupType.php \Drupal\group\Entity\GroupType::getAnonymousRoleId()

Gets the generic anonymous role ID.

Return value

string The ID of the anonymous group role this group type uses.

Overrides GroupTypeInterface::getAnonymousRoleId

1 call to GroupType::getAnonymousRoleId()
GroupType::getAnonymousRole in src/Entity/GroupType.php
Gets the generic anonymous group role for this group type.

File

src/Entity/GroupType.php, line 178

Class

GroupType
Defines the Group type configuration entity.

Namespace

Drupal\group\Entity

Code

public function getAnonymousRoleId() {
  return $this
    ->id() . '-anonymous';
}