| 12345678910111213141516171819202122232425262728293031323334353637 | 
							- <?php
 
- /**
 
-  * FecShop file.
 
-  *
 
-  * @link http://www.fecshop.com/
 
-  * @copyright Copyright (c) 2016 FecShop Software LLC
 
-  * @license http://www.fecshop.com/license/
 
-  */
 
- use fec\helpers\CRequest;
 
- ?>
 
- <form id="pagerForm" method="post" action="<?= \fec\helpers\CUrl::getCurrentUrl();  ?>">
 
- 	<?=  CRequest::getCsrfInputHtml();  ?>
 
- 	<?=  $pagerForm;  ?>
 
- 	
 
- </form>
 
- <div class="pageHeader">
 
- 	<form rel="pagerForm" onsubmit="return navTabSearch(this);" action="<?= \fec\helpers\CUrl::getCurrentUrl();  ?>" method="post">
 
- 		<?php echo CRequest::getCsrfInputHtml();  ?>
 
- 		<div class="searchBar">
 
- 			<?php  echo $searchBar; ?>
 
- 		</div>
 
- 	</form>
 
- </div>
 
- <div class="pageContent">
 
- 	<div class="panelBar">
 
- 		<?php //echo $editBar;  ?>
 
- 	</div>
 
- 	<div class="panelBar">
 
- 		<?= $toolBar; ?>
 
- 	</div>
 
- 	<table class="table" width="100%" layoutH="138">
 
- 		<?= $thead; ?>
 
- 		<tbody>
 
- 			<?= $tbody; ?>
 
- 		</tbody>
 
- 	</table>
 
- </div>
 
 
  |