Translated using Weblate (Tamil)
[phpmyadmin.git] / templates / privileges / privileges_summary_row.phtml
blob0a81d4c3d3df4b3e08be427f68500f222585db54
1 <tr>
2     <td><?= htmlspecialchars($name); ?></td>
3     <td><code><?= $privileges; ?></code></td>
4     <td><?= ($grant ? __('Yes') : __('No')); ?></td>
6     <?php if ($type == 'database') : ?>
7         <td><?= ($tablePrivs ? __('Yes') : __('No')); ?></td>
8     <?php elseif ($type == 'table') : ?>
9         <td><?= ($columnPrivs ? __('Yes') : __('No')); ?></td>
10     <?php endif; ?>
12     <td><?= $editLink; ?></td>
13     <td><?= $revokeLink; ?></td>
14 </tr>