Guy Sartorelli fafd3c0e8c
Merge pull request #184 from creative-commoners/pulls/5.2/remove-self
ENH Use class name instead of self
2024-06-17 12:44:42 +12:00
2017-06-26 21:45:56 +12:00
2023-03-06 18:20:21 +13:00
2024-06-05 16:34:48 +12:00
2024-05-07 15:26:43 +12:00
2017-10-12 12:57:05 +13:00
2016-05-30 14:37:53 +12:00
2023-08-29 15:15:42 +12:00
2022-08-01 15:36:42 +12:00
2023-04-19 17:56:52 +12:00

Reports

CI Silverstripe supported module

Installation

composer require silverstripe/reports

Introduction

This module contains the API's for building Reports that are displayed in the Silverstripe backend.

Troubleshooting

The reports section will not show up in the CMS if:

  • There are no reports to show
  • The logged in user does not have permission to view any reports

For large datasets, the reports section may take a long time to load, since each report is getting a count of the items it contains to display next to the title.

To mitigate this issue, there is a cap on the number of items that will be counted per report. This is set at 10,000 items by default, but can be configured using the limit_count_in_overview configuration variable. Setting this to null will result in showing the actual count regardless of how many items there are.

SilverStripe\Reports\Report:
  limit_count_in_overview: 500

Note that some reports may have overridden the getCount method, and for those reports this may not apply.

Description
No description provided
Readme 16 MiB
Languages
PHP 94.4%
Scheme 2.9%
JavaScript 2.7%