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

10 lines
435 B
PHP

<?php if(common::hasPriv('report', 'export')):?>
<script>
$(function()
{
$('#mainMenu').append(<?php echo json_encode("<div class='btn-toolbar pull-right'>" . html::a($this->createLink('report', 'export', 'module=' . $this->app->getModuleName()), $lang->export, '', "class='btn btn-primary' data-width='30%' id='exportchart' data-group='product'") . '</div>')?>);
$('#exportchart').modalTrigger();
});
</script>
<?php endif;?>