999c62da036ba4d9cc430029e192c95c42fb8cfc
[freeside.git] / fs_selfservice / FS-SelfService / cgi / myaccount_menu.html
1 <%= $url = "$selfurl?action="; ''; %>
2 <TABLE BORDER=0><TR>
3 <TD VALIGN="top" BGCOLOR="<%= $menu_bgcolor || $box_bgcolor || '#c0c0c0' %>">
4
5 <TABLE CELLSPACING=0 BORDER=0 HEIGHT="100%">
6
7 <%= 
8
9 if ( $menu_top_image ) {
10   $OUT .= '<TR><TD STYLE="padding:0px"><IMG SRC="image.cgi?name=menu_top_image;agentnum='. $agentnum. '"></TD></TR>';
11 }
12
13 my @menu = (
14   { title=>' ' },
15   { title=>'Overview', url=>'myaccount', size=>'+1', },
16   { title=>' ' },
17   { title=>'Purchase', size=>'+1', },
18 );
19
20 unless ( $access_pkgnum ) {
21   push @menu,
22     { title=>'Purchase additional package',
23       url=>'customer_order_pkg', 'indent'=>2 };
24 }
25
26 my %payby_mode;
27 @payby_mode{@cust_paybys} = @hide_payment_fields;
28 # $payby_mode{FOO} is true if FOO is thirdparty, false if it's B::OP,
29 # nonexistent if it's not supported
30
31 if ( ($balance || 0) > 0 ) { #XXXFIXME "enable selfservice prepay features" flag or something, eventually per-pkg or something really fancy
32
33   if ( exists( $payby_mode{CARD} ) ) {
34     push @menu, { title  => 'Recharge my account with a credit card',
35                   url    => $payby_mode{CARD}
36                               ? 'make_thirdparty_payment&payby_method=CC'
37                               : 'make_payment',
38                   indent => 2,
39                  }
40   }
41
42   if ( exists( $payby_mode{CHEK} ) ) {
43     push @menu, { title  => 'Recharge my account with a check',
44                   url    => $payby_mode{CHEK}
45                               ? 'make_thirdparty_payment&payby_method=ECHECK'
46                               : 'make_ach_payment',
47                   indent => 2,
48                 }
49   }
50
51   if ( exists( $payby_mode{PREPAY} ) ) {
52     push @menu, { title  => 'Recharge my account with a prepaid card',
53                   url    => 'recharge_prepay',
54                   indent => 2,
55                 }
56   }
57
58   if ( exists( $payby_mode{PPAL} ) ) {
59     push @menu, { title  => 'Recharge my account with PayPal',
60                   url    => 'make_thirdparty_payment&payby_method=PAYPAL',
61                   indent => 2,
62                 }
63   }
64 }
65
66 push @menu,
67   { title=>' ' };
68
69 unless( $hide_usage ){
70   push @menu,
71     { title=>'View my usage', url=>'view_usage', size=>'+1', }
72 }
73
74 push @menu,
75   { title=>'Create a ticket', url=>'tktcreate', size=>'+1', },
76 ;
77
78 unless ( $access_pkgnum ) {
79   push @menu,
80     { title=>'Setup my services', url=>'provision', size=>'+1', },
81   ;
82 }
83
84 push @menu,
85   { title=>' ' };
86
87 push @menu,
88   { title=>'Change my information', size=>'+1', };
89
90 unless ( $access_pkgnum ) {
91   push @menu,
92     { title=>'Change billing address',      url=>'change_bill',     indent=>2 },
93     { title=>'Change service address',      url=>'change_ship',     indent=>2 },
94     { title=>'Change payment information',  url=>'change_pay',      indent=>2 },
95   ;
96 }
97
98 push @menu,
99   { title=>'Change password(s)',          url=>'change_password', indent=>2 },
100   { title=>' ' },
101   { title=>'Logout',   url=>'logout', size=>'+1', },
102 ;
103
104 my %menu_disable = map { $_=>1 } @menu_disable;
105 foreach my $item ( @menu ) {
106
107   next if ( $menu_skipblanks && $item->{'title'} =~ /^\s*$/ )
108        || ( $menu_skipheadings && ! $item->{'url'} )
109        || $menu_disable{$item->{'title'}};
110   
111   $OUT .= '<TR><TD'; 
112   if ( $menu_body_image ) {
113     if ( exists $item->{'url'} && $action eq $item->{'url'} ) {
114       $OUT .= #' BGCOLOR="'. ( $body_bgcolor || '#eeeeee' ). '" '.
115               ' STYLE="background: url(image.cgi?name=menu_body_image;agentnum='. $agentnum. ') 0 bottom; '.
116               '        color:#3366CC"; '. #XXX config
117               ' " ';
118     } else {
119       $OUT .= ' STYLE="background: url(image.cgi?name=menu_body_imagei;agentnum='. $agentnum. ') 0 bottom" ';
120     }
121   } else {
122     if ( exists $item->{'url'} && $action eq $item->{'url'} ) {
123       $OUT .= ' BGCOLOR="'. ( $body_bgcolor || '#eeeeee' ). '" '.
124               ' STYLE="border-top: 1px solid black;'.
125                      ' border-left: 1px solid black;'.
126                      ' border-bottom: 1px solid black"';
127     } else {
128       $OUT .= ' STYLE="border-right: 1px solid black"';
129     }
130   }
131   $OUT.='>';
132
133   if ( $menu_skipheadings ) {
134     $OUT .= '&nbsp;&nbsp;';
135   } else {
136     $OUT .= '&nbsp;' x $item->{'indent'}
137       if exists $item->{'indent'};
138   }
139
140   $OUT .= '<A HREF="'. $url. $item->{'url'}. '">'
141     if exists $item->{'url'} && $action ne $item->{'url'};
142
143   $OUT .= '<FONT SIZE="'. ( $menu_fontsize || $item->{'size'} ). '">'
144     if $menu_fontsize || exists($item->{'size'});
145
146   $item->{'title'} =~ s/ /&nbsp;/g;
147   $OUT .= $item->{'title'};
148
149   $OUT .= '</FONT>'
150     if exists $item->{'size'};
151
152   $OUT .= '</A>'
153     if exists $item->{'url'} && $action ne $item->{'url'};
154
155   $OUT .= '</TD></TR>';
156
157 }
158
159 if ( $menu_bottom_image ) {
160   $OUT .= '<TR><TD STYLE="padding:0px"><IMG SRC="image.cgi?name=menu_bottom_image;agentnum='. $agentnum. '"></TD></TR>';
161 } else {
162   $OUT .= '<TR><TD STYLE="border-right: 1px solid black" HEIGHT="100%"><BR><BR><BR><BR></TD></TR>';
163 }
164
165 %>
166
167 </TABLE>
168
169 </TD>