-
Notifications
You must be signed in to change notification settings - Fork 0
/
ReportEvents.php
56 lines (47 loc) · 1.19 KB
/
ReportEvents.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
namespace San\ReportBundle;
class ReportEvents
{
/**
* @var string
*/
const CREATE_REPORT = 'create.report';
/**
* @var string
*/
const ACTIVE_USER_REPORT = 'active.user.report';
/**
* @var string
*/
const EXERCISED_REPORT = 'exercised.report';
/**
* @var string
*/
const TRACK_FOOD_REPORT = 'track.food.report';
/**
* @var string
*/
const TRACK_GLUCOSE_REPORT = 'track.glucose.report';
/**
* @var string
*/
const TRACK_WEIGHT_REPORT = 'track.weight.report';
/**
* @var string
*/
const USER_REGISTRATION_REPORT = 'user.registration.report';
/**
* @return array
*/
public static function getReports()
{
return array(
self::ACTIVE_USER_REPORT => 'Active user report',
self::EXERCISED_REPORT => 'Exercised report',
self::TRACK_FOOD_REPORT => 'Track food report',
self::TRACK_GLUCOSE_REPORT => 'Track glucose report',
self::TRACK_WEIGHT_REPORT => 'Track weight report',
self::USER_REGISTRATION_REPORT => 'User registration report',
);
}
}