update configuration example file, fix variable names
[bdrem.git] / data / bdrem.config.php.dist
index 7af4ed0dc4f3e5907a311f29e3427a4df2f3b0dd..076533f2292e52a11881fee1fd513b4efe3a6d5b 100644 (file)
@@ -15,14 +15,19 @@ $source = array(
                 //column name => event title
                 'c_birthday' => 'Birthday'
             ),
                 //column name => event title
                 'c_birthday' => 'Birthday'
             ),
-            //column with name
-            'name' => 'c_name'
+            //column with name, or array with column names
+            'name' => array('c_name'),
+            //sprintf-compatible name formatting instruction
+            'nameFormat' => '%s',
         )
     )
 );
 
         )
     )
 );
 
-
-$daysBefore = 3;
-$daysAfter = 14;
+$daysPrev = 3;
+$daysNext = 14;
 $locale = 'de_DE.UTF-8';
 $locale = 'de_DE.UTF-8';
+
+//email settings
+$mail_from = 'birthday@example.org';
+$mail_to = array('a@example.org', 'b@example.org');
 ?>
 ?>