text changes to registration mail content
[namibia] / module / Valuation / Module.php
1 <?php
2 namespace Valuation;
3
4
5 class Module
6 {
7         public function getAutoloaderConfig()
8         {
9                 return array(
10                                 'Zend\Loader\ClassMapAutoloader' => array(
11                                                 __DIR__ . '/autoload_classmap.php',
12                                 )
13                 );
14         }
15
16         public function getConfig()
17         {
18                 return include __DIR__ . '/config/module.config.php';
19         }
20
21         public function getServiceConfig()
22         {
23                 return array(
24                                 'invokables' => array(
25                                                 __NAMESPACE__ => __NAMESPACE__ . '\Workflow',
26                                                 __NAMESPACE__ . '.Service.Valuation' => __NAMESPACE__ . '\Service\Valuation',
27                         __NAMESPACE__ . '.Service.CustomerPublicValuation' => __NAMESPACE__ . '\Service\CustomerPublicValuation',
28                         __NAMESPACE__ . '.Service.ValuationTimeSlots' => __NAMESPACE__ . '\Service\ValuationTimeSlots',
29                         __NAMESPACE__ . '.Service.ValuationAppointments' => __NAMESPACE__ . '\Service\ValuationAppointments',
30                                                 __NAMESPACE__ . '.Service.Report' => __NAMESPACE__ . '\Service\Report',
31                                                 __NAMESPACE__ . '.Service.Pdf' => __NAMESPACE__ . '\Service\Pdf',
32                                                 __NAMESPACE__ . '.Service.PricingHistory'  => __NAMESPACE__ . '\Service\PricingHistory',
33                                                 __NAMESPACE__ . '.Service.XmlRpc'  => __NAMESPACE__ . '\DataBin\XmlRpc',
34                                                 __NAMESPACE__ . '.Service.XmlRpcRequestLog'  => __NAMESPACE__ . '\DataBin\XmlRpcRequestLog',
35                                                 __NAMESPACE__ . '.Service.XmlRpcCallbackLog'  => __NAMESPACE__ . '\DataBin\XmlRpcCallbackLog',
36                         __NAMESPACE__ . '.Service.DealNotDoneSelection' => __NAMESPACE__ . '\Service\DealNotDoneSelection',
37                                 )
38                 );
39         }
40
41 }