1
0
This repository has been archived on 2021-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
gallery3-contrib/modules/embedlinks/views/embedlinks_album_block.html.php

19 lines
638 B
PHP
Raw Normal View History

2009-06-12 19:58:54 +00:00
<?php defined("SYSPATH") or die("No direct script access.") ?>
<table class="gMetadata">
<tbody>
<tr>
<th colspan="2"><?= t("Link To This Page:") ?></th>
</tr>
<tr>
<th><?= t("Text:") ?></th>
<td><textarea rows="2" cols="6" height="5" readonly><a href="<?= url::abs_site("{$item->type}s/{$item->id}") ?>">Click Here</a></textarea></td>
</tr>
<tr>
<th><?= t("Thumbnail:") ?></th>
<td><textarea rows="2" cols="6" height="5" readonly><a href="<?= url::abs_site("{$item->type}s/{$item->id}") ?>"><img src="<?= $item->thumb_url(true) ?>"></a></textarea></td>
</tr>
</tbody>
</table>