Plz change the admin path to lie suitably under config page
>> otherwise it fills the toolbar unnecessarily

if frequently used, we can use Shortcut module, but it is unnecessary to use toolbar space

CommentFileSizeAuthor
#1 toolbar.jpg45.44 KBwebankit

Comments

webankit’s picture

StatusFileSize
new45.44 KB

See how toolbar broke into two lines, due to unsuitable path

lagpro’s picture

Title: change admin path » change admin path - here is the code fix.
Category: feature » task
Status: Active » Needs review

I agree - it looks like a carry over from drupal 6.

Here is the fix - this should be put into the next build. Thanks!

replace the hook_menu() with this.

/**
 * Implementation of hook_menu().
 */
function curvycorners_menu() {
  $items['admin/config/user-interface/curvycorners'] = array(
    'title' => 'Curvy Corners',
    'description' => 'Curvy Corners allows you to apply corners to any div on your site.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array('curvycorners_settings'),
    'access arguments' => array('administer curvycorners'),
   );
  return $items;
}
Screenack’s picture

Yea, this was bothering me, too, on an otherwise excellent module. The patch fixes the problem and I agree that menu path is better.