view.testreportexport.html.hook.php 541 B

1234567891011121314
  1. <?php if(common::hasPriv('testreport', 'export') and !isonlybody()):?>
  2. <?php
  3. $exportHtml = "<div class='btn-toolbar pull-right'>";
  4. $exportHtml .= html::a($this->createLink('testreport', 'export', "reportID={$report->id}"), "<i class='icon-export'></i> {$lang->testreport->export}", '', "class='btn btn-link export'");
  5. $exportHtml .= "</div>";
  6. ?>
  7. <script>
  8. $(function()
  9. {
  10. $('#mainMenu').append(<?php echo json_encode($exportHtml)?>);
  11. $(".export").modalTrigger({width:800, iframe:true, transition:'none'});
  12. })
  13. </script>
  14. <?php endif;?>