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