Saved reports (templates) are now just called "reports".

This commit is contained in:
Naomi
2018-09-17 08:48:20 +01:00
parent c81ebc4d94
commit d5fe23418e
13 changed files with 274 additions and 129 deletions

View File

@ -0,0 +1,13 @@
<?php
namespace Drupal\opencase_reporting\Entity;
use Drupal\Core\Config\Entity\ConfigEntityInterface;
/**
* Provides an interface for defining OpenCase Report entities.
*/
interface OpenCaseReportInterface extends ConfigEntityInterface {
// Add get/set methods for your configuration properties here.
}