You are here

public function i18n_string_object::get_name in Internationalization 7

Get string name including textgroup and context

1 call to i18n_string_object::get_name()
i18n_string_object::get_cid in i18n_string/i18n_string.inc
Returns the caching id for this object.

File

i18n_string/i18n_string.inc, line 117
API for internationalization strings

Class

i18n_string_object
String object that contains source and translations.

Code

public function get_name() {
  return $this->textgroup . ':' . $this->type . ':' . $this->objectid . ':' . $this->property;
}