Hi the configuration menu are not display in the config tab. It would be nice to correct the link...

in tabtamer.module

- $items['admin/config/tabtamer'] = array(
+ $items['admin/config/user-interface/tabtamer'] = array(
    'title' => 'Tab Tamer',
+    'description' => 'Gives additional control over what tabs are seen by a user.',


-  $items['admin/config/tabtamer/tabs'] = array(
+  $items['admin/config/user-interface/tabtamer/tabs'] = array(

-  $items['admin/config/tabtamer/settings'] = array(
+  $items['admin/config/user-interface/tabtamer/settings'] = array(

in tabtamer.info

-  configure = admin/config/tabtamer
+  configure = admin/config/user-interface/tabtamer

Have a nice day

CommentFileSizeAuthor
#5 tabtamer.patch1.36 KBnit3ch

Comments

morf2009’s picture

+1 please introduce this patch in next release. If you need some help with commiting to git or creating new release, please contact me.

This is how the hook_menu for this module should looks like after patch, just copy and paste...

/**
 * Implements hook_menu().
 */
function tabtamer_menu() {
  $items = array();

  $items['admin/config/user-interface/tabtamer'] = array(
    'title' => 'Tab Tamer',
    'access arguments' => array('administer tabtamer'),
    'page callback' => 'drupal_get_form',
    'page arguments' => array('tabtamer_tabs_form'),
    'type' => MENU_NORMAL_ITEM,
  );
  $items['admin/config/user-interface/tabtamer/tabs'] = array(
    'title' => t('Edit tabs'),
    'type' => MENU_DEFAULT_LOCAL_TASK,
    'weight' => -1,
  );
  $items['admin/config/user-interface/tabtamer/settings'] = array(
    'title' => 'Settings',
    'page callback' => 'drupal_get_form',
    'page arguments' => array('tabtamer_admin'),
    'access arguments' => array('administer tabtamer'),
    'type' => MENU_LOCAL_TASK,
  );

  return $items;
}
morf2009’s picture

Status: Needs review » Needs work

Please can you patch this? May i help you with patch or something? Thanks in advance for your reply!

sw3b’s picture

how to create the patch file.... i do not really know how to do that ?!? or are you asking the maintener ?!?

thanks :)

morf2009’s picture

I was asking maintainer if i can help him with creating a patch or commiting the patches to git :) I'll be happy to do that.

nit3ch’s picture

Status: Needs work » Needs review
StatusFileSize
new1.36 KB

hi
Here is a excellent post for "Creating and applying patch | General patch guidleines". Also adding a patch for this

sw3b’s picture

thanks ! I take note of it ! ;)

Anonymous’s picture

Status: Needs review » Active

Thanks, I committed a patch which puts the module at the System section. Added the correct link under .info file (thanks sw3b!).

Anonymous’s picture

Status: Active » Fixed
sw3b’s picture

you're very welcome !!! have a nice day...

Status: Fixed » Closed (fixed)

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