Skip to content

Instantly share code, notes, and snippets.

@evandonovan
Created May 17, 2010 18:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save evandonovan/404086 to your computer and use it in GitHub Desktop.
Save evandonovan/404086 to your computer and use it in GitHub Desktop.
find implementations of a given hook in Drupal
<ol>
<?php
foreach(module_implements("block") as $module) {
print "<li>" . $module . "</li>";
}
?>
</ol>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment