mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
Merge pull request #358 from silverstripe-big-o/ss-reports-documentation
MINOR: updating release notes with documentation describing changes to SS_Report
This commit is contained in:
commit
45197b1205
@ -480,7 +480,19 @@ Note that its just necessary if SilverStripe is used in a language other than th
|
|||||||
'legacy',
|
'legacy',
|
||||||
9 // priority lower than standard translator
|
9 // priority lower than standard translator
|
||||||
);
|
);
|
||||||
|
|
||||||
|
### Removed the need to register SS_Reports
|
||||||
|
|
||||||
|
The SS_Report::register() method is deprecated. You no longer need to explicitly register reports. The CMS now
|
||||||
|
automatically picks up and adds all Report classes to the list of reports in ReportAdmin. You can choose to exclude
|
||||||
|
certain reports by using the SS_Report::add_excluded_reports() method.
|
||||||
|
fe
|
||||||
|
### Removed the ability use a SQLQuery object in a SS_Report
|
||||||
|
|
||||||
|
You can no longer create reports that using the deprecated DataObject->buildSQL and DataObject->extendedSQL
|
||||||
|
methods to build raw SQL queries. Instead please use the DataList::create function to create your query and modify it
|
||||||
|
using the filter() function on the DataList object.
|
||||||
|
|
||||||
### Removed "auto-merging" of member records from `Member->onBeforeWrite()` [member-merging]
|
### Removed "auto-merging" of member records from `Member->onBeforeWrite()` [member-merging]
|
||||||
|
|
||||||
Due to security reasons. Please use `DataObject->merge()` explicitly if this is desired behaviour.
|
Due to security reasons. Please use `DataObject->merge()` explicitly if this is desired behaviour.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user