integrate RTx::Statistics package, part of merging spiritone RT changes (#1661)
[freeside.git] / rt / html / RTx / Statistics / Elements / Tabs
1 %# BEGIN LICENSE BLOCK
2 %# 
3 %# Copyright (c) 1996-2003 Jesse Vincent <jesse@bestpractical.com>
4 %# 
5 %# (Except where explictly superceded by other copyright notices)
6 %# 
7 %# This work is made available to you under the terms of Version 2 of
8 %# the GNU General Public License. A copy of that license should have
9 %# been provided with this software, but in any event can be snarfed
10 %# from www.gnu.org.
11 %# 
12 %# This work is distributed in the hope that it will be useful, but
13 %# WITHOUT ANY WARRANTY; without even the implied warranty of
14 %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 %# General Public License for more details.
16 %# 
17 %# Unless otherwise specified, all modifications, corrections or
18 %# extensions to this work which alter its source code become the
19 %# property of Best Practical Solutions, LLC when submitted for
20 %# inclusion in the work.
21 %# 
22 %# 
23 %# END LICENSE BLOCK
24 <& /Elements/Tabs, 
25     tabs => $tabs, 
26     current_toptab => 'RTx/Statistics/index.html', 
27     current_tab => $current_tab, 
28     Title => $Title &>
29
30 <%INIT>
31   my $tabs = { A => { title => loc('Tickets per Day'),
32                           path => 'RTx/Statistics/CallsQueueDay/index.html',
33                         },
34                B => { title => loc('Tickets by status'),
35                            path => 'RTx/Statistics/OpenStalled/index.html',
36                          },
37                C => { title => loc('Multiple Queues'),
38                            path => 'RTx/Statistics/CallsMultiQueue/index.html',
39                          },
40                D => { title => loc('Ticket Trends by Day'),
41                            path => 'RTx/Statistics/DayOfWeek/index.html',
42                          },
43                E => { 'title' => loc('Time to Resolve'),
44                            path => 'RTx/Statistics/Resolution/index.html',
45                          },
46                F => { 'title' => loc('Resolve Time Graph'),
47                            path => 'RTx/Statistics/TimeToResolve/index.html',
48                          },
49                Z => { 'title' => loc('FAQ'),
50                            path => 'RTx/Statistics/FAQ/index.html',
51                          },
52              };
53
54   # Now let callbacks add their extra tabs
55   $m->comp('/Elements/Callback', tabs => $tabs, %ARGS);
56
57   foreach my $tab (sort keys %{$tabs}) {
58     if ($tabs->{$tab}->{'path'} eq $current_tab) {
59       $tabs->{$tab}->{"subtabs"} = $subtabs;
60       $tabs->{$tab}->{"current_subtab"} = $current_subtab;
61     }
62   }
63
64 </%INIT>
65
66
67 <%ARGS>
68 $subtabs => undef
69 $current_tab => undef
70 $current_subtab => undef
71 $Title => undef
72 </%ARGS>