mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 11:29:24 -04:00
First iteration of the organize functionality (orginally called bulk
edit). There is limited functionality in no edits work. This is primary a chance for the team to review the ui. It is in a separate module to isolate the changes. Eventually, it will be moved back into core.
This commit is contained in:
25
modules/organize/views/organize_button_pane.html.php
Normal file
25
modules/organize/views/organize_button_pane.html.php
Normal file
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user