You are here

public function i18n_translation_set::get_delete_path in Internationalization 7

Get delete path for this translation set

1 call to i18n_translation_set::get_delete_path()
i18n_translation_set::get_operations in i18n_translation/i18n_translation.inc
Get operations as renderable links

File

i18n_translation/i18n_translation.inc, line 296
Internationalization (i18n) module - Translation set

Class

i18n_translation_set
@file Internationalization (i18n) module - Translation set

Code

public function get_delete_path() {
  if ($path = $this
    ->get_info('delete path')) {
    return strtr($path, $this
      ->get_path_placeholders('delete'));
  }
  else {
    return '';
  }
}