summaryrefslogtreecommitdiff
path: root/httemplate/elements/popup_link-cust_main.html
blob: 454fcc4c89a3cc189d3ba8570134bbb0c501a8c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<%doc>

Example:

  include('/elements/init_overlib.html')

  include( '/elements/popup_link-cust_main.html', { #hashref or a list, either way

    #required
    'action'         => 'content.html', # uri for content of popup which should
                                        #   be suitable for appending keywords
    'label'          => 'click me',     # text of <A> tag
    'cust_main'      => $cust_main      # a FS::cust_main object
   
    #strongly recommended (you want a title, right?)
    'actionlabel     => 'You clicked',  # popup title
   
    #opt
    'width'          => '540',
    'color'          => '#ff0000',
    'closetext'      => 'Go Away',      # the value '' removes the link
  )

</%doc>
% if ( $params->{'cust_main'} ) {
<% include('/elements/popup_link.html', $params ) %>\
% }
<%init>

my $params = { 'closetext' => 'Close' };

if (ref($_[0]) eq 'HASH') {
  $params = { %$params, %{ $_[0] } };
} else {
  $params = { %$params, @_ };
}
 
$params->{'action'} .=
  ( $params->{'action'} =~ /\?/ ? ';' : '?' ).
  'custnum='. $params->{'cust_main'}->custnum;

</%init>