You are here

function i18n_forum_i18n_translate_path in Internationalization 7

Implements hook_i18n_translate_path()

File

i18n_forum/i18n_forum.module, line 88
i18n forum module

Code

function i18n_forum_i18n_translate_path($path) {
  if (strpos($path, 'forum/') === 0 && i18n_forum_mode() & I18N_MODE_TRANSLATE) {
    return i18n_taxonomy_translate_path($path, 'forum/');
  }
}