public function GroupType::getInstalledContentPlugins in Group 2.0.x
Same name and namespace in other branches
- 8 src/Entity/GroupType.php \Drupal\group\Entity\GroupType::getInstalledContentPlugins()
Returns the installed group relation plugins for this group type.
Return value
\Drupal\group\Plugin\Group\Relation\GroupRelationCollection The group content plugin collection.
Overrides GroupTypeInterface::getInstalledContentPlugins
File
- src/
Entity/ GroupType.php, line 320
Class
- GroupType
- Defines the Group type configuration entity.
Namespace
Drupal\group\EntityCode
public function getInstalledContentPlugins() {
return $this
->getContentEnablerManager()
->getInstalled($this);
}