public function GroupContentType::getGroupType in Group 8
Same name and namespace in other branches
- 2.0.x src/Entity/GroupContentType.php \Drupal\group\Entity\GroupContentType::getGroupType()
Gets the group type the content type was created for.
Return value
\Drupal\group\Entity\GroupTypeInterface The group type for which the content type was created.
Overrides GroupContentTypeInterface::getGroupType
1 call to GroupContentType::getGroupType()
- GroupContentType::updateContentPlugin in src/
Entity/ GroupContentType.php - Updates the configuration of the content enabler plugin.
File
- src/
Entity/ GroupContentType.php, line 126
Class
- GroupContentType
- Defines the Group content type configuration entity.
Namespace
Drupal\group\EntityCode
public function getGroupType() {
return GroupType::load($this
->getGroupTypeId());
}