10 lines
435 B
PHP
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;?>
|