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/3.0/modules/downloadfullsize/views/downloadfullsize_block.html.php

19 lines
667 B
PHP
Raw Normal View History

2009-06-20 20:52:47 +00:00
<?php defined("SYSPATH") or die("No direct script access.") ?>
2009-09-16 23:08:16 +00:00
<? if ($theme->item->is_photo()) { ?>
<div class="g-download-fullsize-block">
<a href="<?= url::site("downloadfullsize/send/{$theme->item->id}") ?>"
title="<?= t("Download Photo") ?>"
class="g-button ui-icon-left ui-state-default ui-corner-all"><?= t("Download Fullsize Image") ?></a>
2009-06-20 20:52:47 +00:00
</div>
2009-09-16 23:08:16 +00:00
<? } ?>
<? if ($theme->item->is_movie()) { ?>
<div class="g-download-fullsize-block">
<a href="<?= url::site("downloadfullsize/send/{$theme->item->id}") ?>"
2009-09-16 23:08:16 +00:00
title="<?= t("Download Video") ?>"
class="g-button ui-icon-left ui-state-default ui-corner-all"><?= t("Download Movie") ?></a>
2009-09-16 23:08:16 +00:00
</div>
<? } ?>