mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 11:29:24 -04:00
28 lines
695 B
PHP
28 lines
695 B
PHP
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
<? if ($item->type == "photo"): ?>
|
|
<? if (graphics::can("rotate")): ?>
|
|
<div class="rotate-counter-clockwise"
|
|
href="<?= url::site("quick/rotate/$item->id/ccw?csrf=" . access::csrf_token()) ?>">
|
|
<span>
|
|
<?= _("Rotate CCW") ?>
|
|
</span>
|
|
</div>
|
|
<? endif ?>
|
|
|
|
<div class="edit gDialogLink"
|
|
href="<?= url::site("quick/form_edit/$item->id") ?>">
|
|
<span>
|
|
<?= _("Edit") ?>
|
|
</span>
|
|
</div>
|
|
|
|
<? if (graphics::can("rotate")): ?>
|
|
<div class="rotate-clockwise"
|
|
href="<?= url::site("quick/rotate/$item->id/cw?csrf=" . access::csrf_token()) ?>">
|
|
<span>
|
|
<?= _("Rotate CCW") ?>
|
|
</span>
|
|
</div>
|
|
<? endif ?>
|
|
<? endif ?>
|