phpmyadmin/templates/server/databases/table_header.phtml
Madhura Jayaratne 0b7c471c33 Show action column heading anyway
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
2015-11-20 12:15:01 +11:00

40 lines
1.6 KiB
PHTML

<thead>
<tr>
<?php if ($GLOBALS['is_superuser'] || $GLOBALS['cfg']['AllowUserDropDatabase']): ?>
<th></th>
<?php endif; ?>
<th>
<a href="server_databases.php<?php echo PMA_URL_getCommon($_url_params); ?>">
<?php echo __('Database'); ?>
<?php echo ($sort_by == 'SCHEMA_NAME' ? \PMA\libraries\Util::getImage('s_' . $sort_order . '.png', $sort_order_text) : ''); ?>
</a>
</th>
<?php foreach ($column_order as $stat_name => $stat):
if (! array_key_exists($stat_name, $first_database)) {
continue;
}
$_url_params['sort_by'] = $stat_name;
$_url_params['sort_order'] = ($sort_by == $stat_name && $sort_order == 'desc') ? 'asc' : 'desc'; ?>
<th <?php if ($stat['format'] === 'byte'): ?>colspan="2"<?php endif; ?>>
<a href="server_databases.php<?php echo PMA_URL_getCommon($_url_params); ?>">
<?php echo $stat['disp_name']; ?>
<?php echo ($sort_by == $stat_name ? \PMA\libraries\Util::getImage('s_' . $sort_order . '.png', $sort_order_text) : ''); ?>
</a>
</th>
<?php endforeach; ?>
<?php if ($master_replication): ?>
<th>
<?php echo __('Master replication'); ?>
</th>
<?php endif; ?>
<?php if ($slave_replication): ?>
<th>
<?php echo __('Slave replication'); ?>
</th>
<?php endif; ?>
<th>
<?php echo __('Action'); ?>
</th>
</tr>
</thead>