You are here

public function FeaturesBundle::setProfileName in Features 8.4

Same name and namespace in other branches
  1. 8.3 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\Entity

Code

public function setProfileName($machine_name) {
  $this->profile_name = $machine_name;
}