public function FeaturesBundle::setName in Features 8.3
Same name and namespace in other branches
- 8.4 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\EntityCode
public function setName($name) {
$this->name = $name;
}