95 lines
4 KiB
Perl
95 lines
4 KiB
Perl
package WebGUI::Help::Asset_RichEdit;
|
|
|
|
our $HELP = {
|
|
|
|
'rich edit add/edit' => {
|
|
title => 'rich edit add/edit title',
|
|
body => 'rich edit add/edit body',
|
|
fields => [
|
|
{
|
|
title => 'disable rich edit',
|
|
description => 'disable rich edit description',
|
|
namespace => 'Asset_RichEdit',
|
|
},
|
|
{
|
|
title => 'using rich edit',
|
|
description => 'using rich edit description',
|
|
namespace => 'Asset_RichEdit',
|
|
},
|
|
{
|
|
title => 'preformatted',
|
|
description => 'preformatted description',
|
|
namespace => 'Asset_RichEdit',
|
|
},
|
|
{
|
|
title => 'elements',
|
|
description => 'elements description',
|
|
namespace => 'Asset_RichEdit',
|
|
},
|
|
{
|
|
title => 'editor height',
|
|
description => 'editor height description',
|
|
namespace => 'Asset_RichEdit',
|
|
},
|
|
{
|
|
title => 'editor width',
|
|
description => 'editor width description',
|
|
namespace => 'Asset_RichEdit',
|
|
},
|
|
{
|
|
title => 'source editor height',
|
|
description => 'source editor height description',
|
|
namespace => 'Asset_RichEdit',
|
|
},
|
|
{
|
|
title => 'source editor width',
|
|
description => 'source editor width description',
|
|
namespace => 'Asset_RichEdit',
|
|
},
|
|
{
|
|
title => 'use br',
|
|
description => 'use br description',
|
|
namespace => 'Asset_RichEdit',
|
|
},
|
|
{
|
|
title => 'remove line breaks',
|
|
description => 'remove line breaks description',
|
|
namespace => 'Asset_RichEdit',
|
|
},
|
|
{
|
|
title => 'no wrap',
|
|
description => 'no wrap description',
|
|
namespace => 'Asset_RichEdit',
|
|
},
|
|
{
|
|
title => 'directionality',
|
|
description => 'directionality description',
|
|
namespace => 'Asset_RichEdit',
|
|
},
|
|
{
|
|
title => 'toolbar location',
|
|
description => 'toolbar location description',
|
|
namespace => 'Asset_RichEdit',
|
|
},
|
|
{
|
|
title => 'css file',
|
|
description => 'css file description',
|
|
namespace => 'Asset_RichEdit',
|
|
},
|
|
{
|
|
title => 'enable context menu',
|
|
description => 'enable context menu description',
|
|
namespace => 'Asset_RichEdit',
|
|
},
|
|
],
|
|
related => [
|
|
{
|
|
tag => 'asset fields',
|
|
namespace => 'Asset'
|
|
},
|
|
],
|
|
},
|
|
|
|
};
|
|
|
|
1;
|