public function EntityDisplayBase::setTargetBundle in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Entity/EntityDisplayBase.php \Drupal\Core\Entity\EntityDisplayBase::setTargetBundle()
Sets the bundle to be displayed.
Parameters
string $bundle: The bundle to be displayed.
Return value
$this
Overrides EntityDisplayInterface::setTargetBundle
File
- core/
lib/ Drupal/ Core/ Entity/ EntityDisplayBase.php, line 231 - Contains \Drupal\Core\Entity\EntityDisplayBase.
Class
- EntityDisplayBase
- Provides a common base class for entity view and form displays.
Namespace
Drupal\Core\EntityCode
public function setTargetBundle($bundle) {
$this
->set('bundle', $bundle);
return $this;
}