In Drupal 7, it would be nice to have the "Cobalt configuration" menu item under Configuration and modules > System (or maybe Configuration and modules > Development). Currently it takes up space in the menu items at the first level, while the average user will seldomly want to change anything to Cobalt's configuration.

In cobalt_menu():

  $items['admin/config/system/cobalt'] = array(
    'title' => 'Cobalt',
    'description' => 'Settings for cobalt appearance and behaviour',
    'page callback' => 'drupal_get_form',
    'page arguments' => array('cobalt_settings'),
    'access arguments' => array('administer site configuration'),
    'file' => 'cobalt_admin.inc.php',
    'type' => MENU_NORMAL_ITEM,
    'weight' => 0,
  );

Comments

capellic’s picture

Agreed. In fact, I didn't see the configuration link because it's placement wasn't obviously placed in a category of some sort.

BTW, I am a huge fan of this module - it's the first thing I install on Drupal 6 and this is the first time I'm using Drupal 7 and ... yes .. it's the first thing I installed.

anders.fajerson’s picture

Status: Active » Fixed

This has been fixed a while ago.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.