public function WebformAccessGroup::setEntityIds in Webform 8.5
Same name and namespace in other branches
- 6.x modules/webform_access/src/Entity/WebformAccessGroup.php \Drupal\webform_access\Entity\WebformAccessGroup::setEntityIds()
Set entities assigned to webform access group.
Parameters
array $entity_ids: An array of entity ids. Formatted as 'node:type:field_name:webform'.
Return value
$this
Overrides WebformAccessGroupInterface::setEntityIds
File
- modules/
webform_access/ src/ Entity/ WebformAccessGroup.php, line 183
Class
- WebformAccessGroup
- Defines the webform access group entity.
Namespace
Drupal\webform_access\EntityCode
public function setEntityIds(array $entity_ids) {
$this->entityIds = $entity_ids;
return $this;
}