You are here

public function HomeboxLayout::setName in Homebox 8

Sets the Homebox Layout name.

Parameters

string $name: The Homebox Layout name.

Return value

$this

Overrides HomeboxLayoutInterface::setName

File

src/Entity/HomeboxLayout.php, line 134

Class

HomeboxLayout
Defines the Homebox Layout entity.

Namespace

Drupal\homebox\Entity

Code

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