Add company reports functionality (#252)

* Reorder includes to be alphabetic
* Add reports and styling
This commit is contained in:
Paul Kevan 2024-05-23 10:32:10 +01:00 committed by GitHub
parent c04421f980
commit 1cabbc9729
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 196 additions and 4 deletions

View file

@ -28,13 +28,14 @@ function load() {
require_once get_includes_path() . 'authentication.php';
require_once get_includes_path() . 'contributor.php';
require_once get_includes_path() . 'email.php';
require_once get_includes_path() . 'pledge.php';
require_once get_includes_path() . 'pledge-meta.php';
require_once get_includes_path() . 'pledge-form.php';
require_once get_includes_path() . 'xprofile.php';
require_once get_includes_path() . 'endpoints.php';
require_once get_includes_path() . 'miscellaneous.php';
require_once get_includes_path() . 'pledge.php';
require_once get_includes_path() . 'pledge-form.php';
require_once get_includes_path() . 'pledge-meta.php';
require_once get_includes_path() . 'reports.php';
require_once get_includes_path() . 'stats.php';
require_once get_includes_path() . 'xprofile.php';
// The logger expects things like `$_POST` which aren't set during unit tests.
if ( ! $running_unit_tests ) {