zentaopms/extension/max/testreport/ext/view/view.testreportexport.html.hook.php
2023-05-16 10:50:42 +08:00

15 lines
541 B
PHP

<?php if(common::hasPriv('testreport', 'export') and !isonlybody()):?>
<?php
$exportHtml = "<div class='btn-toolbar pull-right'>";
$exportHtml .= html::a($this->createLink('testreport', 'export', "reportID={$report->id}"), "<i class='icon-export'></i> {$lang->testreport->export}", '', "class='btn btn-link export'");
$exportHtml .= "</div>";
?>
<script>
$(function()
{
$('#mainMenu').append(<?php echo json_encode($exportHtml)?>);
$(".export").modalTrigger({width:800, iframe:true, transition:'none'});
})
</script>
<?php endif;?>