diff options
Diffstat (limited to 'admin/batch_manager.php')
-rw-r--r-- | admin/batch_manager.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/admin/batch_manager.php b/admin/batch_manager.php index 950124ad0..a89ef615b 100644 --- a/admin/batch_manager.php +++ b/admin/batch_manager.php @@ -43,6 +43,27 @@ check_status(ACCESS_ADMINISTRATOR); check_input_parameter('selection', $_POST, true, PATTERN_ID); +// +-----------------------------------------------------------------------+ +// | specific actions | +// +-----------------------------------------------------------------------+ + +if (isset($_GET['action'])) +{ + if ('empty_caddie' == $_GET['action']) + { + $query = ' +DELETE FROM '.CADDIE_TABLE.' + WHERE user_id = '.$user['id'].' +;'; + pwg_query($query); + + $_SESSION['page_infos'] = array( + l10n('Information data registered in database') + ); + + redirect(get_root_url().'admin.php?page='.$_GET['page']); + } +} // +-----------------------------------------------------------------------+ // | initialize current set | |