From aaaae7449e7e310e07a88f97f79e40b6e7dab7d1 Mon Sep 17 00:00:00 2001 From: jeff Date: Sun, 16 Mar 2008 22:41:55 +0000 Subject: componentize conflicting %once subroutines (rt#3250) --- httemplate/elements/popup_link.html | 47 +++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 httemplate/elements/popup_link.html (limited to 'httemplate/elements/popup_link.html') diff --git a/httemplate/elements/popup_link.html b/httemplate/elements/popup_link.html new file mode 100644 index 000000000..816856bba --- /dev/null +++ b/httemplate/elements/popup_link.html @@ -0,0 +1,47 @@ +<%doc> + +Example: + + + + + include( '/elements/popup_link.html', { + + #required + 'action' => 'content.html', # uri for content of popup + 'label' => 'click me', # text of tag + + #strongly recommended + 'actionlabel => 'You clicked', # popup title + + #opt + 'width' => '540', + 'color' => '#ff0000', + 'closetext' => 'Go Away', # the value '' removes the link + ) + + +<%init> +my($params, $action, $label, $actionlabel, $width, $color); +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'}; + } +}else{ # deprecated + ($action, $label, $actionlabel, $width) = @_; +} + +$width ||= 540; +$color ||= '#333399'; + + +%if ($action && $label) { +', <% $width %>, 336, 'pkg_or_svc_action_popup' ), CAPTION, '<% $actionlabel %>', STICKY, AUTOSTATUSCAP, MIDX, 0, MIDY, 0, DRAGGABLE, CLOSECLICK, BGCOLOR, '<% $color %>', CGCOLOR, '<% $color %>', CLOSETEXT, '<% $closetext %>' ); return false;"><% $label %> +%} -- cgit v1.2.1