View Single Post
  #167  
Old 07-19-2004, 11:17 PM
Natch's Avatar
Natch Natch is offline
 
Join Date: Nov 2002
Location: Australia
Posts: 851
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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:
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01961 seconds
  • Memory Usage 1,785KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (8)bbcode_code
  • (1)bbcode_quote
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete