12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
- function i18n_node_install() {
-
- if (variable_get('i18n_drupal6_update')) {
- i18n_node_update_7000();
- }
- }
- function i18n_node_uninstall() {
- variable_del('i18n_hide_translation_links');
- variable_del('i18n_selection_mode');
- foreach (array_keys(node_type_get_types()) as $type) {
- variable_del('i18n_node_' . $type);
- }
- }
- function i18n_node_update_dependencies() {
- $dependencies['i18n_node'][7000] = array(
- 'i18n_string' => 7001,
- );
- return $dependencies;
- }
- function i18n_node_update_7000() {
-
-
-
-
-
-
-
- module_load_install('i18n_string');
- i18n_string_install_update_context('nodetype:type:*:*', 'node:type:*:*');
- i18n_string_install_update_context('node:type:*:title', 'node:type:*:title_label');
- }
|