Mercurial > hg > vamp-website
comparison forum/Themes/default/ManageMail.template.php @ 76:e3e11437ecea website
Add forum code
author | Chris Cannam |
---|---|
date | Sun, 07 Jul 2013 11:25:48 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
75:72f59aa7e503 | 76:e3e11437ecea |
---|---|
1 <?php | |
2 /** | |
3 * Simple Machines Forum (SMF) | |
4 * | |
5 * @package SMF | |
6 * @author Simple Machines | |
7 * @copyright 2011 Simple Machines | |
8 * @license http://www.simplemachines.org/about/smf/license.php BSD | |
9 * | |
10 * @version 2.0 | |
11 */ | |
12 | |
13 function template_browse() | |
14 { | |
15 global $context, $settings, $options, $scripturl, $txt; | |
16 | |
17 echo ' | |
18 <div id="manage_mail"> | |
19 <div class="cat_bar"> | |
20 <h3 class="catbg">', $txt['mailqueue_stats'], '</h3> | |
21 </div> | |
22 <div class="windowbg"> | |
23 <span class="topslice"><span></span></span> | |
24 <div class="content"> | |
25 <dl class="settings"> | |
26 <dt><strong>', $txt['mailqueue_size'], '</strong></dt> | |
27 <dd>', $context['mail_queue_size'], '</dd> | |
28 <dt><strong>', $txt['mailqueue_oldest'], '</strong></dt> | |
29 <dd>', $context['oldest_mail'], '</dd> | |
30 </dl> | |
31 </div> | |
32 <span class="botslice"><span></span></span> | |
33 </div>'; | |
34 | |
35 template_show_list('mail_queue'); | |
36 | |
37 echo ' | |
38 </div> | |
39 <br class="clear" />'; | |
40 } | |
41 | |
42 ?> |