Add graphics::Can() to let us determine whether the active toolkit

supports a given function.  Right now it's hardcoded to support what
we know about GD.
This commit is contained in:
Bharat Mediratta
2009-01-06 09:30:32 +00:00
parent fa1ccbd86d
commit 393273eaef
2 changed files with 21 additions and 0 deletions
+6
View File
@@ -1,17 +1,22 @@
<?php defined("SYSPATH") or die("No direct script access.") ?>
<? if ($item->type == "photo"): ?>
<? if (graphics::can("rotate")): ?>
<div class="rotate-counter-clockwise"
href="<?= url::site("quick/rotate/$item->id/ccw?csrf=" . access::csrf_token()) ?>">
<span>
<?= _("Rotate CCW") ?>
</span>
</div>
<? endif ?>
<div class="edit gDialogLink"
href="<?= url::site("quick/form_edit/$item->id") ?>">
<span>
<?= _("Edit") ?>
</span>
</div>
<? if (graphics::can("rotate")): ?>
<div class="rotate-clockwise"
href="<?= url::site("quick/rotate/$item->id/cw?csrf=" . access::csrf_token()) ?>">
<span>
@@ -19,3 +24,4 @@
</span>
</div>
<? endif ?>
<? endif ?>