Skip to content

Instantly share code, notes, and snippets.

@mjordan
Created January 12, 2014 18:53
Show Gist options
  • Save mjordan/8388769 to your computer and use it in GitHub Desktop.
Save mjordan/8388769 to your computer and use it in GitHub Desktop.
Example Drupal / Islandora hook_permission.
<?php
/**
* Implements hook_permission().
*/
function islandora_fits_permission() {
return array(
'view technical metadata' => array(
'title' => 'View technical metadata',
),
);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment