This repository has been archived on 2025-06-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
suitedesk/modules/path_alias_xt/path_alias_xt.install

37 lines
902 B
Text

<?php
/**
* @file
* Install and uninstall hooks for path_alias_xt module.
*/
/**
* Implementation of hook_requirements().
*/
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.');
}
return $requirements;
}
/**
* Implementation of hook_install().
*/
function path_alias_xt_install() {
return;
}
/**
* Implementation of hook_uninstall().
*
function path_alias_xt_uninstall() {
}
*/