You are here

public function FeaturesBundle::setIsProfile in Features 8.4

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

Sets option for using a profile with this bundle.

Parameters

bool $value: TRUE if a profile is used with this bundle.

Overrides FeaturesBundleInterface::setIsProfile

File

src/Entity/FeaturesBundle.php, line 188

Class

FeaturesBundle
Defines a features bundle.

Namespace

Drupal\features\Entity

Code

public function setIsProfile($value) {
  $this->is_profile = $value;
}