getButtonConfig: function()
{
var self = this,
buttons = [ ['switchmode'], ['removeformat']],
bC = this.options.buttonConfig,
group;
if (!bC || bC.basic)
{
buttons.push(['bold', 'italic', 'underline'/*, 'deleted'*/]);
}
/*if (!bC || bC.extended)
{
buttons.push(['fontcolor', 'fontsize', 'fontfamily']);
}*/
if (!bC || bC.link)
{
buttons.push(['createlink', 'unlink']);
}
/*if (!bC || bC.align)
{
buttons.push(['alignment']);
}*/
if (!bC || bC.list)
{
buttons.push(['unorderedlist', 'orderedlist'/*, 'outdent', 'indent'*/]);
}
else if (bC.indent)
{
buttons.push(['outdent', 'indent']);
}