transliteration.install in Transliteration 6.3
Same filename and directory in other branches
Install, update, and uninstall functions for the transliteration module.
File
transliteration.installView source
<?php
/**
* @file
* Install, update, and uninstall functions for the transliteration module.
*/
/**
* Implementation of hook_install().
*/
function transliteration_install() {
module_load_include('inc', 'transliteration', 'transliteration.admin');
if (!($query = transliteration_file_query(TRUE))) {
// Database not supported.
return;
}
if (!db_result(db_query($query))) {
// Don't bother if no files need to be fixed.
return;
}
$t = get_t();
drupal_set_message($t('Transliteration has been installed. <a href="@transliteration-url">Fix existing file names</a>.', array(
'@transliteration-url' => url('admin/settings/file-system/transliteration'),
)));
}
/**
* Implementation of hook_uninstall().
*/
function transliteration_uninstall() {
variable_del('transliteration_file_uploads');
variable_del('transliteration_file_lowercase');
variable_del('transliteration_search');
// Delete all the transliteration_filter_no_known_transliteration_* variables
// and then clear the variable cache.
db_query("DELETE FROM {variable} WHERE name LIKE 'transliteration_filter_no_known_transliteration_%'");
cache_clear_all('variables', 'cache');
}
Functions
Name | Description |
---|---|
transliteration_install | Implementation of hook_install(). |
transliteration_uninstall | Implementation of hook_uninstall(). |