| 1 |
<?php |
| 2 |
$config['timeoff.after_save'][] = array( |
| 3 |
'file' => 'email_notifications/timeoffs.php', |
| 4 |
'class' => 'Timeoffs_notify', |
| 5 |
'method' => 'save' |
| 6 |
); |
| 7 |
$config['shift.after_save'][] = array( |
| 8 |
'file' => 'email_notifications/shifts.php', |
| 9 |
'class' => 'Shifts_notify', |
| 10 |
'method' => 'save' |
| 11 |
); |
| 12 |
$config['user.after_login'][] = array( |
| 13 |
'file' => 'loginlog/models/loginlog_model.php', |
| 14 |
'class' => 'Loginlog_model', |
| 15 |
'method' => 'log' |
| 16 |
); |
| 17 |
$config['shift.after_save'][] = array( |
| 18 |
'file' => 'logaudit/models/logaudit_model.php', |
| 19 |
'class' => 'Logaudit_model', |
| 20 |
'method' => 'log', |
| 21 |
'attr' => array('user_id', 'location_id', 'start', 'end', 'date', 'status', 'id', 'has_trade'), |
| 22 |
); |
| 23 |
|