From 5bbbf10ba84042b8576d67576d98922c0063c6d6 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Fri, 6 Apr 2007 13:27:23 +0000 Subject: - Patch #130987 by merlinofchaos: added theme registry for easier themability. --- modules/profile/profile.module | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'modules/profile/profile.module') diff --git a/modules/profile/profile.module b/modules/profile/profile.module index c486dda05..fd2a8c6ac 100644 --- a/modules/profile/profile.module +++ b/modules/profile/profile.module @@ -51,6 +51,19 @@ function profile_help($section) { } } +/** + * Implementation of hook_theme() + */ +function profile_theme() { + return array( + 'profile_block' => array( + 'arguments' => array('account' => NULL, 'fields' => array()), + ), + 'profile_listing' => array( + 'arguments' => array('account' => NULL, 'fields' => array()), + ), ); +} + /** * Implementation of hook_menu(). */ -- cgit v1.2.3