mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
API CHANGE Removed @deprecated TypeDropdown class: Please use a DropdownField instead
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@77395 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
cd0c5db141
commit
55bcfbe1a1
@ -1,40 +0,0 @@
|
||||
<?php
|
||||
/**
|
||||
* Create a dropdown from all instances of a class.
|
||||
*
|
||||
* @package forms
|
||||
* @subpackage fields-relational
|
||||
*
|
||||
* @deprecated 2.3 Misleading naming, and having an entire class dedicated
|
||||
* to just setting the source mapping for a DropdownField is overkill. Just
|
||||
* use a standard DropdownField instead.
|
||||
*/
|
||||
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;
|
||||
}
|
||||
}
|
||||
?>
|
Loading…
Reference in New Issue
Block a user