escape strings
[bdrem.git] / data / bdrem.config.php.dist
1 <?php
2 //source: birthday file
3 $source = array('Bdf', '/path/to/birthday.bdf');
4
5 //Source: SQL database
6 $source = array(
7     'Sql',
8     array(
9         'dsn' => 'mysql:dbname=bdrem;host=127.0.0.1',
10         'user' => 'FIXME',
11         'password' => 'FIXME',
12         'table' => 'contacts',
13         'fields' => array(
14             'date' => array(
15                 //column name => event title
16                 'c_birthday' => 'Birthday'
17             ),
18             //column with name
19             'name' => 'c_name'
20         )
21     )
22 );
23
24
25 $daysBefore = 3;
26 $daysAfter = 14;
27 $locale = 'de_DE.UTF-8';
28 ?>