You are here

function gridstack_libraries_get_path in GridStack 8.2

Provides a wrapper to replace deprecated libraries_get_path() at ease.

@todo remove and replace with blazy_libraries_get_path() post blazy:8.x-2.0.

1 call to gridstack_libraries_get_path()
gridstack_requirements in ./gridstack.install
Implements hook_requirements().

File

./gridstack.module, line 91
Provides GridStack integration to have multi-column grids with drag-and-drop.

Code

function gridstack_libraries_get_path($name, $base_path = FALSE) {
  return function_exists('blazy_libraries_get_path') ? blazy_libraries_get_path($name, $base_path) : FALSE;
}