fix broken tooltips, #25994
[freeside.git] / httemplate / search / elements / search-html.html
1 %   if ( exists($opt{'redirect'}) && $opt{'redirect'}
2 %        && scalar(@$rows) == 1 && $total == 1
3 %        && $type ne 'html-print'
4 %      ) {
5 %     my $redirect = $opt{'redirect'};
6 %     $redirect = &{$redirect}($rows->[0], $cgi) if ref($redirect) eq 'CODE';
7 %     my( $url, $method ) = @$redirect;
8 %     redirect( $url. $rows->[0]->$method() );
9 %   } elsif ( exists($opt{'redirect_empty'}) && ! scalar(@$rows) && $total == 0
10 %             && $type ne 'html-print'
11 %             && $opt{'redirect_empty'}
12 %             && ( ref($opt{'redirect_empty'}) ne 'CODE'
13 %                  || &{$opt{'redirect_empty'}}($cgi)    )
14 %      ) {
15 %     my $redirect = $opt{'redirect_empty'};
16 %     $redirect = &{$redirect}($cgi) if ref($redirect) eq 'CODE';
17 %     redirect( $redirect );
18 %   } else {
19 %     if ( $opt{'name_singular'} ) {
20 %       $opt{'name'} = PL($opt{'name_singular'});
21 %     }
22 %     ( my $xlsname = $opt{'name'} ) =~ s/\W//g;
23 %     if ( $total == 1 ) {
24 %       if ( $opt{'name_singular'} ) {
25 %         $opt{'name'} = $opt{'name_singular'}
26 %       } else {
27 %         #$opt{'name'} =~ s/s$// if $total == 1;
28 %         $opt{'name'} =~ s/((s)e)?s$/$2/ if $total == 1;
29 %       }
30 %     }
31 %
32 %     unless ( $opt{nohtmlheader} ) {
33 %
34 %       if ( $type eq 'html-print' ) {
35           <& /elements/header-popup.html, $opt{'title'} &>
36 %       } else {
37 %         if ( $type eq 'select' ) {
38             <&/elements/header-popup.html, $opt{'title'} &>
39 %         } else {
40 %
41 %           my @menubar = ();
42 %           if ( $opt{'menubar'} ) {
43 %             @menubar = @{ $opt{'menubar'} };
44 %           #} else {
45 %           #  @menubar = ( 'Main menu' => $p );
46 %           }
47
48             <& /elements/header.html, $opt{'title'},
49                  include( '/elements/menubar.html', @menubar )
50             &>
51
52 %         }
53 %       }
54 %
55 %     }
56 %
57 %     unless ( $type eq 'html-print' ) {
58
59 %       if ( $opt{'add_link'} ) { #or after html_init?
60           <A HREF="<%$p%>edit/<% $opt{query}->{table} %>.html"><I>Add a <% $opt{'name_singular'} %></I></A><BR><BR>
61 %       }
62
63         <% defined($opt{'html_init'}) 
64               ? ( ref($opt{'html_init'})
65                     ? &{$opt{'html_init'}}()
66                     : $opt{'html_init'}
67                 )
68               : ''
69         %>
70
71 %     }
72
73 %     unless ( $total ) { 
74 %       unless ( $opt{'disable_nonefound'} ) { 
75           <BR><BR>No matching <% $opt{'name'} %> found.<BR>
76 %       } 
77 %     }
78 %
79 %     if ( $total || $opt{'disableable'} ) { #hmm... and there *are* ones to show??
80
81         <TABLE>
82           <TR>
83
84             <TD VALIGN="bottom">
85
86               <FORM>
87
88 %               if (! $opt{'disable_total'}) {
89                   <% $total %> total <% $opt{'name'} %>
90 %               }
91
92 %               if ( $confmax && $total > $confmax
93 %                    && ! $opt{'disable_maxselect'}
94 %                    && $type ne 'html-print' )
95 %               {
96 %                 $cgi->delete('maxrecords');
97 %                 $cgi->param('_dummy', 1);
98
99                   ( show <SELECT NAME="maxrecords" onChange="window.location = '<% "$self_url?". $cgi->query_string %>;maxrecords=' + this.options[this.selectedIndex].value;">
100
101 %                   foreach my $max ( map { $_ * $confmax } qw( 1 5 10 25 ) ) {
102                   <OPTION VALUE="<% $max %>" <% ( $maxrecords == $max ) ? 'SELECTED' : '' %>><% $max %></OPTION>
103 %                   }
104
105                   </SELECT> per page )
106
107 %                 $cgi->param('maxrecords', $maxrecords);
108 %               }
109
110 %               if ( defined($opt{'html_posttotal'}) && $type ne 'html-print' ) {
111                     <% ref($opt{'html_posttotal'})
112                          ? &{$opt{'html_posttotal'}}()
113                          : $opt{'html_posttotal'}
114                     %>
115 %               }
116                 <BR>
117
118 %               if ( $opt{'count_addl'} ) { 
119 %                 my $n=0;
120 %                 foreach my $count ( @{$opt{'count_addl'}} ) { 
121 %                   my $data = $count_arrayref->[++$n];
122 %                   if ( ref($count) ) {
123                       <% &{ $count }( $data ) %>
124 %                   } else {
125                       <% sprintf( $count, $data ) %><BR>
126 %                   }
127 %                 } 
128 %               } 
129               </FORM>
130
131             </TD>
132
133 %           if ( $curuser->access_right('Download report data')
134 %                 and !$opt{'disable_download'}
135 %                 and $type ne 'html-print' ) { 
136
137               <TD ALIGN="right" CLASS="noprint">
138
139                 <% $opt{'download_label'} || 'Download full results' %><BR>
140
141 %               $cgi->param('_type', "$xlsname.xls" ); 
142                 as <A HREF="<% "$self_url?". $cgi->query_string %>">Excel spreadsheet</A><BR>
143
144 %               $cgi->param('_type', 'csv'); 
145                 as <A HREF="<% "$self_url?". $cgi->query_string %>">CSV file</A><BR>
146
147 %             if ( defined($opt{xml_elements}) ) {
148 %               $cgi->param('_type', 'xml'); 
149                 as <A HREF="<% "$self_url?". $cgi->query_string %>">XML file</A><BR>
150 %             }
151
152 %               $cgi->param('_type', 'html-print'); 
153                 as <A HREF="<% "$self_url?". $cgi->query_string %>">printable copy</A>
154
155               </TD>
156 %             $cgi->param('_type', "html" ); 
157 %           } 
158
159           </TR>
160           <TR>
161             <TD COLSPAN=2>
162
163 %             my $pager = '';
164 %             unless ( $type eq 'html_print' ) {
165
166                 <% $pager = include( '/elements/pager.html',
167                                        'offset'     => $offset,
168                                        'num_rows'   => scalar(@$rows),
169                                        'total'      => $total,
170                                        'maxrecords' => $maxrecords,
171                                    )
172                 %>
173
174                 <% defined($opt{'html_form'}) 
175                      ? ( ref($opt{'html_form'})
176                            ? &{$opt{'html_form'}}()
177                            : $opt{'html_form'}
178                        )
179                      : ''
180                 %>
181
182 %             }
183
184               <& SELF:data_table,
185                   rows            => $rows,
186                   null_link       => $null_link,
187                   link_agentnums  => \@link_agentnums,
188                   self_url        => $self_url,
189                   %opt
190               &>
191
192               <% $pager %>
193   
194             </TD>
195           </TR>
196         </TABLE>
197 %     }
198
199 %     if ( $type eq 'html-print' ) {
200 %       unless ( $opt{nohtmlheader} ) {
201
202         </BODY></HTML>
203       
204 %       }
205 %     } else {
206
207         <% defined($opt{'html_foot'}) 
208               ? ( ref($opt{'html_foot'})
209                     ? &{$opt{'html_foot'}}()
210                     : $opt{'html_foot'}
211                 )
212               : ''
213         %>
214
215         <% $opt{nohtmlheader}
216              ? ''
217              : include( '/elements/footer.html' )
218         %>
219
220 %     }
221
222 %   } 
223 <%init>
224
225 my $curuser = $FS::CurrentUser::CurrentUser;
226
227 my %args = @_;
228 my $type           = $args{'type'};
229 my $header         = $args{'header'};
230 my $rows           = $args{'rows'};
231 my @link_agentnums = @{ $args{'link_agentnums'} };
232 my $null_link      = $args{'null_link'};
233 my $confmax        = $args{'confmax'};
234 my $maxrecords     = $args{'maxrecords'};
235 my $offset         = $args{'offset'};
236 my %opt            = %{ $args{'opt'} };
237
238 # must be an arrayref of the row count, followed by any other totals
239 my $count_arrayref = $args{'totals'};
240 my $total = $count_arrayref->[0];
241
242 # there used to be an option to override this, for highly dubious reasons
243 my $self_url = $cgi->url('-path_info' => 1, '-full' =>1);
244
245 </%init>
246 <%method data_table>
247 % my %opt = @_;
248 % my $rows = delete $opt{rows};
249 % my $self_url = delete $opt{self_url};
250 <& /elements/table-grid.html &>
251
252 <THEAD>
253 <& SELF:header_row,
254   'header'      => $opt{'header'},
255   'header2'     => $opt{'header2'},
256   'sort_fields' => ($opt{'sort_fields'} || $opt{'fields'}),
257 &>
258 </THEAD>
259
260 <TBODY>
261 <& SELF:data_rows, rows => $rows, opt => \%opt &>
262 </TBODY>
263
264 % if ( $opt{'footer'} ) {
265 <TFOOT>
266 <& SELF:footer_row, row => $opt{'footer'}, opt => \%opt &>
267 </TFOOT> 
268 % } 
269 </TABLE>
270 </%method>
271 <%method header_row>
272 <%args>
273 @sort_fields
274 @header
275 @header2 => ()
276 </%args>
277   <TR>
278 % my $h2 = 0;
279 % my $colspan = 0;
280 % my $order_by = $cgi->param('order_by');
281 % my $self_url = $cgi->url('-path_info' => 1, '-full' =>1);
282 % foreach my $header ( @header ) { 
283 %
284 %   my $field = shift @sort_fields;
285 %
286 %   $colspan-- if $colspan > 0;
287 %   next if $colspan;
288 %
289 %   my $label = ref($header) ? $header->{label} : $header;
290 %   unless ( ref($field) || !$field ) {
291 %     if ( $order_by eq $field ) {
292 %       $cgi->param('order_by', "$field DESC");
293 %     } else {
294 %       $cgi->param('order_by', $field);
295 %     }
296 %     $label = qq(<A HREF="$self_url?). $cgi->query_string.
297 %              qq(">$label</A>);
298 %   }
299 %
300 %   $colspan = ref($header) ? $header->{colspan} : 0;
301 %   my $rowspan = 1;
302 %   my $style = '';
303 %   if ( @header2 ) {
304 %     if ( !length($header2[$h2]) ) {
305 %       $rowspan = 2;
306 %       splice @header2, $h2, 1;
307 %     } else {
308 %       $h2++;
309 %       $style = 'STYLE="border-bottom: none"'
310 %     }
311 %   }
312     <TH CLASS   = "grid"
313         BGCOLOR = "#cccccc"
314         ROWSPAN = "<% $rowspan %>"
315         <% $colspan ? 'COLSPAN = "'.$colspan.'"' : '' %>
316         <% $style %>
317
318     >
319       <% $label %>
320     </TH>
321 % } 
322   </TR>
323
324 % if ( @header2 ) {
325   <TR>
326 %   foreach my $header ( @header2 ) { 
327 %     my $label = ref($header) ? $header->{label} : $header;
328       <TH CLASS="grid" BGCOLOR="#cccccc">
329         <FONT SIZE="-1"><% $label %></FONT>
330       </TH>
331 %   } 
332   </TR>
333 % }
334 </%method>
335 <%method data_rows>
336 <%args>
337 $rows => []
338 %opt
339 </%args>
340 % my %align = (
341 %   'l' => 'left',
342 %   'r' => 'right',
343 %   'c' => 'center',
344 %   ' ' => '',
345 %   '.' => '',
346 % );
347 % if ( $opt{align} and !ref($opt{align}) ) {
348 %   $opt{align} = [ map $align{$_}, split(//, $opt{align}) ];
349 % }
350
351 % my $i = 0; # for row striping # XXX CSS - nth-child
352 % my $id = 0;
353 % foreach my $row ( @$rows ) {
354 %
355 %   my $rowstyle = '';
356 %   if ( $row eq $opt{'footer_data'} ) { # XXX CSS - tfoot
357 %     $rowstyle = ' STYLE="border-top: dashed 1px black; font-style: italic background-color=#dddddd"';
358 %   }
359 %
360 %   my $trid = '';
361 %   if ( $opt{'link_field' } ) {
362 %     my $link_field = $opt{'link_field'};
363 %     if ( ref($link_field) eq 'CODE' ) {
364 %       $trid = &{$link_field}($row);
365 %     } else {
366 %       $trid = $row->$link_field();
367 %     }
368 %   }
369     <TR ID="<%$trid |h%>" CLASS="row<% $i % 2 %>"<%$rowstyle%>>
370
371 %   if ( $opt{'fields'} ) {
372 %
373 %     my $links    = $opt{'links'} ? [ @{$opt{'links'}} ] : '';
374 %     my $onclicks = $opt{'link_onclicks'} ? [ @{$opt{'link_onclicks'}} ] : [];
375 %     my $tooltips = $opt{'tooltips'} ? [ @{$opt{'tooltips'}} ] : [];
376 %     my $aligns   = $opt{'align'} ? [ @{$opt{'align'}} ] : '';
377 %     my $colors   = $opt{'color'} ? [ @{$opt{'color'}} ] : [];
378 %     my $sizes    = $opt{'size'}  ? [ @{$opt{'size'}}  ] : [];
379 %     my $styles   = $opt{'style'} ? [ @{$opt{'style'}} ] : [];
380 %     my $cstyles  = $opt{'cell_style'} ? [ @{$opt{'cell_style'}} ] : [];
381 %
382 %     foreach my $field (
383 %
384 %       map {
385 %             if ( ref($_) eq 'ARRAY' ) {
386 %
387 %               my $tableref = $_;
388 %
389 %               '<TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%">'.
390 %
391 %               join('', map {
392 %
393 %                 my $rowref = $_;
394 %
395 %                 '<tr>'.
396 %
397 %                 join('', map {
398 %
399 %                   my $e = $_;
400 %
401 %                   '<TD '.
402 %                     join(' ', map {
403 %                       uc($_).'="'. $e->{$_}. '"';
404 %                     }
405 %                     grep exists($e->{$_}),
406 %                          qw( align bgcolor colspan rowspan
407 %                              style valign width )
408 %                     ).
409 %                   '>'.
410 %
411 %                   ( $e->{'link'}
412 %                       ? '<A HREF="'. $e->{'link'}. '">'
413 %                       : ''
414 %                   ).
415 %                   ( $e->{'onclick'} # don't use with 'link'
416 %                       ? '<A HREF="#" onclick="' .
417 %                         $e->{'onclick'}.'">'
418 %                       : ''
419 %                   ).
420 %                   ( $e->{'size'}
421 %                      ? '<FONT SIZE="'.uc($e->{'size'}).'">'
422 %                      : ''
423 %                   ).
424 %                   ( $e->{'data_style'}
425 %                       ? '<'. uc($e->{'data_style'}). '>'
426 %                       : ''
427 %                   ).
428 %                   $e->{'data'}.
429 %                   ( $e->{'data_style'}
430 %                       ? '</'. uc($e->{'data_style'}). '>'
431 %                       : ''
432 %                   ).
433 %                   ( $e->{'size'} ? '</FONT>' : '' ).
434 %                   ( $e->{'link'} || $e->{'onclick'} 
435 %                       ? '</A>'
436 %                       : '' ).
437 %                   '</td>';
438 %
439 %                 } @$rowref ).
440 %
441 %                 '</tr>';
442 %               } @$tableref ).
443 %
444 %               '</table>';
445 %
446 %             } else {
447 %               $_;
448 %             }
449 %           }
450 %
451 %       map {
452 %             if ( ref($_) eq 'CODE' ) {
453 %               &{$_}($row);
454 %             } elsif ( ref($row) eq 'ARRAY' and 
455 %                       $_ =~ /^\d+$/ ) {
456 %             # for the 'straight SQL' case: specify fields
457 %             # by position
458 %               encode_entities($row->[$_]);
459 %             } else {
460 %               encode_entities($row->$_());
461 %             }
462 %           }
463 %       @{$opt{'fields'}}
464 %
465 %     ) {
466 %
467 %       my $class = ( $field =~ /^<TABLE/i ) ? 'inv' : 'grid';
468 %       my $class = 'grid';
469 %
470 %       my $align = $aligns ? shift @$aligns : '';
471 %       $align = " ALIGN=$align" if $align;
472 %
473 %       my $a = '';
474 %       if ( $links ) {
475 %         my $link = shift @$links;
476 %         my $onclick = shift @$onclicks;
477 %         my $tooltip = shift @$tooltips;
478 %
479 %         if (    ! $opt{'agent_virt'}
480 %              || ( $opt{'null_link'} && ! $row->agentnum )
481 %              || grep { $row->agentnum == $_ }
482 %                      @{ $opt{link_agentnums} }
483 %            ) {
484 %
485 %           $link = &{$link}($row)
486 %             if ref($link) eq 'CODE';
487 %
488 %           $onclick = &{$onclick}($row)
489 %             if ref($onclick) eq 'CODE';
490 %           $onclick = qq( onClick="$onclick") if $onclick;
491 %
492 %           $tooltip = &{$tooltip}($row)
493 %             if ref($tooltip) eq 'CODE';
494 %           $tooltip = qq! id="a$id" !.
495 %             qq! onmouseover="return overlib(!.
496 %             $m->interp->apply_escapes($tooltip, 'h', 'js_string').
497 %             qq!, FGCLASS, 'tooltip', REF, 'a$id', !.
498 %             qq!REFC, 'LL', REFP, 'UL')"! if $tooltip;
499 %
500 %           if ( $link ) {
501 %             my( $url, $method ) = @{$link};
502 %             if ( ref($method) eq 'CODE' ) {
503 %               $a = $url. &{$method}($row);
504 %             } else {
505 %               $a = $url. $row->$method();
506 %             }
507 %             $a = qq(<A HREF="$a"$onclick$tooltip>);
508 %           }
509 %           elsif ( $onclick ) {
510 %             $a = qq(<A HREF="javascript:void(0);"$onclick>);
511 %           }
512 %           elsif ( $tooltip ) {
513 %             $a = qq(<A $tooltip>);
514 %           }
515 %           $id++;
516
517 %         }
518 %
519 %       }
520 %
521 %       my $font = '';
522 %       my $color = shift @$colors;
523 %       $color = &{$color}($row) if ref($color) eq 'CODE';
524 %       my $size = shift @$sizes;
525 %       $size = &{$size}($row) if ref($size) eq 'CODE';
526 %       if ( $color || $size ) {
527 %         $font = '<FONT '.
528 %                 ( $color ? "COLOR=#$color "   : '' ).
529 %                 ( $size  ? qq(SIZE="$size" )  : '' ).
530 %                 '>';
531 %       }
532 %
533 %       my($s, $es) = ( '', '' );
534 %       my $style = shift @$styles;
535 %       $style = &{$style}($row) if ref($style) eq 'CODE';
536 %       if ( $style ) {
537 %         $s = join( '', map "<$_>", split('', $style) );
538 %         $es = join( '', map "</$_>", split('', $style) );
539 %       }
540 %
541 %       my $cstyle = shift @$cstyles;
542 %       $cstyle = &{$cstyle}($row) if ref($cstyle) eq 'CODE';
543 %       $cstyle = qq(STYLE="$cstyle")
544 %         if $cstyle;
545
546         <TD CLASS="<% $class %>" <% $align %> <% $cstyle %>><% $a %><% $font %><% $s %><% $field %><% $es %><% $font ? '</FONT>' : '' %><% $a ? '</A>' : '' %></TD>
547
548 %     } 
549 %
550 %   } else { # not $opt{'fields'}
551 %
552 %     foreach ( @$row ) { 
553         <TD CLASS="grid"><% $_ %></TD>
554 %     }
555 %
556 %   }
557
558     </TR>
559
560 %   $i++;
561 %
562 % } # foreach $row
563 </%method>
564 <%method footer_row>
565 <%args>
566 $row
567 %opt
568 </%args>
569 %# don't try to respect all the styling options, just the ones that are
570 %# hard to replicate with CSS
571 % my %align = (
572 %   'l' => 'left',
573 %   'r' => 'right',
574 %   'c' => 'center',
575 %   ' ' => '',
576 %   '.' => '',
577 % );
578 % if ( $opt{align} and !ref($opt{align}) ) {
579 %   $opt{align} = [ map $align{$_}, split(//, $opt{align}) ];
580 % }
581 % my @aligns = @{ $opt{align} };
582
583 <TR>
584 % foreach my $footer ( @$row ) {
585 %   $footer = &{$footer}() if ref($footer) eq 'CODE';
586 %   my $align = shift @aligns;
587 %   my $style = '';
588 %   $style .= "text-align: $align;" if $align;
589     <TD CLASS="grid" STYLE="<% $style %>"><% $footer %></TD>
590 % } 
591 </TR>
592 </%method>
593