You are here

public function WebformAccessGroup::setEntityIds in Webform 6.x

Same name and namespace in other branches
  1. 8.5 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\Entity

Code

public function setEntityIds(array $entity_ids) {
  $this->entityIds = $entity_ids;
  return $this;
}