You are here

function _libraries_test_module_post_detect_callback in Libraries API 7.3

Same name and namespace in other branches
  1. 7.2 tests/modules/libraries_test_module/libraries_test_module.module \_libraries_test_module_post_detect_callback()

Sets the 'post-detect callback' key.

This function is used as a test callback for the 'post-detect callback group.

See also

_libraries_test_module_callback()

2 string references to '_libraries_test_module_post_detect_callback'
LibrariesTestCase::testCallbacks in tests/libraries.test
Tests the applying of callbacks.
libraries_test_module_libraries_info in tests/modules/libraries_test_module/libraries_test_module.module
Implements hook_libraries_info().

File

tests/modules/libraries_test_module/libraries_test_module.module, line 421
Tests the library detection and loading.

Code

function _libraries_test_module_post_detect_callback(&$library, $version, $variant) {
  _libraries_test_module_callback($library, $version, $variant, 'post-detect');
}