Hi - I enabled the "Profile CSV Export" link in the main Navigation menu. The path is correct and the link is enabled. No matter where I put the link in the menu structure it does not show up anywhere in the Admin Toolbar.

Any ideas?

Comments

steveshook’s picture

I'm having the same problem... anyone? Anyone? Thanks!

dakku’s picture

you need to enable the menu by going to

/admin/build/menu-customize/navigation

I dont thin it will display in the menu because it is a MENU_SUGGESTED_ITEM

  $items['profile_csv'] = array(
    'title'            => 'Profile CSV Export',
    'type'             => MENU_SUGGESTED_ITEM, // Optional
    'page callback'    => 'profile_csv_page',
    'access arguments' => array(PROFILE_CSV_PERM_DOWNLOAD),
  );
jasonabc’s picture

Yes that's where I went to enable it in the Admin Toolbar. It is enabled in the Navigation menu but is not showing up in the Admin Toolbar. How do we get around the Suggested Item issue? Just remove it?

nelslynn’s picture

subscribe

Could this be added as a feature request? It would be very helpful for admins.

dineshpal’s picture

Hello all,

I have solution for this particular problam..for export user you don't have go to anywhere..just click on the "profile CSV Export" link in navigation menu and you will find the user list in csv file.or you can enable this link in primary links or whenever you need and after that you can click on this and export user list.

jasonabc’s picture

I don't want to click the link in the navigation menu. If I add it to an existing menu on the site it will show up for all customers. I want it displayed as a menu item in the Admin Toolbar but it doesn't show up.

Any ideas?

claudio.fernandes’s picture

This is my solution... line 30...
sorry don't have time to release as a patch...

<?php
function profile_csv_menu() {
  $items = array();

  $items['admin/settings/profile_csv'] = array(
      'title' => 'Profile CSV',
      'type' => MENU_NORMAL_ITEM,
      'description' => 'Profile CSV user data selection',
      'page callback' => 'drupal_get_form',
      'page arguments' => array('profile_csv_admin_settings'),
      'access arguments' => array('administer site configuration'),
  );
$items['admin/content/profile_csv'] = array( // I have change this line
      'title' => 'Profile CSV Export',
      'type' => MENU_NORMAL_ITEM, // I have changed this line
      'page callback' => 'profile_csv_page',
      'access arguments' => array(PROFILE_CSV_PERM_DOWNLOAD),
  );

  return $items;
}
?>