mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
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:
parent
f6aba9147d
commit
a3d64e5304
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
?>
|
||||
|
Loading…
Reference in New Issue
Block a user