You are here

public function OpignoGroupManagedContent::setGroupContentTypeId in Opigno group manager 3.x

Same name and namespace in other branches
  1. 8 src/Entity/OpignoGroupManagedContent.php \Drupal\opigno_group_manager\Entity\OpignoGroupManagedContent::setGroupContentTypeId()

Sets group content type ID.

Parameters

string $group_content_type_id: The group content type plugin ID.

Return value

$this

File

src/Entity/OpignoGroupManagedContent.php, line 148

Class

OpignoGroupManagedContent
Defines the Opigno Group Content entity.

Namespace

Drupal\opigno_group_manager\Entity

Code

public function setGroupContentTypeId($group_content_type_id) {
  $this
    ->set('group_content_type_id', $group_content_type_id);
  return $this;
}