forked from e107inc/guestbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathe_status.php
36 lines (34 loc) · 1.4 KB
/
e_status.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
/*
+---------------------------------------------------------------+
|
| e107 website system
| GUESTBOOK PLUGIN V4.0
|
| Released under the terms and conditions of the
| GNU General Public License Version 2 (http://gnu.org).
|
+---------------------------------------------------------------+
| original: ©Andrew Rockwell 2003
| http://2sdw.com
| chavo@2sdw.com
+---------------------------------------------------------------+
| updates: ©Richard Perry 2005
| http://www.greycube.com
| code@greycube.com
+---------------------------------------------------------------+
| updates: ©Titanik 2007
| http://upc.utc.sk
| tomasss@inmail.sk
+---------------------------------------------------------------+
| updates: ©Smarti October 2007
| http://www.platinwebservice.de
| webmaster@platinwebservice.de
+---------------------------------------------------------------+
*/
if (!defined('e107_INIT')) { exit; }
@include_once(e_PLUGIN."guestbook/languages/".e_LANGUAGE.".php");
@include_once(e_PLUGIN."guestbook/languages/English.php");
$guestbook_posts = $sql -> db_Count("guestbook");
$text .= "<div style='padding-bottom: 2px;'><img src='".e_PLUGIN."/guestbook/icon_small.png' style='width: 16px; height: 16px; vertical-align: bottom' alt='' /> ".GB_LAN_ADM_20.": ".$guestbook_posts."</div>";
?>