diff options
author | ivan <ivan> | 2010-03-25 20:21:51 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-03-25 20:21:51 +0000 |
commit | 483a2e4dad0f7ce8dbdc06a825d1aa11bd742f6b (patch) | |
tree | 5b8e7f3fb59090833c5b4e006a9605ff5076e2a4 /httemplate/elements/searchbar-cust_svc.html | |
parent | f6ad19602096411e6248750d840f0a6e2e0ee036 (diff) |
when using a side menubar, put search boxes on the side too
Diffstat (limited to 'httemplate/elements/searchbar-cust_svc.html')
-rw-r--r-- | httemplate/elements/searchbar-cust_svc.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/httemplate/elements/searchbar-cust_svc.html b/httemplate/elements/searchbar-cust_svc.html new file mode 100644 index 000000000..cc0ec97a0 --- /dev/null +++ b/httemplate/elements/searchbar-cust_svc.html @@ -0,0 +1,33 @@ +% if ( $curuser->access_right('View customer services') ) { + + <FORM ACTION="<%$fsurl%>search/cust_svc.html" METHOD="GET" STYLE="margin:0"> + <INPUT NAME="search_svc" TYPE="text" VALUE="<% $svc_label |n %>" STYLE="width:<% $width %>" onFocus="clearhint_search_svc(this);" onClick="clearhint_search_svc(this);" CLASS="fstext"><BR> + <A NOTYET="<%$fsurl%>search/svc_Smarter.html" STYLE="color: #cccccc; font-size:11px">Advanced</A> + <INPUT TYPE="submit" VALUE="Search services" CLASS="fsblackbutton" onMouseOver="this.className='fsblackbuttonselected'; return true;" onMouseOut="this.className='fsblackbutton'; return true;" STYLE="font-size:11px"> + </FORM> + <% $menu_position eq 'left' ? '<BR>' : '' %> + +% } + +<SCRIPT TYPE="text/javascript"> + + function clearhint_search_svc (what) { + if ( what.value == '<% $svc_label |n %>' ) + what.value = ''; + } + +</SCRIPT> +<%once> + +my $svc_label = '(user, email, ip, mac, domain or service phone)'; + +</%once> +<%init> + +my $curuser = $FS::CurrentUser::CurrentUser; + +my $menu_position = $curuser->option('menu_position') || 'top'; + +my $width = $menu_position eq 'left' ? '190px' : '271px'; + +</%init> |