forked from Jimako-e107-plugins/e107-old-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathems_template.php
43 lines (35 loc) · 1.15 KB
/
ems_template.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
37
38
39
40
41
42
43
<?php
/*
+---------------------------------------------------------------+
| EMS v1.0 - by iNfLuX ([email protected])
|
| For the e107 website system
| ©Steve Dunstan
| http://e107.org
|
| Released under the terms and conditions of the
| GNU General Public License (http://gnu.org).
|
+---------------------------------------------------------------+
*/
if (!defined('e107_INIT')) { exit; }
global $ems_shortcodes, $pref;
$EMS_SHORT_TEMPLATE = "
<tr>
<td class='forumheader3' style='width:2%'>{USER_ICON_LINK}</td>
<td class='forumheader' style='width:20%'>{USER_NAME_LINK}</td>";
if($pref['ems_usrn']){
$EMS_SHORT_TEMPLATE .= "<td class='forumheader3' style='width:20%'>{USER_NAMERICH}</td> ";
}
if($pref['ems_email']){
$EMS_SHORT_TEMPLATE .= "<td class='forumheader3' style='width:20%'>{USER_EMAIL}</td> ";
}
if($pref['ems_dat']){
$EMS_SHORT_TEMPLATE .= "<td class='forumheader3' style='width:20%'>{USER_DATA_VON}-{USER_DATA_BIS}</td> ";
}
$EMS_SHORT_TEMPLATE .= "
<td class='forumheader3' style='width:20%'>{USER_JOIN}</td>
</tr>
";
?>