mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-06-06 11:39:12 -04:00
15 lines
418 B
PHP
15 lines
418 B
PHP
<? if ($item->type == "photo"): ?>
|
|
<div class="rotate-counter-clockwise"
|
|
quickedit_link="<?= url::site("quick/rotate/$item->id/ccw?csrf=" . access::csrf_token()) ?>">
|
|
<span>
|
|
<?= _("Rotate CCW") ?>
|
|
</span>
|
|
</div>
|
|
<div class="rotate-clockwise"
|
|
quickedit_link="<?= url::site("quick/rotate/$item->id/cw?csrf=" . access::csrf_token()) ?>">
|
|
<span>
|
|
<?= _("Rotate CCW") ?>
|
|
</span>
|
|
</div>
|
|
<? endif ?>
|