text changes to registration mail content
[namibia] / module / Report / src / Report / Workflow.php
1 <?php
2 namespace Report;
3
4
5
6 /**
7  * A workflow.
8  * @author andre.fourie
9  */
10 class Workflow extends \Workspace\Workflow
11 {
12
13         /**
14          * @var string
15          */
16         protected $namespace            = __NAMESPACE__;
17         /**
18          * @var string
19          */
20         protected $parentFeature        = false;
21         /**
22          * @var string
23          */
24         protected $rootEntity           = false;
25         /**
26          * @var string
27          */
28         protected $rootIdField          = false;
29         /**
30          * @var string
31          */
32         protected $initState            = false;
33         /**
34          * @var string
35          */
36         protected $initTrigger          = false;
37         /**
38          * @var string
39          */
40         protected $primaryEntity        = false;
41         /**
42          * @var array
43          */
44         protected $entityMap            = array();
45         /**
46          * @var array
47          */
48         protected $linkMap                      = array();
49         /**
50          * @var array
51          */
52         protected $listen                       = array();
53         /**
54          * @var array
55          */
56         protected $reclaim                      = array();
57         /**
58          * @var array
59          */
60         protected $stateLabel           = array();
61         /**
62          * @var array
63          */
64         protected $stateMap = array(
65                         'Global' => array(
66                                 'Actions' => array(
67                                         'Report.Sms'                            => array(),
68                                         'Report.Invoice'                        => array(),
69                                         'Report.Auction'                        => array(),
70                     'Report.StockAuction'               => array(),
71                                         'Report.TuhpiLog'                       => array(),
72                     'Report.TuhpiAccidentLog'           => array(),
73                                         'Report.PriceGuide'                     => array(),
74                                         'Report.PriceGuideStatistical'  => array(),
75                                         'Report.Trader'                                 => array(),
76                                         'Report.AuctionAdherence'               => array(),
77                                         'Report.NoMatch'                                => array(),
78                                         'Report.PriceGuideFlash'                => array(),
79                                         'Report.LoadVsSold'                     => array(),
80                                         'Report.LoadVsSoldDetail'               => array(),
81                                         'Report.Adherence'                      => array(),
82                                         'Report.Login'                                  => array(),
83                                         'Report.Email'                                  => array(),
84                                         'Report.Adherence'                              => array(),
85                                         'Report.Valuation'                              => array(),
86                                         'Report.AdminValuation'                 => array(),
87                                         'Report.ValuationStatistical'   => array(),
88           'Report.AuctionTrader'        => array()
89                                 )
90                         )
91         );
92
93
94 }