| 1 | <?php |
||
| 8 | class CountryField extends ViewableData |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Country code. |
||
| 12 | * |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | protected $countryCode; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Set a country code. |
||
| 19 | * |
||
| 20 | * @param string $value |
||
| 21 | * |
||
| 22 | * @return CountryField |
||
| 23 | */ |
||
| 24 | 1 | public function setValue($value) |
|
| 30 | |||
| 31 | /** |
||
| 32 | * Get country code. |
||
| 33 | * |
||
| 34 | * @return string |
||
| 35 | */ |
||
| 36 | 1 | public function Code() |
|
| 40 | |||
| 41 | /** |
||
| 42 | * Get the country full name based on the code supplied to the object. |
||
| 43 | * |
||
| 44 | * @return string |
||
| 45 | */ |
||
| 46 | 1 | public function Name() |
|
| 50 | } |
||
| 51 |