silverstripe-framework/forms/CountryDropdownField.php
Andrew O'Neil a3d64e5304 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
2011-02-02 14:39:35 +13:00

25 lines
506 B
PHP

<?php
/**
* @package forms
* @subpackage fields-relational
*/
/**
* A simple extension to dropdown field, pre-configured to list countries.
* It will default to the country of the current visiotr.
* @package forms
* @subpackage fields-relational
*/
class CountryDropdownField extends DropdownField {
function __construct($name, $title, $value = '') {
if(!$value) {
$value = Geop::visitor_country();
}
parent::__construct($name, $title, Geoip::getCountryDropDown(), $value);
}
}
?>