You are here

function express_menu_alter in Express 7.2

Implements hook_menu_alter. Most Express sites have a People or Person content type. There is a big difference between a user and content about staff, but using People for both confuses many site owners.

File

./express.profile, line 198
Configure Express.

Code

function express_menu_alter(&$items) {

  //@TODO: move to express_settings?

  // tried but didn't work.  Not sure why, but out of time.
  $items['admin/people']['title'] = 'Users';
}