diff --git a/calendar/deleteholiday.php b/calendar/deleteholiday.php new file mode 100755 index 0000000000..dfd9ca283f --- /dev/null +++ b/calendar/deleteholiday.php @@ -0,0 +1,69 @@ + * + * -------------------------------------------- * + * This program is free software; you can redistribute it and/or modify it * + * under the terms of the GNU General Public License as published by the * + * Free Software Foundation; either version 2 of the License, or (at your * + * option) any later version. * + \**************************************************************************/ + /* $Id$ */ + + if(!$id) + { + Header('Location: ' . $phpgw->link('/calendar/editlocale.php','locale='.$locale)); + } + + $phpgw_flags = Array( + 'currentapp' => 'calendar', + 'enable_nextmatchs_class' => True, + 'admin_header' => True, + 'noheader' => True, + 'nonavbar' => True, + 'noappheader' => True, + 'noappfooter' => True, + 'parent_page' => 'holiday_admin.php' + ); + $phpgw_info['flags'] = $phpgw_flags; + include('../header.inc.php'); + + if(isset($yes) && $yes==True) + { + $phpgw->calendar->holidays->delete_holiday($id); + Header('Location: ' . $phpgw->link('/calendar/editlocale.php','locale='.$locale)); + } + + $phpgw->common->phpgw_header(); + echo parse_navbar(); + + $p = CreateObject('phpgwapi.Template',PHPGW_APP_TPL); + $templates = Array( + 'form' => 'delete_common.tpl', + 'form_button' => 'form_button_script.tpl' + ); + $p->set_file($templates); + + $p->set_var('messages',lang('Are you sure you want to delete this holiday ?')); + + $var = Array( + 'action_url_button' => $phpgw->link('/calendar/editlocale.php','locale='.$locale), + 'action_text_button' => lang('No'), + 'action_confirm_button' => '', + 'action_extra_field' => '' + ); + $p->set_var($var); + $p->parse('no','form_button'); + + $var = Array( + 'action_url_button' => $phpgw->link('/calendar/deleteholiday.php','locale='.$locale.'&id='.$id.'&yes=true'), + 'action_text_button' => lang('Yes'), + 'action_confirm_button' => '', + 'action_extra_field' => '' + ); + $p->set_var($var); + $p->parse('yes','form_button'); + + $p->pparse('out','form'); +?> diff --git a/calendar/templates/default/delete_common.tpl b/calendar/templates/default/delete_common.tpl new file mode 100755 index 0000000000..94e7026403 --- /dev/null +++ b/calendar/templates/default/delete_common.tpl @@ -0,0 +1,16 @@ + +
+ + + + + + + + +
+ {messages} +
{no}{yes}
+
+ +