clean up popup link elements a bit, have the iframe name autogenerate to work around...
[freeside.git] / httemplate / elements / popup_link-cust_pkg.html
1 <%doc>
2
3 Example:
4
5   <SCRIPT TYPE="text/javascript" SRC="overlibmws.js"></SCRIPT>
6   <SCRIPT TYPE="text/javascript" SRC="iframecontentmws.js"></SCRIPT>
7
8   include( '/elements/pkg_popup_link.html', { #hashref or a list, either way
9
10     #required
11     'action'         => 'content.html', # uri for content of popup which should
12                                         #  be suitable for appending '&stuff...'
13     'label'          => 'click me',     # text of <A> tag
14     'cust_pkg'       => $cust_pkg       # a FS::cust_pkg object
15    
16     #strongly recommended (you want a title, right?)
17     'actionlabel     => 'You clicked',  # popup title
18    
19     #opt
20     'width'          => '540',
21     'color'          => '#ff0000',
22     'closetext'      => 'Go Away',      # the value '' removes the link
23   )
24
25 </%doc>
26 % if ( $params->{'cust_pkg'} ) {
27 <% include('/elements/popup_link.html', $params ) %>\
28 % }
29 <%init>
30
31 my $params = { 'closetext' => 'Close',
32                'width'     => 768,
33              };
34
35 if (ref($_[0]) eq 'HASH') {
36   $params = { %$params, %{ $_[0] } };
37 } else {
38   $params = { %$params, @_ };
39 }
40
41 $params->{'action'} .=
42   ( $params->{'action'} =~ /\?/ ? ';' : '?' ).
43   'pkgnum='. $params->{'cust_pkg'}->pkgnum;
44
45 $params->{'actionlabel'} .=
46   ' package '. $params->{'cust_pkg'}->pkgnum; #XXX pkgnum?  really?
47
48 </%init>