Reports

Write reports with Twig

Installation #

To install Reports, follow these steps:

  1. Download & unzip the file and place the reports directory into your craft/plugins directory
  2. Install plugin in the Craft Control Panel under Settings > Plugins
  3. The plugin folder should be named reports for Craft to see it.

Reports works on Craft 2.4.x and higher;

Reports Overview #

Reports allow you to collect data by writing Twig tags as normal. All you need to in the end is pass that data to the .prepare() method, like the following example:

Example report in Twig:

{% set newsCount = craft.entries.section('news').limit(null).total() %}
{{ craft.reports.prepare({
    columns: ['Total news entries'], 
    rows: [ [ newsCount ] ]
}) }}

List all users in a specific user group that have logged in within the last 30 days:

{% set loginPeriod = now|date_modify('-30 days') %}
{% set users = craft.users.group('clients').lastLoginDate('> ' ~ loginPeriod) %}
{% set userRows = [] %}
{% for user in users %}
    {% set userRows = userRows|merge([ [user.username, user.getName(), user.email] ]) %}
{% endfor %}

{{ craft.reports.prepare({
    columns: ['Username', 'Name', 'Email'], 
    rows: userRows
}) }}

The result is available in the control panel, or as a CSV export.

Reports Roadmap #

  • Show error if there is something wrong with the template
  • Add helpers for getting data from query results
  • Make it possible to include templates from the templates directory
  • Charts
  • Permissions
  • E-mail digests
  • Slack digests

Releases

1.0.2 — 2018-04-17 Download
  • Fixed: Fixed report deletion
1.0.1 — 2017-06-19 Download
  • Improved: Now template editor provides a code editor for better template edit experience
  • Improved: Templates that return Twig_Markup instances will now be cast to string
1.0.0 — 2017-05-23 Download
  • Added: Initial release

Currently available for Craft consulting and custom plugin development

Contact me