summaryrefslogtreecommitdiff
path: root/modules/akismet/views/admin_akismet.html.php
blob: 22c60c970fbc9bf0a3614114b4c28a5cc7cfd2b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php defined("SYSPATH") or die("No direct script access.") ?>
<div id="g-admin-akismet">
  <h1> <?= t("Akismet Spam Filtering") ?> </h1>
  <p>
  <?= t("Akismet is a free, automated spam filtering service.  In order to use it, you need to sign up for a <a href=\"%api_key_url\">Wordpress.com API Key</a>, which is also free.  Your comments will be automatically relayed to <a href=\"%akismet_url\">Akismet.com</a> where they'll be scanned for spam.  Spam messages will be flagged accordingly and hidden from your vistors until you approve or delete them.",
        array("api_key_url" => "http://wordpress.com/api-keys",
              "akismet_url" => "http://akismet.com")) ?>
  </p>

  <? if ($valid_key): ?>
  <div class="g-module-status g-success">
    <?= t("Your API Key is valid.  Your comments will be filtered!") ?>
  </div>
  <? endif ?>

  <?= $form ?>
</div>