summaryrefslogtreecommitdiff
path: root/modules/organize/views/organize_button_pane.html.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules/organize/views/organize_button_pane.html.php')
-rw-r--r--modules/organize/views/organize_button_pane.html.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/modules/organize/views/organize_button_pane.html.php b/modules/organize/views/organize_button_pane.html.php
new file mode 100644
index 00000000..82b7607d
--- /dev/null
+++ b/modules/organize/views/organize_button_pane.html.php
@@ -0,0 +1,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>
+