silverstripe-framework/forms
2012-02-27 23:52:48 +01:00
..
gridfield MINOR Moved some CMS-specific template config into GridFieldPopupForms, to make the external API easier to use, and make specific configs less dependent on the instanciation context, and more tuned to the actual execution controller context 2012-02-27 23:52:48 +01:00
AjaxUniqueTextField.php MINOR Replaced calls to deprecated FormField->Name() with getName() 2011-10-29 13:27:11 +02:00
CheckboxField.php ENHANCEMENT Allowing custom attributes in (most) FormField implementations, which allows for HTML5 data attributes 2012-01-02 16:48:14 +01:00
CheckboxSetField.php MINOR Using instanceof rather than is_a in CheckboxSetField 2012-01-02 16:49:33 +01:00
ComplexTableField.php API CHANGE Deprecated FieldSet-specific methods from Form, namely dateFieldByName(), unsetDataFieldByName(), unsetFieldFromTab(), resetField() 2012-01-02 16:47:59 +01:00
CompositeField.php MINOR Fixed regression on missing return value in CompositeField->FieldHolder() 2012-01-02 21:32:13 +01:00
ConfirmedPasswordField.php MINOR: Removed usage of deprecated FormField::Name() 2011-10-29 17:34:32 +13:00
CreditCardField.php ENHANCEMENT Allowing custom attributes in (most) FormField implementations, which allows for HTML5 data attributes 2012-01-02 16:48:14 +01:00
CurrencyField.php ENHANCEMENT Allowing custom attributes in (most) FormField implementations, which allows for HTML5 data attributes 2012-01-02 16:48:14 +01:00
CustomRequiredFields.php MINOR Removing executable flag from all files (thanks miiihi) 2011-09-18 22:04:02 +02:00
DatalessField.php ENHANCEMENT Allowing custom attributes in (most) FormField implementations, which allows for HTML5 data attributes 2012-01-02 16:48:14 +01:00
DateField.php MINOR: Removed notice-level errors from form field construction. 2012-01-10 16:58:27 +13:00
DatetimeField.php BUGFIX Correctly mark DatetimeField, MoneyField and PhoneNumberField composites as disabled or readonly 2012-01-02 16:49:33 +01:00
DisabledTransformation.php MINOR Unified @package PHPdoc (added where missing, removed duplicates) 2008-06-15 13:33:53 +00:00
DropdownField.php ENHANCEMENT Allowing custom attributes in (most) FormField implementations, which allows for HTML5 data attributes 2012-01-02 16:48:14 +01:00
EmailField.php ENHANCEMENT Allowing custom attributes in (most) FormField implementations, which allows for HTML5 data attributes 2012-01-02 16:48:14 +01:00
FieldGroup.php ENHANCEMENT: File and Image CMSFields styling 2012-02-27 23:52:40 +01:00
FieldList.php MINOR Removed usage of HiddenFieldSet 2012-02-03 00:46:49 +01:00
FieldSet.php MINOR: Use Deprecation class to indicate deprecated methods in core. 2011-10-29 17:34:31 +13:00
FileField.php ENHANCEMENT New UploadField class to replace FileIframeField, ImageField and SimpleImageField 2012-02-03 01:00:08 +01:00
FileIFrameField.php API CHANGE Deprecated FileIframeField and ImageField, use UploadField instead 2012-02-03 00:59:04 +01:00
Form.php BUGFIX Fix checkFieldsForAction() when working with tabs 2012-02-09 11:46:33 +13:00
FormAction.php API CHANGE Removed FormAction->extraData() and $extraData constructor argument, use setAttribute() instead 2012-01-02 16:58:46 +01:00
FormField.php MINOR: Removed notice-level errors from form field construction. 2012-01-10 16:58:27 +13:00
FormScaffolder.php BUGFIX Prepopulating relation list in FormScaffolder 2012-01-09 21:17:55 +01:00
FormTransformation.php MINOR Removing executable flag from all files (thanks miiihi) 2011-09-18 22:04:02 +02:00
GroupedDropdownField.php ENHANCEMENT Allowing custom attributes in (most) FormField implementations, which allows for HTML5 data attributes 2012-01-02 16:48:14 +01:00
HasManyComplexTableField.php MINOR Replaced calls to deprecated FormField->Name() with getName() 2011-10-29 13:27:11 +02:00
HasOneComplexTableField.php MINOR Replaced calls to deprecated FormField->Name() with getName() 2011-10-29 13:27:11 +02:00
HeaderField.php API CHANGE Don't allow specifying $form as constructor argument in various form fields, use setForm() instead (to achieve a cleaner API with less confusing parameter order) 2012-01-02 17:50:34 +01:00
HiddenField.php ENHANCEMENT Allowing custom attributes in (most) FormField implementations, which allows for HTML5 data attributes 2012-01-02 16:48:14 +01:00
HtmlEditorConfig.php BUGFIX Enforcing TinyMCE textarea call on window.load in addition to entwine/DOMReady to ensure TinyMCE.init() has been called and all plugins are loaded. 2011-12-15 00:48:29 +01:00
HtmlEditorField.php Merge remote-tracking branch 'refs/remotes/chillu/formfield-constructors' 2012-01-10 16:41:02 +13:00
ImageField.php API CHANGE Deprecated FileIframeField and ImageField, use UploadField instead 2012-02-03 00:59:04 +01:00
ImageFormAction.php API CHANGE Deprecated ImageFormAction, use FormAction with setAttribute('src', 'myimage.png') 2012-01-02 16:48:14 +01:00
InlineFormAction.php MINOR Removing executable flag from all files (thanks miiihi) 2011-09-18 22:04:02 +02:00
LabelField.php API CHANGE Don't allow specifying $form as constructor argument in various form fields, use setForm() instead (to achieve a cleaner API with less confusing parameter order) 2012-01-02 17:50:34 +01:00
ListboxField.php MINOR Removed overzealous value validation in ListboxField, should silently ignore unknown values (lacking better referential integrity measures in the underlying model layer) 2012-01-19 12:13:18 +01:00
LiteralField.php API CHANGE FormField::Field() and FormField::FieldHolder() now render into templates on each FormField instead of creating HTML from PHP 2012-01-02 16:48:13 +01:00
LookupField.php MINOR: Moved from use of deprecated SQLMap to SS_Map. 2011-10-29 17:36:37 +13:00
ManyManyComplexTableField.php MINOR Replaced calls to deprecated FormField->Name() with getName() 2011-10-29 13:27:11 +02:00
MemberDatetimeOptionsetField.php MINOR Reduced unnecessary autoloading 2011-12-23 10:31:35 +01:00
MoneyField.php API CHANGE Don't allow specifying $form as constructor argument in various form fields, use setForm() instead (to achieve a cleaner API with less confusing parameter order) 2012-01-02 17:50:34 +01:00
NestedForm.php MINOR phpdoc documentation 2009-03-22 22:59:14 +00:00
NullableField.php API CHANGE FormField::Field() and FormField::FieldHolder() now render into templates on each FormField instead of creating HTML from PHP 2012-01-02 16:48:13 +01:00
NumericField.php ENHANCEMENT Allowing custom attributes in (most) FormField implementations, which allows for HTML5 data attributes 2012-01-02 16:48:14 +01:00
OptionsetField.php MERGE Using FormField->template in most fields 2012-01-02 16:48:14 +01:00
PasswordField.php API CHANGE Removed $maxlength constructor argument from PasswordField, use setMaxlength() instead 2012-01-02 17:45:47 +01:00
PhoneNumberField.php API CHANGE Don't allow specifying $form as constructor argument in various form fields, use setForm() instead (to achieve a cleaner API with less confusing parameter order) 2012-01-02 17:50:34 +01:00
PrintableTransformation.php MINOR Removing executable flag from all files (thanks miiihi) 2011-09-18 22:04:02 +02:00
ReadonlyField.php ENHANCEMENT Allowing custom attributes in (most) FormField implementations, which allows for HTML5 data attributes 2012-01-02 16:48:14 +01:00
ReadonlyTransformation.php MINOR Removing executable flag from all files (thanks miiihi) 2011-09-18 22:04:02 +02:00
RequiredFields.php MINOR Removing executable flag from all files (thanks miiihi) 2011-09-18 22:04:02 +02:00
ResetFormAction.php ENHANCEMENT Allowing custom attributes in (most) FormField implementations, which allows for HTML5 data attributes 2012-01-02 16:48:14 +01:00
ScaffoldingComplexTableField.php API CHANGE: Deprecated CompositeField->FieldSet() in favour of CompositeField->FieldList(). 2011-05-11 17:51:54 +10:00
SelectionGroup.php MINOR Using FieldList instead of FieldSet on SelectionGroup to comply with parent implementation 2012-01-02 16:48:14 +01:00
SimpleImageField.php API CHANGE Deprecated SimpleImageField, use FileField or UploadField with setAllowedExtensions() 2012-02-03 01:00:11 +01:00
Tab.php MINOR: Removed usage of deprecated FormField::Name() 2011-10-29 17:34:32 +13:00
TableField.php MINOR Replaced calls to deprecated FormField->Name() with getName() 2011-10-29 13:27:11 +02:00
TableListField.php MINOR Replaced calls to deprecated FormField->Name() with getName() 2011-10-29 13:27:11 +02:00
TabSet.php MINOR tweaks to SecurityAdmin layout 2011-10-29 15:47:08 +13:00
TabularStyle.php MINOR Removing executable flag from all files (thanks miiihi) 2011-09-18 22:04:02 +02:00
TextareaField.php API CHANGE Removed $rows and $cols constructor arguments on TextareaField and HtmlEditorField, use setRows() and setCols() instead 2012-01-02 17:44:23 +01:00
TextField.php ENHANCEMENT Allowing custom attributes in (most) FormField implementations, which allows for HTML5 data attributes 2012-01-02 16:48:14 +01:00
TimeField.php ENHANCEMENT Allowing custom attributes in (most) FormField implementations, which allows for HTML5 data attributes 2012-01-02 16:48:14 +01:00
ToggleCompositeField.php MINOR Removing executable flag from all files (thanks miiihi) 2011-09-18 22:04:02 +02:00
ToggleField.php MINOR Removing executable flag from all files (thanks miiihi) 2011-09-18 22:04:02 +02:00
TreeDropdownField.php MINOR TreeDropdownField->setShowInSearch() 2012-01-05 23:17:55 +01:00
TreeMultiselectField.php MINOR Making $title optional in TreeMultiselectField to comply with parent implementation 2012-01-02 16:48:14 +01:00
UploadField.php ENHANCEMENT New UploadField class to replace FileIframeField, ImageField and SimpleImageField 2012-02-03 01:00:08 +01:00
Validator.php MINOR: Use Deprecation class to indicate deprecated methods in core. 2011-10-29 17:34:31 +13:00