public function GroupType::setDescription in Group 8
Same name and namespace in other branches
- 2.0.x src/Entity/GroupType.php \Drupal\group\Entity\GroupType::setDescription()
Sets the entity description.
Parameters
string $description: The entity description.
Return value
$this
Overrides EntityDescriptionInterface::setDescription
File
- src/
Entity/ GroupType.php, line 128
Class
- GroupType
- Defines the Group type configuration entity.
Namespace
Drupal\group\EntityCode
public function setDescription($description) {
$this->description = $description;
return $this;
}