You are here

interface LibraryIdAccessorInterface in Libraries API 8.3

Provides an interface for classes giving access to a library ID.

Hierarchy

Expanded class hierarchy of LibraryIdAccessorInterface

All classes that implement LibraryIdAccessorInterface

3 files declare their use of LibraryIdAccessorInterface
libraries.module in ./libraries.module
External library handling for Drupal modules.
LibraryDefinitionNotFoundException.php in src/ExternalLibrary/Exception/LibraryDefinitionNotFoundException.php
LibraryTypeNotFoundException.php in src/ExternalLibrary/Exception/LibraryTypeNotFoundException.php

File

src/ExternalLibrary/Utility/LibraryIdAccessorInterface.php, line 8

Namespace

Drupal\libraries\ExternalLibrary\Utility
View source
interface LibraryIdAccessorInterface {

  /**
   * Returns the ID of the library.
   *
   * @return string
   *   The library ID.
   */
  public function getLibraryId();

}

Members

Namesort descending Modifiers Type Description Overrides
LibraryIdAccessorInterface::getLibraryId public function Returns the ID of the library.