You are here

public function UserBadgeUIController::hook_menu in User Badges 7.4

Override the menu hook for default ui controller.

Overrides EntityDefaultUIController::hook_menu

File

./user_badges.module, line 1323
Hooks and other stuff related to user badge.

Class

UserBadgeUIController
Custom controller for the administrator UI

Code

public function hook_menu() {
  $items = parent::hook_menu();
  $items[$this->path]['description'] = t('Manage User Badge');
  $items[$this->path]['title'] = t('User Badges');
  return $items;
}