4e85260f311413b595e06205d59d5f8503b202b9
[yaffs-website] / web / modules / contrib / superfish / superfish.install
1 <?php
2
3 /**
4  * @file
5  * Install, update and uninstall functions for the Superfish module.
6  */
7
8 /**
9  * Implements hook_enable().
10  */
11 function superfish_install() {
12   if (superfish_library_check()) {
13     drupal_set_message(t('In order to use Superfish, go to the <a href="@block">Block layout</a> page and use any of the "Place block" buttons to create a Superfish block.', ['@block' => 'structure/block']));
14   }
15   else {
16     drupal_set_message(t('Superfish library is missing. Please refer to the <a href="@documentation">plugin documentation</a> for how you can fix this issue; Once done, go to the <a href="@block">Block layout</a> page and use any of the "Place block" buttons to create a Superfish block.', ['@documentation' => 'http://drupal.org/node/1125896', '@block' => 'structure/block']), 'warning');
17   }
18         drupal_set_message(t('If there was no Superfish block in the "Place block" form, go to the <a href="@performance">Performance</a> page and clear the cache once.', ['@performance' => 'admin/config/development/performance']));
19 }
20
21 /**
22  * Implements hook_requirements().
23  */
24 function superfish_requirements($phase) {
25   $requirements = [];
26   if ($phase == 'runtime') {
27     $requirements['superfish']['title'] = t('Superfish library');
28
29     if (superfish_library_check()) {
30       $requirements['superfish']['value'] = t('Installed; at @location', ['@location' => superfish_library_path()]);
31       $requirements['superfish']['severity'] = REQUIREMENT_OK;
32     }
33     else {
34       $requirements['superfish']['value'] = t('Not installed');
35       $requirements['superfish']['severity'] = REQUIREMENT_ERROR;
36       $requirements['superfish']['description'] = t('Please download the Superfish library from :url.', [':url' => 'http://drupal.org/project/superfish']);
37     }
38
39     // Check the uploaded Superfish library version.
40     if (($version = superfish_library_version()) && $version != '2.0') {
41       $requirements['superfish']['value'] = t('Not supported');
42       $requirements['superfish']['severity'] = REQUIREMENT_ERROR;
43       $requirements['superfish']['description'] = t('The Superfish library requires an update. You can find the update instructions on :url.', [':url' => 'http://drupal.org/project/superfish']);
44     }
45   }
46   return $requirements;
47 }