You are here

public function i18n_field_instance::get_translate_path in Internationalization 7

Get translate path for object

Overrides i18n_string_object_wrapper::get_translate_path

File

i18n_field/i18n_field.inc, line 129
Field and field instance object handlers

Class

i18n_field_instance
Field instance object

Code

public function get_translate_path($langcode = NULL) {
  return $this
    ->get_base_path() . '/translate' . ($langcode ? '/' . $langcode : '');
}