mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-08-03 21:50:43 -04:00
Another iteration of the organize module:
Rearrange the layout as per discussion with thumb, start the drawer functionality. Still to do... 1) Add the processing behind the buttons on the drawer handle 2) Enable the drawer buttons when something is selected 3) Create a copy of the thumbs for the drawer 4) Add the bulk editting functionality to the drawer
This commit is contained in:
@@ -1,23 +1,38 @@
|
||||
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
||||
|
||||
|
||||
<a class="gButtonLink ui-corner-all ui-state-default" href="#" ref="edit"
|
||||
disabled="1" title="<?= t("Edit Selection") ?>">
|
||||
<span class="ui-icon ui-icon-pencil">
|
||||
<?= t("Edit Selection") ?>
|
||||
</span>
|
||||
</a>
|
||||
|
||||
<? if (graphics::can("rotate")): ?>
|
||||
<a class="gButtonLink ui-corner-all ui-state-default" href="#" ref="rotate_ccw"
|
||||
title="<?= t("Rotate 90 degrees counter clockwise") ?>">
|
||||
disabled="1" 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") ?>">
|
||||
disabled="1" 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="album_cover"
|
||||
disabled="1" title="<?= t("Choose this photo as the album cover") ?>">
|
||||
<span class="ui-icon ui-icon-star">
|
||||
<?= t("Choose this photo as the album cover") ?>
|
||||
</span>
|
||||
</a>
|
||||
|
||||
<a class="gButtonLink ui-corner-all ui-state-default" href="#" ref="delete"
|
||||
title="<?= t("Delete selection") ?>">
|
||||
disabled="1" title="<?= t("Delete selection") ?>">
|
||||
<span class="ui-icon ui-icon-trash">
|
||||
<?= t("Delete selection") ?>
|
||||
</span>
|
||||
|
||||
Reference in New Issue
Block a user