Parent Directory
|
Revision Log
|
Revision Graph
#371168 by Sutharsan: Added Improved sent status reporting.
| 1 | <?php |
| 2 | // $Id: simplenews-status.tpl.php,v 1.3 2009/01/02 12:01:17 sutharsan Exp $ |
| 3 | |
| 4 | /** |
| 5 | * @file |
| 6 | * Default theme implementation to display the simplenews newsletter status. |
| 7 | * |
| 8 | * Available variables: |
| 9 | * - $image: status image |
| 10 | * - $alt: 'alt' message |
| 11 | * - $title: 'title' message |
| 12 | * |
| 13 | * @see template_preprocess_simplenews_status() |
| 14 | */ |
| 15 | ?> |
| 16 | <?php if (isset($image)): ?> |
| 17 | <img src="<?php print $image; ?>" width="15" height="15" alt="<?php print $alt; ?>" border="0" title="<?php print $title; ?>" /> |
| 18 | <?php else: ?> |
| 19 | <?php print $title; ?> |
| 20 | <?php endif; ?> |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |