HEX
Server: Apache/2.4.34 (Red Hat) OpenSSL/1.0.2k-fips
System: Linux WORDPRESS 3.10.0-1160.118.1.el7.x86_64 #1 SMP Thu Apr 4 03:33:23 EDT 2024 x86_64
User: digital (1020)
PHP: 7.2.24
Disabled: NONE
Upload Files
File: /datos/www/fabricas.colombiatrade.com.co/web_https/modules/contrib/gin_toolbar/gin_toolbar.install
<?php

use Drupal\Core\Installer\InstallerKernel;

/**
 * Implements hook_requirements().
 */
function gin_toolbar_requirements($phase) {
  $requirements = [];

  if ($phase === 'install') {
    // We need to check if Gin theme is installed.
    $installed = \Drupal::service('theme_handler')->themeExists('gin');

    // If the Gin theme isn't installed then check whether currently Drupal is
    // being installed and whether the Gin theme will be installed.
    if (!$installed && InstallerKernel::installationAttempted()) {
      global $install_state;
      if (isset($install_state['profile_info']['themes']) && !in_array('gin', $install_state['profile_info']['themes'], TRUE)) {
        $requirements['gin'] = [
          'title' => t('Gin'),
          'description' => t('The Gin Toolbar module works with <a href="https://www.drupal.org/project/gin" target="_blank">Gin</a> theme only'),
          'severity' => REQUIREMENT_ERROR,
        ];
      }
    }
  }

  return $requirements;
}