public function BackgroundImageManagerInterface::getEntityBundleBackgroundImage in Background Image 8
Same name and namespace in other branches
- 2.x src/BackgroundImageManagerInterface.php \Drupal\background_image\BackgroundImageManagerInterface::getEntityBundleBackgroundImage()
- 2.0.x src/BackgroundImageManagerInterface.php \Drupal\background_image\BackgroundImageManagerInterface::getEntityBundleBackgroundImage()
Retrieves a background image that matches a specific entity type.
Parameters
\Drupal\Core\Entity\EntityInterface $entity: The entity to use as the target.
string $langcode: (optional) The language of the current context. Defaults to the current content language.
array $context: (optional) An associative array of arbitrary data that can be useful to determine the proper fallback sequence.
Return value
\Drupal\background_image\BackgroundImageInterface|null A background image entity, if one exists.
1 method overrides BackgroundImageManagerInterface::getEntityBundleBackgroundImage()
- BackgroundImageManager::getEntityBundleBackgroundImage in src/
BackgroundImageManager.php - Retrieves a background image that matches a specific entity type.
File
- src/
BackgroundImageManagerInterface.php, line 163
Class
Namespace
Drupal\background_imageCode
public function getEntityBundleBackgroundImage(EntityInterface $entity, $langcode = NULL, array $context = []);