Initial commit
This commit is contained in:
25
#pma/templates/server/engines/engines.phtml
Normal file
25
#pma/templates/server/engines/engines.phtml
Normal file
@ -0,0 +1,25 @@
|
||||
<table class="noclick">
|
||||
<thead>
|
||||
<tr>
|
||||
<th><?= __('Storage Engine'); ?></th>
|
||||
<th><?= __('Description'); ?></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php $odd_row = true; ?>
|
||||
<?php foreach ($engines as $engine => $details): ?>
|
||||
<tr class="
|
||||
<?= $odd_row ? 'odd' : 'even'; ?>
|
||||
<?= $details['Support'] == 'NO' || $details['Support'] == 'DISABLED' ? ' disabled' : ''; ?>
|
||||
<?= $details['Support'] == 'DEFAULT' ? ' marked' : ''; ?>">
|
||||
<td>
|
||||
<a rel="newpage" href="server_engines.php<?= PMA_URL_getCommon(array('engine' => $engine)); ?>">
|
||||
<?= htmlspecialchars($details['Engine']); ?>
|
||||
</a>
|
||||
</td>
|
||||
<td><?= htmlspecialchars($details['Comment']); ?></td>
|
||||
</tr>
|
||||
<?php $odd_row = !$odd_row; ?>
|
||||
<?php endforeach; ?>
|
||||
</tbody>
|
||||
</table>
|
Reference in New Issue
Block a user