? .custom_links.admin.inc.swp ? .custom_links.module.swp Index: custom_links.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/custom_links/custom_links.module,v retrieving revision 1.5 diff -u -p -r1.5 custom_links.module --- custom_links.module 27 Jan 2008 09:16:01 -0000 1.5 +++ custom_links.module 14 Jan 2009 23:39:11 -0000 @@ -39,6 +39,9 @@ function custom_links_menu() { return $items; } +/** + * Implementation of hook_theme(). + */ function custom_links_theme() { $items = array(); $items['custom_links_block'] = array( @@ -47,12 +50,18 @@ function custom_links_theme() { return $items; } +/** + * Implementation of hook_link(). + */ function custom_links_link($type, $node = NULL, $teaser = FALSE) { if ($type == 'node') { return _custom_links_build_links($node, $teaser); } } +/** + * Implementation of hook_perm(). + */ function custom_links_perm() { return array('administer custom links'); }