You are here

public function FeaturesBundle::setName in Features 8.4

Same name and namespace in other branches
  1. 8.3 src/Entity/FeaturesBundle.php \Drupal\features\Entity\FeaturesBundle::setName()

Sets the human readable name of a bundle.

Parameters

string $name: The human readable name of a bundle.

Overrides FeaturesBundleInterface::setName

See also

\Drupal\features\FeaturesBundleInterface::getName()

File

src/Entity/FeaturesBundle.php, line 120

Class

FeaturesBundle
Defines a features bundle.

Namespace

Drupal\features\Entity

Code

public function setName($name) {
  $this->name = $name;
}