index.zentaobiz.html.hook.php 500 B

12345678910
  1. <?php if(!empty($apiID) and common::hasPriv('api', 'export')):?>
  2. <?php $html = html::a($this->createLink('api', 'export', "api=$apiID&version=$version&release=$release", 'html', true), '<i class="icon-export muted"> </i>' . $lang->export, '', "class='btn btn-link export' id='apiExport'");?>
  3. <script>
  4. $(function()
  5. {
  6. $('#subHeader #pageActions .btn-toolbar').prepend(<?php echo json_encode($html);?>);
  7. $('#apiExport').modalTrigger({type:'ajax', showHeader:false});
  8. })
  9. </script>
  10. <?php endif;?>