public function Profile2TypeUIController::hook_menu in Profile 2 7
Same name and namespace in other branches
- 7.2 profile2.admin.inc \Profile2TypeUIController::hook_menu()
Overrides hook_menu() defaults.
Overrides EntityDefaultUIController::hook_menu
File
- ./
profile2.admin.inc, line 16 - Profile type editing UI.
Class
- Profile2TypeUIController
- UI controller.
Code
public function hook_menu() {
$items = parent::hook_menu();
$items[$this->path]['description'] = 'Manage profiles, including fields.';
return $items;
}