summaryrefslogtreecommitdiff
path: root/core/views/admin_graphics_graphicsmagick.html.php
blob: bb4f906d52d649aef2356bf9c621ba9f378e1d42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php defined("SYSPATH") or die("No direct script access.") ?>
<div id="graphicsmagick" class="gBlock <?= $tk->graphicsmagick ? "" : "unavailable" ?>">
  <h3> <?= t("GraphicsMagick") ?> </h3>
  <img class="logo" width="107" height="76" src="<?= url::file("core/images/graphicsmagick.png"); ?>" alt="<? t("Visit the GraphicsMagick project site") ?>" />
  <p>
    <?= t("GraphicsMagick is a standalone graphics program available on most Linux systems.  Please refer to the <a href=\"%url\">GraphicsMagick website</a> for more information.",
        array("url" => "http://www.graphicsmagick.org")) ?>
  </p>
  <? if ($tk->graphicsmagick): ?>
  <p class="gSuccess">
    <?= t("GraphicsMagick is available in %path", array("path" => $tk->graphicsmagick)) ?>
  </p>
  <? else: ?>
  <p class="gInfo">
    <?= t("GraphicsMagick is not available on your system.") ?>
  </p>
  <? endif ?>
</div>