To improve usability could you add a link to Drupal admin page? Link would go to admin/settings/picasa

Find attached mockup to clarify.

CommentFileSizeAuthor
mockup-add-new-link.png57.16 KBfrancewhoa

Comments

cyberwolf’s picture

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.

jvieille’s picture

Fix deadly needed!
Without this thread, I would never found this form