Initial commit
This commit is contained in:
26
#pma/templates/table/search/fields_table.phtml
Normal file
26
#pma/templates/table/search/fields_table.phtml
Normal file
@ -0,0 +1,26 @@
|
||||
<table class="data" <?php if ($searchType == 'zoom'): ?>
|
||||
id="tableFieldsId"
|
||||
<?php endif; ?>>
|
||||
<?= PMA\libraries\Template::get('table/search/table_header')
|
||||
->render(array(
|
||||
'geomColumnFlag' => $geomColumnFlag
|
||||
)); ?>
|
||||
<tbody>
|
||||
<?php if ($searchType == 'zoom'): ?>
|
||||
<?= PMA\libraries\Template::get('table/search/rows_zoom')
|
||||
->render(array(
|
||||
'self' => $self,
|
||||
'columnNames' => $columnNames
|
||||
)) ?>
|
||||
<?php else: ?>
|
||||
<?= PMA\libraries\Template::get('table/search/rows_normal')
|
||||
->render(array(
|
||||
'self' => $self,
|
||||
'geomColumnFlag' => $geomColumnFlag,
|
||||
'columnNames' => $columnNames,
|
||||
'columnTypes' => $columnTypes,
|
||||
'columnCollations' => $columnCollations
|
||||
)) ?>
|
||||
<?php endif; ?>
|
||||
</tbody>
|
||||
</table>
|
Reference in New Issue
Block a user