diff options
| author | Tim Almdal <tnalmdal@shaw.ca> | 2009-04-27 20:30:46 +0000 |
|---|---|---|
| committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-04-27 20:30:46 +0000 |
| commit | 091fde3e0076a110590c6dfa3004bf7b49253153 (patch) | |
| tree | 1b003cf08e357362263354960a5d96fa6796ff05 /modules/organize/views/organize_button_pane.html.php | |
| parent | 2a5abfdbd4b55a628313e2a8b7c102bb34fcd0d3 (diff) | |
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
Diffstat (limited to 'modules/organize/views/organize_button_pane.html.php')
| -rw-r--r-- | modules/organize/views/organize_button_pane.html.php | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/modules/organize/views/organize_button_pane.html.php b/modules/organize/views/organize_button_pane.html.php index 82b7607d..a39c643c 100644 --- a/modules/organize/views/organize_button_pane.html.php +++ b/modules/organize/views/organize_button_pane.html.php @@ -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> |
