Download & Extend

Add link to admin/settings/picasa

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.

AttachmentSize
mockup-add-new-link.png57.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