[freeside-commits] freeside/httemplate/elements popup_link-prospect_main.html, NONE, 1.1

Erik Levinson levinse at wavetail.420.am
Tue Dec 7 12:38:54 PST 2010


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

Added Files:
	popup_link-prospect_main.html 
Log Message:
added prospect support to qualifications, RT7111


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

Example:

  include('/elements/init_overlib.html')

  include( '/elements/popup_link-cust_main.html', { #hashref or a list, either way

    #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>
% if ( $params->{'prospect_main'} ) {
<% include('/elements/popup_link.html', $params ) %>\
% }
<%init>

my $params = { 'closetext' => 'Close' };

if (ref($_[0]) eq 'HASH') {
  $params = { %$params, %{ $_[0] } };
} else {
  $params = { %$params, @_ };
}
 
$params->{'action'} .=
  ( $params->{'action'} =~ /\?/ ? ';' : '?' ).
  'prospectnum='. $params->{'prospect_main'}->prospectnum;

</%init>



More information about the freeside-commits mailing list