//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';
+
+//email settings
?>
'description' => 'Show NUM days after date',
'help_name' => 'NUM',
'action' => 'StoreInt',
- 'default' => $this->config->daysAfter,
+ 'default' => $this->config->daysNext,
)
);
$parser->addOption(
'description' => 'Show NUM days before date',
'help_name' => 'NUM',
'action' => 'StoreInt',
- 'default' => $this->config->daysBefore,
+ 'default' => $this->config->daysPrev,
)
);
$parser->addOption(