index.php 935 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /**
  3. * FecShop file.
  4. *
  5. * @link http://www.fecshop.com/
  6. * @copyright Copyright (c) 2016 FecShop Software LLC
  7. * @license http://www.fecshop.com/license/
  8. */
  9. use fec\helpers\CRequest;
  10. ?>
  11. <form id="pagerForm" method="post" action="<?= \fec\helpers\CUrl::getCurrentUrl(); ?>">
  12. <?= CRequest::getCsrfInputHtml(); ?>
  13. <?= $pagerForm; ?>
  14. </form>
  15. <div class="pageHeader">
  16. <form rel="pagerForm" onsubmit="return navTabSearch(this);" action="<?= \fec\helpers\CUrl::getCurrentUrl(); ?>" method="post">
  17. <?php echo CRequest::getCsrfInputHtml(); ?>
  18. <div class="searchBar">
  19. <?php echo $searchBar; ?>
  20. </div>
  21. </form>
  22. </div>
  23. <div class="pageContent">
  24. <div class="panelBar">
  25. <?php //echo $editBar; ?>
  26. </div>
  27. <div class="panelBar">
  28. <?= $toolBar; ?>
  29. </div>
  30. <table class="table" width="100%" layoutH="138">
  31. <?= $thead; ?>
  32. <tbody>
  33. <?= $tbody; ?>
  34. </tbody>
  35. </table>
  36. </div>