2006-07-13 13:14:25 +00:00
<?php
2006-07-14 01:05:10 +00:00
// $Id$
2006-07-13 13:14:25 +00:00
2009-05-13 19:42:18 +00:00
/**
* @file
* Install, update and uninstall functions for the locale module.
*/
2006-09-01 07:40:08 +00:00
/**
2009-05-27 18:34:03 +00:00
* Implement hook_install().
2006-09-01 07:40:08 +00:00
*/
2006-07-13 13:14:25 +00:00
function locale_install() {
2009-04-20 02:23:17 +00:00
// locales_source.source and locales_target.target are not used as binary
// fields; non-MySQL database servers need to ensure the field type is text
// and that LIKE produces a case-sensitive comparison.
2007-05-25 12:46:46 +00:00
// Create tables.
drupal_install_schema('locale');
2006-08-04 06:58:44 +00:00
2009-05-27 11:45:00 +00:00
db_insert('languages')
->fields(array(
'language' => 'en',
'name' => 'English',
'native' => 'English',
'direction' => 0,
'enabled' => 1,
'weight' => 0,
'javascript' => '',
))
->execute();
2006-07-13 13:14:25 +00:00
}
2006-09-01 07:40:08 +00:00
2007-11-26 19:55:15 +00:00
/**
* @defgroup updates-5.x-to-6.x Locale updates from 5.x to 6.x
* @{
*/
/**
* {locales_meta} table became {languages}.
*/
2007-12-18 12:59:22 +00:00
function locale_update_6000() {
2007-11-26 19:55:15 +00:00
$ret = array();
2007-12-18 12:59:22 +00:00
$schema['languages'] = array(
'fields' => array(
'language' => array(
'type' => 'varchar',
'length' => 12,
'not null' => TRUE,
'default' => '',
),
'name' => array(
'type' => 'varchar',
'length' => 64,
'not null' => TRUE,
'default' => '',
),
'native' => array(
'type' => 'varchar',
'length' => 64,
'not null' => TRUE,
'default' => '',
),
'direction' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
'enabled' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
'plurals' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
'formula' => array(
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
'default' => '',
),
'domain' => array(
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
'default' => '',
),
'prefix' => array(
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
'default' => '',
),
'weight' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
'javascript' => array( //Adds a column to store the filename of the JavaScript translation file.
'type' => 'varchar',
'length' => 32,
'not null' => TRUE,
'default' => '',
),
),
'primary key' => array('language'),
'indexes' => array(
'list' => array('weight', 'name'),
),
);
db_create_table($ret, 'languages', $schema['languages']);
2007-11-26 19:55:15 +00:00
// Save the languages
$ret[] = update_sql("INSERT INTO {languages} (language, name, native, direction, enabled, plurals, formula, domain, prefix, weight) SELECT locale, name, name, 0, enabled, plurals, formula, '', locale, 0 FROM {locales_meta}");
// Save the language count in the variable table
$count = db_result(db_query('SELECT COUNT(*) FROM {languages} WHERE enabled = 1'));
variable_set('language_count', $count);
// Save the default language in the variable table
$default = db_fetch_object(db_query('SELECT * FROM {locales_meta} WHERE isdefault = 1'));
variable_set('language_default', (object) array('language' => $default->locale, 'name' => $default->name, 'native' => '', 'direction' => 0, 'enabled' => 1, 'plurals' => $default->plurals, 'formula' => $default->formula, 'domain' => '', 'prefix' => $default->locale, 'weight' => 0));
$ret[] = update_sql("DROP TABLE {locales_meta}");
return $ret;
}
/**
* Change locale column to language. The language column is added by
* update_fix_d6_requirements() in update.php to avoid a large number
2008-12-20 18:24:41 +00:00
* of error messages from update.php. All we need to do here is copy
2007-11-26 19:55:15 +00:00
* locale to language and then drop locale.
*/
2007-12-18 12:59:22 +00:00
function locale_update_6001() {
2007-11-26 19:55:15 +00:00
$ret = array();
$ret[] = update_sql('UPDATE {locales_target} SET language = locale');
db_drop_field($ret, 'locales_target', 'locale');
return $ret;
}
/**
* Remove empty translations, we don't need these anymore.
*/
2007-12-18 12:59:22 +00:00
function locale_update_6002() {
2007-11-26 19:55:15 +00:00
$ret = array();
$ret[] = update_sql("DELETE FROM {locales_target} WHERE translation = ''");
return $ret;
}
/**
* Prune strings with no translations (will be automatically re-registered if still in use)
*/
2007-12-18 12:59:22 +00:00
function locale_update_6003() {
2007-11-26 19:55:15 +00:00
$ret = array();
$ret[] = update_sql("DELETE FROM {locales_source} WHERE lid NOT IN (SELECT lid FROM {locales_target})");
return $ret;
}
/**
* Fix remaining inconsistent indexes.
*/
2007-12-18 12:59:22 +00:00
function locale_update_6004() {
2007-11-26 19:55:15 +00:00
$ret = array();
db_add_index($ret, 'locales_target', 'language', array('language'));
switch ($GLOBALS['db_type']) {
case 'pgsql':
db_drop_index($ret, 'locales_source', 'source');
db_add_index($ret, 'locales_source', 'source', array(array('source', 30)));
break;
}
return $ret;
}
2008-01-09 11:51:54 +00:00
/**
* Change language setting variable of content types.
2008-02-06 19:38:28 +00:00
*
2008-01-09 11:51:54 +00:00
* Use language_content_type_<content_type> instead of language_<content_type>
* so content types such as 'default', 'count' or 'negotiation' will not
2008-01-10 14:35:24 +00:00
* interfere with language variables.
2008-01-09 11:51:54 +00:00
*/
function locale_update_6005() {
foreach (node_get_types() as $type => $content_type) {
// Default to NULL, so we can skip dealing with non-existent settings.
2009-01-31 16:50:57 +00:00
$setting = variable_get('language_' . $type);
2008-01-09 11:51:54 +00:00
if ($type == 'default' && is_numeric($setting)) {
// language_default was overwritten with the content type setting,
// so reset the default language and save the content type setting.
variable_set('language_content_type_default', $setting);
variable_del('language_default');
2008-04-14 17:48:46 +00:00
drupal_set_message('The default language setting has been reset to its default value. Check the ' . l('language configuration page', 'admin/settings/language') . ' to configure it correctly.');
2008-01-09 11:51:54 +00:00
}
elseif ($type == 'negotiation') {
2008-01-10 14:35:24 +00:00
// language_content_type_negotiation is an integer either if it is
// the negotiation setting or the content type setting.
// The language_negotiation setting is not reset, but
2008-01-09 11:51:54 +00:00
// the user is alerted that this setting possibly was overwritten
variable_set('language_content_type_negotiation', $setting);
2008-04-14 17:48:46 +00:00
drupal_set_message('The language negotiation setting was possibly overwritten by a content type of the same name. Check the ' . l('language configuration page', 'admin/settings/language/configure') . ' and the ' . l('<em>' . $content_type->name . "</em> content type's multilingual support settings", 'admin/build/types/negotiation', array('html' => TRUE)) . ' to configure them correctly.');
2008-01-09 11:51:54 +00:00
}
elseif (!is_null($setting)) {
// Change the language setting variable for any other content type.
// Do not worry about language_count, it will be updated below.
2008-04-14 17:48:46 +00:00
variable_set('language_content_type_' . $type, $setting);
variable_del('language_' . $type);
2008-01-09 11:51:54 +00:00
}
}
// Update language count variable that might be overwritten.
$count = db_result(db_query('SELECT COUNT(*) FROM {languages} WHERE enabled = 1'));
variable_set('language_count', $count);
return array();
}
2009-05-27 19:54:21 +00:00
/**
* Allow longer location.
*/
function locale_update_6006() {
$ret = array();
db_change_field($ret, 'locales_source', 'location', 'location', array('type' => 'text', 'not null' => FALSE));
return $ret;
}
2007-11-26 19:55:15 +00:00
/**
* @} End of "defgroup updates-5.x-to-6.x"
*/
2006-09-01 07:40:08 +00:00
/**
2009-05-27 18:34:03 +00:00
* Implement hook_uninstall().
2006-09-01 07:40:08 +00:00
*/
function locale_uninstall() {
2009-02-13 00:45:18 +00:00
// Delete all JavaScript translation files.
$locale_js_directory = file_create_path(variable_get('locale_js_directory', 'languages'));
$files = db_query('SELECT language, javascript FROM {languages}');
2009-05-27 11:45:00 +00:00
foreach ($files as $file) {
2009-02-13 00:45:18 +00:00
if (!empty($file->javascript)) {
file_unmanaged_delete(file_create_path($locale_js_directory . '/' . $file->language . '_' . $file->javascript . '.js'));
2007-06-08 12:51:59 +00:00
}
}
2009-02-13 00:45:18 +00:00
// Delete the JavaScript translations directory if empty.
@rmdir($locale_js_directory);
2009-05-24 17:39:35 +00:00
2009-02-13 00:45:18 +00:00
// Clear variables.
variable_del('language_default');
variable_del('language_count');
variable_del('language_negotiation');
variable_del('javascript_parsed');
variable_del('language_content_type_default');
variable_del('language_content_type_negotiation');
variable_del('locale_cache_strings');
variable_del('locale_js_directory');
2009-05-24 17:39:35 +00:00
2009-02-13 00:45:18 +00:00
foreach (node_get_types() as $type => $content_type) {
$setting = variable_del('language_content_type_' . $type);
}
2009-05-24 17:39:35 +00:00
2009-02-13 00:45:18 +00:00
// Switch back to English: with a $language->language value different from 'en'
2009-05-24 17:39:35 +00:00
// successive calls of t() might result in calling locale(), which in turn might
2009-02-13 00:45:18 +00:00
// try to query the unexisting {locales_source} and {locales_target} tables.
drupal_init_language();
2009-05-24 17:39:35 +00:00
2007-05-25 12:46:46 +00:00
// Remove tables.
drupal_uninstall_schema('locale');
2006-09-01 07:40:08 +00:00
}
2007-10-05 14:43:26 +00:00
/**
2009-05-27 18:34:03 +00:00
* Implement hook_schema().
2007-10-05 14:43:26 +00:00
*/
function locale_schema() {
$schema['languages'] = array(
2008-11-15 13:01:11 +00:00
'description' => 'List of all available languages in the system.',
2007-10-05 14:43:26 +00:00
'fields' => array(
2007-10-10 11:39:35 +00:00
'language' => array(
'type' => 'varchar',
'length' => 12,
'not null' => TRUE,
'default' => '',
2008-11-15 13:01:11 +00:00
'description' => "Language code, e.g. 'de' or 'en-US'.",
2007-10-10 11:39:35 +00:00
),
'name' => array(
'type' => 'varchar',
'length' => 64,
'not null' => TRUE,
'default' => '',
2008-11-15 13:01:11 +00:00
'description' => 'Language name in English.',
2007-10-10 11:39:35 +00:00
),
'native' => array(
'type' => 'varchar',
'length' => 64,
'not null' => TRUE,
'default' => '',
2008-11-15 13:01:11 +00:00
'description' => 'Native language name.',
2007-10-10 11:39:35 +00:00
),
'direction' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
2008-11-15 13:01:11 +00:00
'description' => 'Direction of language (Left-to-Right = 0, Right-to-Left = 1).',
2007-10-10 11:39:35 +00:00
),
'enabled' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
2008-11-15 13:01:11 +00:00
'description' => 'Enabled flag (1 = Enabled, 0 = Disabled).',
2007-10-10 11:39:35 +00:00
),
'plurals' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
2008-11-15 13:01:11 +00:00
'description' => 'Number of plural indexes in this language.',
2007-10-10 11:39:35 +00:00
),
'formula' => array(
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
'default' => '',
2008-11-15 13:01:11 +00:00
'description' => 'Plural formula in PHP code to evaluate to get plural indexes.',
2007-10-10 11:39:35 +00:00
),
'domain' => array(
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
'default' => '',
2008-11-15 13:01:11 +00:00
'description' => 'Domain to use for this language.',
2007-10-10 11:39:35 +00:00
),
'prefix' => array(
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
'default' => '',
2008-11-15 13:01:11 +00:00
'description' => 'Path prefix to use for this language.',
2007-10-10 11:39:35 +00:00
),
'weight' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
2008-11-15 13:01:11 +00:00
'description' => 'Weight, used in lists of languages.',
2007-10-10 11:39:35 +00:00
),
'javascript' => array(
'type' => 'varchar',
'length' => 32,
'not null' => TRUE,
'default' => '',
2008-11-15 13:01:11 +00:00
'description' => 'Location of JavaScript translation file.',
2007-10-10 11:39:35 +00:00
),
2007-10-05 14:43:26 +00:00
),
'primary key' => array('language'),
2007-12-18 12:59:22 +00:00
'indexes' => array(
'list' => array('weight', 'name'),
),
2007-10-05 14:43:26 +00:00
);
$schema['locales_source'] = array(
2008-11-15 13:01:11 +00:00
'description' => 'List of English source strings.',
2007-10-05 14:43:26 +00:00
'fields' => array(
2007-10-10 11:39:35 +00:00
'lid' => array(
'type' => 'serial',
'not null' => TRUE,
2008-11-15 13:01:11 +00:00
'description' => 'Unique identifier of this string.',
2007-10-10 11:39:35 +00:00
),
'location' => array(
2009-05-27 19:54:21 +00:00
'type' => 'text',
'not null' => FALSE,
'size' => 'big',
2008-11-15 13:01:11 +00:00
'description' => 'Drupal path in case of online discovered translations or file path in case of imported strings.',
2007-10-10 11:39:35 +00:00
),
'textgroup' => array(
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => 'default',
2008-11-15 13:01:11 +00:00
'description' => 'A module defined group of translations, see hook_locale().',
2007-10-10 11:39:35 +00:00
),
'source' => array(
'type' => 'text',
2009-04-20 02:23:17 +00:00
'mysql_type' => 'blob',
2007-10-10 11:39:35 +00:00
'not null' => TRUE,
2008-11-15 13:01:11 +00:00
'description' => 'The original string in English.',
2007-10-10 11:39:35 +00:00
),
'version' => array(
'type' => 'varchar',
'length' => 20,
'not null' => TRUE,
'default' => 'none',
2008-11-15 13:01:11 +00:00
'description' => 'Version of Drupal, where the string was last used (for locales optimization).',
2007-10-10 11:39:35 +00:00
),
2007-10-05 14:43:26 +00:00
),
'primary key' => array('lid'),
2007-12-18 12:59:22 +00:00
'indexes' => array(
'source' => array(array('source', 30)),
),
2007-10-05 14:43:26 +00:00
);
$schema['locales_target'] = array(
2008-11-15 13:01:11 +00:00
'description' => 'Stores translated versions of strings.',
2007-10-05 14:43:26 +00:00
'fields' => array(
2007-10-10 11:39:35 +00:00
'lid' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
2008-11-15 13:01:11 +00:00
'description' => 'Source string ID. References {locales_source}.lid.',
2007-10-10 11:39:35 +00:00
),
'translation' => array(
'type' => 'text',
2009-04-20 02:23:17 +00:00
'mysql_type' => 'blob',
2007-10-10 11:39:35 +00:00
'not null' => TRUE,
2008-11-15 13:01:11 +00:00
'description' => 'Translation string value in this language.',
2007-10-10 11:39:35 +00:00
),
'language' => array(
'type' => 'varchar',
'length' => 12,
'not null' => TRUE,
'default' => '',
2008-11-15 13:01:11 +00:00
'description' => 'Language code. References {languages}.language.',
2007-10-10 11:39:35 +00:00
),
'plid' => array(
'type' => 'int',
2007-12-18 12:59:22 +00:00
'not null' => TRUE, // This should be NULL for no referenced string, not zero.
2007-10-10 11:39:35 +00:00
'default' => 0,
2008-11-15 13:01:11 +00:00
'description' => 'Parent lid (lid of the previous string in the plural chain) in case of plural strings. References {locales_source}.lid.',
2007-10-10 11:39:35 +00:00
),
'plural' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
2008-11-15 13:01:11 +00:00
'description' => 'Plural index number in case of plural strings.',
2007-10-10 11:39:35 +00:00
),
2007-10-05 14:43:26 +00:00
),
2007-12-18 12:59:22 +00:00
'primary key' => array('language', 'lid', 'plural'),
2009-06-01 22:07:10 +00:00
'foreign keys' => array(
'lid' => array('locales_source' => 'lid'),
),
2007-10-05 14:43:26 +00:00
'indexes' => array(
2007-12-18 12:59:22 +00:00
'lid' => array('lid'),
'plid' => array('plid'),
'plural' => array('plural'),
2007-10-05 14:43:26 +00:00
),
);
return $schema;
}