report.export.html.hook.php 405 B

123456789101112
  1. <?php
  2. namespace zin;
  3. $productID = data('productID');
  4. $storyType = data('storyType');
  5. if(hasPriv('report', 'export'))
  6. {
  7. global $lang;
  8. $exportBtn = btn(set(array('type' => 'primary', 'text' => $lang->export, 'url' => createLink('report', 'export', "module=story&productID=$productID&taskID=&storyType={$storyType}"), 'data-toggle' => 'modal')));
  9. query('.detail-header')->append($exportBtn);
  10. }