| Conditions | 3 |
| Paths | 4 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 2 |
| 1 | <?php |
||
| 22 | public function __construct($name = 'CountryCode', $title = null, $source = [], $value = null) |
||
| 23 | { |
||
| 24 | if ($title === null) { |
||
| 25 | $title = _t('CountryDropdownField.TITLE', 'Country'); |
||
| 26 | } |
||
| 27 | if (empty($source)) { |
||
| 28 | $source = CountriesList::get(); |
||
| 29 | } |
||
| 30 | $this->setEmptyString(_t('CountryDropdownField.PLEASESELECTACOUNTRY', 'Please select a country')); |
||
| 31 | parent::__construct($name, $title, $source, $value); |
||
| 32 | } |
||
| 34 |