Quick Drupal function reference

tags:

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: <?php print '

    '; $functions = get_defined_functions(); foreach($functions['user'] as $function) { print "
  1. $function
  2. "; } print '
'; ?>

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?