.. |
AjaxFormAction.php
|
MINOR Misc deprecation notes
|
2008-10-16 13:00:30 +00:00 |
AjaxUniqueTextField.php
|
BUGFIX: Updated i18n javascript system so that the i18n javascript needs to be explicitly included, so that it doesn't poke its nose in where it's not wanted.
|
2011-02-02 14:27:09 +13:00 |
AutocompleteTextField.php
|
BUGFIX Fixed extra class addition on various FormField->Field() methods
|
2008-10-21 20:58:11 +00:00 |
BankAccountField.php
|
ENHANCEMENT Added BankAccountField::is_valid_array_structure() to avoid PHP Notices when converting empty array values
|
2008-10-15 12:57:17 +00:00 |
CalendarDateField.php
|
Made CalendarDataField JS more self-suffficient
|
2011-02-02 14:26:49 +13:00 |
CheckboxField.php
|
ENHANCEMENT Allow "Yes" and "No" english text to be translated
|
2011-02-02 14:27:18 +13:00 |
CheckboxSetField.php
|
MINOR Code formatting fixes in CheckboxSetField
|
2011-02-02 14:27:04 +13:00 |
ComplexTableField.php
|
BUGFIX: Unblock blocked requirements when opening a poppup - otherwise
|
2011-02-02 14:27:21 +13:00 |
CompositeDateField.php
|
MINOR Removed whitespace after ?> end PHP tag
|
2011-02-02 14:26:45 +13:00 |
CompositeField.php
|
ENHANCEMENT Added CompositeField->makeFieldReadonly() (straight copy from FieldSet) incl. unit tests
|
2011-02-02 14:26:43 +13:00 |
ConfirmedFormAction.php
|
MINOR Added deprecated note to ConfirmedFormAction
|
2008-10-27 22:50:24 +00:00 |
ConfirmedPasswordField.php
|
FEATURE: make PasswordField and ConfirmedPasswordField able to either readonly or disabled.
|
2011-02-02 14:27:14 +13:00 |
CountryDropdownField.php
|
BUGFIX CountryDropdownField now allows for title to be optional, which uses the name of the field if not set. This makes it consistent with DropdownField
|
2011-02-02 14:26:53 +13:00 |
CreditCardField.php
|
MINOR Unified @package PHPdoc (added where missing, removed duplicates)
|
2008-06-15 13:33:53 +00:00 |
CurrencyField.php
|
BUGFIX Fixing CurrencyField serverside and javascript validation to accept numbers with leading or trailing spaces
|
2011-02-02 14:27:14 +13:00 |
CustomRequiredFields.php
|
MINOR: added full stop to required labels for consistency
|
2011-02-02 14:27:11 +13:00 |
DatalessField.php
|
BUGFIX Consistenly returning cloned instances for all FormField classes when calling performReadonlyTransformation() or performDisabledTransformation(). Making sure that these instances are actually flagged as readyonly/disabled. Addd unit tests to dynamically instanciate most FormField classes to check for this behaviour. Originally, this bugfix was necessary to avoid changed FormField state when recursively calling replaceField() on FieldSet->dataFields() in Translatable->updateCMSFields()
|
2011-02-02 14:26:36 +13:00 |
DateField.php
|
MINOR Code formatting fix in DateField
|
2011-02-02 14:27:05 +13:00 |
DisabledTransformation.php
|
MINOR Unified @package PHPdoc (added where missing, removed duplicates)
|
2008-06-15 13:33:53 +00:00 |
DMYCalendarDateField.php
|
ENHANCEMENT Introduced constants for system paths like /sapphire in preparation for a more flexible directory reorganisation. Instead of hardcoding your path, please use the following constants: BASE_PATH, BASE_URL, SAPPHIRE_DIR, SAPPHIRE_PATH, CMS_DIR, CMS_PATH, THIRDPARTY_DIR, THIRDPARTY_PATH, ASSETS_DIR, ASSETS_PATH, THEMES_DIR, THEMES_PATH
|
2008-09-27 16:02:38 +00:00 |
DMYDateField.php
|
ENHANCEMENT Introduced constants for system paths like /sapphire in preparation for a more flexible directory reorganisation. Instead of hardcoding your path, please use the following constants: BASE_PATH, BASE_URL, SAPPHIRE_DIR, SAPPHIRE_PATH, CMS_DIR, CMS_PATH, THIRDPARTY_DIR, THIRDPARTY_PATH, ASSETS_DIR, ASSETS_PATH, THEMES_DIR, THEMES_PATH
|
2008-09-27 16:02:38 +00:00 |
DropdownField.php
|
ENHANCEMENT Allow "Yes" and "No" english text to be translated
|
2011-02-02 14:27:18 +13:00 |
DropdownTimeField.php
|
ENHANCEMENT Introduced constants for system paths like /sapphire in preparation for a more flexible directory reorganisation. Instead of hardcoding your path, please use the following constants: BASE_PATH, BASE_URL, SAPPHIRE_DIR, SAPPHIRE_PATH, CMS_DIR, CMS_PATH, THIRDPARTY_DIR, THIRDPARTY_PATH, ASSETS_DIR, ASSETS_PATH, THEMES_DIR, THEMES_PATH
|
2008-09-27 16:02:38 +00:00 |
EmailField.php
|
MINOR Unified @package PHPdoc (added where missing, removed duplicates)
|
2008-06-15 13:33:53 +00:00 |
FieldGroup.php
|
BUGFIX Removed for attribute on FieldGroup->FieldHolder() since there's no ID of any input fields to match the label to.
|
2011-02-02 14:26:58 +13:00 |
FieldSet.php
|
fix the bug in Mingle (SC #234):Users reporting a parse error when trying to open grants. also HD(1571).
|
2011-02-02 14:27:14 +13:00 |
FileField.php
|
BUGFIX Fixed FileField->getFolderName() - it was not returning $this->folderName, instead it was returning an undefined variable in error
|
2011-02-02 14:26:57 +13:00 |
FileIFrameField.php
|
BUGFIX Fixed wrong case of class names for ImageIFrameField causing errors
|
2008-10-31 02:09:04 +00:00 |
Form.php
|
ENHANCHEMENT: added ability for a form author to set whether user should be redirected back down the the form rather then just back to the old page
|
2011-02-02 14:27:20 +13:00 |
FormAction.php
|
BUGFIX Allowing FormAction instances to be readonly by setting disabled="disabled". Adding CSS class "disabled".
|
2011-02-02 14:26:48 +13:00 |
FormField.php
|
BUGFIX Make sure that CheckboxField sets it's value as either 1 or 0, so that saveInto() saves the proper boolean value
|
2011-02-02 14:27:17 +13:00 |
FormScaffolder.php
|
MINOR logical bug in FormScaffolder
|
2011-02-02 14:26:51 +13:00 |
FormTransformation.php
|
MINOR Unified @package PHPdoc (added where missing, removed duplicates)
|
2008-06-15 13:33:53 +00:00 |
GroupedDropdownField.php
|
ENHANCEMENT Added DropdownField->setEmptyString() and DropdownField->setHasEmptyDefault() to decrease constructor arguments and allow for modification of behaviour after calling construtor. Added DropdownField->getSource() to dynamically include empty defaults at rendering-time rather than construction time. Adjusted DropdownField subclasses to new behaviour
|
2008-10-15 12:39:09 +00:00 |
GSTNumberField.php
|
MINOR Removed whitespace after ?> end PHP tag
|
2011-02-02 14:26:45 +13:00 |
HasManyComplexTableField.php
|
BUGFIX Moving Requirements for TableField, TableListField, ComplexTableField, ScaffoldComplexTableField and HasManyComplexTableField from __construct() into FieldHolder() and renderWith(), which means inclusion closer to render time, and less side-effects by a previous Requirements::clear(), e.g. in a CTF popup
|
2011-02-02 14:27:15 +13:00 |
HasOneComplexTableField.php
|
Removed relational CTFs reliance on DataObject->ClassName
|
2008-10-08 03:35:27 +00:00 |
HeaderField.php
|
BUGFIX #3188: Fixed default HeaderField name to be non-conflicting with other fields, for backward compat
|
2011-02-02 14:26:54 +13:00 |
HiddenField.php
|
BUGFIX Consistenly returning cloned instances for all FormField classes when calling performReadonlyTransformation() or performDisabledTransformation(). Making sure that these instances are actually flagged as readyonly/disabled. Addd unit tests to dynamically instanciate most FormField classes to check for this behaviour. Originally, this bugfix was necessary to avoid changed FormField state when recursively calling replaceField() on FieldSet->dataFields() in Translatable->updateCMSFields()
|
2011-02-02 14:26:36 +13:00 |
HiddenFieldGroup.php
|
MINOR Misc deprecation notes
|
2008-10-16 13:00:30 +00:00 |
HtmlEditorField.php
|
BUGFIX Ensure that the return object of File::find() is an instance of Image in HtmlEditorField_readonly::HtmlEditorField_dataValue_processImage()
|
2011-02-02 14:27:22 +13:00 |
ImageField.php
|
MINOR Removed whitespace after ?> end PHP tag
|
2011-02-02 14:26:45 +13:00 |
ImageFormAction.php
|
MINOR Removed whitespace after ?> end PHP tag
|
2011-02-02 14:26:45 +13:00 |
InlineFormAction.php
|
MINOR: Add disabled class to InlineFormAction, adjust Folder to use InlineFormAction rather than LiteralField for "Delete unused thumbnails" button.
|
2011-02-02 14:27:12 +13:00 |
LabelField.php
|
BUGFIX Removed $headingLevel reference from LabelField (was supposed to go into HeaderField)
|
2008-10-16 14:03:10 +00:00 |
LanguageDropdownField.php
|
Merging in refactored Translatable architecture from trunk, including related/required changesets like enhancements to Object static handling (see details below)
|
2011-02-02 14:27:16 +13:00 |
ListboxField.php
|
MINOR Removed whitespace after ?> end PHP tag
|
2011-02-02 14:26:45 +13:00 |
LiteralField.php
|
BUGFIX Consistenly returning cloned instances for all FormField classes when calling performReadonlyTransformation() or performDisabledTransformation(). Making sure that these instances are actually flagged as readyonly/disabled. Addd unit tests to dynamically instanciate most FormField classes to check for this behaviour. Originally, this bugfix was necessary to avoid changed FormField state when recursively calling replaceField() on FieldSet->dataFields() in Translatable->updateCMSFields()
|
2011-02-02 14:26:36 +13:00 |
LookupField.php
|
MINOR Removed whitespace after ?> end PHP tag
|
2011-02-02 14:26:45 +13:00 |
ManyManyComplexTableField.php
|
BUGFIX #3442: Fix pagination in HasManyComplexTable, HasOneComplexTableField, ManyManyComplexTable
|
2011-02-02 14:27:05 +13:00 |
NestedForm.php
|
Merging in refactored Translatable architecture from trunk, including related/required changesets like enhancements to Object static handling (see details below)
|
2011-02-02 14:27:16 +13:00 |
NumericField.php
|
BUGFIX Fixing NumericField serverside validation to accept numbers with leading or trailing spaces by using trim()
|
2011-02-02 14:27:14 +13:00 |
OptionsetField.php
|
ENHANCEMENT Added DropdownField->setEmptyString() and DropdownField->setHasEmptyDefault() to decrease constructor arguments and allow for modification of behaviour after calling construtor. Added DropdownField->getSource() to dynamically include empty defaults at rendering-time rather than construction time. Adjusted DropdownField subclasses to new behaviour
|
2008-10-15 12:39:09 +00:00 |
PasswordField.php
|
FEATURE: make PasswordField and ConfirmedPasswordField able to either readonly or disabled.
|
2011-02-02 14:27:14 +13:00 |
PhoneNumberField.php
|
MINOR Removed whitespace after ?> end PHP tag
|
2011-02-02 14:26:45 +13:00 |
PopupDateTimeField.php
|
BUGFIX Defined jsValidation() and validate() so that inherited validation from DateField doesn't break PopupDateTimeField - this still needs fixing, and PopupDateTimeField shouldn't inherit from CalendarDateField
|
2011-02-02 14:27:02 +13:00 |
PrintableTransformation.php
|
MINOR Unified @package PHPdoc (added where missing, removed duplicates)
|
2008-06-15 13:33:53 +00:00 |
ReadonlyField.php
|
BUGFIX Consistenly returning cloned instances for all FormField classes when calling performReadonlyTransformation() or performDisabledTransformation(). Making sure that these instances are actually flagged as readyonly/disabled. Addd unit tests to dynamically instanciate most FormField classes to check for this behaviour. Originally, this bugfix was necessary to avoid changed FormField state when recursively calling replaceField() on FieldSet->dataFields() in Translatable->updateCMSFields()
|
2011-02-02 14:26:36 +13:00 |
ReadonlyTransformation.php
|
MINOR Unified @package PHPdoc (added where missing, removed duplicates)
|
2008-06-15 13:33:53 +00:00 |
ReportField.php
|
MINOR Removed whitespace after ?> end PHP tag
|
2011-02-02 14:26:45 +13:00 |
RequiredFields.php
|
FEATURE: hooks into form field to allow custom error messages. Note does not currently apply to the behaviour / js. Just the PHP validation
|
2011-02-02 14:27:15 +13:00 |
ResetFormAction.php
|
BUGFIX: fixed typos in ResetFormAction
|
2011-02-02 14:27:14 +13:00 |
RestrictedTextField.php
|
BUGFIX: Updated i18n javascript system so that the i18n javascript needs to be explicitly included, so that it doesn't poke its nose in where it's not wanted.
|
2011-02-02 14:27:09 +13:00 |
ScaffoldingComplexTableField.php
|
BUGFIX Clearing Requirements in ScaffoldingComplexTableField, and fixed constructor arguments
|
2011-02-02 14:27:15 +13:00 |
SelectionGroup.php
|
BUGFIX Consistenly returning cloned instances for all FormField classes when calling performReadonlyTransformation() or performDisabledTransformation(). Making sure that these instances are actually flagged as readyonly/disabled. Addd unit tests to dynamically instanciate most FormField classes to check for this behaviour. Originally, this bugfix was necessary to avoid changed FormField state when recursively calling replaceField() on FieldSet->dataFields() in Translatable->updateCMSFields()
|
2011-02-02 14:26:36 +13:00 |
SimpleImageField.php
|
BUGFIX: add more condition before $this->form is used as Caller since $this->form can still not be set yet in a certain circumstance.
|
2011-02-02 14:27:14 +13:00 |
Tab.php
|
MINOR Removed whitespace after ?> end PHP tag
|
2011-02-02 14:26:45 +13:00 |
TableField.php
|
BUGFIX Moving Requirements for TableField, TableListField, ComplexTableField, ScaffoldComplexTableField and HasManyComplexTableField from __construct() into FieldHolder() and renderWith(), which means inclusion closer to render time, and less side-effects by a previous Requirements::clear(), e.g. in a CTF popup
|
2011-02-02 14:27:15 +13:00 |
TableListField.php
|
BUGFIX Moving Requirements for TableField, TableListField, ComplexTableField, ScaffoldComplexTableField and HasManyComplexTableField from __construct() into FieldHolder() and renderWith(), which means inclusion closer to render time, and less side-effects by a previous Requirements::clear(), e.g. in a CTF popup
|
2011-02-02 14:27:15 +13:00 |
TabSet.php
|
MINOR Removed whitespace after ?> end PHP tag
|
2011-02-02 14:26:45 +13:00 |
TabularStyle.php
|
(merged from branches/roa. use "svn log -c <changeset> -g <module-svn-path>" for detailed commit message)
|
2008-08-06 06:54:59 +00:00 |
TextareaField.php
|
BUGFIX: fixed escaping of code in textarea fields
|
2011-02-02 14:27:22 +13:00 |
TextField.php
|
BUGFIX Fixed extra class addition on various FormField->Field() methods
|
2008-10-21 20:58:11 +00:00 |
TimeField.php
|
Merged [47044]: Introduces modifications to Sapphire's form handling that allows it to ignore fields marked as Disabled when saving the contents of a form's fields to a DataObject.
|
2008-08-12 02:58:48 +00:00 |
ToggleCompositeField.php
|
ENHANCEMENT Introduced constants for system paths like /sapphire in preparation for a more flexible directory reorganisation. Instead of hardcoding your path, please use the following constants: BASE_PATH, BASE_URL, SAPPHIRE_DIR, SAPPHIRE_PATH, CMS_DIR, CMS_PATH, THIRDPARTY_DIR, THIRDPARTY_PATH, ASSETS_DIR, ASSETS_PATH, THEMES_DIR, THEMES_PATH
|
2008-09-27 16:02:38 +00:00 |
ToggleField.php
|
MINOR phpdoc tweaks
|
2008-10-02 00:34:16 +00:00 |
TreeDropdownField.php
|
BUGFIX Checking for existing value on TreeDropdownField->performReadonlyTransformation() - this broke the ReadonlyTransformation on Translatable->updateCMSFields() for the new "ParentID" field in SiteTree->getCMSFields()
|
2011-02-02 14:27:20 +13:00 |
TreeMultiselectField.php
|
BUGFIX: Updated i18n javascript system so that the i18n javascript needs to be explicitly included, so that it doesn't poke its nose in where it's not wanted.
|
2011-02-02 14:27:09 +13:00 |
TreeSelectorField.php
|
BUGFIX: Updated i18n javascript system so that the i18n javascript needs to be explicitly included, so that it doesn't poke its nose in where it's not wanted.
|
2011-02-02 14:27:09 +13:00 |
TypeDropdown.php
|
MINOR Added to @deprecated note for TypeDropdown about why this class shouldn't be used
|
2008-10-19 00:41:16 +00:00 |
UniqueRestrictedTextField.php
|
MINOR deprecation notes
|
2008-10-16 13:44:20 +00:00 |
UniqueTextField.php
|
BUGFIX: Updated i18n javascript system so that the i18n javascript needs to be explicitly included, so that it doesn't poke its nose in where it's not wanted.
|
2011-02-02 14:27:09 +13:00 |
Validator.php
|
MINOR: added full stop to required labels for consistency
|
2011-02-02 14:27:11 +13:00 |