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:
Tim Almdal
2009-04-27 20:30:46 +00:00
parent 2a5abfdbd4
commit 091fde3e00
8 changed files with 174 additions and 74 deletions
@@ -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>