public function FeaturesBundle::setProfileName in Features 8.3
Same name and namespace in other branches
- 8.4 src/Entity/FeaturesBundle.php \Drupal\features\Entity\FeaturesBundle::setProfileName()
Sets the name of the profile associated with this bundle.
Parameters
string $machine_name: The machine name of a profile.
Overrides FeaturesBundleInterface::setProfileName
See also
\Drupal\features\FeaturesBundleInterface::getProfileName()
File
- src/
Entity/ FeaturesBundle.php, line 204
Class
- FeaturesBundle
- Defines a features bundle.
Namespace
Drupal\features\EntityCode
public function setProfileName($machine_name) {
$this->profile_name = $machine_name;
}