for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Moo_EditableFieldCountryDropdown is an object representing country dropdown field created by CMS admin.
*
* @package editablefield
* @author Mohamed Alsharaf <[email protected]>
*/
class Moo_EditableFieldCountryDropdown extends Moo_EditableField
{
private static $singular_name = 'Country Dropdown';
private static $plural_name = 'Country Dropdowns';
protected function initFormField()
return new CountryDropdownField($this->Name, $this->Title);
}
public function getIcon()
return 'editablefield/images/formfields/editablefielddropdown.png';