Verzeichnisstruktur phpBB-3.0.0
- Veröffentlicht
- 12.12.2007
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
memberlist_im.html
001 <!-- INCLUDE simple_header.html -->
002
003 <br clear="all" />
004
005 <!-- MSNM info from http://www.cdolive.net/ - doesn't seem to work with MSN Messenger -->
006
007 <form method="post" action="{S_IM_ACTION}">
008 <table class="tablebg" width="95%" cellspacing="1" cellpadding="4" border="0" align="center">
009 <tr>
010 <th colspan="2">{L_SEND_IM}</th>
011 </tr>
012 <tr>
013 <td class="row3" colspan="2"><span class="gensmall">{L_SEND_IM_EXPLAIN}</span></td>
014 </tr>
015 <tr>
016 <td class="row1"><b class="genmed">{L_IM_RECIPIENT}: </b></td>
017 <td class="row2"><span class="gen"><b>{USERNAME}</b><!-- IF S_SEND_ICQ or S_SEND_AIM or S_SEND_MSNM --> [ {IM_CONTACT} ]<!-- ENDIF --></span> <!-- IF PRESENCE_IMG -->{PRESENCE_IMG}<!-- ENDIF --></td>
018 </tr>
019
020 <!-- IF S_SEND_AIM -->
021 <tr>
022 <td class="row1" colspan="2" align="center"><br /><a class="gen" href="{U_AIM_CONTACT}">{L_IM_ADD_CONTACT}</a><br /><a class="gen" href="{U_AIM_MESSAGE}">{L_IM_SEND_MESSAGE}</a><br /><br /><a class="gensmall" href="http://www.aim.com/download.adp">{L_IM_DOWNLOAD_APP}</a> | <a class="gensmall" href="http://aimexpress.oscar.aol.com/aimexpress/launch.adp?Brand=AIM">{L_IM_AIM_EXPRESS}</a> </td>
023 </tr>
024 <tr>
025 <td class="cat" colspan="2" align="center"> </td>
026 </tr>
027 <!-- ENDIF -->
028
029 <!-- IF S_SEND_MSNM -->
030 <tr>
031 <td class="row1" colspan="2" align="center">
032 <object classid="clsid:B69003B3-C55E-4B48-836C-BC5946FC3B28" codetype="application/x-oleobject" id="objMessengerApp" width="0" height="0"></object>
033 <script type="text/javascript">
034 // <![CDATA[
035 var app = document.getElementById('objMessengerApp');
036
037 /**
038 * Check whether the browser supports this and whether MSNM is connected
039 */
040 function msn_supported()
041 {
042 // Does the browser support the MSNM object?
043 if (app.MyStatus)
044 {
045 // Is MSNM connected?
046 if (app.MyStatus == 1)
047 {
048 alert('{LA_IM_MSNM_CONNECT}');
049 return false;
050 }
051 }
052 else
053 {
054 alert('{LA_IM_MSNM_BROWSER}');
055 return false;
056 }
057 return true;
058 }
059
060 /**
061 * Add to your contact list
062 */
063 function add_contact(address)
064 {
065 if (msn_supported())
066 {
067 // Could return an error while MSNM is connecting, don't want that
068 try
069 {
070 app.AddContact(0, address);
071 }
072 catch (e)
073 {
074 return;
075 }
076 }
077 }
078
079 /**
080 * Write IM to contact
081 */
082 function im_contact(address)
083 {
084 if (msn_supported())
085 {
086 // Could return an error while MSNM is connecting, don't want that
087 try
088 {
089 app.InstantMessage(address);
090 }
091 catch (e)
092 {
093 return;
094 }
095 }
096 }
097 // ]]>
098 </script>
099
100 <a class="gen" href="#" onclick="add_contact('{A_IM_CONTACT}'); return false;">{L_IM_ADD_CONTACT}</a><br /><a class="gen" href="#" onclick="im_contact('{A_IM_CONTACT}'); return false;">{L_IM_SEND_MESSAGE}</a>
101 </td>
102 </tr>
103 <tr>
104 <td class="cat" colspan="2" align="center"> </td>
105 </tr>
106 <!-- ENDIF -->
107
108 <!-- IF S_SEND_JABBER -->
109 <tr>
110 <td class="row1"><b class="genmed">{L_IM_MESSAGE}: </b></td>
111 <td class="row2"><textarea class="post" name="message" rows="5" cols="45"></textarea></td>
112 </tr>
113 <tr>
114 <td class="cat" colspan="2" align="center"><input class="btnmain" name="submit" type="submit" value="{L_IM_SEND}" /></td>
115 </tr>
116 <!-- ENDIF -->
117
118 <!-- IF S_NO_SEND_JABBER -->
119 <tr>
120 <td class="row1" colspan="2"><span class="genmed">{L_IM_NO_JABBER}</span></td>
121 </tr>
122 <!-- ENDIF -->
123
124 <!-- IF S_SENT_JABBER -->
125 <tr>
126 <td class="row1" colspan="2" align="center"><span class="gen">{L_IM_SENT_JABBER}</span></td>
127 </tr>
128 <tr>
129 <td class="cat" colspan="2" align="center"></td>
130 </tr>
131 <!-- ENDIF -->
132
133 </table>
134 <a class="nav" href="#" onclick="window.close(); return false;">{L_CLOSE_WINDOW}</a>
135 {S_FORM_TOKEN}
136 </form>
137
138
139 <!-- INCLUDE simple_footer.html -->