You are here

public function SplashifyGroupEntity::setName in Splashify 8.2

Sets the Splashify group entity name.

Parameters

string $name: The Splashify group entity name.

Return value

\Drupal\splashify\Entity\SplashifyGroupEntityInterface The called Splashify group entity entity.

Overrides SplashifyGroupEntityInterface::setName

File

src/Entity/SplashifyGroupEntity.php, line 79

Class

SplashifyGroupEntity
Defines the Splashify group entity entity.

Namespace

Drupal\splashify\Entity

Code

public function setName($name) {
  $this
    ->set('name', $name);
  return $this;
}