silverstripe-framework/forms/TypeDropdown.php
Ingo Schommer 393caf4287 FEATURE made sapphire i18n-capable
FEATURE a little bit of german translation

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@43842 467b73ca-7a2a-4603-9d3b-597d59a354a9
2007-10-25 02:47:45 +00:00

19 lines
471 B
PHP
Executable File

<?php
/**
* Create a dropdown from all instances of a class
*/
class TypeDropdown extends DropdownField {
function __construct( $name, $title, $className, $value = null, $form = null ) {
$options = DataObject::get( $className );
$optionArray = array( '0' => _t('TypeDropdown.NONE', 'None') );
foreach( $options as $option )
$optionArray[$option->ID] = $option->Title;
parent::__construct( $name, $title, $optionArray, $value, $form );
}
}
?>