Fix email CSV generation.
[ycra.git] / config.php.sample
1 <?php
2 function get_config() {
3   return [
4     'site_root' => '/',
5     'title_append' => '',
6   ];
7 }
8
9 function get_db_details() {
10   return [
11     'host' => 'localhost',
12     'database' => 'DB',
13     'user' => 'USER',
14     'password' => "PASSWORD",
15   ];
16 }