Index: joomla.module =================================================================== --- joomla.module (revision 23) +++ joomla.module (working copy) @@ -544,6 +544,9 @@ break; } + // Hook to allow other modules to modify the vocabulary + module_invoke_all('joomla', 'vocabulary', $vocabulary, $data_joomla->id); + db_set_active('joomla'); joomla_sleep($sections_total); @@ -635,6 +638,9 @@ } } + // Hook to allow other modules to modify the term + module_invoke_all('joomla', 'term', $term, $data_joomla->id); + drupal_set_message(t('Processed @total sections (@new new, @updated updated, @failed errors)', array('@total' => $sections_total, '@new' => $sections_new, '@updated' => $sections_updated, '@failed' => $sections_failed))); drupal_set_message(t('Processed @total categories (@new new, @updated updated, @failed errors)', array('@total' => $categories_total, '@new' => $categories_new, '@updated' => $categories_updated, '@failed' => $categories_failed))); }