[freeside-commits] freeside/httemplate/elements popup_link-cust_main.html, 1.1, 1.2 popup_link-cust_pkg.html, 1.1, 1.2 popup_link-cust_svc.html, 1.1, 1.2 popup_link.html, 1.1, 1.2

Jeff Finucane,420,, jeff at wavetail.420.am
Sun Mar 16 16:05:29 PDT 2008


Update of /home/cvs/cvsroot/freeside/httemplate/elements
In directory wavetail.420.am:/tmp/cvs-serv7028/httemplate/elements

Added Files:
	popup_link-cust_main.html popup_link-cust_pkg.html 
	popup_link-cust_svc.html popup_link.html 
Log Message:
componentize conflicting %once subroutines (rt#3250)

--- NEW FILE: popup_link.html ---
<%doc>

Example:

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

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

    #required
    'action'         => 'content.html', # uri for content of popup
    'label'          => 'click me',     # text of <A> tag
   
    #strongly recommended
    '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, $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';

</%init>
%if ($action && $label) {
<A HREF="javascript:void(0);" onClick="overlib( OLiframeContent('<% "$action" %>', <% $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 %></A>
%}

--- NEW FILE: popup_link-cust_main.html ---
<%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,
                                          }
            )
   : ''
%>

--- NEW FILE: popup_link-cust_svc.html ---
<%doc>

Example:

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

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

    #required
    'action'         => 'content.html', # uri for content of popup which should
                                        # be suitable for appending '?svcnum='
    'label'          => 'click me',     # text of <A> tag
    'cust_svc'       => $cust_svc       # a FS::cust_svc 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, $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) = @_;
}

$action .= '?svcnum='. $cust_svc->svcnum;
$actionlabel .= ' service '. $cust_svc->svcnum;
$width ||= 392;

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

--- NEW FILE: popup_link-cust_pkg.html ---
<%doc>

Example:

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

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

    #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>
<%init>
my($params, $action, $label, $actionlabel, $color, $cust_pkg, $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_pkg    = $params->{'cust_pkg'}    if exists $params->{'cust_pkg'};
  }
}else{  # deprecated
  ($action, $label, $actionlabel, $color, $cust_pkg) = @_;
}

$action .= '&pkgnum='. $cust_pkg->pkgnum;
$actionlabel .= ' package '. $cust_pkg->pkgnum;
$width ||= 768;

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



More information about the freeside-commits mailing list