fixed cache privileges problem added new buttons to rich edit rich edit now defaults to allow any HTML tags
80 lines
3.2 KiB
Perl
80 lines
3.2 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 => '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 => '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;
|