diff options
Diffstat (limited to 'httemplate/elements/popup_link-cust_pkg.html')
-rw-r--r-- | httemplate/elements/popup_link-cust_pkg.html | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/httemplate/elements/popup_link-cust_pkg.html b/httemplate/elements/popup_link-cust_pkg.html deleted file mode 100644 index cd8d5c069..000000000 --- a/httemplate/elements/popup_link-cust_pkg.html +++ /dev/null @@ -1,47 +0,0 @@ -<%doc> - -Example: - - include('/elements/init_overlib.html') - - include( '/elements/pkg_popup_link.html', { #hashref or a list, either way - - #required - 'action' => 'content.html', # uri for content of popup which should - # be suitable for appending '&stuff...' - 'label' => 'click me', # text of <A> tag - 'cust_pkg' => $cust_pkg # a FS::cust_pkg 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_pkg'} ) { -<% include('/elements/popup_link.html', $params ) %>\ -% } -<%init> - -my $params = { 'closetext' => 'Close', - 'width' => 768, - }; - -if (ref($_[0]) eq 'HASH') { - $params = { %$params, %{ $_[0] } }; -} else { - $params = { %$params, @_ }; -} - -$params->{'action'} .= - ( $params->{'action'} =~ /\?/ ? ';' : '?' ). - 'pkgnum='. $params->{'cust_pkg'}->pkgnum; - -$params->{'actionlabel'} .= - ' package '. $params->{'cust_pkg'}->pkgnum; #XXX pkgnum? really? - -</%init> |