summaryrefslogtreecommitdiff
path: root/modules/organize/views/organize_button_pane.html.php
blob: 82b7607d7a64609186b84b00fc9e4e6c183e3547 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php defined("SYSPATH") or die("No direct script access.") ?>

<? if (graphics::can("rotate")): ?>
<a class="gButtonLink ui-corner-all ui-state-default" href="#" ref="rotate_ccw"
  title="<?= t("Rotate 90 degrees counter clockwise") ?>">
  <span class="ui-icon ui-icon-rotate-ccw">
    <?= t("Rotate 90 degrees counter clockwise") ?>
  </span>
</a>

<a class="gButtonLink ui-corner-all ui-state-default" href="#" ref="rotate_cw"
  title="<?= t("Rotate 90 degrees clockwise") ?>">
  <span class="ui-icon ui-icon-rotate-cw">
    <?= t("Rotate 90 degrees clockwise") ?>
  </span>
</a>
<? endif ?>

<a class="gButtonLink ui-corner-all ui-state-default" href="#" ref="delete"
     title="<?= t("Delete selection") ?>">
  <span class="ui-icon ui-icon-trash">
    <?= t("Delete selection") ?>
  </span>
</a>