You are here

function redis_requirements in Redis 7

Same name and namespace in other branches
  1. 8 redis.install \redis_requirements()
  2. 7.3 redis.install \redis_requirements()
  3. 7.2 redis.install \redis_requirements()

Implements hook_requirements().

File

./redis.install, line 11
Redis install related functions.

Code

function redis_requirements($phase) {

  // This module is configured via settings.php file. Using any other phase
  // than runtime to proceed to some consistency checks is useless.
  if ('runtime' !== $phase) {
    return array();
  }
  $requirements = array();
  if (Redis_Client::hasClient()) {
    $requirements['redis'] = array(
      'title' => "Redis",
      'value' => t("Connected, using the <em>@name</em> client.", array(
        '@name' => Redis_Client::getClientName(),
      )),
      'severity' => REQUIREMENT_OK,
    );
  }
  else {
    $requirements['redis'] = array(
      'title' => "Redis",
      'value' => t("Not connected."),
      'severity' => REQUIREMENT_WARNING,
      'description' => t("No Redis client connected, this module is useless thereof. Ensure that you enabled module using it or disable it."),
    );
  }
  return $requirements;
}