From ab8a36cedea30d72b1d05029156545b614c26021 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Sat, 7 Jun 2008 09:50:41 +0000 Subject: [PATCH] seems not to be used (anymore) --- calendar/inc/class.toolbar.inc.php | 71 ------------------------------ 1 file changed, 71 deletions(-) delete mode 100755 calendar/inc/class.toolbar.inc.php diff --git a/calendar/inc/class.toolbar.inc.php b/calendar/inc/class.toolbar.inc.php deleted file mode 100755 index 21c127f521..0000000000 --- a/calendar/inc/class.toolbar.inc.php +++ /dev/null @@ -1,71 +0,0 @@ - * - * http://www.radix.net/~cknudsen * - * Modified by Mark Peters * - * -------------------------------------------- * - * 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$ */ - - class toolbar - { - - - function toolbar() - { - $toolbar = Array(); - $toolbar['viewday'] = Array( - 'title' => "Today", - 'image' => 'today.png', - 'url'=>$GLOBALS['phpgw']->link('/index.php','menuaction=calendar.uicalendar.day') - ); - - $toolbar['viewweek'] = Array( - 'title' => "This week", - 'image' => 'week.png', - 'url'=>$GLOBALS['phpgw']->link('/index.php','menuaction=calendar.uicalendar.week') - ); - - $toolbar['viewmonth'] = Array( - 'title' => "This month", - 'image' => 'month.png', - 'url'=>$GLOBALS['phpgw']->link('/index.php','menuaction=calendar.uicalendar.month') - ); - - $toolbar['viewyear'] = Array( - 'title' => "This year", - 'image' => 'year.png', - 'url'=>$GLOBALS['phpgw']->link('/index.php','menuaction=calendar.uicalendar.year') - ); - - - - - $toolbar['planner'] = Array( - 'title' => "Group Planner", - 'image' => 'planner.png', - 'url'=>$GLOBALS['phpgw']->link('/index.php','menuaction=calendar.uicalendar.planner') - ); - - $toolbar['view'] = 'Separator'; - - $toolbar['matrixselect'] = Array( - 'title' => "Daily Matrix", - 'image' => 'view.png', - 'url'=>$GLOBALS['phpgw']->link('/index.php','menuaction=calendar.uicalendar.matrixselect') - ); - - - - return $toolbar; - } - - } -?>