You are here

function baguettebox_requirements in baguetteBox.js 8

Same name and namespace in other branches
  1. 7 baguettebox.install \baguettebox_requirements()

Implements hook_requirements().

File

./baguettebox.install, line 11
Install functions for the baguettebox module.

Code

function baguettebox_requirements($phase) {
  $requirements = [];
  if ($phase == 'runtime') {
    if (!file_exists('libraries/baguettebox/baguetteBox.min.js')) {
      $requirements['baguettebox_library'] = [
        'title' => t('BaguetteBox library'),
        'value' => t('Not found'),
        'severity' => REQUIREMENT_ERROR,
        'description' => t('You need to download the <a href=":library_url">baguetteBox library</a> and extract the archive to the <em>libraries/baguettebox</em> directory on your server.', [
          ':library_url' => 'https://github.com/feimosi/baguetteBox.js',
        ]),
      ];
    }
  }
  return $requirements;
}