import of rt 3.0.4
[freeside.git] / rt / html / 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/PageLayout,
25     current_toptab => $current_toptab,
26     current_tab => $current_tab,
27     toptabs => $toptabs,
28     topactions => $topactions,
29     tabs => $tabs,
30     actions => $actions,
31     subactions => $subactions,
32     title => $Title
33 &>
34 <a name="skipnav" id="skipnav" accesskey="8"></a>
35 <%INIT>
36 my $action;
37 my $basetopactions = {
38         A => { html => $m->scomp('/Elements/CreateTicket')      
39                 },
40         B => { html => $m->scomp('/Elements/SimpleSearch') 
41                 }
42         };
43 my $basetabs = {     A => { title => loc('Homepage'),
44                            path => '',
45                          },
46                     B => { title => loc('Tickets'),
47                         path => 'Search/Listing.html'
48                       },
49                     E => { title => loc('Configuration'),
50                            path => 'Admin/'
51                          },
52                     K => { title => loc('Preferences'),
53                         path => 'User/Prefs.html'
54                       },
55                     P => { title => loc('Approval'),
56                            path => 'Approvals/'
57                          },
58                  };
59
60 if (!defined $toptabs) {
61    $toptabs = $basetabs;
62 }
63 if (!defined $topactions) {
64    $topactions = $basetopactions;
65 }
66                     
67   # Now let callbacks add their extra tabs
68   $m->comp('/Elements/Callback', 
69     topactions => $topactions, 
70     toptabs => $toptabs, %ARGS);
71
72 </%INIT>
73 <%ARGS>
74 $current_toptab => undef
75 $current_tab => undef
76 $toptabs => undef
77 $topactions => undef
78 $tabs => undef
79 $actions => undef
80 $subactions => undef
81 $Title => undef
82 </%ARGS>