You are here

function salvattore_get_path in Salvattore (CSS driven Masonry) 8

Same name and namespace in other branches
  1. 7.2 salvattore.module \salvattore_get_path()
1 call to salvattore_get_path()
salvattore_get_version in ./salvattore.module
Guesses the salvattore library version.

File

./salvattore.module, line 95
Salvattore masonry plugin for views.

Code

function salvattore_get_path() {
  $salvattore_path = libraries_get_path('salvattore');

  // @FIXME
  // Could not extract the default value because it is either indeterminate, or
  // not scalar. You'll need to provide a default value in
  // config/install/salvattore.settings.yml and config/schema/salvattore.schema.yml.
  if (\Drupal::config('salvattore.settings')
    ->get('salvattore_use_min_js')) {
    $salvattore_path .= '/dist/salvattore.min.js';
  }
  else {
    $salvattore_path .= '/dist/salvattore.js';
  }
  return $salvattore_path;
}