blob: 9f1815edcdc97aaf33c89cfdccb72be3b8487a36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
<?php
/**
* @file
* Definition of SourceString.
*/
/**
* Defines the locale source string object.
*
* This class represents a module-defined string value that is to be translated.
* This string must at least contain a 'source' field, which is the raw source
* value, and is assumed to be in English language.
*/
class SourceString extends StringBase {
/**
* Implements StringInterface::isSource().
*/
public function isSource() {
return isset($this->source);
}
/**
* Implements StringInterface::isTranslation().
*/
public function isTranslation() {
return FALSE;
}
/**
* Implements LocaleString::getString().
*/
public function getString() {
return isset($this->source) ? $this->source : '';
}
/**
* Implements LocaleString::setString().
*/
public function setString($string) {
$this->source = $string;
return $this;
}
/**
* Implements LocaleString::isNew().
*/
public function isNew() {
return empty($this->lid);
}
}
|