initial commit
[namibia] / module / Config / src / Config / Fixture / Config.php
1 <?php
2 namespace Config\Fixture;
3
4
5
6 class Config extends \Fixture\Service\Fixture
7 {
8
9         static public function build()
10         {
11                 parent::addStack('\\Config\\Entity\\Config', array(
12                                 array(
13                                                 'dateFormat'               => 'Y-m-d',
14                                                 'dateTimeFormat'           => 'Y-m-d H:i:s',
15                                                 'timeFormat'               => 'H:i:s',
16                                                 'excelCurrencyFormat'      => 'R #,##0.00;[red]R -#,##0.00',
17                                                 'currencyPrefix'           => 'R ',
18                                                 'vatPercentage'            => 14.0,
19                                                 'sourceEmailAddress'       => 'stage@bid4cars.nirph.com',
20                                                 'sourceMobileAddress'      => '',
21                                                 'adminEmailAddress'        => 'andre@nirph.com',
22                                                 'smsNewPin'                => true,
23                                                 'smsCustomerValuation'     => false,
24                                                 'priceGuideOpenDays'       => 3,
25                                                 'priceGuideCompletionDays' => 30,
26                                                 'appVersion'               => 1.00,
27                                                 'defaultPermissions'       => self::getReference('Permissions.Guest')
28                                         )
29                 ));
30         }
31
32 }