text changes to registration mail content
[namibia] / module / Config / src / Config / Service / Config.php
1 <?php
2 namespace Config\Service;
3
4
5
6 /**
7  * Manage country data.
8  * @author andre.fourie
9  */
10 class Config extends \Workspace\Service\DataBin
11 {
12
13         /**
14          * @var array
15          */
16         protected $meta = array(
17                         'Base'        => 'Config',
18                         'DatasetName' => 'config',
19                         'Entity'      => '\Config\Entity\Config',
20                         'References'  => array(),
21                         'Dependants'  => array()
22         );
23         /**
24          * @var array
25          */
26         protected $metaView = array(
27                         'Type'      => 'View',
28                         'Expand'    => array(),
29                         'Intersect' => array()
30         );
31         /**
32          * @var array
33         */
34         protected $metaUpdate = array(
35                         'Type'                  => 'Update',
36                         'Contract'              => 'UseOnce',
37                         'RequiredInput' => array(
38                                         'Config' => array(
39                                                         'sourceEmailAddress'       => 'Email',
40                                                         'adminEmailAddress'        => 'Email',
41                                                         'priceGuideOpenDays'       => 'Integer',
42                                                         'priceGuideCompletionDays' => 'Integer',
43                                                         'auctionMaxDays'           => 'Integer'
44                                         )
45                         ),
46                         'OptionalInput' => array(
47                                         'Config' => array(
48                                                         'smsNewPin'           => 'Boolean',
49                                                         'sourceMobileAddress' => 'String20'
50                                         )
51                         )
52         );
53
54 }