silverstripe-framework/forms/TypeDropdown.php
Ingo Schommer be90ef6573 ENHANCEMENT Allowing empty selection in TypeDropdown
ENHANCEMENT Allowing to specify dropdown title field in TypeDropdown->setTitleFieldName() - patch by nicolaas (#2689)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@62848 467b73ca-7a2a-4603-9d3b-597d59a354a9
2008-09-22 18:59:00 +00:00

38 lines
935 B
PHP
Executable File

<?php
/**
* Create a dropdown from all instances of a class.
*
* @package forms
* @subpackage fields-relational
*
* @deprecated 2.3 Misleading naming
*/
class TypeDropdown extends DropdownField {
/**
* @var string $titleFieldName The name of the DataObject property used for the dropdown options
*/
protected $titleFieldName = "Title";
/**
* @param string $name
* @param string $title
* @param string $className
*/
function __construct( $name, $title, $className, $value = null, $form = null, $emptyString = null) {
$options = DataObject::get($className);
$optionArray = array( '0' => _t('TypeDropdown.NONE', 'None') );
if($options) foreach( $options as $option ) {
$optionArray[$option->ID] = $option->{$this->titleFieldName};
}
parent::__construct( $name, $title, $optionArray, $value, $form, $emptyString );
}
function setTitleFieldName($name) {
$this->titleFieldName = $name;
}
}
?>