11 lines
367 B
PHTML
11 lines
367 B
PHTML
<a href="tbl_tracking.php<?= $url_query; ?>&table=<?= $truename; ?>">
|
|
<?php if ($is_tracked): ?>
|
|
<?= PMA\libraries\Util::getImage(
|
|
'eye.png', __('Tracking is active.')
|
|
); ?>
|
|
<?php else: ?>
|
|
<?= PMA\libraries\Util::getImage(
|
|
'eye_grey.png', __('Tracking is not active.')
|
|
); ?>
|
|
<?php endif; ?>
|
|
</a>
|