New module 'Transliteration'
This commit is contained in:
parent
0197478295
commit
09b74574f1
188 changed files with 4810 additions and 0 deletions
38
modules/transliteration/transliteration.install
Normal file
38
modules/transliteration/transliteration.install
Normal file
|
@ -0,0 +1,38 @@
|
|||
<?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');
|
||||
}
|
Reference in a new issue