webgui/lib/WebGUI/Help/Asset_WeatherData.pm
JT Smith 2ae31ce34b - fix: WeatherData asset not displaying properly
- rfe: Weather-Data not only for US-Cities
 - rfe: WeatherData Asset - Convert to International format
2007-02-25 18:55:10 +00:00

112 lines
2.4 KiB
Perl

package WebGUI::Help::Asset_WeatherData;
our $HELP = {
'weather data add/edit' => {
title => 'weather data add/edit title',
body => 'weather data add/edit body',
isa => [
{
namespace => "Asset_Wobject",
tag => "wobject add/edit"
},
],
fields => [
{
title => 'partnerId',
description => 'partnerId help',
namespace => 'Asset_WeatherData',
},
{
title => 'licenseKey',
description => 'licenseKey help',
namespace => 'Asset_WeatherData',
},
{
title => 'Default Locations',
description => 'Your list of default weather locations',
namespace => 'Asset_WeatherData',
},
],
related => [
{
tag => 'weatherdata template',
namespace => 'Asset_WeatherData'
},
{
tag => 'wobjects using',
namespace => 'Asset_Wobject'
},
],
},
'weatherdata template' => {
title => 'WeatherData template title',
body => 'WeatherData template description',
isa => [
{
tag => "weatherdata asset template variables",
namespace => 'Asset_WeatherData'
},
],
fields => [
],
variables => [
{
'name' => 'ourLocations.loop',
'variables' => [
{
'name' => 'query'
},
{
'name' => 'cityState'
},
{
'name' => 'sky'
},
{
'name' => 'tempF'
},
{
'name' => 'iconUrl'
}
]
}
],
related => [
{
tag => 'weather data add/edit',
namespace => 'Asset_WeatherData'
},
{
tag => 'wobject template',
namespace => 'Asset_Wobject'
}
]
},
'weatherdata asset template variables' => {
title => 'weatherdata asset template variables title',
body => 'weatherdata asset template variables body',
isa => [
{
tag => "wobject template variables",
namespace => 'Asset_Wobject'
},
],
fields => [
],
variables => [
{
'name' => 'templateId'
},
{
'name' => 'locations'
},
],
related => [
],
},
};
1;