You are here

public function LocalLibraryTrait::isInstalled in Libraries API 8.3

Checks whether the library is installed.

Return value

bool TRUE if the library is installed; FALSE otherwise;

See also

\Drupal\libraries\ExternalLibrary\Local\LocalLibraryInterface::isInstalled()

2 calls to LocalLibraryTrait::isInstalled()
LocalLibraryTrait::getLocalPath in src/ExternalLibrary/Local/LocalLibraryTrait.php
Gets the path to the library.
PhpFileLibrary::getPhpFiles in src/ExternalLibrary/PhpFile/PhpFileLibrary.php
Returns the PHP files of this library.

File

src/ExternalLibrary/Local/LocalLibraryTrait.php, line 44

Class

LocalLibraryTrait
Provides a trait for local libraries utilizing a stream wrapper.

Namespace

Drupal\libraries\ExternalLibrary\Local

Code

public function isInstalled() {
  return $this->installed;
}