You are here

function path_alias_xt_requirements in Extended Path Aliases 6

Same name and namespace in other branches
  1. 7 path_alias_xt.install \path_alias_xt_requirements()

Implementation of hook_requirements().

File

./path_alias_xt.install, line 11
Install and uninstall hooks for path_alias_xt module.

Code

function path_alias_xt_requirements($phase) {
  $t = get_t();
  $has_runkit = function_exists('runkit_function_redefine');
  $requirements['path_alias_xt'] = array(
    'title' => $t('PECL runkit (for Extended Path Aliases)'),
    'value' => $has_runkit ? $t('Installed') : $t('Not installed'),
  );
  if (!$has_runkit) {
    $requirements['path_alias_xt']['severity'] = REQUIREMENT_INFO;
    $requirements['path_alias_xt']['description'] = $t('Reminder: as the PECL runkit is not installed, please edit file %path-inc if you have not done so already. See the !README file for details.', array(
      '%path-inc' => 'include/path.inc',
      '!README' => '<a href=/' . drupal_get_path('module', 'path_alias_xt') . '/README.txt>README</a>',
    ));
  }
  return $requirements;
}