mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
MINOR Changed inline documentation to be correct
This commit is contained in:
parent
85cdb3771c
commit
7d90aa3c10
@ -13,14 +13,14 @@ class Datagrid extends FormField {
|
|||||||
protected $datasource = null;
|
protected $datasource = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new field.
|
* Creates a new datagrid field
|
||||||
* @param name The internal field name, passed to forms.
|
*
|
||||||
* @param title The field label.
|
* @param string $name
|
||||||
* @param value The value of the field.
|
* @param string $title
|
||||||
* @param form Reference to the container form
|
* @param SS_list $source
|
||||||
* @param maxLength The Maximum length of the attribute
|
* @param Form $form
|
||||||
*/
|
*/
|
||||||
function __construct($name, $title = null, SS_list $source = null, $form = null) {
|
function __construct($name, $title = null, SS_list $source = null, Form $form = null) {
|
||||||
parent::__construct($name, $title, null, $form);
|
parent::__construct($name, $title, null, $form);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user