report.export.html.hook.php 435 B

123456789
  1. <?php if(common::hasPriv('report', 'export')):?>
  2. <script>
  3. $(function()
  4. {
  5. $('#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='project'") . '</div>')?>);
  6. $('#exportchart').modalTrigger();
  7. });
  8. </script>
  9. <?php endif;?>