function certificate_menu_alter in Certificate 7.3
Implements hook_menu_alter().
Move the Entity UI-created menu item to a local task.
File
- ./
certificate.module, line 177 - Certificate module.
Code
function certificate_menu_alter(&$items) {
$items['admin/structure/certificates/snapshots']['title'] = 'Snapshots';
$items['admin/structure/certificates/snapshots']['type'] = MENU_LOCAL_TASK;
}