Allow default value to be set on CountryDropdownField

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.2@64636 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Andrew O'Neil 2008-10-22 03:45:36 +00:00 committed by Sam Minnee
parent f6aba9147d
commit a3d64e5304

View File

@ -12,14 +12,13 @@
* @subpackage fields-relational
*/
class CountryDropdownField extends DropdownField {
function __construct($name, $title) {
parent::__construct($name, $title, Geoip::getCountryDropDown());
}
function Field() {
if(!$this->value || !$this->source[$this->value]) $this->value = Geoip::visitor_country();
return parent::Field();
function __construct($name, $title, $value = '') {
if(!$value) {
$value = Geop::visitor_country();
}
parent::__construct($name, $title, Geoip::getCountryDropDown(), $value);
}
}
?>
?>