Quote:
Originally Posted by nineball
I like your layout better than mine. Could you attach the instructions and template
|
Mine requires modifications to the
includes/functions_weather.php - so MAKE A BACKUP OF THE ORIGINAL FILE:
Find:
Code:
function get_w_home()
Insert ABOVE:
Code:
function get_j_home ()
{
global $vboptions;
$returned = "$vboptions[bburl]/";
return $returned;
}
Find:
Code:
define ( 'WEATHER_URL', get_w_home () );
REPLACE WITH:
Code:
define ( 'WEATHER_URL', get_j_home () );
Find:
Code:
$current = $type == '1' ? 'current_weather_one' : 'current_weather_two';
Insert BELOW:
Code:
$current = (THIS_SCRIPT == 'adv_index') ? 'adv_portal_weather': $current;
Save, close and Upload this new file.
New Template:
adv_portal_weather
Code:
<table align="center" border="0" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" class="tborder" width="100%">
<thead>
<tr>
<td class="tcat">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('cmps_weather')"><img id="collapseimg_cmps_weather" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_cmps_weather].gif" alt="" border="0" /></a>
<span class="smallfont"><strong>$vba_options[portal_blockbullet] <a href="$vboptions[bburl]/profile.php?$session[sessionurl]do=weather" alt="Detailed Weather Report">$tpl[location_header]<br />$tpl[location]</a></strong></span>
</td>
</tr>
</thead>
<tbody id="collapseobj_cmps_weather" style="$vbcollapse[collapseobj_cmps_weather];text-align:center">
<tr class="alt1">
<td class="smallfont"><a href="$vboptions[bburl]/profile.php?$session[sessionurl]do=weather"><img border='0' src='$tpl[current_icon]' title="$tpl[current_text]" alt='' /></a> $tpl[current_temp]</td>
</tr>
<tr class="alt2">
<td class="thead">$tpl[time_text]</td>
</tr>
<tr class="alt2">
<td class="smallfont">$tpl[local_time]</td>
</tr>
<tr class="alt1">
<td class="thead">$tpl[humd_header]</td>
</tr>
<tr class="alt1">
<td class="smallfont">$tpl[current_humd]</td>
</tr>
<tr class="alt2">
<td class="thead">$tpl[vis_header]</td>
</tr>
<tr class="alt2">
<td class="smallfont">$tpl[current_vis]</td>
</tr>
<tr class="alt1">
<td class="thead">$tpl[ultra_header]</td>
</tr>
<tr class="alt1">
<td class="smallfont">$tpl[current_ultra]</td>
</tr>
<tr class="alt2">
<td class="thead">$tpl[baro_header]</td>
</tr>
<tr class="alt2">
<td class="smallfont">$tpl[current_baro] <span><img border='0' src='$tpl[icon_baro]' alt='' /></span></td>
</tr>
<tr class="alt1">
<td class="thead">$tpl[direct_header] ($tpl[direct_type])</td>
</tr>
<tr class="alt1">
<td class="smallfont">$tpl[current_direct]</td>
</tr>
</tbody>
</table>
<br />
New Module:
forumroot/modules/weather.php
Code:
<?
// here you change the field_start and field_end values to match your own board configuration
$w_fields = array ( 'field_start', 'field_end' );
$w_m = 'field' . ( $w_fields[1] - 1 );
if ( strpos ( $bbuserinfo[$w_m], 'always' ) )
{
$show['forecast'] = true;
define ( 'DO_WEATHER', 1 );
include_once ( './includes/functions_weather.php' );
$forecast_home = forecast_valid ( $w_fields );
if ( !empty ( $forecast_home ) )
{
$forecast_home = fetch_forecast ( $forecast_home, 2 );
}
eval('$home[$mods[\'modid\']][\'content\'] = "$forecast_home[data]";');
}
else
{
$show['forecast'] = false;
}
?>
Upload this file to forumroot/modules folder.
Install into the vB Advanced CMPS using the following settings:
Module title: World Weather
Module Identifier: leave this blank
File to include: weather.php
OR Template to Include: leave this blank
Templates Used: adv_portal_weather
That's it - screenshot demo: