You are here

function _libraries_test_return_installed in Libraries API 8.3

Detects the variant of an example library.

Returns exactly the value of $installed, either TRUE or FALSE. This function cannot be collapsed with _libraries_test_return_version(), because of the different arguments that are passed automatically.

1 string reference to '_libraries_test_return_installed'
libraries_test_libraries_info in tests/modules/libraries_test/libraries_test.module
Implements hook_libraries_info().

File

tests/modules/libraries_test/libraries_test.module, line 365
Tests the library detection and loading.

Code

function _libraries_test_return_installed($library, $name, $installed) {
  return $installed;
}