http://ellislab.com/expressionengine/user-guide/development/modules.html
function tabs()
{
$tabs['tab_name'] = array(
'field_name_one'=> array(
'visible' => 'true',
'collapse' => 'false',
'htmlbuttons' => 'true',
'width' => '100%'
),
'field_name_two'=> array(
'visible' => 'true',
'collapse' => 'false',
'htmlbuttons' => 'true',
'width' => '100%'
),
);
return $tabs;
}Change $tabs[‘tab_name’] to $tabs[‘YOUR TAB NAME’]
$tabs['widgets'] = array(
'_tab_label' => 'Widgets',
'widgets' => array(
'visible' => 'true',
'collapse' => 'false',
'htmlbuttons' => 'true',
'width' => '100%'
)
);Try this as well, I noticed that Revisions uses the extra ‘_tab_label’ array item. I tried it on a module I created and it worked.
Packet Tide owns and develops ExpressionEngine. © Packet Tide, All Rights Reserved.