public function GroupType::getInstalledContentPlugins in Group 8
Same name and namespace in other branches
- 2.0.x src/Entity/GroupType.php \Drupal\group\Entity\GroupType::getInstalledContentPlugins()
Returns the installed content enabler plugins for this group type.
Return value
\Drupal\group\Plugin\GroupContentEnablerCollection 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);
}