componentize conflicting %once subroutines (rt#3250)
[freeside.git] / httemplate / elements / popup_link-cust_main.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/cust_popup_link.html', {
9
10     #required
11     'action'         => 'content.html', # uri for content of popup which should
12                                         #   be suitable for appending keywords
13     'label'          => 'click me',     # text of <A> tag
14     'cust_main'      => $cust_main      # a FS::cust_main 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 <%init>
27 my($params, $action, $label, $actionlabel, $color, $cust_main, $width);
28 my $closetext = '';
29 if (ref(@_[0]) eq 'HASH') {
30   $params = shift;
31   foreach (qw(action label actionlabel width color)) {
32     $action      = $params->{'action'}      if exists $params->{'action'};
33     $label       = $params->{'label'}       if exists $params->{'label'};
34     $actionlabel = $params->{'actionlabel'} if exists $params->{'actionlabel'};
35     $width       = $params->{'width'}       if exists $params->{'width'};
36     $color       = $params->{'color'}       if exists $params->{'color'};
37     $closetext   = $params->{'closetext'}   if exists $params->{'closetext'};
38     $cust_main   = $params->{'cust_main'}   if exists $params->{'cust_main'};
39   }
40 }else{  # deprecated
41   ($action, $label, $actionlabel, $color, $cust_main) = @_;
42 }
43
44 $action .= '?'. $cust_main->custnum;
45
46 </%init>
47 <% $cust_main 
48    ? include('/elements/popup_link.html', { 'action'       => $action,
49                                             'label'        => $label,
50                                             'actionlabel'  => $actionlabel,
51                                             'color'        => $color,
52                                             'closetext'    => $closetext,
53                                           }
54             )
55    : ''
56 %>