function mb_create_new_options in More Buttons 7
Provide the Create new options.
Return value
array
1 call to mb_create_new_options()
- mb_content_admin in mb_content/
mb_content.admin.inc - Provides the central MB Content settings form.
File
- mb/
mb.module, line 300 - The More Buttons (MB) module allows to use additional buttons with Drupal.
Code
function mb_create_new_options() {
return array(
0 => t('None'),
1 => t('Create new as tab'),
2 => t('Create new as action link'),
);
}