Posted by Francewhoa on September 1, 2009 at 3:33pm
Jump to:
| Project: | Picasa |
| Version: | 6.x-1.x-dev |
| Component: | Code |
| Category: | feature request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Issue Summary
To improve usability could you add a link to Drupal admin page? Link would go to admin/settings/picasa
Find attached mockup to clarify.
| Attachment | Size |
|---|---|
| mockup-add-new-link.png | 57.16 KB |
Comments
#1
The problem seems to be the type of menu currently in the code:
$items['admin/settings/picasa'] = array('title' => 'Picasa',
'page callback' => 'drupal_get_form',
'page arguments' => array('picasa_settings'),
'access arguments' => array('administer site configuration'),
'type' => MENU_LOCAL_TASK,
MENU_LOCAL_TASK would generate a new tab, on URLs having the same parent URL. Leaving away the 'type' here would generate a normal menu item, which is what we want.
#2
Fix deadly needed!
Without this thread, I would never found this form