Notable.
The Drupal Devel module offers a Function Reference that is helpful. To display it, enable the Devel module, and then place the Devel block in one of your theme's regions.
You will see a link to Function Reference, which leads to here:
http:/www.yoursite.com/devel/reference
You can, however, customize the function list in a way that may be more helpful.
Theme functions
<?php
print '<ol>';
$functions = get_defined_functions();
foreach($functions['user'] as $function) {
if(substr($function, 0,6)=='views_' || strstr($function, 'views'))
print "<li><a href='http://api.freestylesystems.co.uk/api/function/$function/5' target='_blank'>$function</li>";
}
print '</ol>';
?><?php
print '<ol>';
$functions = get_defined_functions();
foreach($functions['user'] as $function) {
if(substr($function, 0,6)=='theme_')
print "<li><a href='http://api.freestylesystems.co.uk/api/function/$function/5' target='_blank'>$function</li>";
}
print '</ol>';
?><?php
print '<ol>';
$functions = get_defined_functions();
print '<pre>'.print_r($functions, 1).'</pre>';
// foreach($functions['user'] as $function) {
// if substr($function, 0,6)=='theme_' {
// print "<li><a href='http://api.freestylesystems.co.uk/api/function/$function/5' target='_blank'>$function</li>";
// }
// }
print '</ol>';
?>