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