This commit was generated by cvs2svn to compensate for changes in r3921,
[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 = {
44                   ' A'=> { title => 'Billing Main',
45                            path  => '..',
46                          },
47                     A => { #title => loc('Homepage'),
48                            title => 'Ticketing Main',
49                            path => '',
50                          },
51                     B => { title => loc('Tickets'),
52                         path => 'Search/Listing.html'
53                       },
54                     E => { title => loc('Configuration'),
55                            path => 'Admin/'
56                          },
57                     K => { title => loc('Preferences'),
58                         path => 'User/Prefs.html'
59                       },
60                     P => { title => loc('Approval'),
61                            path => 'Approvals/'
62                          },
63                  };
64
65 if (!defined $toptabs) {
66    $toptabs = $basetabs;
67 }
68 if (!defined $topactions) {
69    $topactions = $basetopactions;
70 }
71                     
72   # Now let callbacks add their extra tabs
73   $m->comp('/Elements/Callback', 
74     topactions => $topactions, 
75     toptabs => $toptabs, %ARGS);
76
77 </%INIT>
78 <%ARGS>
79 $current_toptab => undef
80 $current_tab => undef
81 $toptabs => undef
82 $topactions => undef
83 $tabs => undef
84 $actions => undef
85 $subactions => undef
86 $Title => undef
87 </%ARGS>