You are here

function GlobalTemplateCollectionManagerInterface::getGlobalCollectionForLocalCollection in Courier 8

Same name and namespace in other branches
  1. 2.x src/Service/GlobalTemplateCollectionManagerInterface.php \Drupal\courier\Service\GlobalTemplateCollectionManagerInterface::getGlobalCollectionForLocalCollection()

Get the global template collection associated with a local template collection.

Parameters

\Drupal\courier\TemplateCollectionInterface $template_collection: A local template collection entity.

Return value

\Drupal\courier\Entity\GlobalTemplateCollectionInterface|FALSE A global template collection entity, or FALSE if the template collection is not associated with a global template collection.

1 method overrides GlobalTemplateCollectionManagerInterface::getGlobalCollectionForLocalCollection()
GlobalTemplateCollectionManager::getGlobalCollectionForLocalCollection in src/Service/GlobalTemplateCollectionManager.php
Get the global template collection associated with a local template collection.

File

src/Service/GlobalTemplateCollectionManagerInterface.php, line 37

Class

GlobalTemplateCollectionManagerInterface
Interface for the global template collection manager.

Namespace

Drupal\courier\Service

Code

function getGlobalCollectionForLocalCollection(TemplateCollectionInterface $template_collection);