2020-08-14 13:36:36 +02:00

77 lines
2.1 KiB
Plaintext

<?php
/**
* @file
* Install, update, and uninstall functions for Language Icons.
*/
/**
* Implements hook_install().
*/
function languageicons_install() {
// Convert old "i18n_icon_*" variables, if any.
_languageicons_convert_i18n_icon_variables();
}
/**
* Implements hook_uninstall().
*/
function languageicons_uninstall() {
// Clear any variables that might be in use
$variables = array(
'languageicons_show_node',
'languageicons_show_block',
'languageicons_placement',
'languageicons_path',
'languageicons_size',
'languageicons_show_tooltip',
);
foreach ($variables as $variable) {
variable_del($variable);
}
}
/**
* Private helper to convert i18n_icon_* variables.
*
* @see languageicons_install()
* @see languageicons_update_6000()
*/
function _languageicons_convert_i18n_icon_variables() {
$variables = array('path', 'size');
foreach ($variables as $variable) {
$old_variable = 'i18n_icon_' . $variable;
$new_variable = 'languageicons_' . $variable;
if (variable_get($new_variable) === NULL) {
$old_variable_value = variable_get($old_variable, NULL);
// If the standard path for flag icons was used, reset it.
if ($variable == 'path') {
$old_default_path = drupal_get_path('module', 'i18n') . '/flags/*.png';
if ($old_variable_value == $old_default_path) {
unset($old_variable_value, $old_default_path);
}
}
if (!empty($old_variable_value)) {
variable_set($new_variable, $old_variable_value);
}
}
variable_del($old_variable);
}
}
/**
* Convert old "i18n_icon_*" variables.
*/
function languageicons_update_6000() {
_languageicons_convert_i18n_icon_variables();
return t('Converted Internationalization (i18n) module settings to Language Icons settings.');
}
/**
* Remove variable used for a short time during development of 6.x-2.x.
*
* @todo Remove this after the release of 7.x-1.0.
*/
function languageicons_update_6200() {
variable_del('languageicons_show_tooltip');
return t('Removed site variable used during development of 6.x-2.x.');
}