Seite 1 von 1
ezPortal Fragen
Verfasst: 22.01.2005 16:54
von Speedstar
Hi,
möchte gerne links oder rechts eine Box machen in der das aktuelle wetter von wetter.de angezeigt wird.
Des weiteren möchte ich in der Navigation einen Link erstellen, der wenn man draufklickt einen Text in einem Fenster in der Mitte anzeigt. Geht das überhaupt? Mit dem ?AWSW? -Portal ging das nicht ohne weiteres.
Verfasst: 30.01.2006 15:47
von Pato
Vielleicht hilf dir das irgendwie weiter...
Code: Alles auswählen
##############################################################
## MOD Title: ezPortal - Weather Add On
## MOD Author: Pato - http://www.tobecool.de
## Mod Download: http://www.tobecool.de/forum/downloads.php?/cat=2
##
## MOD Description:
## This Mod adds the Weather News from www.wetter.com on your ezPortal.
##
## MOD Version: 1.0
##############################################################
##############################################################
## You must have install this Mod:
##
## MOD Title: ezPortal
## MOD Author: Smartor <smartor_xp@hotmail.com> - http://smartor.is-root.com
##
## MOD Description: This Mod add a seperate Page to your Forum. Your Moderators and Administrarors can easy add personal Infos in there profile.
##
## MOD Version: 2.1.8c
##############################################################
##############################################################
##
## Installation Level: easy
## Installation Time: 5 minutes
##
## Files To Edit: 4
## language/lang_german/lang_main.php
## language/lang_english/lang_main.php
## portal.php
## templates/xxx/portal_body.tpl
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################
#
#-----[ OPEN ]------------------------------------------------------
#
language/lang_german/lang_main.php
#
#-----[ FIND ]------------------------------------------------------
#
//
// Smartor's ezPortal
//
#
#-----[ AFTER, ADD ]-------------------------------------------------
#
// Weather Addon
$lang['Weather'] = 'Wetter';
$lang['Weather_info'] = 'Auf Bild klicken, um mehr Informationen zu erhalten.';
// Weather Addon
#
#-----[ Close ]-------------------------------------------------
#
#####################################################################
#
#-----[ OPEN ]------------------------------------------------------
#
language/lang_english/lang_main.php
#
#-----[ FIND ]------------------------------------------------------
#
//
// Smartor's ezPortal
//
#
#-----[ AFTER, ADD ]-------------------------------------------------
#
// Weather Addon
$lang['Weather'] = 'Weather';
$lang['Weather_info'] = 'Click on the image for more information.';
// Weather Addon
#
#-----[ Close ]-------------------------------------------------
#
#####################################################################
#
#-----[ OPEN ]------------------------------------------------------
#
portal.php
#
#-----[ FIND ]------------------------------------------------------
#
'L_POSTED' => $lang['Posted'],
#
#-----[ AFTER, ADD ]----------------------------------------------
#
// Weather Addon
'L_WEATHER' => $lang['Weather'],
'L_WEATHER_INFO' => $lang['Weather_info'],
// Weather Addon
#
#-----[ Close ]-------------------------------------------------
#
#####################################################################
#
#-----[ OPEN ]------------------------------------------------------
#
templates/xxx/portal_body.tpl
#
#-----[ FIND ]------------------------------------------------------
#
<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline">
<tr>
<td class="catHead" height="25"><span class="genmed"><b>{L_STATISTICS}</b></span></td>
</tr>
<tr>
<td class="row1" align="left"><span class="gensmall">{TOTAL_USERS}<br />{NEWEST_USER}<br /><br/>{TOTAL_POSTS} {TOTAL_TOPICS}<br /> </span></td>
</tr>
</table>
<br />
#
#-----[ AFTER, ADD ]----------------------------------------------
#
# Replace 2x {PLZ} with your City.
#
#####################################
<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline">
<tr>
<th class="catHead" height="25">{L_WEATHER}</span></th>
</tr>
<tr>
<td class="row1" align="center"><span class="gensmall">
<br />
<i>{L_WEATHER_INFO}</i>
<br /><br />
<a href="http://www.wetter.com/home/extern/ex_search.php?ms=1&ss=1&sss=2&search={PLZ}" target="_blank"><img src="http://www.wetter.com/home/woys/woys.php?,C,1,DEPLZ,{PLZ}" border="0" alt=""></a>
<br /> </span></td>
</tr>
</table>
<br />
#
#-----[ Close ]-------------------------------------------------
#
Hab ich mir mal gemacht, weil ich kein passenden fürs ezPortal gefunden habe... *fG*
Edit: E-Mail Adresse entfernt!
MfG Pato