public function OpignoGroupManagedContent::setGroupContentTypeId in Opigno group manager 8
Same name and namespace in other branches
- 3.x 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\EntityCode
public function setGroupContentTypeId($group_content_type_id) {
$this
->set('group_content_type_id', $group_content_type_id);
return $this;
}