testcase.report.html.hook.php 404 B

123456789101112131415
  1. <?php
  2. namespace zin;
  3. global $app;
  4. $lang = data('lang');
  5. $execution = data('execution');
  6. $reportBtn = btn
  7. (
  8. setClass('ghost'),
  9. set::icon('bar-chart'),
  10. set::hint($lang->execution->report->common),
  11. set::url(createLink('testcase', 'report', "executionID={$execution->id}")),
  12. setData('app', 'execution')
  13. );
  14. if(hasPriv('testcase', 'report')) query('#actionBar')->prepend($reportBtn);