diff options
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> |
