'checkbox',
'#title' => t('Move node local tasks into the teaser links.'),
'#default_value' => variable_get('admin_links_link_tasks', 1),
);
$form['admin_links_link_new'] = array(
'#type' => 'checkbox',
'#title' => t('Add a link to create a new content of the same type (for example, New Story).'),
'#default_value' => variable_get('admin_links_link_new', 0),
);
$form['admin_links_exclude'] = array(
'#type' => 'textarea',
'#title' => t('Exclude the following content local tasks or links from being added to the content teaser links'),
'#description' => t('One path per line. You can use * as a wildcard.'),
'#default_value' => variable_get('admin_links_exclude', implode("\n", array('node/*/view', 'node/*/devel', 'node/*/devel/*', 'node/*/outline'))),
'#wysiwyg' => FALSE,
);
return system_settings_form($form);
}