silverstripe-framework/forms/CountryDropdownField.php
Andrew O'Neil 8bd4ee733a Fix typo
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.2@64643 467b73ca-7a2a-4603-9d3b-597d59a354a9
2011-02-02 14:39:35 +13:00

25 lines
507 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 = Geoip::visitor_country();
}
parent::__construct($name, $title, Geoip::getCountryDropDown(), $value);
}
}
?>