You are here

public function StringBase::getTextgroup in Localization update 7.2

Implements StringInterface::getTextgroup().

Overrides StringInterface::getTextgroup

File

includes/locale/StringBase.php, line 177
Definition of StringBase.

Class

StringBase
Defines the locale string base class.

Code

public function getTextgroup() {
  return empty($this->textgroup) ? 'default' : $this->textgroup;
}