summaryrefslogtreecommitdiff
path: root/httemplate/elements/searchbar-address2.html
blob: eb1fd06f07c2b95be9e726bc88d6ed321ca5ba71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
% if ( $conf->exists('address2-search') ) { 

  <FORM ACTION="<%$fsurl%>search/cust_main.cgi" METHOD="GET" STYLE="margin:0;display:inline">
    <INPUT TYPE="hidden" NAME="address2_on" VALUE="1">
    <INPUT NAME="address2_text" TYPE="text" VALUE="<% $address2_label |n %>" STYLE="width:67px" onFocus="clearhint_search_address2(this);" onClick="clearhint_search_address2(this);" CLASS="fstext">
    <BR>
    <INPUT TYPE="submit" VALUE="<% mt("Search units") |h %>" CLASS="fsblackbutton" onMouseOver="this.className='fsblackbuttonselected'; return true;" onMouseOut="this.className='fsblackbutton'; return true;" STYLE="font-size:11px;padding-left:1px;padding-right:1px;margin-top:3px">
  </FORM>
  <% $menu_position eq 'left' ? '<BR>' : '' |n %>

% } 

<SCRIPT TYPE="text/javascript">

  function clearhint_search_address2 (what) {
    if ( what.value == '<% $address2_label |n %>' )
      what.value = '';
  }

</SCRIPT>
<%once>

my $address2_label = mt('(Unit #)');

</%once>
<%init> 

my $conf = new FS::Conf;

my $curuser = $FS::CurrentUser::CurrentUser;

my $menu_position = $curuser->option('menu_position') || 'top';

</%init>