public function TranslationString::setCustomized in Localization update 7.2
Sets the string as customized / not customized.
Parameters
bool $customized: (optional) Whether the string is customized or not. Defaults to TRUE.
Return value
TranslationString The called object.
File
- includes/
locale/ TranslationString.php, line 68 - Definition of TranslationString.
Class
- TranslationString
- Defines the locale translation string object.
Code
public function setCustomized($customized = TRUE) {
$this->customized = $customized ? L10N_UPDATE_CUSTOMIZED : L10N_UPDATE_NOT_CUSTOMIZED;
return $this;
}