summaryrefslogtreecommitdiff
path: root/httemplate/elements/popup_link-cust_main.html
blob: 3b1363f49d93acc406c01127308e687036700eef (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<%doc>

Example:

  <SCRIPT TYPE="text/javascript" SRC="overlibmws.js"></SCRIPT>
  <SCRIPT TYPE="text/javascript" SRC="iframecontentmws.js"></SCRIPT>

  include( '/elements/cust_popup_link.html', {

    #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>
<%init>
my($params, $action, $label, $actionlabel, $color, $cust_main, $width);
my $closetext = '';
if (ref(@_[0]) eq 'HASH') {
  $params = shift;
  foreach (qw(action label actionlabel width color)) {
    $action      = $params->{'action'}      if exists $params->{'action'};
    $label       = $params->{'label'}       if exists $params->{'label'};
    $actionlabel = $params->{'actionlabel'} if exists $params->{'actionlabel'};
    $width       = $params->{'width'}       if exists $params->{'width'};
    $color       = $params->{'color'}       if exists $params->{'color'};
    $closetext   = $params->{'closetext'}   if exists $params->{'closetext'};
    $cust_main   = $params->{'cust_main'}   if exists $params->{'cust_main'};
  }
}else{  # deprecated
  ($action, $label, $actionlabel, $color, $cust_main) = @_;
}

$action .= '?'. $cust_main->custnum;

</%init>
<% $cust_main 
   ? include('/elements/popup_link.html', { 'action'       => $action,
                                            'label'        => $label,
                                            'actionlabel'  => $actionlabel,
                                            'color'        => $color,
                                            'closetext'    => $closetext,
                                          }
            )
   : ''
%>