phpvms/config/phpvms.php
2017-08-02 23:22:51 -05:00

43 lines
917 B
PHP

<?php
/**
* DO NOT MODIFY THIS FILE DIRECTLY!
* It will just make upgrading (a little) more difficult
*
* Create a local.conf.php in the root (in the same directory
* as your .env file), and then copy this file into there, and
* make your changes there.
*/
return [
/**
* The skin to use for the front-end
*/
'skin' => 'default',
/**
* Start date. Set the date of when your VA has started
* Used as an anchor point for some financials and things
*
* YYYY-MM-DD format
*/
'start_date' => '2017-07-07',
/**
* Pick one of:
* dollar, euro, gbp, yen, jpy, rupee, ruble
*/
'currency' => 'dollar',
/**
* Restrict showing flights from the user's current airport
*/
'only_flights_from_current' => false,
/**
* Misc Settings
*/
'feed_url' => 'http://forum.phpvms.net/rss/1-announcements-feed.xml/?',
];