public function GroupContentPermissionProvider::getEntityCreatePermission in Group 8
Gets the name of the create permission for the relation.
Return value
string|false The permission name or FALSE if it does not apply.
Overrides GroupContentPermissionProviderInterface::getEntityCreatePermission
2 calls to GroupContentPermissionProvider::getEntityCreatePermission()
- GroupContentPermissionProvider::buildPermissions in src/
Plugin/ GroupContentPermissionProvider.php - Provides a list of group permissions the plugin exposes.
- GroupContentPermissionProvider::getPermission in src/
Plugin/ GroupContentPermissionProvider.php - Gets the name of the permission for the given operation, target and scope.
File
- src/
Plugin/ GroupContentPermissionProvider.php, line 157
Class
- GroupContentPermissionProvider
- Provides group permissions for GroupContent entities.
Namespace
Drupal\group\PluginCode
public function getEntityCreatePermission() {
if ($this->definesEntityPermissions) {
return "create {$this->pluginId} entity";
}
return FALSE;
}