You are here

protected function i18n_string_object_wrapper::textgroup in Internationalization 7

Get textgroup object

File

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

Class

i18n_string_object_wrapper
String object wrapper

Code

protected function textgroup() {
  if (!isset($this->textgroup)) {
    $this->textgroup = i18n_string_textgroup($this
      ->get_textgroup());
  }
  return $this->textgroup;
}