What i'm requesting is the ability to do this;
function GetDefaultSettings()
{
// Set the Settings
return array(
'Introduction' => array(
'label' => T_('Introduction'),
'note' => 'Welcome to this plugin\'s setting manager. Here you will be able to customize how this plugin does whatever this plugin does.',
),
'Blah1' => array(
'label' => '-',
'note' => 'The following settings will allow you to customize the blah part of this plugin.',
),
'Setting1' => array(
'label' => T_('Setting').'1',
'note' => 'Whatever Setting 1 Does',
'type' => 'checkbox',
),
// You get the idea
);
}
}
If this is done currently the settings Blah1 and Introduction are turned into text fields, are are real settings.
Cheers.