hover help

This commit is contained in:
Colin Kuskie 2005-06-24 00:53:30 +00:00
parent 5bab0ae930
commit 449081990e
3 changed files with 15 additions and 4 deletions

View file

@ -88,6 +88,7 @@ sub getEditForm {
$tabform->getTab("properties")->url(
-name=>"redirectUrl",
-label=>WebGUI::International::get('redirect url', 'Asset_Redirect'),
-hoverHelp=>WebGUI::International::get('redirect url description', 'Asset_Redirect'),
-value=>$self->getValue("redirectUrl")
);
return $tabform;

View file

@ -6,6 +6,11 @@ our $HELP = {
title => 'redirect add/edit title',
body => 'redirect add/edit body',
fields => [
{
title => 'redirect url',
description => 'redirect url description',
namespace => 'Asset_Redirect',
},
],
related => [
{

View file

@ -15,16 +15,21 @@ our $I18N = {
'redirect add/edit body' => {
message => q|
<P>The Page Redirect Asset causes the user's browser to be redirected to another page. It does this if it is viewed standalone, as part of a Layout Asset, or proxied via a macro.</P>
<P>The Page Redirect Asset causes the user's browser to be redirected to another page. It does this if it is viewed standalone, as part of a Page Asset, or proxied via a macro.</P>
<P><b>NOTE:</b> The redirection will be disabled while in admin mode in order to allow editing the properties of the page.</P>
<P>
<b>Redirect URL</b><br>
The URL where the user will be redirected.
</P> |,
lastUpdated => 1104718231,
|,
lastUpdated => 1119574115,
context => 'Help text for redirects',
},
'redirect url description' => {
message => q|The URL where the user will be redirected.|,
lastUpdated => 1119574089,
},
};
1;