<?php
print '<ol>';
$functions = get_defined_functions();
foreach($functions['user'] as $function) {
print "<li><a href='http://api.drupal.org/api/HEAD/function/$function' target='_blank'>$function</li>";
}
print '</ol>';
?>Quick Drupal function reference
Submitted by Harry Slaughter on July 27, 2006 - 7:47pm.
I got this little snippet off of drupal.org somewhere, but it's proving remarkabley handy for everyday development.
Create a php node with the following content:
Then create a menu item that points to the node you just created.
You have a quick reference list of all available Drupal related function calls.





Thanks!
Nice to find your blog.
How is the order determined? They look like they're by module... maybe by module file?
Is there a way to create a header to each section?