| 1 |
<?php |
| 2 |
$config['timeoff.after_save'][] = array( |
| 3 |
'file' => 'email_notifications/timeoffs.php', |
| 4 |
'class' => 'Timeoffs_notify', |
| 5 |
'method' => 'save' |
| 6 |
); |
| 7 |
/* |
| 8 |
$config['timeoff.after_delete'][] = array( |
| 9 |
'file' => 'email_notifications/timeoffs.php', |
| 10 |
'class' => 'Timeoffs_notify', |
| 11 |
'method' => 'delete' |
| 12 |
); |
| 13 |
*/ |
| 14 |
$config['shift.after_save'][] = array( |
| 15 |
'file' => 'email_notifications/shifts.php', |
| 16 |
'class' => 'Shifts_notify', |
| 17 |
'method' => 'save' |
| 18 |
); |
| 19 |
|