/**
* @author Shea Frederick - http://www.vinylfox.com
* @class Ext.ux.form.HtmlEditor.plugins
* <p>A convenience function that returns a standard set of HtmlEditor buttons.</p>
* <p>Sample usage:</p>
* <pre><code>
new Ext.FormPanel({
...
items : [{
...
xtype : "htmleditor",
plugins : Ext.ux.form.HtmlEditor.plugins()
}]
});
* </code></pre>
*/
Ext.ux.form.HtmlEditor.plugins = function(){
return [
new Ext.ux.form.HtmlEditor.Link(),
new Ext.ux.form.HtmlEditor.Divider(),
new Ext.ux.form.HtmlEditor.Word(),
new Ext.ux.form.HtmlEditor.FindAndReplace(),
new Ext.ux.form.HtmlEditor.UndoRedo(),
new Ext.ux.form.HtmlEditor.Divider(),
new Ext.ux.form.HtmlEditor.Image(),
new Ext.ux.form.HtmlEditor.Table(),
new Ext.ux.form.HtmlEditor.HR(),
new Ext.ux.form.HtmlEditor.SpecialCharacters(),
new Ext.ux.form.HtmlEditor.HeadingMenu(),
new Ext.ux.form.HtmlEditor.IndentOutdent(),
new Ext.ux.form.HtmlEditor.SubSuperScript(),
new Ext.ux.form.HtmlEditor.RemoveFormat()
];
};