X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Felements%2Fpopup_link-cust_svc.html;fp=httemplate%2Felements%2Fpopup_link-cust_svc.html;h=8a11fd780871493bf374c677e55967f0b773be96;hp=decb82d97e4ffd806ead067f227f672117b6088c;hb=a2649b652a3db877b105b4bea5b34727dbcb914f;hpb=f9b6a37aaee52d875ea9393cda79d46f8916e593 diff --git a/httemplate/elements/popup_link-cust_svc.html b/httemplate/elements/popup_link-cust_svc.html index decb82d97..8a11fd780 100644 --- a/httemplate/elements/popup_link-cust_svc.html +++ b/httemplate/elements/popup_link-cust_svc.html @@ -5,7 +5,7 @@ Example: - include( '/elements/svc_popup_link.html', { + include( '/elements/svc_popup_link.html', { #hashref or a list, either way #required 'action' => 'content.html', # uri for content of popup which should @@ -23,37 +23,26 @@ Example: ) +% if ( $params->{'cust_svc'} ) { +<% include( '/elements/popup_link.html', $params ) %>\ +% } <%init> -my($params, $action, $label, $actionlabel, $cust_svc, $color, $width); -my $closetext = 'Close'; -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_svc = $params->{'cust_svc'} if exists $params->{'cust_svc'}; - } -}else{ # deprecated - ($action, $label, $actionlabel, $cust_svc) = @_; + +my $params = { 'closetext' => 'Close', + 'width' => 392, + }; + +if (ref($_[0]) eq 'HASH') { + $params = { %$params, %{ $_[0] } }; +} else { + $params = { %$params, @_ }; } -$action .= '?svcnum='. $cust_svc->svcnum; -$actionlabel .= ' service '. $cust_svc->svcnum; -$width ||= 392; +$params->{'action'} .= + ( $params->{'action'} =~ /\?/ ? ';' : '?' ). + 'svcnum='. $params->{'cust_svc'}->svcnum; + +$params->{'actionlabel'} .= + ' service '. $params->{'cust_svc'}->svcnum; #XXX svcnum? really? -<% $cust_svc - ? include('/elements/popup_link.html', { 'action' => $action, - 'label' => $label, - 'actionlabel' => $actionlabel, - 'color' => $color, - 'width' => $width, - 'closetext' => $closetext, - } - ) - : '' -%>