Created
January 12, 2014 18:46
-
-
Save mjordan/8388676 to your computer and use it in GitHub Desktop.
Example Drupal / Islandora menu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Implements hook_menu(). | |
*/ | |
function islandora_fits_menu() { | |
$items = array(); | |
$items['islandora/object/%islandora_object/manage/fits_metadata'] = array( | |
'title' => 'Technical Metadata', | |
'type' => MENU_LOCAL_TASK, | |
'page callback' => 'islandora_fits_metadata_display', | |
'page arguments' => array(2), | |
'access callback' => 'islandora_fits_metadata_access', | |
'access arguments' => array(2), | |
); | |
return $items; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment