mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
DOC: DropdownField __construct
Current docs make PHPStorm spew errors about data types. `new CheckboxSetField('Countries'...);` Causes `Expected The, got string`. Simple restructure.
This commit is contained in:
parent
429fdfaa72
commit
c7e57e0087
@ -117,15 +117,15 @@ class DropdownField extends FormField {
|
||||
protected $disabledItems = array();
|
||||
|
||||
/**
|
||||
* Creates a new dropdown field.
|
||||
* @param $name The field name
|
||||
* @param $title The field title
|
||||
* @param $source An map of the dropdown items
|
||||
* @param $value The current value
|
||||
* @param $form The parent form
|
||||
* @param $emptyString mixed Add an empty selection on to of the {@link $source}-Array (can also be boolean, which
|
||||
* results in an empty string). Argument is deprecated in 3.1, please use
|
||||
* {@link setEmptyString()} and/or {@link setHasEmptyDefault(true)} instead.
|
||||
* @param string $name The field name
|
||||
* @param string $title The field title
|
||||
* @param array $source An map of the dropdown items
|
||||
* @param string $value The current value
|
||||
* @param Form $form The parent form
|
||||
* @param string|bool $emptyString Add an empty selection on to of the {@link $source}-Array (can also be
|
||||
* boolean, which results in an empty string). Argument is deprecated
|
||||
* in 3.1, please use{@link setEmptyString()} and/or
|
||||
* {@link setHasEmptyDefault(true)} instead.
|
||||
*/
|
||||
public function __construct($name, $title=null, $source=array(), $value='', $form=null, $emptyString=null) {
|
||||
$this->setSource($source);
|
||||
|
Loading…
Reference in New Issue
Block a user