lingotek.install in Lingotek Translation 7.3
Same filename and directory in other branches
- 8 lingotek.install
- 8.2 lingotek.install
- 6 lingotek.install
- 7.7 lingotek.install
- 7.2 lingotek.install
- 7.4 lingotek.install
- 7.5 lingotek.install
- 7.6 lingotek.install
- 4.0.x lingotek.install
- 3.0.x lingotek.install
- 3.1.x lingotek.install
- 3.2.x lingotek.install
- 3.3.x lingotek.install
- 3.4.x lingotek.install
- 3.5.x lingotek.install
- 3.6.x lingotek.install
- 3.7.x lingotek.install
- 3.8.x lingotek.install
Installation for Lingotek Community Translation Module.
File
lingotek.installView source
<?php
/**
* @file
* Installation for Lingotek Community Translation Module.
*/
/*
* Implements hook_requirements() (see:
*/
function lingotek_requirements($phase) {
$requirements = array();
$t = get_t();
$test = FALSE;
// test requirement message appearance
// Ensure that the PHP Zip library is loaded
if ($test || !extension_loaded('zip')) {
$requirements['zip'] = array(
'title' => $t('Lingotek'),
'value' => $t('PHP Zip support required.'),
'description' => $t('The Lingotek Translation module requires the PHP module \'Zip\', but it is missing or not enabled on your server. This module allows PHP to work with ZIP compressed archives. <br>For more information visit: <a href="http://php.net/manual/en/book.zip.php">http://php.net/manual/en/book.zip.php</a>'),
'severity' => REQUIREMENT_ERROR,
);
}
// Ensure that the PHP cURL support is enabled
if ($test || !function_exists('curl_version')) {
$requirements['curl'] = array(
'title' => $t('Lingotek'),
'value' => $t('PHP cURL support required'),
'description' => $t('Lingotek requires the that PHP CURL be enabled on your server. <br>For more information visit: <a href="http://www.php.net/manual/en/curl.installation.php">http://www.php.net/manual/en/curl.installation.php</a>'),
'severity' => REQUIREMENT_ERROR,
);
}
return $requirements;
}
/**
* Implements hook_install().
*/
function lingotek_install() {
}
/**
* Implements hook_uninstall().
*/
function lingotek_uninstall() {
global $conf;
foreach (array_keys($conf) as $key) {
if (strpos($key, 'lingotek_') === 0) {
// It's important to use === instead of == with strpos()
variable_del($key);
}
}
db_drop_field('languages', 'lingotek_enabled');
db_drop_field('languages', 'lingotek_locale');
}
/**
* Implements hook_enable().
*/
function lingotek_enable() {
lingotek_set_priority();
lingotek_set_defaults();
}
/**
* Implements hook_disable().
*/
function lingotek_disable() {
variable_del('lingotek_setup_complete');
// require setup again (after disabling the module)
}
/*
* Install the database schema for the Lingotek Translation module
*/
function lingotek_schema() {
$schema['lingotek'] = array(
'description' => 'Table for storing node related data.',
'fields' => array(
'nid' => array(
'description' => 'The primary identifier for a node',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'lingokey' => array(
'description' => 'Key in key/value pairs',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'lingovalue' => array(
'description' => 'Value of the specified key',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
),
'primary key' => array(
'nid',
'lingokey',
),
);
$schema['lingotek_entity_metadata'] = array(
'description' => 'Stores Lingotek-related metadata about Drupal entities.',
'fields' => array(
'entity_id' => array(
'description' => 'The primary identifier for the entity.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'entity_type' => array(
'description' => 'The entity type (node, comment, etc.).',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'entity_key' => array(
'description' => 'The ID for the Lingotek-associated value.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'value' => array(
'description' => 'Value for the specified key.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
),
'primary key' => array(
'entity_id',
'entity_type',
'entity_key',
),
);
$schema['lingotek_config_metadata'] = array(
'description' => 'Stores Lingotek-related metadata about Drupal translations from locales source and target tables.',
'fields' => array(
'id' => array(
'description' => 'the segment ID assigned to the given range of strings.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'config_key' => array(
'description' => 'The ID for the Lingotek-associated value.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'value' => array(
'description' => 'Value for the specified key.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
),
'primary key' => array(
'id',
'config_key',
),
);
return $schema;
}
/*
* Update
* 1. Create the mt-queue
* 2. delete the reference variable that was stored in lingotek_languages
*/
function lingotek_update_7200(&$sandbox) {
drupal_load('module', 'lingotek');
if (!isset($sandbox['progress'])) {
$result = db_select('lingotek', 'n')
->distinct(TRUE)
->fields('n', array(
db_escape_field('nid'),
))
->execute();
$nodes = array();
foreach ($result as $row) {
array_push($nodes, $row->nid);
}
$sandbox['progress'] = 0;
$sandbox['max'] = count($nodes);
$sandbox['nodes'] = $nodes;
}
$node = lingotek_node_load_default($sandbox['nodes'][$sandbox['progress']]);
if ($node !== FALSE) {
if (!class_exists('LingotekApi')) {
// The LingotekApi class might not have been introduced when this user last updated the Lingotek Translation module.
registry_rebuild();
require_once drupal_get_path('module', 'lingotek') . '/lib/Drupal/lingotek/LingotekApi.php';
}
if (class_exists('LingotekNode')) {
LingotekApi::instance()
->updateContentDocument(LingotekNode::load($node));
}
else {
throw new Exception('LingotekNode class missing. Please clear the Drupal cache and then run update.php again.');
}
}
$sandbox['progress']++;
$sandbox['#finished'] = empty($sandbox['max']) ? 1 : $sandbox['progress'] / $sandbox['max'];
if ($sandbox['#finished'] == 1) {
lingotek_analyze_project();
}
}
/**
* Save per-node Lingotek project associations for all existing content.
*/
function lingotek_update_7201(&$sandbox) {
$lingotek_nodes = array();
$default_lingotek_project = variable_get('lingotek_project', 0);
if ($default_lingotek_project) {
if (!isset($sandbox['progress'])) {
$result = db_select('lingotek', 'l')
->distinct(TRUE)
->fields('l', array(
'nid',
))
->execute();
foreach ($result as $row) {
$lingotek_nodes[] = $row->nid;
}
$sandbox['progress'] = 0;
$sandbox['max'] = count($lingotek_nodes);
$sandbox['nodes'] = $lingotek_nodes;
}
$process_node = lingotek_node_load_default(array_shift($sandbox['nodes']));
if ($process_node->nid && !lingotek_lingonode($process_node->nid, 'project_id')) {
lingotek_lingonode($process_node->nid, 'project_id', $default_lingotek_project);
}
$sandbox['progress'] = (int) (count($sandbox['nodes']) / $sandbox['max']);
}
$sandbox['#finished'] = empty($sandbox['nodes']);
}
/**
* Ensure the Administrator role is granted newly-introduced permissions.
*/
function lingotek_update_7202(&$sandbox) {
if ($rid = variable_get('user_admin_role', 0)) {
$new_permisions = array(
'access lingotek utilities',
'access per-item lingotek project selection',
'access per-item lingotek vault selection',
);
user_role_grant_permissions($rid, $new_permisions);
return t('Granted new Lingotek permissions to the administrative security role.');
}
}
/**
* Install default FPRM configuration data to support advanced content parsing.
*/
function lingotek_update_7203(&$sandbox) {
if (!variable_get('lingotek_advanced_xml_config1', FALSE) && !variable_get('lingotek_advanced_xml_config2', FALSE)) {
lingotek_set_default_advanced_xml();
}
else {
return t('No action was taken, since your system already has data in the Primary and/or Secondary advanced parsing configuration fields.
If you wish to review the default configuration files and compare them to your current settings, the files are in the fprm subfolder of the Lingotek Translation module.');
}
}
/**
* Ensure LingotekApi class is in autoload registry.
*/
function lingotek_update_7204(&$sandbox) {
cache_clear_all();
}
/**
* Ensure that the Lingotek Translation module has a weight higher than entity_translation.
*/
function lingotek_update_7205(&$sandbox) {
lingotek_set_priority();
}
/**
* Adds the lingotek_entity_metadata table.
*/
function lingotek_update_7206(&$sandbox) {
$module = 'lingotek';
$table = 'lingotek_entity_metadata';
if (!db_table_exists($table)) {
$schema = drupal_get_schema_unprocessed($module, $table);
db_create_table($table, $schema);
$output = t('Table @table was created.', array(
'@table' => $table,
));
}
else {
$output = t('The @table table already exists. No action taken.', array(
'@table' => $table,
));
}
return $output;
}
/**
* Change the value for LINGOTEK_ENABLED to a string to avoid collision.
*/
function lingotek_update_7207(&$sandbox) {
$updated = array();
foreach (array_keys(node_type_get_names()) as $type) {
$name = 'language_content_type_' . $type;
if (variable_get($name) == 5) {
$updated[] = $type;
variable_set($name, LINGOTEK_ENABLED);
}
}
if (count($updated)) {
$t_args = array(
'@updated' => implode(', ', $updated),
);
return t("Updated @count content type(s) to use 'lingotek' instead of '5' for the identifier: @updated", $t_args);
}
else {
return t('No updates necessary.');
}
}
/**
* Update lingokey name from 'document_id_xx' to 'document_id'
*/
function lingotek_update_7208(&$sandbox) {
db_query("UPDATE {lingotek} SET lingokey = 'document_id' WHERE lingokey LIKE 'document_id_%'");
return t('Updated lingotek lingokey name from \'document_id_xx\' to \'document_id\'');
}
/**
* Extend languages table to have lingotek_enabled field
*/
function lingotek_update_7209(&$sandbox) {
spl_autoload_register('lingotek_auto_loader');
lingotek_migration_1();
// Add the lingotek_enabled field to the languages table. Remove lingotek_target_languages variable
return t('Upgraded the languages table to have the lingotek_enabled field (if not already present) and removed lingotek_target_languages variable.');
}
/**
* Extend languages table to have lingotek_locale field
*/
function lingotek_update_7210(&$sandbox) {
spl_autoload_register('lingotek_auto_loader');
lingotek_migration_2();
// Add the lingotek_locale field to the languages table
lingotek_add_missing_locales();
// Fill-in the lingotek_locale column based on drupal code
return t('Upgraded the languages table to have the lingotek_locale field (if not already present) and filled-in any missing lingotek_locale values.');
}
/**
* Upgrade lingotek table entries from drupal_codes to lingotek_locales
*/
function lingotek_update_7211(&$sandbox) {
spl_autoload_register('lingotek_auto_loader');
lingotek_migration_3();
// Upgrade lingotek table entries from drupal_codes to lingotek_locales (whenever applicable)
return t('Upgraded lingotek table entries from drupal_codes to lingotek_locales (as needed).');
}
/*
* Update languages table with lingotek fields
*/
/*function lingotek_schema_alter(&$schema) {
// Add fields to existing schema.
$schema['languages']['fields']['lingotek_enabled'] = array(
'type' => 'int',
'description' => "Lingotek enabled",
'not null' => TRUE,
'default' => 0
);
$schema['languages']['fields']['lingotek_locale'] = array(
'type' => 'varchar',
'description' => "Locale mapping",
'length' => 10,
'not null' => TRUE,
'default' => ''
);
}*/
/**
* Adds the lingotek_entity_metadata table.
*/
function lingotek_update_7212(&$sandbox) {
$module = 'lingotek';
$table = 'lingotek_config_metadata';
if (!db_table_exists($table)) {
$schema = drupal_get_schema_unprocessed($module, $table);
db_create_table($table, $schema);
$output = t('Table @table was created.', array(
'@table' => $table,
));
}
else {
$output = t('The @table table already exists. No action taken.', array(
'@table' => $table,
));
}
return $output;
}
/**
* Ensure the Administrator role is granted correct permissions.
*/
function lingotek_update_7213(&$sandbox) {
$rid = variable_get('user_admin_role', 0);
if ($rid) {
$permissions = array(
'administer lingotek',
'manage projects',
'adjust auto-download node setting',
'translate url aliases',
'access lingotek utilities',
'access per-item lingotek project selection',
'access per-item lingotek vault selection',
);
user_role_grant_permissions($rid, $permissions);
return t('Granted Lingotek permissions to the administrative security role.');
}
}
Functions
Name | Description |
---|---|
lingotek_disable | Implements hook_disable(). |
lingotek_enable | Implements hook_enable(). |
lingotek_install | Implements hook_install(). |
lingotek_requirements | |
lingotek_schema | |
lingotek_uninstall | Implements hook_uninstall(). |
lingotek_update_7200 | |
lingotek_update_7201 | Save per-node Lingotek project associations for all existing content. |
lingotek_update_7202 | Ensure the Administrator role is granted newly-introduced permissions. |
lingotek_update_7203 | Install default FPRM configuration data to support advanced content parsing. |
lingotek_update_7204 | Ensure LingotekApi class is in autoload registry. |
lingotek_update_7205 | Ensure that the Lingotek Translation module has a weight higher than entity_translation. |
lingotek_update_7206 | Adds the lingotek_entity_metadata table. |
lingotek_update_7207 | Change the value for LINGOTEK_ENABLED to a string to avoid collision. |
lingotek_update_7208 | Update lingokey name from 'document_id_xx' to 'document_id' |
lingotek_update_7209 | Extend languages table to have lingotek_enabled field |
lingotek_update_7210 | Extend languages table to have lingotek_locale field |
lingotek_update_7211 | Upgrade lingotek table entries from drupal_codes to lingotek_locales |
lingotek_update_7212 | Adds the lingotek_entity_metadata table. |
lingotek_update_7213 | Ensure the Administrator role is granted correct permissions. |