Skip to content

Commit

Permalink
Track temporary filters through button links
Browse files Browse the repository at this point in the history
Include button links for: print, csv, excel
  • Loading branch information
cproensa authored and atrol committed Mar 4, 2018
1 parent 79be653 commit c9e2222
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions view_all_inc.php
Expand Up @@ -111,10 +111,12 @@
<div class="btn-toolbar">
<div class="btn-group pull-left">
<?php
$t_filter_param = filter_get_temporary_key_param( $t_filter );
$t_filter_param = ( empty( $t_filter_param ) ? '' : '?' ) . $t_filter_param;
# -- Print and Export links --
print_small_button( 'print_all_bug_page.php', lang_get( 'print_all_bug_page_link' ) );
print_small_button( 'csv_export.php', lang_get( 'csv_export' ) );
print_small_button( 'excel_xml_export.php', lang_get( 'excel_export' ) );
print_small_button( 'print_all_bug_page.php' . $t_filter_param, lang_get( 'print_all_bug_page_link' ) );
print_small_button( 'csv_export.php' . $t_filter_param, lang_get( 'csv_export' ) );
print_small_button( 'excel_xml_export.php' . $t_filter_param, lang_get( 'excel_export' ) );

$t_event_menu_options = $t_links = event_signal('EVENT_MENU_FILTER');

Expand Down

0 comments on commit c9e2222

Please sign in to comment.